X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=mygpt.py;h=f9547972e6a937c02ef299aabf639570b85b111f;hb=0a8ed78035264cd7552b712596e897d6e73b7ef4;hp=7ff10358e77cce589ca9d1d53a5a5682ebb2e451;hpb=c0019b5af155be6a8af02bf71a62c43af1d7a178;p=mygpt.git diff --git a/mygpt.py b/mygpt.py index 7ff1035..f954797 100755 --- a/mygpt.py +++ b/mygpt.py @@ -66,9 +66,9 @@ class QKVAttention(nn.Module): a = torch.einsum('nhtd,nhsd->nhts', q, k) / math.sqrt(q.size(3)) if self.causal: - mask = torch.arange(a.size(2), device = q.device)[None, None, :, None] \ - < torch.arange(a.size(3), device = q.device)[None, None, None, :] - a = a.masked_fill(mask, float('-inf')) + forbidden_attention = torch.arange(a.size(2), device = q.device)[None, None, :, None] \ + < torch.arange(a.size(3), device = q.device)[None, None, None, :] + a = a.masked_fill(forbidden_attention, float('-inf')) a = a.softmax(dim = 3) a = F.dropout(a, self.attention_dropout, self.training) @@ -124,6 +124,14 @@ class MyGPT(nn.Module): self.readout = nn.Linear(in_features = dim_model, out_features = vocabulary_size) + with torch.no_grad(): + for m in self.modules(): + if isinstance(m, nn.Embedding): + m.weight.normal_(mean = 0, std = 2e-2) + elif isinstance(m, nn.LayerNorm): + m.bias.zero_() + m.weight.fill_(1.0) + def forward(self, x): x = F.pad(x, (1, -1)) x = self.embedding(x)