simplify statement for pytorch file_type extension

This commit is contained in:
Yinon Polak
2023-03-13 00:16:44 +02:00
parent 0012fe36ca
commit 523a58d3d6
2 changed files with 2 additions and 4 deletions

View File

@@ -446,8 +446,7 @@ class FreqaiDataDrawer:
dump(model, save_path / f"{dk.model_filename}_model.joblib")
elif self.model_type == 'keras':
model.save(save_path / f"{dk.model_filename}_model.h5")
elif ('stable_baselines' in self.model_type or
self.model_type in ['sb3_contrib', 'pytorch']):
elif self.model_type in ["stable_baselines", "sb3_contrib", "pytorch"]:
model.save(save_path / f"{dk.model_filename}_model.zip")
if dk.svm_model is not None: