First End-to-End Run¶
A condensed checklist for running the full pipeline from scratch. Use this after you have completed the tutorials and want a quick reference.
Prerequisites¶
- Python 3.10 installed.
-
uvinstalled. - Snowflake account with
ACCOUNTADMINaccess. - Repository cloned.
-
.envfiles configured (see Local Setup).
Checklist¶
1. Bootstrap hub¶
2. Seed shared data¶
3. Deploy PUDO project¶
4. Train a model¶
5. Run inference¶
6. Simulate a daily cycle¶
# Morning
make -C mock_data add-morning-data
make -C projects/pudo run-inference
# Evening
make -C mock_data add-evening-data
make -C projects/pudo evaluate-predictions
make -C projects/pudo inference-alerts
make -C projects/pudo inference-summary
7. Repeat or reset¶
# Check status
make -C mock_data simulation-status
# Reset if needed
make -C mock_data reset-simulation
Common issues¶
If something fails, check Troubleshooting.