We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89a1f9c commit b5f605bCopy full SHA for b5f605b
tests/operators/forecast/test_datasets.py
@@ -214,7 +214,7 @@ def test_pandas_to_historical_test(model):
214
215
# CostAD
216
@pytest.mark.parametrize("model", ["prophet", "neuralprophet"])
217
-def test_pandas_to_historical_test(model):
+def test_pandas_to_historical_test2(model):
218
df = pd.read_csv(f"{DATASET_PREFIX}dataset5.csv")
219
df_train = df[:-1]
220
df_test = df[-1:]
@@ -238,7 +238,7 @@ def test_pandas_to_historical_test(model):
238
results = forecast_operate(operator_config)
239
# check_output_for_errors(output_data_path)
240
test_metrics = pd.read_csv(f"{output_data_path}/metrics.csv")
241
- df1 = results.get_test_data()
+ df1 = results.get_test_metrics()
242
df2 = results.get_forecast()
243
244
0 commit comments