Increase limit on logit for SimpleCombiner to 25.0
This commit is contained in:
parent
e5fe3de17e
commit
3298e18732
@ -726,7 +726,7 @@ class SimpleCombiner(torch.nn.Module):
|
|||||||
|
|
||||||
if self.training and random.random() < 0.1:
|
if self.training and random.random() < 0.1:
|
||||||
logit = penalize_abs_values_gt(logit,
|
logit = penalize_abs_values_gt(logit,
|
||||||
limit=10.0,
|
limit=25.0,
|
||||||
penalty=1.0e-04)
|
penalty=1.0e-04)
|
||||||
weight = logit.sigmoid()
|
weight = logit.sigmoid()
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user