Views
No views yet
intfloat/multilingual-e5-small model, specifically adapted for generating text embeddings for the Georgian language.intfloat/multilingual-e5-small base model on a large-scale Georgian text pair dataset. The goal was to enhance its ability to understand the nuances of the Georgian language and produce more accurate and semantically rich vector representations of Georgian text.sithet/georgian-text-pairs dataset from the Hugging Face Hub.| Task | NDCG@1 | NDCG@10 | NDCG@1000 |
|---|---|---|---|
| Georgian → Georgian | 0.613 | 0.7178 | 0.7492 |
| Georgian → English | 0.513 | 0.6561 | 0.6938 |
| English → Georgian | 0.530 | 0.6608 | 0.7004 |
| Metric | Value |
|---|---|
| NDCG@10 | 0.4702 |
| MAP@10 | 0.4209 |
| MRR@10 | 0.4210 |
| Recall@10 | 0.6259 |
| Metric | Score |
|---|---|
| Accuracy | 0.8378 |
| Precision | 0.7741 |
| Recall | 0.8378 |
| F1 | 0.7943 |
sentence-transformers library.pip install -U sentence-transformers1from sentence_transformers import SentenceTransformer
2
3model = SentenceTransformer("sithet/e5-finetuned-georgian")
4
5query = "მთვარე"
6embedding = model.encode(query)