mnist-digit-classifier / scripts /launch_mlflow_ui.sh
faizan
feat: implement comprehensive MLflow tracking with MLOps best practices
33beec1
raw
history blame contribute delete
311 Bytes
#!/bin/bash
# Launch MLflow UI dashboard
#
# Usage:
# ./scripts/launch_mlflow_ui.sh
#
# Access at: http://localhost:5000
echo "Starting MLflow UI..."
echo "Access dashboard at: http://localhost:5000"
echo "Press Ctrl+C to stop"
echo ""
mlflow ui --backend-store-uri file:./mlruns --host 0.0.0.0 --port 5000