Skip to content

Commit

Permalink
0.6.16 a68
Browse files Browse the repository at this point in the history
  • Loading branch information
winedarksea committed Oct 7, 2024
1 parent 0da8728 commit c11f588
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions autots/evaluator/auto_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -1645,7 +1645,7 @@ def _eval_prediction_for_template(
)
template_result.full_mae_ids.extend([model_id])
template_result.full_mae_vals.extend([validation_round])
return template_result
return template_result, best_smape


horizontal_post_processors = [
Expand Down Expand Up @@ -1826,7 +1826,7 @@ def virtual_memory():
else:
post_memory_percent = 0.0
# wrapped up to enable postprocessing
template_result = _eval_prediction_for_template(
template_result, best_smape = _eval_prediction_for_template(
df_forecast, template_result, verbose,
actuals, weights, df_trn_arr, ensemble,
scaler, cumsum_A, diff_A, last_of_array,
Expand Down Expand Up @@ -1858,7 +1858,7 @@ def virtual_memory():
)
df_forecast2.transformation_parameters = x
template_result.model_count += 1
template_result = _eval_prediction_for_template(
template_result, best_smape = _eval_prediction_for_template(
df_forecast2, template_result, verbose,
actuals, weights, df_trn_arr, ensemble,
scaler, cumsum_A, diff_A, last_of_array,
Expand Down

0 comments on commit c11f588

Please sign in to comment.