File size: 136 Bytes
057fa44
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
"""
Basic utils for Axolotl
"""
import importlib


def is_mlflow_available():
    return importlib.util.find_spec("mlflow") is not None