From: Francois Fleuret Date: Sat, 30 Jul 2022 08:32:20 +0000 (+0200) Subject: Update. X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=mygpt.git;a=commitdiff_plain;h=c0019b5af155be6a8af02bf71a62c43af1d7a178 Update. --- diff --git a/mygpt.py b/mygpt.py index 954f4f0..7ff1035 100755 --- a/mygpt.py +++ b/mygpt.py @@ -125,11 +125,10 @@ class MyGPT(nn.Module): self.readout = nn.Linear(in_features = dim_model, out_features = vocabulary_size) def forward(self, x): - x = F.pad(x, (1, 0)) + x = F.pad(x, (1, -1)) x = self.embedding(x) x = self.trunk(x) x = self.readout(x) - x = F.pad(x, (0, 0, 0, -1)) return x ######################################################################