cbam_cnn_architectures_image_classification
cbam_cnn_architectures_image_classification copied to clipboard
Spatial and Channel Attention in CNN Architectures for Image Classification task
Results
1
cbam_cnn_architectures_image_classification issues
Sort by
recently updated
recently updated
newest added
Hello there! I was looking at VGG16 with CBAM. From the forward function, I see the following lines of codes ``` def forward(self,x): x = self.features_1(x) scale = torch.nn.functional.sigmoid(self.max_pool_1(x) +...