-
Tensor Manipulation: Manual Convolutional Filter
### Description Understand the mechanics of a 2D convolution by manually applying a 3x3 filter to a small, single-channel image. This exercise helps demystify what happens inside a...
-
Einops: Simulating Grouped Convolution
### Description Grouped convolution divides the input channels into groups and performs a separate convolution on each. You can simulate the tensor rearrangement part of this operation using...
1