Skip to content
This repository has been archived by the owner on Nov 14, 2023. It is now read-only.

Import correct MLFlow logger #251

Merged
merged 1 commit into from
Oct 4, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tune_sklearn/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
from collections import defaultdict
from typing import Dict, List

from ray.train.callbacks import MLflowLoggerCallback
from ray.tune import Callback
from sklearn.metrics import check_scoring
from sklearn.pipeline import Pipeline
Expand All @@ -15,6 +14,7 @@
from ray.tune.logger import (Logger, JsonLoggerCallback, CSVLoggerCallback,
TBXLoggerCallback, LegacyLoggerCallback,
LoggerCallback)
from ray.tune.integration.mlflow import MLflowLoggerCallback

try:
from ray.tune.stopper import MaximumIterationStopper
Expand Down