mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
simplify file_type check comparisons
This commit is contained in:
parent
f9fdf1c31b
commit
cb17b36981
|
@ -447,8 +447,7 @@ class FreqaiDataDrawer:
|
|||
elif self.model_type == 'keras':
|
||||
model.save(save_path / f"{dk.model_filename}_model.h5")
|
||||
elif ('stable_baselines' in self.model_type or
|
||||
'sb3_contrib' == self.model_type or
|
||||
'pytorch' == self.model_type):
|
||||
self.model_type in ['sb3_contrib', 'pytorch']):
|
||||
model.save(save_path / f"{dk.model_filename}_model.zip")
|
||||
|
||||
if dk.svm_model is not None:
|
||||
|
|
|
@ -564,8 +564,7 @@ class IFreqaiModel(ABC):
|
|||
elif self.dd.model_type == 'keras':
|
||||
file_type = ".h5"
|
||||
elif ('stable_baselines' in self.dd.model_type or
|
||||
'sb3_contrib' == self.dd.model_type or
|
||||
'pytorch' == self.dd.model_type):
|
||||
self.dd.model_type in ['sb3_contrib', 'pytorch']):
|
||||
file_type = ".zip"
|
||||
|
||||
path_to_modelfile = Path(dk.data_path / f"{dk.model_filename}_model{file_type}")
|
||||
|
|
Loading…
Reference in New Issue
Block a user