Skip to content

Commit aaf83b0

Browse files
authored
Update forecaster.py
1 parent 22e70be commit aaf83b0

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

neuralprophet/forecaster.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,13 @@ def __init__(
126126
127127
## Data config
128128
normalize (str): Type of normalization to apply to the time series.
129-
options: ['soft', 'soft1', 'off', 'minmax, 'standardize']
130-
default: 'soft' scales minimum to 0.0 and the 95th quantile to 1.0
131-
'soft1' scales minimum to 0.1 and the 90th quantile to 0.9
129+
options: [ 'off', 'minmax, 'standardize', 'soft', 'soft1']
130+
default: 'soft', unless the time series is binary, in which case 'minmax' is applied.
131+
'off' bypasses data normalization
132+
'minmax' scales the minimum value to 0.0 and the maximum value to 1.0
133+
'standardize' zero-centers and divides by the standard deviation
134+
'soft' scales the minimum value to 0.0 and the 95th quantile to 1.0
135+
'soft1' scales the minimum value to 0.1 and the 90th quantile to 0.9
132136
impute_missing (bool): whether to automatically impute missing dates/values
133137
imputation follows a linear method up to 10 missing values, more are filled with trend.
134138
"""

0 commit comments

Comments
 (0)