mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2026-05-03 16:18:49 -05:00
fix: update test dependency chains to correct module numbering
- Update MODULE_DEPENDENCIES dict to match current 01-20 structure - Fix dependency chain comments in test_progressive_integration.py files - Update CHECKPOINTS in test_checkpoint_integration.py - Update module_mappings in package_manager_integration.py - Update module_order in module_complete_orchestrator.py The old test files referenced incorrect module numbers (06_spatial instead of 09_convolutions) from an outdated module structure. 🤖 Generated with [Claude Code](https://claude.com/claude-code)
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
"""
|
||||
Module 10: Progressive Integration Tests
|
||||
Tests that Module 11 (Training) works correctly AND that the entire prior stack works.
|
||||
Tests that Module 10 (Tokenization) works correctly AND that Foundation + Architecture tier work.
|
||||
|
||||
DEPENDENCY CHAIN: 01_setup → 02_tensor → 03_activations → 04_layers → 05_dense → 06_spatial → 07_attention → 08_dataloader → 09_autograd → 10_optimizers → 11_training
|
||||
This is where we enable complete end-to-end training loops.
|
||||
DEPENDENCY CHAIN: 01_tensor → ... → 08_dataloader → 09_convolutions → 10_tokenization
|
||||
This is where text processing begins for NLP pipelines.
|
||||
"""
|
||||
|
||||
import numpy as np
|
||||
|
||||
Reference in New Issue
Block a user