Giter VIP home page Giter VIP logo

Comments (3)

nTrouvain avatar nTrouvain commented on May 24, 2024

Hello,
We are indeed a bit late on the documentation of the new beta version, but it is on the way !
About the NG-RC, you can already find a pretty complete reproduction of the original paper in the examples/ folder, in the form of a notebook.
About the DeepESN, you can try them out using ReservoirPy Node API as follow (for a 3 layers model for instance):

from reservoirpy.nodes import Input, Reservoir, Ridge

inputs = Input()

r1 = Reservoir(...)  # the parameters are up to you
r2 = Reservoir(...)
r3 = Reservoir(...)

readout = Ridge(...)

deep_esn  = (inputs >> r1 >> r2 >> r3) & ([r1, r2, r3] >> readout)

This should produce the following architecture:

r3------
|       |
r2---- concat  -----> readout
|       |
r1------
|
inputs

However, be warned that the Node API is still in heavy development. We would of course be happy to have feedback from you regarding its capabilities.

from reservoirpy.

FuzzyWuzzyIsABear avatar FuzzyWuzzyIsABear commented on May 24, 2024

0.3 is great....huge improvement in disk space usage, memory leaks with new features. All the problems I had are gone.

Are feedback loops possible? I didn't see anything about feedback loops in the papers regarding DeepESN but it seems to be in your code.

Do you have any tips on finding the right parameters for DeepESN especially number of layers?

from reservoirpy.

nTrouvain avatar nTrouvain commented on May 24, 2024

We are really glad you like it !
Feedback loops are possible using the link_feedback(receiver, sender) function from reservoirpy.ops module, or using the << operator:

node_fb = node1 << node2  # node_fb  is a copy of node1 receiving feedback from node2

node1 <<= node2  # same operation but in place in node1

About the number of layers in a DeepESN I admit I never tried to optimize this kind of model. You can probably find more information in the 2018 paper from Gallichio et al. "Design of deep echo state networks".

from reservoirpy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.