context-gated-convolution
context-gated-convolution copied to clipboard
Implementation for Context-Gated Convolution
Results
2
context-gated-convolution issues
Sort by
recently updated
recently updated
newest added
Nice work! I wonna use context-gated-convolution in action recgnition. I noticed that you use torch.nn.Unfold in layer.py, and it needs a 4-D input(batch x channel x height x width). But...
Hello, I would like to ask you what is the purpose of using a pooling layer to make the feature map of h*w into h'*w'? AdaptiveAvgPool2d((ws,ws)) in the code you...