We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello! Greaty results! How to generalization this layer for resneXt network with groups != 1 in conv layers inside Bottleneck block?
groups != 1
The text was updated successfully, but these errors were encountered:
If you are just using partial conv for padding, setting groups = 1 in line https://github.com/NVIDIA/partialconv/blob/master/models/partialconv2d.py#L59 will work even the main convolution's groups is not 1. As what we want is just a reweighting map and the mask channel size is 1. However, if your mask channel size is not 1, you can set the groups to be the main convolution's groups value accordingly, and divide the channel size in https://github.com/NVIDIA/partialconv/blob/master/models/partialconv2d.py#L33 by groups as well.
Sorry, something went wrong.
No branches or pull requests
Hello!
Greaty results! How to generalization this layer for resneXt network with
groups != 1
in conv layers inside Bottleneck block?The text was updated successfully, but these errors were encountered: