Skip to content

Commit

Permalink
Add blank lines
Browse files Browse the repository at this point in the history
  • Loading branch information
HideakiImamura authored and gen740 committed Oct 6, 2023
1 parent 066c8ce commit eb71cfa
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tutorial/20_recipes/011_artifact_tutorial.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit eb71cfa

Please sign in to comment.