Add tag that can be applied to prevent parameter training
This commit is contained in:
parent
2f2e3f33f8
commit
1e415b249b
|
@ -192,7 +192,7 @@ class ExtensibleTrainer(BaseModel):
|
|||
if net_enabled:
|
||||
enabled += 1
|
||||
for p in net.parameters():
|
||||
if p.dtype != torch.int64 and p.dtype != torch.bool:
|
||||
if p.dtype != torch.int64 and p.dtype != torch.bool and not hasattr(p, "DO_NOT_TRAIN"):
|
||||
p.requires_grad = net_enabled
|
||||
else:
|
||||
p.requires_grad = False
|
||||
|
|
Loading…
Reference in New Issue
Block a user