Sentence Similarity
sentence-transformers
Safetensors
English
bert
feature-extraction
dense
Generated from Trainer
dataset_size:59315
loss:MultipleNegativesRankingLoss
Eval Results (legacy)
text-embeddings-inference
Instructions to use VinitT/Embeddings-Trivia with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use VinitT/Embeddings-Trivia with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("VinitT/Embeddings-Trivia") sentences = [ "Johnny Depp plays policeman Ichabod Crane in which 1999 film?", "Mythology in France epics and fairy tales as part of deeply embedded spiritual allegories and mythological archetypes: Mythology in France The mythologies in present-day France encompass the mythology of the Gauls, Franks, Normans, Bretons, and other peoples living in France, those ancient stories about divine or heroic beings that these particular cultures believed to be true and that often use supernatural events or characters to explain the nature of the universe and humanity. French mythology is listed for each culture. Bretons are a subset of the celtics that adopted Christianity. Celtic cosmology predominates their mythology: Gauls were another subset of Celtic people. Celtic", "Johnny Depp in a snuff film in exchange for money for his family. Depp was a fan and friend of writer Hunter S. Thompson, and played his alter ego Raoul Duke in \"Fear and Loathing in Las Vegas\" (1998), Terry Gilliam's film adaptation of Thompson's pseudobiographical novel of the same name. Depp's next venture with Burton was the period film \"Sleepy Hollow\" (1999), in which he played Ichabod Crane opposite Christina Ricci and Christopher Walken. For his performance, Depp took inspiration from Angela Lansbury, Roddy McDowall and Basil Rathbone. He stated that he \"always thought of Ichabod as a very delicate, fragile", "Ichabod Crane Kinderhook town school district (Ichabod Crane Central School District) is also named for the Irving character. It is claimed by many in Tarrytown that Samuel Youngs is the original from whom Irving drew his character of Ichabod Crane\". Author Gary Denis asserts that while the character of Ichabod Crane is loosely based on Kinderhook Schoolmaster, Jesse Merwin, it may possibly include elements from Samuel Youngs' life. Irving's characters drive the story and are most memorable because of his detail in describing each. He says of Ichabod Crane (the main character), 'He was tall, but exceedingly lank, with narrow shoulders, long" ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [4, 4] - Notebooks
- Google Colab
- Kaggle
Commit ·
f30e98a
verified ·
0
Parent(s):
initial commit
Browse files- .gitattributes +35 -0
.gitattributes
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
| 11 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
| 13 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 14 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 15 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 16 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 17 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 18 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 21 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 22 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 23 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 24 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 25 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 27 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 32 |
+
*.xz filter=lfs diff=lfs merge=lfs -text
|
| 33 |
+
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
+
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
+
*tfevents* filter=lfs diff=lfs merge=lfs -text
|