Skip to content

Commit

Permalink
Apply formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
nabenabe0928 committed Aug 3, 2024
1 parent 8fa804f commit ac13fa3
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions basic_and_faq_usages/simple_artifact_store.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
import os

import matplotlib.pyplot as plt

import numpy as np

import optuna
from optuna.artifacts import FileSystemArtifactStore
from optuna.artifacts import download_artifact
from optuna.artifacts import FileSystemArtifactStore
from optuna.artifacts import get_all_artifact_meta
from optuna.artifacts import upload_artifact

import pandas as pd


Expand Down Expand Up @@ -70,7 +67,7 @@ def show_best_result(study, artifact_store):
best_result_img = plt.imread(fig_path)
plt.figure()
plt.tick_params(labelleft=False, labelbottom=False, left=False, bottom=False)
plt.imshow(best_result_img)
plt.imshow(best_result_img)
plt.show()


Expand Down

0 comments on commit ac13fa3

Please sign in to comment.