From 5606e2c432bf29786dba881f4b20d2e339044508 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Fri, 8 Aug 2025 15:58:12 +0200 Subject: [PATCH] refactor(qav3): refine log messages MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .../user_data/freqaimodels/QuickAdapterRegressorV3.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quickadapter/user_data/freqaimodels/QuickAdapterRegressorV3.py b/quickadapter/user_data/freqaimodels/QuickAdapterRegressorV3.py index 87feb22..8b4787d 100644 --- a/quickadapter/user_data/freqaimodels/QuickAdapterRegressorV3.py +++ b/quickadapter/user_data/freqaimodels/QuickAdapterRegressorV3.py @@ -1008,7 +1008,7 @@ class QuickAdapterRegressorV3(BaseRegressionModel): f" using {self.ft_params.get('label_metric', 'seuclidean')} metric" ) logger.info( - f"Optuna {pair} {namespace} {objective_type} objective done{metric_log_msg} ({time_spent:.2f} secs)" + f"Optuna {pair} {namespace} {objective_type} objective hyperopt done{metric_log_msg} ({time_spent:.2f} secs)" ) for key, value in study_best_results.items(): if isinstance(value, list): @@ -1024,7 +1024,7 @@ class QuickAdapterRegressorV3(BaseRegressionModel): ) if not self.optuna_params_valid(pair, namespace, study): logger.warning( - f"Optuna {pair} {namespace} {objective_type} objective best params found has invalid optimization target value(s)" + f"Optuna {pair} {namespace} {objective_type} objective hyperopt best params found has invalid optimization target value(s)" ) self.optuna_save_best_params(pair, namespace) return study -- 2.43.0