Instructions to use HeavensHackDev/HCAE-21M-Instruct with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use HeavensHackDev/HCAE-21M-Instruct with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("HeavensHackDev/HCAE-21M-Instruct") sentences = [ "The weather is lovely today.", "It's so sunny outside!", "He drove to the stadium." ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [3, 3] - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -35,7 +35,10 @@ This table delineates the performance disparities between architectural iteratio
|
|
| 35 |
| **HCAE-21M-Instruct** | `0.591` | `0.393` | Multi-stage tuning incorporating ArXiv, STS-B, and SQuAD instruction tuning paradigms. |
|
| 36 |
|
| 37 |
|
| 38 |
-
<
|
|
|
|
|
|
|
|
|
|
| 39 |
|
| 40 |
## Utilization Guidelines (Instruction Format)
|
| 41 |
For optimal retrieval performance, prepend the instruction mapping to the query text:
|
|
|
|
| 35 |
| **HCAE-21M-Instruct** | `0.591` | `0.393` | Multi-stage tuning incorporating ArXiv, STS-B, and SQuAD instruction tuning paradigms. |
|
| 36 |
|
| 37 |
|
| 38 |
+
<p align="center">
|
| 39 |
+
<img src="https://cdn-uploads.huggingface.co/production/uploads/680c9127408ea47e6c1dd6e8/3EiOt4AjNE_HO6SSi_30y.png" width="800" style="border-radius: 10px; box-shadow: 0 4px 20px rgba(0,0,0,0.3);">
|
| 40 |
+
</p>
|
| 41 |
+
|
| 42 |
|
| 43 |
## Utilization Guidelines (Instruction Format)
|
| 44 |
For optimal retrieval performance, prepend the instruction mapping to the query text:
|