Skip to content

Commit

Permalink
Updated version in Project.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianTrommer committed Jul 22, 2024
1 parent 6c81436 commit 376b73e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "MeshGraphNets"
uuid = "f7b4726d-4195-44ab-b39c-37bbdadae004"
authors = ["JT <[email protected]>"]
version = "0.4.0"
version = "0.4.1"

[deps]
CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba"
Expand Down
7 changes: 4 additions & 3 deletions src/strategies.jl
Original file line number Diff line number Diff line change
Expand Up @@ -302,11 +302,11 @@ Useful if the network tends to get stuck in a local minimum if SolverTraining is
- `dt`: Interval at which the simulation is saved.
- `tstop`: Stop time of the simulation.
- `solver`: Solver that is used for simulating the system.
- `interval_size`: Size of the intervals (i.e. number of datapoints in one interval).
- `continuity_term = 100`: Factor by which the error between points of concurrent intervals is multiplied.
## Keyword Arguments
- `sense = InterpolatingAdjoint(autojacvec = ZygoteVJP(), checkpointing = true)`:
- `sense = InterpolatingAdjoint(autojacvec = ZygoteVJP(), checkpointing = true)`: The sensitivity algorithm that is used for caluclating the sensitivities.
- `interval_size`: Size of the intervals (i.e. number of datapoints in one interval).
- `continuity_term = 100`: Factor by which the error between points of concurrent intervals is multiplied.
- `solargs`: Keyword arguments that are passed on to the solver.
"""
struct MultipleShooting <: SolverStrategy
Expand Down Expand Up @@ -436,6 +436,7 @@ Useful for initial training of the system since it it faster than training with
## Keyword Arguments
- `window_size = 0`: Number of steps from each trajectory (starting at the beginning) that are used for training. If the number is zero then the whole trajectory is used.
- `random = true`: Whether the derivatives of the data should shuffled before the training.
"""
struct DerivativeTraining <: DerivativeStrategy
window_size::Integer
Expand Down

0 comments on commit 376b73e

Please sign in to comment.