Skip to content

Commit

Permalink
Merge pull request #5413 from nabenabe0928/remove-experimental-from-plot
Browse files Browse the repository at this point in the history
Remove experimental from plot
  • Loading branch information
not522 committed Apr 25, 2024
2 parents 1c19fd6 + 1220c44 commit 34c24d0
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions optuna/visualization/_rank.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

import numpy as np

from optuna._experimental import experimental_func
from optuna.logging import get_logger
from optuna.samplers._base import _CONSTRAINTS_KEY
from optuna.study import Study
Expand Down Expand Up @@ -64,7 +63,6 @@ class _RankPlotInfo(NamedTuple):
has_custom_target: bool


@experimental_func("3.2.0")
def plot_rank(
study: Study,
params: list[str] | None = None,
Expand Down
2 changes: 0 additions & 2 deletions optuna/visualization/_timeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import datetime
from typing import NamedTuple

from optuna._experimental import experimental_func
from optuna.logging import get_logger
from optuna.samplers._base import _CONSTRAINTS_KEY
from optuna.study import Study
Expand Down Expand Up @@ -31,7 +30,6 @@ class _TimelineInfo(NamedTuple):
bars: list[_TimelineBarInfo]


@experimental_func("3.2.0")
def plot_timeline(study: Study) -> "go.Figure":
"""Plot the timeline of a study.
Expand Down

0 comments on commit 34c24d0

Please sign in to comment.