Skip to content
Discussion options

You must be logged in to vote

Hi, thank you for interest in our research.
For structural pruning (resampling) of a neural network we build a list of IntegralGroups. Two parameters belong to the same group if they have a common sampling grid. Example, if you have two sequential convolutional layers conv_1 and conv_2, then conv_1.weight dim=0, conv_1.bias dim=0, conv_2.weight dim=1 belong to the same group. In residual block of the ResNet that looks like conv_2(conv_1(x)) + x (I skipped the activation functions) we have conv_1.weight dim=0, conv_1.bias dim=0, conv_2.weight dim=1 belong to the same group and the other group includes conv_1.weight dim=1 and conv_2.weight dim=0, conv_2.bias dim=0, because input size of conv_1

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
1 reply
@dtdo90
Comment options

Answer selected by dtdo90
Comment options

You must be logged in to vote
1 reply
@dtdo90
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants