Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds application areas to docs & readme #97

Merged
merged 4 commits into from
Mar 20, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,18 @@
allowing to compute derivatives with minimal changes to the program.
See [automatic differentation mathematical background](https://auto-differentiation.github.io/aad/) for more details.

Application areas:

- Machine Learning and Deep Learning: Training neural networks or other machine learning models.

Check notice on line 51 in README.md

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

README.md#L51

Expected: 80; Actual: 98
- Optimization: Solving optimization problems in engineering and finance.
- Numerical Analysis: Enhancing numerical solution methods for differential equations.
- Scientific Computing: Simulating physical systems and processes.
- Risk Management and Quantitative Finance: Assessing and hedging risk in financial models.

Check notice on line 55 in README.md

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

README.md#L55

Expected: 80; Actual: 93
- Computer Graphics: Optimizing rendering algorithms.
- Robotics: Improving control and simulation of robotic systems.
- Meteorology: Enhancing weather prediction models.
- Biotechnology: Modeling biological processes and systems.

Key features:

- Forward and adjoint mode for any order, using operator-overloading
Expand Down
16 changes: 16 additions & 0 deletions docs/.overrides/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,22 @@ <h2>Automatic Differentiation</h2>
</p>
</div>

<!-- Application areas --->
<div class="homepage-section">
<h2>Application areas</h2>
<ul>
<li><b>Machine Learning and Deep Learning:</b> Training neural networks or other machine learning models.</li>
<li><b>Optimization:</b> Solving optimization problems in engineering and finance.</li>
<li><b>Numerical Analysis:</b> Enhancing numerical solution methods for differential equations.</li>
<li><b>Scientific Computing:</b> Simulating physical systems and processes.</li>
<li><b>Risk Management and Quantitative Finance:</b> Assessing and hedging risk in financial models.</li>
<li><b>Computer Graphics:</b> Optimizing rendering algorithms.</li>
<li><b>Robotics:</b> Improving control and simulation of robotic systems.</li>
<li><b>Meteorology:</b> Enhancing weather prediction models.</li>
<li><b>Biotechnology:</b> Modeling biological processes and systems.</li>
</ul>
</div>


<!-- Features -->
<div class="homepage-section">
Expand Down
Loading