mirror of
https://github.com/webclinic017/drift.git
synced 2026-08-21 23:08:09 +00:00
fix(FeatureExtractor): use a rolling z-score instead of StandardScaler with unavoidable lookahead bias (#146)
* fix(FeatureExtractor): use a rolling z-score instead of StandardScaler with unavoidable lookahead bias * chore(Archive): removed archived models * fix(FeatureExtractors): syntax * fix(FeatureExtractors): mistake with expanding window
This commit is contained in:
+2
-2
@@ -22,7 +22,7 @@ def get_dev_config() -> tuple[dict, dict, dict]:
|
||||
forecasting_horizon = 1,
|
||||
own_features = ['level_2', 'date_days'],
|
||||
other_features = ['single_mom'],
|
||||
exogenous_features = ['standard_scaling'],
|
||||
exogenous_features = ['z_score'],
|
||||
index_column= 'int',
|
||||
method= 'classification',
|
||||
no_of_classes= 'two',
|
||||
@@ -65,7 +65,7 @@ def get_default_ensemble_config() -> tuple[dict, dict, dict]:
|
||||
forecasting_horizon = 1,
|
||||
own_features = ['level_2', 'date_days', 'lags_up_to_5'],
|
||||
other_features = ['level_2', 'lags_up_to_5'],
|
||||
exogenous_features = ['standard_scaling'],
|
||||
exogenous_features = ['z_score'],
|
||||
index_column= 'int',
|
||||
method= 'classification',
|
||||
no_of_classes= 'two',
|
||||
|
||||
Reference in New Issue
Block a user