twodgirl commited on
Commit
46d646d
1 Parent(s): e9f21ca

Update comment.

Browse files
Files changed (1) hide show
  1. tea_model.py +1 -1
tea_model.py CHANGED
@@ -56,7 +56,7 @@ class TeaDecoder(nn.Module):
56
 
57
 
58
  def forward(self, x):
59
- # Clamp the input values to a specific range, between -3 and 3.
60
  clamped = torch.tanh(x / 1)
61
  cooked = self.middle(self.block_in(clamped))
62
 
 
56
 
57
 
58
  def forward(self, x):
59
+ # Clamp the input values to a specific range.
60
  clamped = torch.tanh(x / 1)
61
  cooked = self.middle(self.block_in(clamped))
62