MamaPearl commited on
Commit
4df515c
·
verified ·
1 Parent(s): d1156d8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -4
README.md CHANGED
@@ -141,9 +141,9 @@ BlurPool2d introduces a low-pass filter before subsampling:
141
 
142
  - x → (low-pass filter) → subsample
143
 
144
- The filter is a normalized binomial kernel [1, 2, 1] ⊗ [1, 2, 1], applied depthwise: one filter per channel, no cross-channel mixing.
145
 
146
- This enforces approximate band-limitedness prior to resolution reduction, reducing aliasing artifacts and making feature extraction more stable under downsampling.
147
 
148
  ### Squeeze-and-Excitation (SE) blocks
149
 
@@ -153,8 +153,7 @@ SE blocks perform channel-wise reweighting.
153
 
154
  - x → s ⊙ x
155
 
156
- The bottleneck dimension is max(C // r, 1) where r = 16, keeping the recalibration
157
- lightweight relative to the feature dimension.
158
 
159
  The network learns to suppress channels that carry unstable high-frequency information
160
  and amplify channels that carry structurally stable features.
 
141
 
142
  - x → (low-pass filter) → subsample
143
 
144
+ The filter is a normalized fixed binomial kernel [1, 2, 1] ⊗ [1, 2, 1], applied depthwise: one filter per channel with no cross-channel mixing.
145
 
146
+ This enforces approximate band-limitedness prior to resolution reduction. It reduces aliasing artifacts and makes feature extraction more stable under downsampling.
147
 
148
  ### Squeeze-and-Excitation (SE) blocks
149
 
 
153
 
154
  - x → s ⊙ x
155
 
156
+ The bottleneck dimension is max(C // r, 1) where r = 16, keeping the recalibration lightweight relative to the feature dimension.
 
157
 
158
  The network learns to suppress channels that carry unstable high-frequency information
159
  and amplify channels that carry structurally stable features.