From 84e608eaee3a30e0946a7d3c54e1066ba6e80867 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Wed, 5 Feb 2025 23:46:57 +0100 Subject: [PATCH] fix(qav3): fix type definition in lgbm regressor MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .../user_data/freqaimodels/LightGBMRegressorQuickAdapterV35.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickadapter/user_data/freqaimodels/LightGBMRegressorQuickAdapterV35.py b/quickadapter/user_data/freqaimodels/LightGBMRegressorQuickAdapterV35.py index 6ad5991..c910fa9 100644 --- a/quickadapter/user_data/freqaimodels/LightGBMRegressorQuickAdapterV35.py +++ b/quickadapter/user_data/freqaimodels/LightGBMRegressorQuickAdapterV35.py @@ -200,7 +200,7 @@ class LightGBMRegressorQuickAdapterV35(BaseRegressionModel): def min_max_pred( - pred_df: pd.Dataframe, fit_live_predictions_candles: int, label_period_candles: int + pred_df: pd.DataFrame, fit_live_predictions_candles: int, label_period_candles: int ): pred_df_sorted = pd.DataFrame() for label in pred_df.keys(): -- 2.43.0