multilingual-absa / scripts /mlflow_ui.sh
Aryan Mishra
feat: Phase 3 - baseline and XLM-R fine-tuning
119802d
Raw
History Blame Contribute Delete
310 Bytes
#!/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