-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
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
visualize CSP ResNet50 network #1
Comments
Darknet supports an operation named partial residual connection, so the channels number is not have to be same in the shortcut,that's the darknet cspresnet don't have a downsample layer before shortcut to make -1 and -4 have the same channels number.About this issue you can read more about it at WongKinYiu/CrossStagePartialNetworks#13. |
@Knight825 I had installed csp resnet50 based on resnet50 installed by pytorch. So, in pytorch, the implemention used linear activations. I also had printed size of tensor in csp resnet architecture and relized that only need downsample in the first block of Bottleneck
|
This is my code |
I think the model is a real cspresnet which is followed the cross stage partial law. |
Which "the model" do you mean @Knight825? |
|
@Knight825 I also built csp resnet50 from
csresnet.cfg
file inhttps://github.com/WongKinYiu/CrossStagePartialNetworks
repo. And i didn't know that is it correct. Could you help me to check? Thank you.The text was updated successfully, but these errors were encountered: