pyESN icon indicating copy to clipboard operation
pyESN copied to clipboard

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

Open sungjae-cho opened this issue 3 years ago • 0 comments

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

sungjae-cho avatar Jun 10 '21 06:06 sungjae-cho