Уроки 6-9: autolog, hyperparam sweep, grid search, serving + MLproject, walkthrough
This commit is contained in:
+2
-9
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user