Instructions to use ainz/tiny-recursive-model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ainz/tiny-recursive-model with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("ainz/tiny-recursive-model", dtype="auto") - Notebooks
- Google Colab
- Kaggle
Update __init__.py
Browse files- __init__.py +2 -0
__init__.py
CHANGED
|
@@ -1,2 +1,4 @@
|
|
| 1 |
|
| 2 |
from .modeling_tiny_recursive import TinyRecursiveModel, TRMConfig
|
|
|
|
|
|
|
|
|
| 1 |
|
| 2 |
from .modeling_tiny_recursive import TinyRecursiveModel, TRMConfig
|
| 3 |
+
|
| 4 |
+
__all__ = ["TinyRecursiveModel", "TRMConfig"]
|