axolotl2 / src /axolotl /utils /__init__.py
Alignment-Lab-AI's picture
Upload folder using huggingface_hub
1bad0bb verified
raw
history blame contribute delete
136 Bytes
"""
Basic utils for Axolotl
"""
import importlib
def is_mlflow_available():
return importlib.util.find_spec("mlflow") is not None