Note
Go to the end to download the full example code.
plot_slice
- optuna.visualization.plot_slice(study, params=None, *, target=None, target_name='Objective Value')[source]
スタディのパラメータ間の関係をスライスプロットとして可視化します。
注意: パラメータに欠損値が含まれている場合、欠損値のあるトライアルはプロットされません。
- Parameters:
- Returns:
plotly.graph_objects.Figure
オブジェクト。- Return type:
Figure
The following code snippet shows how to plot the parameter relationship as slice plot.
import optuna
from plotly.io import show
def objective(trial):
x = trial.suggest_float("x", -100, 100)
y = trial.suggest_categorical("y", [-1, 0, 1])
return x**2 + y
sampler = optuna.samplers.TPESampler(seed=10)
study = optuna.create_study(sampler=sampler)
study.optimize(objective, n_trials=10)
fig = optuna.visualization.plot_slice(study, params=["x", "y"])
show(fig)
Total running time of the script: (0 minutes 0.210 seconds)