diff --git a/basic_and_faq_usages/simple_artifact_store.py b/basic_and_faq_usages/simple_artifact_store.py index 5d9bc13d..2fdfe6aa 100644 --- a/basic_and_faq_usages/simple_artifact_store.py +++ b/basic_and_faq_usages/simple_artifact_store.py @@ -55,7 +55,6 @@ def objective(trial): b = trial.suggest_float("b", -5, 5) with tempfile.TemporaryDirectory() as tmp_dir: - print(tmp_dir) plot_predictions(a, b, trial, tmp_dir) fig_path = os.path.join(tmp_dir, fig_name) # Link the plotted figure with trial using artifact store API.