Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save n0obcoder/9b70c73065734d4ee189ea15e82a3fbd to your computer and use it in GitHub Desktop.

Select an option

Save n0obcoder/9b70c73065734d4ee189ea15e82a3fbd to your computer and use it in GitHub Desktop.
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