File tree Expand file tree Collapse file tree 6 files changed +1212
-33
lines changed Expand file tree Collapse file tree 6 files changed +1212
-33
lines changed Original file line number Diff line number Diff line change @@ -559,10 +559,10 @@ def test_all_series_failure(model):
559
559
historical_data_path = historical_data_path ,
560
560
additional_data_path = additional_data_path ,
561
561
)
562
-
562
+ preprocessing_steps = { "missing_value_imputation" : True , "outlier_treatment" : False }
563
563
yaml_i ["spec" ]["model" ] = model
564
564
yaml_i ['spec' ]['horizon' ] = 10
565
- yaml_i ['spec' ]['preprocessing' ] = True
565
+ yaml_i ['spec' ]['preprocessing' ] = preprocessing_steps
566
566
if yaml_i ["spec" ].get ("additional_data" ) is not None and model != "autots" :
567
567
yaml_i ["spec" ]["generate_explanations" ] = True
568
568
if model == "autots" :
@@ -627,9 +627,9 @@ def test_arima_automlx_errors(operator_setup, model):
627
627
any supported types according to the casting rule ''safe''
628
628
Added label encoding before passing data to explainer
629
629
"""
630
-
630
+ preprocessing_steps = { "missing_value_imputation" : True , "outlier_treatment" : False }
631
631
yaml_i ['spec' ]['horizon' ] = 10
632
- yaml_i ['spec' ]['preprocessing' ] = True
632
+ yaml_i ['spec' ]['preprocessing' ] = preprocessing_steps
633
633
yaml_i ['spec' ]['generate_explanations' ] = True
634
634
yaml_i ['spec' ]['model' ] = model
635
635
You can’t perform that action at this time.
0 commit comments