mlflow
Installation
SKILL.md
MLflow
Installation
# Install MLflow
pip install mlflow
# Start the tracking UI
mlflow ui --port 5000
# Visit http://localhost:5000
Experiment Tracking
# track_experiment.py — Log parameters, metrics, and artifacts to MLflow
import mlflow
from sklearn.ensemble import RandomForestClassifier
Related skills