Last active
August 12, 2019 18:14
-
-
Save n0obcoder/31a23a8cd2db69148f8a938607684cd3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for name, param in model_new.named_parameters(): | |
| print(name, ':', param.requires_grad) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sequential.0.weight : False | |
| sequential.0.bias : False | |
| sequential.1.weight : False | |
| sequential.1.bias : False | |
| layer1.weight : False | |
| layer1.bias : False | |
| layer2.weight : False | |
| layer2.bias : False | |
| fc.weight : True | |
| fc.bias : True |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment