Skip to content

Commit 93fc9d9

Browse files
authored
MLflow autologging (#921)
1 parent 49ac689 commit 93fc9d9

File tree

7 files changed

+1023
-0
lines changed

7 files changed

+1023
-0
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ jobs:
2929
run: pip install pymc==${{ env.OLDEST_PYMC_VERSION }}
3030
- name: Run tests
3131
run: |
32+
sudo apt-get install graphviz
3233
pip install -e .[test]
3334
pytest --cov-report=xml --no-cov-on-fail --durations=50
3435
- name: Check oldest version of PyMC

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# MLflow logging
2+
mlruns/
3+
mlruns.db
4+
15
# InferenceData
26
*.nc
37

docs/source/api/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@
1313
model_config
1414
model_builder
1515
prior
16+
mlflow
1617
```

environment.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,4 @@ dependencies:
4444
- pytest==7.0.1
4545
- pytest-cov==3.0.0
4646
- pytest-mock
47+
- mlflow

0 commit comments

Comments
 (0)