This commit is contained in:
cs
2026-07-20 14:10:12 +03:00
commit 2c07fd63c0
10 changed files with 764 additions and 0 deletions
Executable
+28
View File
@@ -0,0 +1,28 @@
#!/bin/bash
# ============================================================
# Запуск MLflow Tracking Server с SQLite backend
# Откройте в браузере: http://localhost:5000
# ============================================================
set -e
cd "$(dirname "$0")"
echo "🚀 Запускаем MLflow Tracking Server..."
echo " UI: http://10.0.0.7:5000"
echo " DB: sqlite:///mlflow.db"
echo " Artifacts: ./artifacts"
echo ""
echo " Нажмите Ctrl+C для остановки"
echo ""
export MLFLOW_ALLOW_ORIGIN="*"
mlflow server \
--backend-store-uri sqlite:///mlflow.db \
--default-artifact-root ./artifacts \
--serve-artifacts \
--allowed-hosts "*" \
--cors-allowed-origins "*" \
--artifacts-destination ./artifacts \
--host 0.0.0.0 \
--port 5000 \
--dev