mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2026-03-11 17:49:25 -05:00
Move DataLoader from position 08 to 05, cascading renumbers: - 08_dataloader → 05_dataloader - 05_autograd → 06_autograd - 06_optimizers → 07_optimizers - 07_training → 08_training Addresses module dependency reorganization to place DataLoader earlier in the learning path (before autograd).
14 lines
391 B
Python
14 lines
391 B
Python
"""
|
|
Autograd-specific edge case tests.
|
|
|
|
These tests focus on the autograd module's internal behavior:
|
|
- Broadcasting in gradients (common bug source)
|
|
- Computation graph construction
|
|
- Numerical stability in backward pass
|
|
- Memory management in gradient accumulation
|
|
- Edge cases students encounter
|
|
|
|
Complements the inline tests in the autograd module with
|
|
focused edge case validation.
|
|
"""
|