Merge pull request #8182 from freqtrade/generalize-model-exists
generalize model_exists() for RL and Keras
This commit is contained in:
commit
f68543b151
@ -563,7 +563,13 @@ class IFreqaiModel(ABC):
|
|||||||
:return:
|
:return:
|
||||||
:boolean: whether the model file exists or not.
|
:boolean: whether the model file exists or not.
|
||||||
"""
|
"""
|
||||||
path_to_modelfile = Path(dk.data_path / f"{dk.model_filename}_model.joblib")
|
if self.dd.model_type == 'joblib':
|
||||||
|
file_type = ".joblib"
|
||||||
|
elif self.dd.model_type == 'keras':
|
||||||
|
file_type = ".h5"
|
||||||
|
elif 'stable_baselines' in self.dd.model_type or 'sb3_contrib' == self.dd.model_type:
|
||||||
|
file_type = ".zip"
|
||||||
|
path_to_modelfile = Path(dk.data_path / f"{dk.model_filename}_model.{file_type}")
|
||||||
file_exists = path_to_modelfile.is_file()
|
file_exists = path_to_modelfile.is_file()
|
||||||
if file_exists:
|
if file_exists:
|
||||||
logger.info("Found model at %s", dk.data_path / dk.model_filename)
|
logger.info("Found model at %s", dk.data_path / dk.model_filename)
|
||||||
|
Loading…
Reference in New Issue
Block a user