Skip to content

Commit b256e1e

Browse files
bump DataInterpolations
1 parent 394806c commit b256e1e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Boltz = "1"
3434
ChainRulesCore = "1"
3535
ComponentArrays = "0.15.17"
3636
ConcreteStructs = "0.2"
37-
DataInterpolations = "5, 6"
37+
DataInterpolations = "6.4"
3838
DelayDiffEq = "5.47.3"
3939
DiffEqCallbacks = "3.6.2"
4040
Distances = "0.10.11"

docs/src/examples/multiple_shooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ group_size = 3
8686
continuity_term = 200
8787
8888
l1, preds = multiple_shoot(ps, ode_data, tsteps, prob_node, loss_function,
89-
Tsit5(), group_size; continuity_term)
89+
Tsit5(), group_size; continuity_term)
9090
9191
function loss_function(data, pred)
9292
return sum(abs2, data - pred)

docs/src/examples/neural_ode.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ function callback(state, l; doplot = false)
5858
end
5959
6060
pinit = ComponentArray(p)
61-
callback((;u = pinit), loss_neuralode(pinit); doplot = true)
61+
callback((; u = pinit), loss_neuralode(pinit); doplot = true)
6262
6363
# use Optimization.jl to solve the problem
6464
adtype = Optimization.AutoZygote()
@@ -74,7 +74,7 @@ optprob2 = remake(optprob; u0 = result_neuralode.u)
7474
result_neuralode2 = Optimization.solve(
7575
optprob2, Optim.BFGS(; initial_stepnorm = 0.01); callback, allow_f_increases = false)
7676
77-
callback((;u = result_neuralode2.u), loss_neuralode(result_neuralode2.u); doplot = true)
77+
callback((; u = result_neuralode2.u), loss_neuralode(result_neuralode2.u); doplot = true)
7878
```
7979

8080
![Neural ODE](https://user-images.githubusercontent.com/1814174/88589293-e8207f80-d026-11ea-86e2-8a3feb8252ca.gif)

0 commit comments

Comments
 (0)