Update.
[mygptrnn.git] / mygpt.py
index f10f1fe..7f0fb9b 100755 (executable)
--- a/mygpt.py
+++ b/mygpt.py
@@ -457,7 +457,8 @@ def moving_window(x, dim, win_dim, win_size):
 
 ##############################
 
-# This is one order of magnitude more complicated than I expected
+# This is one order of magnitude more complicated than I expected, not
+# elegant, slow, hopefully not buggy
 
 
 def flash_back_time_src(N, H, t0, t1, CL, CH, proba, device):
@@ -472,8 +473,9 @@ def flash_back_time_src(N, H, t0, t1, CL, CH, proba, device):
     fb_body = fb_body.cumsum(dim=2)
     fb_start = fb_start * (fb_body == 1)
 
-    # t_s = t0-(t0//L * R)*L
-
+    # Set a origin source time (starting time of the chunck to copy
+    # here) We set it as the current time minus a multiple of CL to be
+    # consistent with the "rolling" caterpillar
     t = torch.arange(fb_start.size(2), device=fb_start.device)[None, None, :]
     src_time = fb_start * (
         t