Examples demonstrating ModelOps/Calabaria workflows for different modeling frameworks.
Before running any example, ensure you have:
-
Azure CLI installed and authenticated
az login
-
ModelOps initialized
mops init
-
Infrastructure running (if using cloud execution)
mops infra up
EMOD malaria model calibration using prevalence-by-age targets with KL divergence loss.
Each example follows a similar pattern:
cd <example-name>
# 1. Install dependencies
uv sync
# 2. Register models and targets
mops bundle register-model models/<model>.py
mops bundle register-target targets/<target>.py
# 3. Generate study
# (using calabaria sampling commands)
# 4. Push bundle
mops bundle push
# 5. Submit job
mops jobs submit study.jsonSee individual example README files for specific commands.