titans-pytorch 0.0.24__tar.gz → 0.0.25__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of titans-pytorch might be problematic. Click here for more details.
- {titans_pytorch-0.0.24 → titans_pytorch-0.0.25}/PKG-INFO +1 -1
- {titans_pytorch-0.0.24 → titans_pytorch-0.0.25}/pyproject.toml +1 -1
- {titans_pytorch-0.0.24 → titans_pytorch-0.0.25}/.github/workflows/python-publish.yml +0 -0
- {titans_pytorch-0.0.24 → titans_pytorch-0.0.25}/.github/workflows/test.yaml +0 -0
- {titans_pytorch-0.0.24 → titans_pytorch-0.0.25}/.gitignore +0 -0
- {titans_pytorch-0.0.24 → titans_pytorch-0.0.25}/LICENSE +0 -0
- {titans_pytorch-0.0.24 → titans_pytorch-0.0.25}/README.md +0 -0
- {titans_pytorch-0.0.24 → titans_pytorch-0.0.25}/data/README.md +0 -0
- {titans_pytorch-0.0.24 → titans_pytorch-0.0.25}/data/enwik8.gz +0 -0
- {titans_pytorch-0.0.24 → titans_pytorch-0.0.25}/fig1.png +0 -0
- {titans_pytorch-0.0.24 → titans_pytorch-0.0.25}/fig2.png +0 -0
- {titans_pytorch-0.0.24 → titans_pytorch-0.0.25}/requirements.txt +0 -0
- {titans_pytorch-0.0.24 → titans_pytorch-0.0.25}/tests/test_titans.py +0 -0
- {titans_pytorch-0.0.24 → titans_pytorch-0.0.25}/titans_pytorch/__init__.py +0 -0
- {titans_pytorch-0.0.24 → titans_pytorch-0.0.25}/titans_pytorch/associative_scan.py +0 -0
- {titans_pytorch-0.0.24 → titans_pytorch-0.0.25}/titans_pytorch/titans.py +1 -1
- {titans_pytorch-0.0.24 → titans_pytorch-0.0.25}/titans_pytorch/titans_attn_memory.py +0 -0
- {titans_pytorch-0.0.24 → titans_pytorch-0.0.25}/train.py +0 -0
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -136,6 +136,7 @@ class NeuralMemory(Module):
|
|
136
136
|
)
|
137
137
|
):
|
138
138
|
super().__init__()
|
139
|
+
dim_head = default(dim_head, dim)
|
139
140
|
|
140
141
|
# norms
|
141
142
|
|
@@ -146,7 +147,6 @@ class NeuralMemory(Module):
|
|
146
147
|
|
147
148
|
# maybe multi-headed
|
148
149
|
|
149
|
-
dim_head = default(dim_head, dim)
|
150
150
|
dim_inner = dim_head * heads
|
151
151
|
|
152
152
|
self.heads = heads
|
File without changes
|
File without changes
|