We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b2e08c commit 559cdcdCopy full SHA for 559cdcd
docs/make.jl
@@ -29,5 +29,6 @@ makedocs(;
29
30
deploydocs(;
31
repo = "github.com/SciML/ModelingToolkitNeuralNets.jl",
32
- devbranch = "main"
+ devbranch = "main",
33
+ push_preview = true
34
)
docs/src/friction.md
@@ -152,6 +152,7 @@ res_prob = remake(prob, p = res_p)
152
res_sol = solve(res_prob, Rodas4(), saveat = sol_ref.t)
153
@test first.(sol_ref.u)≈first.(res_sol.u) rtol=1e-3 #hide
154
@test friction.(first.(sol_ref.u))≈(Fu .- first.(res_sol(res_sol.t, Val{1}).u)) rtol=1e-1 #hide
155
+nothing #hide
156
```
157
158
Also, it would be interesting to check the simulation before the training to get an idea of the starting point of the network.
0 commit comments