tiny-recursive-model 0.0.4__tar.gz → 0.0.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {tiny_recursive_model-0.0.4 → tiny_recursive_model-0.0.6}/PKG-INFO +3 -3
- {tiny_recursive_model-0.0.4 → tiny_recursive_model-0.0.6}/README.md +1 -1
- {tiny_recursive_model-0.0.4 → tiny_recursive_model-0.0.6}/pyproject.toml +2 -2
- {tiny_recursive_model-0.0.4 → tiny_recursive_model-0.0.6}/tiny_recursive_model/trainer.py +1 -1
- {tiny_recursive_model-0.0.4 → tiny_recursive_model-0.0.6}/tiny_recursive_model/trm.py +1 -1
- {tiny_recursive_model-0.0.4 → tiny_recursive_model-0.0.6}/.github/workflows/python-publish.yml +0 -0
- {tiny_recursive_model-0.0.4 → tiny_recursive_model-0.0.6}/.github/workflows/test.yml +0 -0
- {tiny_recursive_model-0.0.4 → tiny_recursive_model-0.0.6}/.gitignore +0 -0
- {tiny_recursive_model-0.0.4 → tiny_recursive_model-0.0.6}/LICENSE +0 -0
- {tiny_recursive_model-0.0.4 → tiny_recursive_model-0.0.6}/tests/test_trm.py +0 -0
- {tiny_recursive_model-0.0.4 → tiny_recursive_model-0.0.6}/tiny_recursive_model/__init__.py +0 -0
- {tiny_recursive_model-0.0.4 → tiny_recursive_model-0.0.6}/tiny_recursive_model/mlp_mixer_1d.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: tiny-recursive-model
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.6
|
4
4
|
Summary: Tiny Recursive Model
|
5
5
|
Project-URL: Homepage, https://pypi.org/project/tiny-recursive-model/
|
6
6
|
Project-URL: Repository, https://github.com/lucidrains/tiny-recursive-model
|
@@ -38,7 +38,7 @@ Requires-Dist: accelerate
|
|
38
38
|
Requires-Dist: einops>=0.8.1
|
39
39
|
Requires-Dist: ema-pytorch
|
40
40
|
Requires-Dist: torch>=2.4
|
41
|
-
Requires-Dist: x-transformers
|
41
|
+
Requires-Dist: x-transformers>=2.8.4
|
42
42
|
Provides-Extra: examples
|
43
43
|
Provides-Extra: test
|
44
44
|
Requires-Dist: pytest; extra == 'test'
|
@@ -47,7 +47,7 @@ Description-Content-Type: text/markdown
|
|
47
47
|
|
48
48
|
<img width="300" alt="trm-fig1" src="https://github.com/user-attachments/assets/950db79e-5f9c-4fec-a4e4-7b9355b39ce8" />
|
49
49
|
|
50
|
-
## Tiny Recursive Model (TRM)
|
50
|
+
## Tiny Recursive Model (TRM)
|
51
51
|
|
52
52
|
Implementation of [Tiny Recursive Model](https://arxiv.org/abs/2510.04871) (TRM), improvement to [HRM](https://github.com/lucidrains/hrm) from Sapient AI, by [Alexia Jolicoeur-Martineau](https://ajolicoeur.wordpress.com/about/)
|
53
53
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
|
2
2
|
<img width="300" alt="trm-fig1" src="https://github.com/user-attachments/assets/950db79e-5f9c-4fec-a4e4-7b9355b39ce8" />
|
3
3
|
|
4
|
-
## Tiny Recursive Model (TRM)
|
4
|
+
## Tiny Recursive Model (TRM)
|
5
5
|
|
6
6
|
Implementation of [Tiny Recursive Model](https://arxiv.org/abs/2510.04871) (TRM), improvement to [HRM](https://github.com/lucidrains/hrm) from Sapient AI, by [Alexia Jolicoeur-Martineau](https://ajolicoeur.wordpress.com/about/)
|
7
7
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "tiny-recursive-model"
|
3
|
-
version = "0.0.
|
3
|
+
version = "0.0.6"
|
4
4
|
description = "Tiny Recursive Model"
|
5
5
|
authors = [
|
6
6
|
{ name = "Phil Wang", email = "lucidrains@gmail.com" }
|
@@ -27,7 +27,7 @@ dependencies = [
|
|
27
27
|
"einops>=0.8.1",
|
28
28
|
"ema-pytorch",
|
29
29
|
"torch>=2.4",
|
30
|
-
"x-transformers",
|
30
|
+
"x-transformers>=2.8.4",
|
31
31
|
]
|
32
32
|
|
33
33
|
[project.urls]
|
{tiny_recursive_model-0.0.4 → tiny_recursive_model-0.0.6}/.github/workflows/python-publish.yml
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{tiny_recursive_model-0.0.4 → tiny_recursive_model-0.0.6}/tiny_recursive_model/mlp_mixer_1d.py
RENAMED
File without changes
|