From d417fa1d5d588177170df747d6c2108268e66eec Mon Sep 17 00:00:00 2001 From: syropiatovvv Date: Sat, 22 Nov 2025 15:01:08 +0300 Subject: [PATCH] =?UTF-8?q?fix:=20=D0=9D=D0=B5=20=D1=83=D0=B4=D0=B0=D0=B5?= =?UTF-8?q?=D1=82=D1=81=D1=8F=20=D0=BF=D1=80=D0=B8=D0=B2=D1=8F=D0=B7=D0=B0?= =?UTF-8?q?=D1=82=D1=8C=20=D0=B0=D1=80=D0=B3=D1=83=D0=BC=D0=B5=D0=BD=D1=82?= =?UTF-8?q?=20=D0=BA=20=D0=BF=D0=B0=D1=80=D0=B0=D0=BC=D0=B5=D1=82=D1=80?= =?UTF-8?q?=D1=83=20"Path",=20=D1=82=D0=B0=D0=BA=20=D0=BA=D0=B0=D0=BA=20?= =?UTF-8?q?=D0=BE=D0=BD=20=D0=B8=D0=BC=D0=B5=D0=B5=D1=82=20=D0=B7=D0=BD?= =?UTF-8?q?=D0=B0=D1=87=D0=B5=D0=BD=D0=B8=D0=B5=20NULL.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- run_mlflow_server.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_mlflow_server.ps1 b/run_mlflow_server.ps1 index 014edbb..91e668b 100644 --- a/run_mlflow_server.ps1 +++ b/run_mlflow_server.ps1 @@ -6,7 +6,7 @@ $DEFAULT_ARTIFACT_ROOT = "./mlflow/mlartifacts/" $MLFLOW_PORT = if ($env:MLFLOW_PORT) { $env:MLFLOW_PORT } else { 5000 } -New-Item -ItemType Directory -Force -Path $DEFAULT_ARTIFACTS_ROOT | Out-Null +New-Item -ItemType Directory -Force -Path $DEFAULT_ARTIFACT_ROOT | Out-Null & mlflow server ` --backend-store-uri="$BACKEND_URI" `