pyESN
pyESN copied to clipboard
In the second cell of freqgen-mine.ipynb , rescaling periods is wrong.
In the second cell of freqgen-mine.ipynb , rescaling periods is wrong.
periods = frequency_control * (max_period - min_period) + max_period
should be changed as follows:
periods = frequency_control * (max_period - min_period) + min_period