Skip to content

Commit 6d9ccb2

Browse files
committed
docs: remove Experimental
1 parent 1f52339 commit 6d9ccb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/examples/ode/second_order_neural.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ t = range(tspan[1], tspan[2], length = 20)
3333
model = Chain(Dense(2, 50, tanh), Dense(50, 2))
3434
ps, st = Lux.setup(Random.default_rng(), model)
3535
ps = ComponentArray(ps)
36-
model = Lux.Experimental.StatefulLuxLayer(model, ps, st)
36+
model = StatefulLuxLayer{true}(model, ps, st)
3737
3838
ff(du, u, p, t) = model(u, p)
3939
prob = SecondOrderODEProblem{false}(ff, du0, u0, tspan, ps)

0 commit comments

Comments
 (0)