X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?a=blobdiff_plain;f=mygpt.py;h=4951460655929a986949af77471b97911bf77592;hb=3213c09efcad2d5d069730fe590a5b7649b1271b;hp=7bf25b55ba4400923215c7dced5a55052ac1488f;hpb=95d8b6bc41a753f7a12b2a4cd047ea11cdc2054f;p=mygpt.git diff --git a/mygpt.py b/mygpt.py index 7bf25b5..4951460 100755 --- a/mygpt.py +++ b/mygpt.py @@ -41,24 +41,25 @@ class PositionalEncoding(nn.Module): ############################## class QKVAttention(nn.Module): - def __init__(self, dim_in, dim_qk, dim_v, nb_heads = 1, causal = False, attention_dropout = 0.0): + def __init__(self, dim_in, dim_qk, dim_v, + nb_heads = 1, causal = False, attention_dropout = 0.0): super().__init__() def randw(*d): return nn.Parameter(torch.empty(*d).normal_(0, 1 / math.sqrt(d[-1]))) - self.wq = randw(nb_heads, dim_qk, dim_in) - self.wk = randw(nb_heads, dim_qk, dim_in) - self.wv = randw(nb_heads, dim_v, dim_in) + self.w_q = randw(nb_heads, dim_qk, dim_in) + self.w_k = randw(nb_heads, dim_qk, dim_in) + self.w_v = randw(nb_heads, dim_v, dim_in) self.causal = causal self.attention_dropout = attention_dropout - def forward(self, x): - q = torch.einsum('ntc,hdc->nhtd', x, self.wq) - k = torch.einsum('ntc,hdc->nhtd', x, self.wk) - v = torch.einsum('ntc,hdc->nhtd', x, self.wv) - r = math.sqrt(q.size(3)) - a = torch.einsum('nhtd,nhsd->nhts', q, k).div(r) + def forward(self, x_q, x_kv = None): + if x_kv is None: x_kv = x_q + q = torch.einsum('ntc,hdc->nhtd', x_q, self.w_q) + k = torch.einsum('ntc,hdc->nhtd', x_kv, self.w_k) + v = torch.einsum('ntc,hdc->nhtd', x_kv, self.w_v) + a = torch.einsum('nhtd,nhsd->nhts', q, k) / math.sqrt(q.size(3)) if self.causal: mask = torch.tril(q.new_ones(a.size(2), a.size(3)))[None, None, :, :] == 0 a = a.masked_fill(mask, float('-inf')) @@ -119,3 +120,18 @@ class MyGPT(nn.Module): return x ###################################################################### + +if __name__ == '__main__': + vocabulary_size = 10 + x = torch.randint(vocabulary_size, (25, 100)) + + model = MyGPT( + vocabulary_size = vocabulary_size, + dim_model = 16, dim_keys = 50, dim_hidden = 100, + nb_heads = 2, nb_blocks = 3, + dropout = 0.1 + ) + + y = model(x) + +######################################################################