Sentence Similarity
sentence-transformers
Safetensors
mistralbidirectional
swe-bench
code-similarity
code-retrieval
code-search
code-explanation
custom_code
Instructions to use nvidia/NV-EmbedCode-7b-v1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use nvidia/NV-EmbedCode-7b-v1 with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("nvidia/NV-EmbedCode-7b-v1", trust_remote_code=True) 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
Atefeh Sohrabizadeh commited on
Commit ·
cfff837
1
Parent(s): b0c0d8f
updated readme
Browse files
README.md
CHANGED
|
@@ -109,8 +109,6 @@ You can finetune this model on your own dataset.
|
|
| 109 |
*What are recommendations with respect to the foreseeable issues? For example, filtering explicit content.*
|
| 110 |
-->
|
| 111 |
|
| 112 |
-
## Training Details
|
| 113 |
-
|
| 114 |
### Framework Versions
|
| 115 |
- Python: 3.11.10
|
| 116 |
- Sentence Transformers: 3.0.0
|
|
|
|
| 109 |
*What are recommendations with respect to the foreseeable issues? For example, filtering explicit content.*
|
| 110 |
-->
|
| 111 |
|
|
|
|
|
|
|
| 112 |
### Framework Versions
|
| 113 |
- Python: 3.11.10
|
| 114 |
- Sentence Transformers: 3.0.0
|