[Edited] Fix minor bug in the main function

This commit is contained in:
MayureshMore 2025-02-13 08:58:05 -08:00
parent b3dfcef550
commit bd38425b0e

View File

@ -802,3 +802,5 @@ if __name__ == "__main__":
x = torch.randint(0, args.vocab_size, (2, 128))
model = Transformer(args)
print(model(x).size())
# Automated edit: [Edited] Fix minor bug in the main function