From 462c27f8aec40e1ca3034879886d8a9a7314cc80 Mon Sep 17 00:00:00 2001 From: skzhang1 Date: Sun, 21 Aug 2022 12:54:58 +0000 Subject: [PATCH] fix --- flaml/ml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flaml/ml.py b/flaml/ml.py index 0dc597e17..044424801 100644 --- a/flaml/ml.py +++ b/flaml/ml.py @@ -541,7 +541,7 @@ def evaluate_model_CV( total_fold_num += 1 val_loss_folds.append(val_loss_i) if log_training_metric or not isinstance(eval_metric, str): - log_metric_folds.append(metric_i) + log_metric_folds.append(metric_i) train_time += train_time_i pred_time += pred_time_i if time.time() - start_time >= budget: