Feature Extraction
Transformers
RWKV
English
hare
embeddings
text-retrieval
long-context
modernbert
streaming
semantic-search
retrieval
custom_code
Instructions to use SixOpen/HARE with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use SixOpen/HARE with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="SixOpen/HARE", trust_remote_code=True)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("SixOpen/HARE", trust_remote_code=True, dtype="auto") - RWKV
How to use SixOpen/HARE with RWKV:
# No code snippets available yet for this library. # To use this model, check the repository files and the library's documentation. # Want to help? PRs adding snippets are welcome at: # https://github.com/huggingface/huggingface.js
- Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -24,7 +24,8 @@ Live Demo:
|
|
| 24 |
[](https://huggingface.co/spaces/SixOpen/HARE)
|
| 25 |
|
| 26 |
|
| 27 |
-
|
|
|
|
| 28 |
|
| 29 |
Conventional embedding models are stateless: adding new content requires re-encoding from scratch because token representations depend on the entire sequence.
|
| 30 |
HARE replaces 14 local sliding-window attention layers in ModernBERT-base with bidirectional RWKV linear recurrence while retaining 8 global attention layers.
|
|
|
|
| 24 |
[](https://huggingface.co/spaces/SixOpen/HARE)
|
| 25 |
|
| 26 |
|
| 27 |
+
|
| 28 |
+

|
| 29 |
|
| 30 |
Conventional embedding models are stateless: adding new content requires re-encoding from scratch because token representations depend on the entire sequence.
|
| 31 |
HARE replaces 14 local sliding-window attention layers in ModernBERT-base with bidirectional RWKV linear recurrence while retaining 8 global attention layers.
|