You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Expand temperature to match the size of logits
temperature = self.temperature.unsqueeze(1).expand(logits.size(0), logits.size(1))
return logits / temperature
Why not just doing something like
return logits / self.temperature
The text was updated successfully, but these errors were encountered:
In your code
Why not just doing something like
The text was updated successfully, but these errors were encountered: