Skip to content

Commit 36be3e8

Browse files
Update ode.md
Updated docs.
1 parent b7e2927 commit 36be3e8

File tree

1 file changed

+1
-8
lines changed
  • docs/src/optimization_packages

1 file changed

+1
-8
lines changed

docs/src/optimization_packages/ode.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ sol = solve(prob_manual, opt; maxiters=50_000)
3535
@show sol.objective
3636
```
3737

38-
## Available Optimizers
38+
## Local-gradient based Optimizers
3939

4040
All provided optimizers are **gradient-based local optimizers** that solve optimization problems by integrating gradient-based ODEs to convergence:
4141

@@ -53,10 +53,3 @@ You can also define a custom optimizer using the generic `ODEOptimizer(solver; d
5353

5454
All optimizers require gradient information (either via automatic differentiation or manually provided `grad!`). The optimization is performed by integrating the ODE defined by the negative gradient until a steady state is reached.
5555

56-
### Keyword Arguments
57-
58-
* `dt` — time step size (only for `ODEGradientDescent`).
59-
* `maxiters` — maximum number of ODE steps.
60-
* `callback` — function to observe progress.
61-
* `progress=true` — enables live progress display.
62-

0 commit comments

Comments
 (0)