Disabled Softmax

This commit is contained in:
Christian Risi 2025-10-09 11:36:56 +02:00
parent 1f9c30b531
commit ba592c3480

View File

@ -14,6 +14,6 @@ class DeToken(torch.nn.Module):
x = self.__linear(x)
# 2) Go to logits
x = torch.softmax(x, 2)
# x = torch.softmax(x, 2)
return x