titans-pytorch 0.0.34__tar.gz → 0.0.35__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.

Files changed (20) hide show
  1. {titans_pytorch-0.0.34 → titans_pytorch-0.0.35}/PKG-INFO +1 -1
  2. {titans_pytorch-0.0.34 → titans_pytorch-0.0.35}/pyproject.toml +1 -1
  3. {titans_pytorch-0.0.34 → titans_pytorch-0.0.35}/titans_pytorch/__init__.py +2 -0
  4. {titans_pytorch-0.0.34 → titans_pytorch-0.0.35}/.github/workflows/python-publish.yml +0 -0
  5. {titans_pytorch-0.0.34 → titans_pytorch-0.0.35}/.github/workflows/test.yaml +0 -0
  6. {titans_pytorch-0.0.34 → titans_pytorch-0.0.35}/.gitignore +0 -0
  7. {titans_pytorch-0.0.34 → titans_pytorch-0.0.35}/LICENSE +0 -0
  8. {titans_pytorch-0.0.34 → titans_pytorch-0.0.35}/README.md +0 -0
  9. {titans_pytorch-0.0.34 → titans_pytorch-0.0.35}/data/README.md +0 -0
  10. {titans_pytorch-0.0.34 → titans_pytorch-0.0.35}/data/enwik8.gz +0 -0
  11. {titans_pytorch-0.0.34 → titans_pytorch-0.0.35}/fig1.png +0 -0
  12. {titans_pytorch-0.0.34 → titans_pytorch-0.0.35}/fig2.png +0 -0
  13. {titans_pytorch-0.0.34 → titans_pytorch-0.0.35}/requirements.txt +0 -0
  14. {titans_pytorch-0.0.34 → titans_pytorch-0.0.35}/tests/test_titans.py +0 -0
  15. {titans_pytorch-0.0.34 → titans_pytorch-0.0.35}/titans_pytorch/associative_scan.py +0 -0
  16. {titans_pytorch-0.0.34 → titans_pytorch-0.0.35}/titans_pytorch/mac_transformer.py +0 -0
  17. {titans_pytorch-0.0.34 → titans_pytorch-0.0.35}/titans_pytorch/titans.py +0 -0
  18. {titans_pytorch-0.0.34 → titans_pytorch-0.0.35}/titans_pytorch/titans_attn_memory.py +0 -0
  19. {titans_pytorch-0.0.34 → titans_pytorch-0.0.35}/train.py +0 -0
  20. {titans_pytorch-0.0.34 → titans_pytorch-0.0.35}/train_mac.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: titans-pytorch
3
- Version: 0.0.34
3
+ Version: 0.0.35
4
4
  Summary: Titans
5
5
  Project-URL: Homepage, https://pypi.org/project/titans-pytorch/
6
6
  Project-URL: Repository, https://github.com/lucidrains/titans-pytorch
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "titans-pytorch"
3
- version = "0.0.34"
3
+ version = "0.0.35"
4
4
  description = "Titans"
5
5
  authors = [
6
6
  { name = "Phil Wang", email = "lucidrains@gmail.com" }
@@ -2,3 +2,5 @@ from titans_pytorch.titans import (
2
2
  NeuralMemory,
3
3
  MemoryMLP,
4
4
  )
5
+
6
+ from titans_pytorch.mac_transformer import MemoryAsContextTransformer
File without changes