X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?a=blobdiff_plain;f=mygpt.py;h=6e13ff878bae27c818d337a53a413f3ce1a35180;hb=aa09a883611d6e323b4e8e678b867097fc13afaf;hp=21ae73901d2525f9865ed48694f6a48dccb461a2;hpb=aad820c7d81e962b5f6459093fe558126198f1ed;p=mygptrnn.git diff --git a/mygpt.py b/mygpt.py index 21ae739..6e13ff8 100755 --- a/mygpt.py +++ b/mygpt.py @@ -656,36 +656,50 @@ class Caterpillar(nn.Module): self.rec_K[:, :, t0:t1] = next_K.flatten(2, 3) if self.training and self.proba_flashback: - insert_flash_back( - self.rec_V, - V, - self.rec_K, - K, - t0, - t1, - CL, - proba=self.proba_flashback / CL, - ) + # This piece of code makes the assumption that there is + # nothing informative before t0, otherwise we'd have to + # implement a cache for V and K too. This should not be + # too much of a problem since this is used only during + # train, where full sequence are available + + # insert_flash_back( + # self.rec_V, + # V, + # self.rec_K, + # K, + # t0, + # t1, + # CL, + # proba=self.proba_flashback / CL, + # ) - # n = torch.arange(N, device=X.device)[:, None, None, None] - # t = torch.arange(t0, t1, device=X.device)[None, None, :, None] - # dv = torch.arange(DV)[None, None, None, :] - # dk = torch.arange(DK)[None, None, None, :] + n = torch.arange(N, device=X.device)[:, None, None, None] + t = torch.arange(t0, t1, device=X.device)[None, None, :, None] + dv = torch.arange(DV, device=X.device)[None, None, None, :] + dk = torch.arange(DK, device=X.device)[None, None, None, :] - # u = ( - # torch.rand(N, CH, t1 - t0, 1, device=X.device).mul(t).long() // CL - # ) * CL + u = ( + torch.rand(N, CH, t1 - t0, 1, device=X.device).mul(t).long() // CL + ) * CL - # src_time = t - u - t0 - # src_head = torch.randint(H, (N, CH, t1 - t0, 1), device=X.device) + src_time = t - u - t0 + src_head = torch.randint(H, (N, CH, t1 - t0, 1), device=X.device) - # mk = ( - # torch.rand(self.rec_V[:, :, t0:t1].size()) <= self.proba_flashback - # ).long() - # self.rec_V[:, :, t0:t1] = V[n, src_head, src_time, dv] - # self.rec_K[:, :, t0:t1] = K[n, src_head, src_time, dk] + mask_V = ( + torch.rand(N, CH, t1 - t0, DV, device=X.device) <= self.proba_flashback + ).long() + self.rec_V[:, :, t0:t1] = ( + mask_V * V[n, src_head, src_time, dv] + + (1 - mask_V) * self.rec_V[:, :, t0:t1] + ) - exit(0) + mask_K = ( + torch.rand(N, CH, t1 - t0, DK, device=X.device) <= self.proba_flashback + ).long() + self.rec_K[:, :, t0:t1] = ( + mask_K * K[n, src_head, src_time, dk] + + (1 - mask_K) * self.rec_K[:, :, t0:t1] + ) ###################################################################### # compute the readout