mirror of
https://github.com/MLSysBook/TinyTorch.git
synced 2026-04-25 20:27:31 -05:00
Changes: - Removed broken _SimplifiedTensor and internal Module helper classes - Updated imports to use tinytorch.core instead of dev modules - Removed Module inheritance from Conv2d, MaxPool2d, AvgPool2d, SimpleCNN - All spatial classes now standalone like Linear in layers module This allows spatial module to export cleanly and import correctly: from tinytorch.core.spatial import Conv2d, MaxPool2d, AvgPool2d Smoke test: Conv2d(1,3,8,8) → (1,16,6,6) ✓