Renames "Spatial" module to "Convolutions"

Refactors the module name from "Spatial" to "Convolutions" to better reflect its content and purpose, which focuses on convolutional neural networks.

This change ensures consistency and clarity across the codebase, documentation, and examples.
This commit is contained in:
Vijay Janapa Reddi
2025-12-17 07:35:32 -05:00
parent aba848b153
commit ea246cf4e2
25 changed files with 31 additions and 31 deletions

View File

@@ -7,7 +7,7 @@ This test validates that modules 1-11 work together for CNN image classification
Required modules:
- Module 01-08: Core MLP functionality (from MNIST test)
- Module 09: Spatial operations (Conv2d, MaxPool2d)
- Module 09: Convolutions (Conv2d, MaxPool2d)
- Module 10: DataLoader for efficient batch processing
- Module 11: CNN training capabilities