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
|
@@ -36,10 +36,11 @@ This table delineates the performance disparities between architectural iteratio
|
|
| 36 |
|
| 37 |
|
| 38 |
<p align="center">
|
| 39 |
-
<img src="https://cdn-uploads.huggingface.co/production/uploads/680c9127408ea47e6c1dd6e8/
|
| 40 |
</p>
|
| 41 |
|
| 42 |
|
|
|
|
| 43 |
## Utilization Guidelines (Instruction Format)
|
| 44 |
For optimal retrieval performance, prepend the instruction mapping to the query text:
|
| 45 |
`Instruction: Retrieve the exact document that answers the following question. Query: [Your Query]`
|
|
|
|
| 36 |
|
| 37 |
|
| 38 |
<p align="center">
|
| 39 |
+
<img src="https://cdn-uploads.huggingface.co/production/uploads/680c9127408ea47e6c1dd6e8/VuJ6ayS--Ot8i-715fT3a.png" width="800" style="border-radius: 10px; box-shadow: 0 4px 20px rgba(0,0,0,0.3);">
|
| 40 |
</p>
|
| 41 |
|
| 42 |
|
| 43 |
+
|
| 44 |
## Utilization Guidelines (Instruction Format)
|
| 45 |
For optimal retrieval performance, prepend the instruction mapping to the query text:
|
| 46 |
`Instruction: Retrieve the exact document that answers the following question. Query: [Your Query]`
|