Implement a Network in Network CNN model using pytorch-lightning #7921
Unanswered
sushmit86
asked this question in
code help: CV
Replies: 2 comments 1 reply
-
@williamFalcon Reaching out to you for help on this |
Beta Was this translation helpful? Give feedback.
0 replies
-
Do I see correctly, you want logits from your forward() but you won't get them, because the last nin block has a relu and the only layers that follows is the avg pool and the flatten. You posted the link to the architecture, they even have code there, so you have to read it carefully and pay attention to how the architecture is built. Check that the inputs range and output range makes sense. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to implement a NiN model. Basically trying to replicate code from d2lbook Here is my code.
After running the code I am only getting an accuracy of 0.1. Not sure where I am going wrong. I have been able to implement other CNN (like VGG) using same template. Not sure where I am going wromg.
Beta Was this translation helpful? Give feedback.
All reactions