projects
/
mygptrnn.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a3abd0f
)
Update.
author
François Fleuret
<francois@fleuret.org>
Sat, 6 Jan 2024 13:43:58 +0000
(14:43 +0100)
committer
François Fleuret
<francois@fleuret.org>
Sat, 6 Jan 2024 13:43:58 +0000
(14:43 +0100)
mygpt.py
patch
|
blob
|
history
diff --git
a/mygpt.py
b/mygpt.py
index
33c6fee
..
7105e97
100755
(executable)
--- a/
mygpt.py
+++ b/
mygpt.py
@@
-441,6
+441,10
@@
class KVRec(nn.Module):
##############################
+# Returns a tensor with an additional index at rank win_dim, that move
+# along the same dimension as dim, on a domain {0...win_size-1}
+
+
def moving_window(x, dim, win_dim, win_size):
size, stride = x.size(), x.stride()
size = size[:dim] + (size[dim] - win_size + 1,) + size[dim + 1 :]