Last active
August 13, 2019 06:51
-
-
Save n0obcoder/9b70c73065734d4ee189ea15e82a3fbd 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.named_parameters(): | |
| if name in ['fc.weight', 'fc.bias']: | |
| param.requires_grad = True | |
| else: | |
| param.requires_grad = False |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment