Feature Extraction
MLX
English
hrr
vsa
holographic-reduced-representations
tokenizer
morphemes
compositional
Instructions to use thebasedcapital/morph-hrr with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use thebasedcapital/morph-hrr with MLX:
# Download the model from the Hub pip install huggingface_hub[hf_xet] huggingface-cli download --local-dir morph-hrr thebasedcapital/morph-hrr
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
- Atomic Chat
morph-hrr v0.1.1: add numpy to dependencies (fixes broken import)
Browse files- pyproject.toml +2 -2
- src/morph_hrr/__init__.py +1 -1
pyproject.toml
CHANGED
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
| 4 |
|
| 5 |
[project]
|
| 6 |
name = "morph-hrr"
|
| 7 |
-
version = "0.1.
|
| 8 |
description = "Compositional HRR morpheme tokenizer/embeddings: circular-convolution prefix (x) root (x) suffix, for Apple MLX."
|
| 9 |
readme = "README.md"
|
| 10 |
requires-python = ">=3.11"
|
|
@@ -16,7 +16,7 @@ classifiers = [
|
|
| 16 |
"License :: OSI Approved :: MIT License",
|
| 17 |
"Operating System :: MacOS",
|
| 18 |
]
|
| 19 |
-
dependencies = ["mlx"]
|
| 20 |
|
| 21 |
[project.optional-dependencies]
|
| 22 |
test = ["pytest"]
|
|
|
|
| 4 |
|
| 5 |
[project]
|
| 6 |
name = "morph-hrr"
|
| 7 |
+
version = "0.1.1"
|
| 8 |
description = "Compositional HRR morpheme tokenizer/embeddings: circular-convolution prefix (x) root (x) suffix, for Apple MLX."
|
| 9 |
readme = "README.md"
|
| 10 |
requires-python = ">=3.11"
|
|
|
|
| 16 |
"License :: OSI Approved :: MIT License",
|
| 17 |
"Operating System :: MacOS",
|
| 18 |
]
|
| 19 |
+
dependencies = ["mlx", "numpy"]
|
| 20 |
|
| 21 |
[project.optional-dependencies]
|
| 22 |
test = ["pytest"]
|
src/morph_hrr/__init__.py
CHANGED
|
@@ -6,7 +6,7 @@ out-of-vocabulary-friendly token representations.
|
|
| 6 |
"""
|
| 7 |
from __future__ import annotations
|
| 8 |
|
| 9 |
-
__version__ = "0.1.
|
| 10 |
|
| 11 |
from .hrr import (
|
| 12 |
bind,
|
|
|
|
| 6 |
"""
|
| 7 |
from __future__ import annotations
|
| 8 |
|
| 9 |
+
__version__ = "0.1.1"
|
| 10 |
|
| 11 |
from .hrr import (
|
| 12 |
bind,
|