cknd / pyESN

Echo State Networks in Python
MIT License
296 stars 122 forks source link

In the second cell of freqgen-mine.ipynb , rescaling periods is wrong. #12

Open sungjae-cho opened 3 years ago

sungjae-cho commented 3 years ago

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