Уроки 6-9: autolog, hyperparam sweep, grid search, serving + MLproject, walkthrough

This commit is contained in:
2026-07-20 15:01:31 +03:00
parent 2c07fd63c0
commit d6a4b46db0
14 changed files with 1248 additions and 95 deletions
+2 -9
View File
@@ -7,22 +7,15 @@ set -e
cd "$(dirname "$0")"
echo "🚀 Запускаем MLflow Tracking Server..."
echo " UI: http://10.0.0.7:5000"
echo " UI: http://localhost: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
--port 5000