Spaces:
Paused
Paused
File size: 283 Bytes
497d05e 20cdb57 497d05e cc9baa0 351e031 7b378bf 497d05e 34986f7 cc9baa0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#!/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
|