You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems here the errors stem from two different things:
The new docs are not building, so the changes in how the layers are initialized are not showcased in the docs
I have not translated that specific example with the new initializers. I think I didn't want to add DynamicalSystems as a dependency for the examples, but maybe PredefinedDynamicalSystems is lighter and we could use that?
Regarding 1. I think I'll need some help here (pinging @ChrisRackauckas ), regarding 2. let me sketch a quick working example with the new API:
the first block also a slight change, using PredefinedDynamicalSystems and calling the data with the updated API of DynamicalSystems
using PredefinedDynamicalSystems
train_len =3000
predict_len =2000
ds = Systems.henon()
traj, t =trajectory(ds, 7000)
data =Matrix(traj)'
data = (data .-0.5) .*2
shift =200
training_input = data[:, shift:shift+train_len-1]
training_target = data[:, shift+1:shift+train_len]
testing_input = data[:,shift+train_len:shift+train_len+predict_len-1]
testing_target = data[:,shift+train_len+1:shift+train_len+predict_len]
but this will not work until #227 is merged, I found a little problem in the implementation of the minimal reservoirs that needed fixing.
I will also take the opportunity to add this example to the docs again so I'll leave this issue open. In the meantime you can dev the fm/fixes branch of the repo and that should make the example run just fine
Describe the bug 🐞
Executing the second block of code in the documentation, throws unexpectedly an error.
Minimal Reproducible Example 👇
Error & Stacktrace⚠️
Environment (please complete the following information):
using Pkg; Pkg.status()
using Pkg; Pkg.status(; mode = PKGMODE_MANIFEST)
versioninfo()
Additional context
No other relevant information.
Thanks for reading this.
The text was updated successfully, but these errors were encountered: