Spaces:
Runtime error
Runtime error
File size: 310 Bytes
119802d | 1 2 3 4 5 6 7 8 9 10 11 | #!/usr/bin/env bash
# Script to launch MLflow UI
# Use sqlite backend as specified
# Ensure the directory exists
mkdir -p mlflow
echo "Starting MLflow UI with SQLite backend..."
echo "Access the UI at http://localhost:5000"
mlflow ui --backend-store-uri sqlite:///mlflow/mlflow.db --host 0.0.0.0 --port 5000
|