plot_parallel_coordinate

optuna.visualization.plot_parallel_coordinate(study, params=None, *, target=None, target_name='Objective Value')[source]

スタディ内の高次元パラメータ間の関係をプロットします。

注意: パラメータに欠損値が含まれている場合、欠損値のあるトライアルはプロットされません。

Parameters:
  • study (Study) – ターゲット値に基づいてトライアルをプロットする Study オブジェクト。

  • params (list[str] | None) – 可視化するパラメータリスト。デフォルトはすべてのパラメータです。

  • target (Callable[[FrozenTrial], float] | None) –

    表示する値を指定する関数。Nonestudy が単一目的最適化に使用されている場合、目的値がプロットされます。

    Note

    study が多目的最適化に使用されている場合はこの引数を指定します。

  • target_name (str) – 軸ラベルと凡例に表示するターゲットの名前。

Returns:

plotly.graph_objects.Figure オブジェクト。

Return type:

Figure

Note

target 引数が None でない場合、または Studydirectionminimize の場合、カラーマップが反転します。

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)

Gallery generated by Sphinx-Gallery