29 lines
833 B
Bash
Executable File
29 lines
833 B
Bash
Executable File
#!/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
|