2022-06-26 17:02:17 +00:00
|
|
|
import logging
|
2022-07-11 09:33:59 +00:00
|
|
|
from typing import Any, Dict
|
2022-06-26 17:02:17 +00:00
|
|
|
|
|
|
|
from lightgbm import LGBMRegressor
|
|
|
|
|
2022-07-11 09:33:59 +00:00
|
|
|
from freqtrade.freqai.prediction_models.BaseRegressionModel import BaseRegressionModel
|
2022-06-26 17:02:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2022-07-09 08:13:33 +00:00
|
|
|
class LightGBMRegressor(BaseRegressionModel):
|
2022-06-26 17:02:17 +00:00
|
|
|
"""
|
|
|
|
User created prediction model. The class needs to override three necessary
|
|
|
|
functions, predict(), train(), fit(). The class inherits ModelHandler which
|
|
|
|
has its own DataHandler where data is held, saved, loaded, and managed.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def fit(self, data_dictionary: Dict) -> Any:
|
|
|
|
"""
|
|
|
|
Most regressors use the same function names and arguments e.g. user
|
|
|
|
can drop in LGBMRegressor in place of CatBoostRegressor and all data
|
|
|
|
management will be properly handled by Freqai.
|
2022-07-24 14:54:39 +00:00
|
|
|
:param data_dictionary: the dictionary constructed by DataHandler to hold
|
|
|
|
all the training and test data/labels.
|
2022-06-26 17:02:17 +00:00
|
|
|
"""
|
|
|
|
|
2022-07-25 17:40:13 +00:00
|
|
|
if self.freqai_info.get('data_split_parameters', {}).get('test_size', 0.1) == 0:
|
|
|
|
eval_set = None
|
|
|
|
else:
|
|
|
|
eval_set = (data_dictionary["test_features"], data_dictionary["test_labels"])
|
2022-06-26 17:02:17 +00:00
|
|
|
X = data_dictionary["train_features"]
|
|
|
|
y = data_dictionary["train_labels"]
|
|
|
|
|
2022-07-03 14:30:01 +00:00
|
|
|
model = LGBMRegressor(**self.model_training_parameters)
|
2022-07-25 17:40:13 +00:00
|
|
|
|
2022-06-26 17:02:17 +00:00
|
|
|
model.fit(X=X, y=y, eval_set=eval_set)
|
|
|
|
|
|
|
|
return model
|