Sentence Similarity
sentence-transformers
PyTorch
deberta-v2
feature-extraction
Generated from Trainer
dataset_size:260034
loss:CachedGISTEmbedLoss
Eval Results (legacy)
text-embeddings-inference
Instructions to use bobox/DeBERTa-small-ST-v1-test-UnifiedDatasets-Ft2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use bobox/DeBERTa-small-ST-v1-test-UnifiedDatasets-Ft2 with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("bobox/DeBERTa-small-ST-v1-test-UnifiedDatasets-Ft2") sentences = [ "who used to present one man and his dog", "One Man and His Dog One Man and His Dog is a BBC television series in the United Kingdom featuring sheepdog trials, originally presented by Phil Drabble, with commentary by Eric Halsall and, later, by Ray Ollerenshaw. It was first aired on 17 February 1976 and continues today (since 2013) as a special annual edition of Countryfile. In 1994, Robin Page replaced Drabble as the main presenter. Gus Dermody took over as commentator until 2012.", "animal adjectives [was: ratto, Ratte, raton] - Google Groups animal adjectives [was: ratto, Ratte, raton] Showing 1-9 of 9 messages While trying find the pronunciation of the word \"munger\", I encountered the nearby word murine [MYOO-ryn] = relating to mice or rats [from Latin _murinus_, which derives from _mus_, mouse, whose genetive form is _muris_] So if you need an adjective to refer to lab rodents like _ratto_ or _mausu_, \"murine\" it is. (I would never have discovered this except in an alphabetically arranged dictionary.) There are a lot of animal adjectives of this type, such as ovine (sheep), equine (horse), bovine (bull, cow, calf), aquiline (eagle), murine (rats and mice). But what is needed is a way to lookup an animal and find what the proper adjective is. For example, is there an adjective form for \"goat\"? for \"seal\"? for \"elephant\"? for \"whale\"? for \"walrus\"? By the way, I never did find out how \"munger\" is pronounced; the answer is not found in", "A boat is docked and filled with bicycles next to a grassy area on a body of water." ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [4, 4] - Notebooks
- Google Colab
- Kaggle
Adding `safetensors` variant of this model
#1 opened 10 months ago
by
SFconvertbot