mlflow-server / start_server.sh
MoritzLaurer's picture
MoritzLaurer HF staff
update
351e031
raw
history blame contribute delete
283 Bytes
#!/bin/bash
# Ensure the /data/mlruns directory exists
mkdir -p /data/mlruns
pip install mlflow~=2.16.1
# Start the MLflow server
mlflow server \
#--backend-store-uri sqlite:////data/mlflow.db \
#--default-artifact-root /data/mlruns \
--host 0.0.0.0 \
--port 7860