Sentence Similarity
sentence-transformers
Safetensors
xlm-roberta
feature-extraction
dense
Generated from Trainer
dataset_size:284573
loss:MultipleNegativesRankingLoss
text-embeddings-inference
Instructions to use EmiliaLee/k_model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use EmiliaLee/k_model with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("EmiliaLee/k_model") sentences = [ "durable plastic shed for garden supplies", "stoney resin outdoor 4 ft. 4 in . w x 2 ft. 8 in . d plastic horizontal storage shed Sheds this handy horizontal storage shed can handle any and all of your outdoor organizational needs . ideal for storing garbage cans , lawn and garden products , snow blowers , bicycles , and more , this stylish storage solution is essential in every season . additional features include durable , multi-w doorstyle : double door|primarymaterial : plastic|countryoforigin : united states|shedtype : storage shed|roofstyle : pent|estimatedtimetosetup:30|countryoforigin-additionaldetails : made in usa|overallproductweight:76|interiorheight-toptobottom:43.5|color : gray|doorwidth-sidetoside:46.25|overallwi", "outdoor 4 ft. w x 2 ft. d plastic vertical tool shed Deck Boxes|Sheds this large vertical shed is designed to supply generous storage space for outdoor gear , tools , equipment , firewood , sporting goods , and more . it 's fashioned with multi-wall resin and is outfitted with adjoining door handles to attach a padlock ( sold separately ) . to augment this unit with s coveragearea:11.23|estimatedtimetosetup:180|approximatedepth-fronttoback:3|windrating:65|overallwidth-sidetoside:53|interiorheight-toptobottom:69.5|overallheight-toptobottom:71.5|primarymaterial : plastic|shedtype : tool shed|overalldepth-fronttoback:32.5|color : mustang brown|countryoforigin-additi", "suncast golf organizer in black Bike And Sport Racks when it comes to the great outdoors and engaging in such sporting activities as golf , an organizer is just right to keep those accessories in place . it is sure to become your best friend when out playing on the links . producttype : sports rack|finish : black|compatiblebike : |overallheight-toptobottom:37|overallwidth-sidetoside:32|overallproductweight:38.15|mounttype : wall mounted|overalldepth-fronttoback:16|holdingcapacity:2|hooksincluded : no|multi-use : no|installationrequired : yes|productwarranty : yes|adju" ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [4, 4] - Notebooks
- Google Colab
- Kaggle
| { | |
| "transformer_task": "feature-extraction", | |
| "modality_config": { | |
| "text": { | |
| "method": "forward", | |
| "method_output_name": "last_hidden_state" | |
| } | |
| }, | |
| "module_output_name": "token_embeddings" | |
| } |