All Projects → jiahao42 → Reservoir

jiahao42 / Reservoir

Licence: MIT license
Code for Reservoir computing (Echo state network)

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Reservoir

LSTM-footballMatchWinner
This repository contains the code for a conference paper "Predicting the football match winner using LSTM model of Recurrent Neural Networks" that we wrote
Stars: ✭ 44 (+10%)
Mutual labels:  recurrent-neural-networks
Human-Activity-Recognition
Human activity recognition using TensorFlow on smartphone sensors dataset and an LSTM RNN. Classifying the type of movement amongst six categories (WALKING, WALKING_UPSTAIRS, WALKING_DOWNSTAIRS, SITTING, STANDING, LAYING).
Stars: ✭ 16 (-60%)
Mutual labels:  recurrent-neural-networks
keras-ordered-neurons
Ordered Neurons LSTM
Stars: ✭ 29 (-27.5%)
Mutual labels:  recurrent-neural-networks
GTAV-Self-driving-car
Self driving car in GTAV with Deep Learning
Stars: ✭ 15 (-62.5%)
Mutual labels:  recurrent-neural-networks
roboinstruct-1
A robot learning from demonstration framework that trains a recurrent neural network for autonomous task execution
Stars: ✭ 71 (+77.5%)
Mutual labels:  recurrent-neural-networks
sequence labeling tf
Sequence Labeling in Tensorflow
Stars: ✭ 18 (-55%)
Mutual labels:  recurrent-neural-networks
Keras-LSTM-Trajectory-Prediction
A Keras multi-input multi-output LSTM-based RNN for object trajectory forecasting
Stars: ✭ 88 (+120%)
Mutual labels:  recurrent-neural-networks
LSTM-Time-Series-Analysis
Using LSTM network for time series forecasting
Stars: ✭ 41 (+2.5%)
Mutual labels:  recurrent-neural-networks
unicornn
Official code for UnICORNN (ICML 2021)
Stars: ✭ 21 (-47.5%)
Mutual labels:  recurrent-neural-networks
iust deep fuzz
Advanced file format fuzzer based-on deep neural language models.
Stars: ✭ 36 (-10%)
Mutual labels:  recurrent-neural-networks
rnn benchmarks
RNN benchmarks of pytorch, tensorflow and theano
Stars: ✭ 85 (+112.5%)
Mutual labels:  recurrent-neural-networks
POPQORN
An Algorithm to Quantify Robustness of Recurrent Neural Networks
Stars: ✭ 44 (+10%)
Mutual labels:  recurrent-neural-networks
pomdp-baselines
Simple (but often Strong) Baselines for POMDPs in PyTorch - ICML 2022
Stars: ✭ 162 (+305%)
Mutual labels:  recurrent-neural-networks
deep-blueberry
If you've always wanted to learn about deep-learning but don't know where to start, then you might have stumbled upon the right place!
Stars: ✭ 17 (-57.5%)
Mutual labels:  recurrent-neural-networks
Music-Style-Transfer
Source code for "Transferring the Style of Homophonic Music Using Recurrent Neural Networks and Autoregressive Model"
Stars: ✭ 16 (-60%)
Mutual labels:  recurrent-neural-networks
Visual-Attention-Model
Chainer implementation of Deepmind's Visual Attention Model paper
Stars: ✭ 27 (-32.5%)
Mutual labels:  recurrent-neural-networks
Introduction-to-Deep-Learning-and-Neural-Networks-Course
Code snippets and solutions for the Introduction to Deep Learning and Neural Networks Course hosted in educative.io
Stars: ✭ 33 (-17.5%)
Mutual labels:  recurrent-neural-networks
Bidirectional-Deep-readout-Echo-State-Network
Multi-variate time series classification with a bi-directional ESN with a readout implemented as a deep neural network.
Stars: ✭ 24 (-40%)
Mutual labels:  reservoir-computing
Name-NationalOrigin-Classifier
Using a recurrent neural network in TensorFlow to predict national origin by last name.
Stars: ✭ 30 (-25%)
Mutual labels:  recurrent-neural-networks
mmn
Moore Machine Networks (MMN): Learning Finite-State Representations of Recurrent Policy Networks
Stars: ✭ 39 (-2.5%)
Mutual labels:  recurrent-neural-networks

Reservoir

Code for reservoir computing.

Usage

The reservoir is constructed by the parameters defined in reservoir.config, which is:

{
    "input": {
        "nodes": 2,
        "functions": [
            "lambda x: np.sin(128 * np.pi * x)",
            "lambda x: x"
        ],
        "length": 5000
    },
    "reservoir": {
        "start_node": 100,
        "end_node": 100,
        "step": 2,
        "degree_function": "lambda x: np.sqrt(x)",
        "sigma": 0.5,
        "bias": 1,
        "leakage_rate": 0.3,
        "regression_parameter": 1e-08
    },
    "output": {
        "nodes": 2
    },
    "training": {
        "init": 1000,
        "train": 3000,
        "test": 2000,
        "error": 1000
    }
}

It will generate the prediction.

For one single signal input:
sin(t):

For two signals input:
sin(t) and t:

For three singals input:
Lorenz System:

Rössler System:

The result will be gathered in the file reservoir.output, you can visualize it by running ./visualize.py reservoir.output or ./visualize3d.py reservoir.output

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].