[Task]: MlFlow support #1206
-
What is the motivation for this task?We are using MlFlow. Is it planned to support sending logs to mlflow? Describe the solution you'd like logger: mlflow Additional contextNo response |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
@Ravio1i , to do this, we just need to implement the It would inherit Anomalib's from pytorch_lightning.loggers import Mlflow
from anomalib.utils.loggers.base import ImageLoggerBase
class AnomalibMlflow(ImageLoggerBase, Mlflow):
def __init__():
...
@rank_zero_only
def add_image(self, image: np.ndarray | Figure, name: str | None = None, **kwargs: Any):
... |
Beta Was this translation helpful? Give feedback.
-
Closing this as it is being addressed here #1759 |
Beta Was this translation helpful? Give feedback.
Closing this as it is being addressed here #1759