Skip to content

Commit a050356

Browse files
Merge pull request #39 from SciML/ap/up_lux
chore: force install latest versions
2 parents 09f384b + b2c643c commit a050356

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
@@ -29,7 +29,7 @@ SafeTestsets = "0.1"
2929
SciMLStructures = "1.1.0"
3030
StableRNGs = "1"
3131
SymbolicIndexingInterface = "0.3.15"
32-
Symbolics = "5.27, 6.0"
32+
Symbolics = "6.9"
3333
Test = "1.10"
3434
julia = "1.10"
3535

docs/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ModelingToolkitNeuralNets = "f162e290-f571-43a6-83d9-22ecc16da15f"
1414

1515
[compat]
1616
Documenter = "1.3"
17-
Lux = "0.5.32"
17+
Lux = "1"
1818
ModelingToolkit = "9.9"
1919
ModelingToolkitStandardLibrary = "2.7"
2020
Optimization = "3.24"

src/utils.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
function multi_layer_feed_forward(input_length, output_length; width::Int = 5,
2-
depth::Int = 1, activation = tanh, disable_optimizations = false)
2+
depth::Int = 1, activation = tanh)
33
Lux.Chain(Lux.Dense(input_length, width, activation),
44
[Lux.Dense(width, width, activation) for _ in 1:(depth)]...,
5-
Lux.Dense(width, output_length); disable_optimizations)
5+
Lux.Dense(width, output_length))
66
end

0 commit comments

Comments
 (0)