Created
September 12, 2017 14:08
-
-
Save czs0x55aa/f0d0ede221aaee3307a409cccea7dcf1 to your computer and use it in GitHub Desktop.
print model parameters in pytorch
This file contains 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.state_dict().items(): | |
print(name, param.size()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment