From d4db5c32812e65d93fde173cd61e57d1a8a035f1 Mon Sep 17 00:00:00 2001 From: robcaulk Date: Mon, 15 Aug 2022 10:29:33 +0200 Subject: [PATCH] ensure TDQN class is properly named --- freqtrade/freqai/prediction_models/ReinforcementLearningTDQN.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/freqai/prediction_models/ReinforcementLearningTDQN.py b/freqtrade/freqai/prediction_models/ReinforcementLearningTDQN.py index a022a10ba..f042762e4 100644 --- a/freqtrade/freqai/prediction_models/ReinforcementLearningTDQN.py +++ b/freqtrade/freqai/prediction_models/ReinforcementLearningTDQN.py @@ -15,7 +15,7 @@ from stable_baselines3.common.buffers import ReplayBuffer logger = logging.getLogger(__name__) -class ReinforcementLearningPPO(BaseReinforcementLearningModel): +class ReinforcementLearningTDQN(BaseReinforcementLearningModel): """ User created Reinforcement Learning Model prediction model. """