Note
Go to the end to download the full example code.
plot_parallel_coordinate
- optuna.visualization.plot_parallel_coordinate(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 high-dimensional parameter relationships.
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_parallel_coordinate(study, params=["x", "y"])
show(fig)
Total running time of the script: (0 minutes 1.800 seconds)