From fbe26384068550149ce35a65e05a2acc1c718e6d Mon Sep 17 00:00:00 2001 From: Shuhei Watanabe <47781922+nabenabe0928@users.noreply.github.com> Date: Fri, 16 Aug 2024 09:30:36 +0200 Subject: [PATCH] Update basic/artifact_store.py Co-authored-by: Naoto Mizuno --- basic/artifact_store.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basic/artifact_store.py b/basic/artifact_store.py index c521fb1e..62c8bb35 100644 --- a/basic/artifact_store.py +++ b/basic/artifact_store.py @@ -29,7 +29,7 @@ dataset_path = "demo-dataset.csv" fig_name = "result-trial.png" # NOTE: The uploaded artifacts can be viewed in Optuna Dashboard with the following command: -# $ optuna-dashboard sqlite:///artifact-demo.db --artifact-dir ./save-artifact-here +# $ optuna-dashboard sqlite:///simple-artifact-store-demo.db --artifact-dir ./save-artifact-here base_path = "./save-artifact-here" # Make the directory used for artifact store. os.makedirs(base_path, exist_ok=True)