- dataset
(String) take value in array [japanese_vowels,mackey_glass]
- one_hot_encode
(bool), default to True. If True, returns class label as a one-hot encoded vector.
- repeat_targets
(bool), default to False. If True, repeat the target label or vector along the time axis of the corresponding sample.
- reload
(bool), default to False
If True, re-download data from remote repository. Else, if a cached version
of the dataset exists, use the cached dataset.
- n_timesteps
(int) Number of time steps to compute.
- tau
(int), default to 17
Time delay :math:`\tau` of Mackey-Glass equation.
By defaults, equals to 17. Other values can
change the choatic behaviour of the timeseries.
- a
(float) default to 0.2
:math:`a` parameter of the equation.
- b
(float) default to 0.1
:math:`b` parameter of the equation.
- n
(int) default to 10
:math:`n` parameter of the equation.
- x0
(float), optional, default to 1.2
Initial condition of the timeseries.
- h
(float), default to 1.0
Time delta between two discrete timesteps.