Created
March 4, 2022 10:17
-
-
Save Paulescu/7c5b79b774936815e01aa8fdd320bbff to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import optuna | |
from src.config import OPTUNA_DB | |
study = optuna.create_study( | |
study_name=EXPERIMENT_NAME, | |
direction='maximize', | |
load_if_exists=True, | |
storage=f'sqlite:///{OPTUNA_DB}' | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment