Ukrainian Sentence Embeddings (USE)
Collection
16 items • Updated
This model is a fine-tuned version of paraphrase-multilingual-mpnet-base-v2, trained on the Ukrainian text corpus UberText 2.0 without any data augmentation or pool targets. It is part of the Ukrainian Sentence Embeddings collection, which explores the effect of different training strategies on sentence embedding quality for Ukrainian.
The model was fine-tuned using a contrastive objective on UberText 2.0, a large general-purpose Ukrainian text corpus, without any additional augmentation techniques. This makes it the most general variant in the collection and serves as a baseline for comparing the effect of augmentation strategies in other variants.
| Model | Description |
|---|---|
| mpnet-use-ubertext-no-pt (this model) | Raw UberText 2.0, no augmentation, no pool targets |
| mpnet-use-combined-no-pt | Combined augmentation strategies, no pool targets |
| mpnet-use-markov-pt | Markov-based augmentation with pool targets |
from sentence_transformers import SentenceTransformer
model = SentenceTransformer("victormuryn/mpnet-use-ubertext-no-pt")
sentences = [
"Проводжає сина мати захищати рідний край",
"Хоч би малесеньку хатину він мріяв мати над Дніпром",
]
embeddings = model.encode(sentences)
print(embeddings.shape)
To be added
Apache 2.0