Merge pull request #11490 from freqtrade/fix/continual_learning_pytorch

Fix continual learning pytorch
This commit is contained in:
Robert Caulk
2025-05-24 11:12:05 +02:00
committed by GitHub

View File

@@ -763,6 +763,8 @@ class IFreqaiModel(ABC):
init_model = None
else:
init_model = self.dd.model_dictionary[pair]
# Set "fresh" tb_logger - the one in model_dictionary has the writer closed.
init_model.tb_logger = self.tb_logger
return init_model