File tree Expand file tree Collapse file tree 8 files changed +1512
-34
lines changed Expand file tree Collapse file tree 8 files changed +1512
-34
lines changed Original file line number Diff line number Diff line change @@ -181,4 +181,4 @@ Consult the security guide [SECURITY.md](https://github.com/oracle/accelerated-d
181
181
182
182
## License
183
183
184
- Copyright (c) 2020, 2022 Oracle and/or its affiliates. Licensed under the [ Universal Permissive License v1.0] ( https://oss.oracle.com/licenses/upl/ )
184
+ Copyright (c) 2020, 2024 Oracle and/or its affiliates. Licensed under the [ Universal Permissive License v1.0] ( https://oss.oracle.com/licenses/upl/ )
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