Skip to content

Commit

Permalink
some fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinuzziFrancesco authored and ChrisRackauckas committed Dec 23, 2022
1 parent 7109779 commit 0a9fe2e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/ReservoirComputing.jl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export AbstractLayer, create_layer
export WeightedLayer, DenseLayer, SparseLayer, MinimumLayer, InformedLayer, NullLayer
export BernoulliSample, IrrationalSample
export GaussianProcess
export AbstractReservoir, create_reservoir
export AbstractReservoir, create_reservoir, create_states
export RandSparseReservoir, PseudoSVDReservoir, DelayLineReservoir
export DelayLineBackwardReservoir, SimpleCycleReservoir, CycleJumpsReservoir, NullReservoir
export RNN, MRNN, GRU, GRUParams, FullyGated, Variant1, Variant2, Variant3, Minimal
Expand Down
9 changes: 6 additions & 3 deletions src/esn/esn_reservoir_drivers.jl
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
abstract type AbstractReservoirDriver end

"""
create_states(
reservoir_driver::AbstractReservoirDriver, train_data, reservoir_matrix,input_matrix
)
create_states(reservoir_driver::AbstractReservoirDriver,
train_data,
washout,
reservoir_matrix,
input_matrix,
bias_vector)
Return the trained ESN states according to the given driver.
"""
Expand Down

0 comments on commit 0a9fe2e

Please sign in to comment.