Skip to content

Commit f20ef86

Browse files
Merge pull request #65 from SciML/smc/docs
Add tutorial for `NeuralNetworkBlock`
2 parents 22be907 + 1c6e4ab commit f20ef86

File tree

9 files changed

+3607
-17
lines changed

9 files changed

+3607
-17
lines changed

docs/Project.toml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,36 @@
11
[deps]
22
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
3+
LineSearches = "d3d80556-e9d4-5f37-9878-2ab0fcc64255"
34
Lux = "b2108857-7c20-44ae-9111-449ecde12c47"
45
ModelingToolkit = "961ee093-0014-501f-94e3-6117800e7a78"
56
ModelingToolkitNeuralNets = "f162e290-f571-43a6-83d9-22ecc16da15f"
67
ModelingToolkitStandardLibrary = "16a59e39-deab-5bd0-87e4-056b12336739"
78
Optimization = "7f7a1694-90dd-40f0-9382-eb1efda571ba"
9+
OptimizationOptimJL = "36348300-93cb-4f02-beb5-3c3902f8871e"
810
OptimizationOptimisers = "42dfb2eb-d2b4-4451-abcd-913932933ac1"
9-
OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed"
11+
OrdinaryDiffEqTsit5 = "b1df2697-797e-41e3-8120-5422d3b24e4a"
12+
OrdinaryDiffEqVerner = "79d7bb75-1356-48c1-b8c0-6832512096c2"
1013
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
14+
SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
15+
SciMLSensitivity = "1ed8b502-d754-442c-8d5d-10ac956f44a1"
1116
SciMLStructures = "53ae85a6-f571-4167-b2af-e1d143709226"
1217
StableRNGs = "860ef19b-820b-49d6-a774-d7a799459cd3"
1318
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
1419
SymbolicIndexingInterface = "2efcf032-c050-4f8e-a9bb-153293bab1f5"
20+
SymbolicRegression = "8254be44-1295-4e6a-a16d-46603ac705cb"
21+
Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f"
1522

16-
[sources.ModelingToolkitNeuralNets]
17-
path = ".."
23+
[sources]
24+
ModelingToolkitNeuralNets = {path = ".."}
1825

1926
[compat]
2027
Documenter = "1.3"
2128
Lux = "1"
2229
ModelingToolkit = "10"
2330
ModelingToolkitNeuralNets = "2"
2431
ModelingToolkitStandardLibrary = "2.7"
25-
Optimization = "3.24, 4.0"
26-
OptimizationOptimisers = "0.2.1, 0.3"
27-
OrdinaryDiffEq = "6.74"
32+
Optimization = "4.0"
33+
OptimizationOptimisers = "0.3"
2834
Plots = "1"
2935
SciMLStructures = "1.1.0"
3036
StableRNGs = "1"

docs/make.jl

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,8 @@ makedocs(;
2020
linkcheck = true,
2121
pages = [
2222
"Home" => "index.md",
23-
"Tutorials" => [
24-
"Friction Model" => "friction.md"
25-
],
23+
"Tutorials" => ["NeuralNetworkBlock" => "nnblock.md"
24+
"Friction Model" => "friction.md"],
2625
"API" => "api.md"
2726
]
2827
)

docs/src/api.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
```@docs
44
NeuralNetworkBlock
55
SymbolicNeuralNetwork
6+
multi_layer_feed_forward
67
```

0 commit comments

Comments
 (0)