#!/bin/bash # ============================================================ # Запуск MLflow Tracking Server с SQLite backend # Откройте в браузере: http://localhost:5000 # ============================================================ set -e cd "$(dirname "$0")" echo "🚀 Запускаем MLflow Tracking Server..." echo " UI: http://localhost:5000" echo " DB: sqlite:///mlflow.db" echo " Artifacts: ./artifacts" echo "" echo " Нажмите Ctrl+C для остановки" echo "" mlflow server \ --backend-store-uri sqlite:///mlflow.db \ --default-artifact-root ./artifacts \ --host 0.0.0.0 \ --port 5000