From 95e1357bf116404406c16d6dfdd93087c62ded5e Mon Sep 17 00:00:00 2001 From: nabenabe0928 Date: Thu, 8 Aug 2024 12:41:48 +0200 Subject: [PATCH] Remove print --- basic_and_faq_usages/simple_artifact_store.py | 1 - 1 file changed, 1 deletion(-) 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.