kedro-kubeflow icon indicating copy to clipboard operation
kedro-kubeflow copied to clipboard

Plugin only compatible with kedro-mlflow<0.8.0

Open mwiewior opened this issue 3 years ago • 1 comments

def is_mlflow_enabled() -> bool:
    try:
        import mlflow  # NOQA
        from kedro_mlflow.framework.context import get_mlflow_config  # NOQA
        return True
    except ImportError:
        return False

alway throws exception since context package has been moved or refactored

mwiewior avatar Feb 04 '22 15:02 mwiewior