Vijay Janapa Reddi
884f024743
Fix NBGrader metadata for Modules 15 and 16
...
Module 15 (Quantization):
- Added locked=true to test_module cell (line 1523)
- Added NBGrader metadata to systems-thinking markdown cell (line 1751)
- Added schema_version: 3 to both cells
Module 16 (Compression):
- Added NBGrader metadata to 6 solution cells:
* measure-sparsity (line 380)
* magnitude-prune (line 511)
* structured-prune (line 675)
* low-rank-approx (line 843)
* distillation (line 1013)
* compress-model-comprehensive (line 1234)
- Added NBGrader metadata to 6 test cells:
* test-measure-sparsity (line 427) - 5 points
* test-magnitude-prune (line 567) - 10 points
* test-structured-prune (line 733) - 10 points
* test-low-rank (line 888) - 10 points
* test-distillation (line 1133) - 15 points
* test-compression-integration (line 1300) - 20 points
- Total: 70 points for Module 16
Result:
- Module 15: 0 P0-BLOCKER, 0 P1-IMPORTANT (was 1 P0 + 1 P1)
- Module 16: 0 P0-BLOCKER, 0 P1-IMPORTANT (was 12 P0)
- Both modules now production-ready for NBGrader deployment(https://claude.com/claude-code )
2025-11-11 14:50:37 -05:00
Vijay Janapa Reddi
e456f438e7
Remove redundant review documentation
...
Removed redundant and superseded review reports:
- Module 15: COMPREHENSIVE_REVIEW_REPORT.md, FINAL_VALIDATION_REPORT.md, REVIEW_SUMMARY.md
- Docs: RESTRUCTURING_VERIFICATION.md, book-development/CLEANUP_SUMMARY.md
Also removed untracked files:
- Module 11: REVIEW_REPORT_FINAL.md (superseded by REVIEW_REPORT.md)
- Module 12: REVIEW_SUMMARY.md (redundant with REVIEW_REPORT.md)
- Module 20: COMPLIANCE_CHECKLIST.md (redundant with REVIEW_REPORT.md)
- Module 6, 8, 14, 18: COMPLIANCE_SUMMARY.md and QUICK_SUMMARY.md files
Retained comprehensive REVIEW_REPORT.md files which contain the most complete QA documentation.
2025-11-11 12:15:36 -05:00
Vijay Janapa Reddi
f7dcbc8505
Remove temporary analysis files from modules
...
Cleaned up temporary AI-generated analysis files:
- modules/15_quantization/FIXES_APPLIED.md
- modules/15_quantization/FIXES_TO_APPLY.md
- modules/16_compression/FIXES_REQUIRED.md
- modules/17_memoization/FIXES_APPLIED.md
- Plus other untracked analysis files
These were temporary debugging/review artifacts. Now covered by
.gitignore patterns to prevent future accumulation.
2025-11-10 19:50:43 -05:00
Vijay Janapa Reddi
a5679de141
Update documentation after module reordering
...
All module references updated to reflect new ordering:
- Module 15: Quantization (was 16)
- Module 16: Compression (was 17)
- Module 17: Memoization (was 15)
Updated by module-developer and website-manager agents:
- Module ABOUT files with correct numbers and prerequisites
- Cross-references and "What's Next" chains
- Website navigation (_toc.yml) and content
- Learning path progression in LEARNING_PATH.md
- Profile milestone completion message (Module 17)
Pedagogical flow now: Profile → Quantize → Prune → Cache → Accelerate
2025-11-10 19:37:41 -05:00
Vijay Janapa Reddi
5f3591a57b
Reorder modules for better pedagogical flow
...
Moved memoization (KV-cache) after compression to align with optimization tier milestones.
Changes:
- Module 15: Quantization (was 16)
- Module 16: Compression (was 17)
- Module 17: Memoization (was 15)
Pedagogical Rationale:
This creates clear alignment with the optimization milestone structure:
- M06 (Profiling): Module 14
- M07 (Compression): Modules 15-16 (Quantization + Compression)
- M08 (Acceleration): Modules 17-18 (Memoization/KV-cache + Acceleration)
Before: Students learned KV-cache before understanding why models are slow
After: Students profile → compress → then optimize with KV-cache
Updated milestone reference in profile_kv_cache.py: Module 15 → Module 17
2025-11-10 19:29:10 -05:00