Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
"n_jobs": 6,
"timeout": 3600,
"candles_step": 10,
- "storage": "sqlite"
+ "storage": "file"
},
"extra_returns_per_train": {
"DI_value_param1": 0,
def optuna_storage(self, dk: FreqaiDataKitchen):
storage_dir = str(dk.full_path)
- storage_backend = self.__optuna_config.get("storage", "sqlite")
+ storage_backend = self.__optuna_config.get("storage", "file")
if storage_backend == "sqlite":
storage = f"sqlite:///{storage_dir}/optuna-{sanitize_path(dk.pair)}.sqlite"
elif storage_backend == "file":
def optuna_storage(self, dk: FreqaiDataKitchen):
storage_dir = str(dk.full_path)
- storage_backend = self.__optuna_config.get("storage", "sqlite")
+ storage_backend = self.__optuna_config.get("storage", "file")
if storage_backend == "sqlite":
storage = f"sqlite:///{storage_dir}/optuna-{sanitize_path(dk.pair)}.sqlite"
elif storage_backend == "file":