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
As I understand, using a ESNRegressor at the end would produce another NodeToNode reservoir, just as in the examples, is that correct?
If so, is there any way to have only one readout with multiple reservoirs?
If I train the network using a ELMRegressor at the end (since it doesn't require a NodeToNode), would it produce the correct results from ESN with reservoir and states, since I use node to node in the middle?
I can only imagine that using esn = ESNRegressor(input_to_node=reservoirs) would create another NodeToNode, just like in the examples, and I don't want that.
If you can give any help or guidance it would be much appreciated. :)
The text was updated successfully, but these errors were encountered:
jhklarcher
changed the title
ESN with multiple eeservoirs and only one readout
ESN with multiple reservoirs and only one readout
Oct 12, 2022
Hi @jhklarcher
thank you for this very good question. Your proposed solution with the ELMRegressor is correct.
Since I recently stumbled about something similar, I already noticed by myself that the ESNRegressor is not yet as flexible as I would like it to be. Thus, I am working on the issue. However, it will definitely take a couple of weeks.
Hello! Thanks for the amazing package!
I'm trying to create a ESN that has multiple reservoirs, but only one readout, and I'm having trouble figuring out how to get it running.
The scheme I'm trying to use is something like the following:
As I understand, using a ESNRegressor at the end would produce another NodeToNode reservoir, just as in the examples, is that correct?
If so, is there any way to have only one readout with multiple reservoirs?
If I train the network using a ELMRegressor at the end (since it doesn't require a NodeToNode), would it produce the correct results from ESN with reservoir and states, since I use node to node in the middle?
Something like so:
I can only imagine that using
esn = ESNRegressor(input_to_node=reservoirs)
would create another NodeToNode, just like in the examples, and I don't want that.If you can give any help or guidance it would be much appreciated. :)
The text was updated successfully, but these errors were encountered: