From eb71cfafa895ae57e946d9b573cb42cfcb585c71 Mon Sep 17 00:00:00 2001 From: HideakiImamura Date: Mon, 2 Oct 2023 14:40:57 +0900 Subject: [PATCH] Add blank lines --- tutorial/20_recipes/011_artifact_tutorial.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tutorial/20_recipes/011_artifact_tutorial.py b/tutorial/20_recipes/011_artifact_tutorial.py index b2d4483f3f..2457aab762 100644 --- a/tutorial/20_recipes/011_artifact_tutorial.py +++ b/tutorial/20_recipes/011_artifact_tutorial.py @@ -146,6 +146,7 @@ def objective(trial: optuna.Trial) -> float: best_artifact_id = study.best_trial.user_attrs.get("artifact_id") with artifact_store.open_reader(best_artifact_id) as f: content = f.read().decode("utf-8") + print(content) Scenario 2: Remote MySQL RDB server + AWS S3 artifact store @@ -226,6 +227,7 @@ def objective(trial: optuna.Trial) -> float: best_artifact_id = study.best_trial.user_attrs.get("artifact_id") with artifact_store.open_reader(best_artifact_id) as f: content = f.read().decode("utf-8") + print(content) Example: Optimization of Chemical Structures