Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion docs/core_tutorials/using_mlflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,9 @@ generate \
```bash
mlflow ui
# Opens http://localhost:5000

# Sets up UI with tracking from .db
mlflow server --backend-store-uri <sqlite:////path/to/tracking.db>
```


Expand Down Expand Up @@ -283,6 +286,9 @@ generate \
# View experiments
mlflow ui

# Sets up UI with tracking from .db
mlflow server --backend-store-uri <sqlite:////path/to/tracking.db>

# Python queries
python -c "
import mlflow
Expand Down Expand Up @@ -320,5 +326,16 @@ generate --config-path config.yaml --output ./data/val \
--mlflow-experiment-name "my-project"

# 4. Review in UI
mlflow ui
mlflow --backend-store-uri sqlite:///project_mlflow.db"
```

## Troubleshooting

```bash
alembic.util.exc.CommandError: Can't locate revision identified by <revision number>
```

### Solution:
```bash
pip install --upgrade mlflow
```
Loading