Instructions to use WhereIsAI/UAE-Code-Large-V1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use WhereIsAI/UAE-Code-Large-V1 with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("WhereIsAI/UAE-Code-Large-V1") 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
|
@@ -10,6 +10,8 @@ pipeline_tag: feature-extraction
|
|
| 10 |
|
| 11 |
# WhereIsAI/UAE-Code-Large-V1
|
| 12 |
|
|
|
|
|
|
|
| 13 |
|
| 14 |
This model is trained on the [GIS: Github Issue Similarity](https://huggingface.co/datasets/WhereIsAI/github-issue-similarity) dataset using [AnglE](https://github.com/SeanLee97/AnglE) loss (https://arxiv.org/abs/2309.12871).
|
| 15 |
It can be used to measure **code/issue similarity**.
|
|
|
|
| 10 |
|
| 11 |
# WhereIsAI/UAE-Code-Large-V1
|
| 12 |
|
| 13 |
+
📢 `WhereIsAI/UAE-Code-Large-V1` **is licensed under MIT. Feel free to use it in any scenario.**
|
| 14 |
+
If you use it for academic papers, we would greatly appreciate it if you could cite us. 👉 [citation info](#citation).
|
| 15 |
|
| 16 |
This model is trained on the [GIS: Github Issue Similarity](https://huggingface.co/datasets/WhereIsAI/github-issue-similarity) dataset using [AnglE](https://github.com/SeanLee97/AnglE) loss (https://arxiv.org/abs/2309.12871).
|
| 17 |
It can be used to measure **code/issue similarity**.
|