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
在进行DenseNet剪枝之后,需要继续训练进行finetune,我注意到channel层的index参数是默认配置为nn.Parameter,这种配置默认需要进行训练。在我的理解中,channel_selection层应该是不需要进行训练的,比较迷惑,请问是代码有问题还是我的理解有问题
The text was updated successfully, but these errors were encountered:
channel_selection 虽然为nn.Parameter,但是训练过程中不会update,因为这个parameter只是作为feature map tensor 的index来使用的,所以backpropogation的时候不会有gradient。
Sorry, something went wrong.
请问有没有遇到过channel selection layer加上去后训练速度变慢问题 (不是imagenet训练,是训练其他结构)
No branches or pull requests
在进行DenseNet剪枝之后,需要继续训练进行finetune,我注意到channel层的index参数是默认配置为nn.Parameter,这种配置默认需要进行训练。在我的理解中,channel_selection层应该是不需要进行训练的,比较迷惑,请问是代码有问题还是我的理解有问题
The text was updated successfully, but these errors were encountered: