File size: 567 Bytes
495526b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# MLOps Guide

## Tracking

- MLflow: experiment runs, parameters, artifacts
- Weights & Biases: run dashboards and collaboration

Set environment variables in `.env`:

- `MLFLOW_TRACKING_URI`
- `WANDB_PROJECT`
- `WANDB_ENTITY`

## CI/CD

GitHub Actions workflows include:

- `ci.yml` for lint, test, frontend build
- `publish-huggingface.yml` for manual release to Hugging Face

## Recommended Extensions

- Add model regression benchmarks in CI
- Add vulnerability scans (e.g., Trivy, pip-audit, npm audit)
- Add staged deployment environments (dev, staging, prod)