Views
No views yet
SentenceTransformer(
(0): Transformer({'max_seq_length': 128, 'do_lower_case': False}) with Transformer model: DistilBertModel
(1): Pooling({'word_embedding_dimension': 768, 'pooling_mode_cls_token': False, 'pooling_mode_mean_tokens': True, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False, 'pooling_mode_weightedmean_tokens': False, 'pooling_mode_lasttoken': False, 'include_prompt': True})
)pip install -U sentence-transformers1from sentence_transformers import SentenceTransformer
2
3# Download from the 🤗 Hub
4model = SentenceTransformer("tomaarsen/stsb-distilbert-base-quora-duplicate-questions")
5# Run inference
6sentences = [
7 "What is a fetish?",
8 "What's a fetish?",
9 "Is it good to read sex stories?",
10]
11embeddings = model.encode(sentences)
12print(embeddings.shape)
13# [3, 768]BinaryClassificationEvaluator| Metric | Value |
|---|---|
| cosine_accuracy | 0.7707 |
| cosine_accuracy_threshold | 0.817 |
| cosine_f1 | 0.7086 |
| cosine_f1_threshold | 0.742 |
| cosine_precision | 0.6033 |
| cosine_recall | 0.8586 |
| cosine_ap | 0.7191 |
| manhattan_accuracy | 0.7729 |
| manhattan_accuracy_threshold | 181.4664 |
| manhattan_f1 | 0.7083 |
| manhattan_f1_threshold | 222.9119 |
| manhattan_precision | 0.6063 |
| manhattan_recall | 0.8515 |
| manhattan_ap | 0.7188 |
| euclidean_accuracy | 0.7736 |
| euclidean_accuracy_threshold | 8.3566 |
| euclidean_f1 | 0.7088 |
| euclidean_f1_threshold | 10.0929 |
| euclidean_precision | 0.6079 |
| euclidean_recall | 0.8499 |
| euclidean_ap | 0.7191 |
| dot_accuracy | 0.7442 |
| dot_accuracy_threshold | 168.5663 |
| dot_f1 | 0.6832 |
| dot_f1_threshold | 142.4585 |
| dot_precision | 0.5665 |
| dot_recall | 0.8603 |
| dot_ap | 0.6694 |
| max_accuracy | 0.7736 |
| max_accuracy_threshold | 181.4664 |
| max_f1 | 0.7088 |
| max_f1_threshold | 222.9119 |
| max_precision | 0.6079 |
| max_recall | 0.8603 |
| max_ap | 0.7191 |
devParaphraseMiningEvaluator| Metric | Value |
|---|---|
| average_precision | 0.478 |
| f1 | 0.5119 |
| precision | 0.4683 |
| recall | 0.5645 |
| threshold | 0.8193 |
InformationRetrievalEvaluator| Metric | Value |
|---|---|
| cosine_accuracy@1 | 0.9654 |
| cosine_accuracy@3 | 0.9904 |
| cosine_accuracy@5 | 0.9948 |
| cosine_accuracy@10 | 0.9974 |
| cosine_precision@1 | 0.9654 |
| cosine_precision@3 | 0.4355 |
| cosine_precision@5 | 0.2806 |
| cosine_precision@10 | 0.1493 |
| cosine_recall@1 | 0.8251 |
| cosine_recall@3 | 0.9549 |
| cosine_recall@5 | 0.9758 |
| cosine_recall@10 | 0.9898 |
| cosine_ndcg@10 | 0.9786 |
| cosine_mrr@10 | 0.9786 |
| cosine_map@100 | 0.9714 |
| dot_accuracy@1 | 0.9512 |
| dot_accuracy@3 | 0.985 |
| dot_accuracy@5 | 0.9914 |
| dot_accuracy@10 | 0.9964 |
| dot_precision@1 | 0.9512 |
| dot_precision@3 | 0.4303 |
| dot_precision@5 | 0.2788 |
| dot_precision@10 | 0.149 |
| dot_recall@1 | 0.8119 |
| dot_recall@3 | 0.946 |
| dot_recall@5 | 0.9708 |
| dot_recall@10 | 0.9884 |
| dot_ndcg@10 | 0.9703 |
| dot_mrr@10 | 0.9693 |
| dot_map@100 | 0.96 |
sentence_0, sentence_1, and label| sentence_0 | sentence_1 | label | |
|---|---|---|---|
| type | string | string | int |
| details |
|
|
|
| sentence_0 | sentence_1 | label |
|---|---|---|
How do I improve writing skill by myself? | How can I improve writing skills? | 1 |
Is it best to switch to Node.js from PHP? | Should I switch to Node.js or continue using PHP? | 1 |
What do Hillary Clinton's supporters say when confronted with all her lies and scandals? | What do Clinton supporters say when confronted with her scandals such as the emails and 'Clinton Cash'? | 1 |
sentence_transformers.losses.MultipleNegativesRankingLoss.MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 20.0,
3 "similarity_fct": "cos_sim"
4}| Epoch | Step | Training Loss | cosine_accuracy | cosine_map@100 | dev_average_precision |
|---|---|---|---|---|---|
| 0 | 0 | - | 0.7661 | 0.9371 | 0.4137 |
| 0.1543 | 500 | 0.1055 | 0.7632 | 0.9620 | 0.4731 |
| 0.3086 | 1000 | 0.0677 | 0.7608 | 0.9675 | 0.4732 |
| 0.4630 | 1500 | 0.0612 | 0.7663 | 0.9710 | 0.4856 |
| 0.6173 | 2000 | 0.0584 | 0.7719 | 0.9693 | 0.4925 |
| 0.7716 | 2500 | 0.0506 | 0.7714 | 0.9709 | 0.4808 |
| 0.9259 | 3000 | 0.0488 | 0.7708 | 0.9713 | 0.4784 |
| 1.0 | 3240 | - | 0.7707 | 0.9714 | 0.4780 |
1@inproceedings{reimers-2019-sentence-bert,
2 title = "Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks",
3 author = "Reimers, Nils and Gurevych, Iryna",
4 booktitle = "Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing",
5 month = "11",
6 year = "2019",
7 publisher = "Association for Computational Linguistics",
8 url = "https://arxiv.org/abs/1908.10084",
9}1@misc{henderson2017efficient,
2 title={Efficient Natural Language Response Suggestion for Smart Reply},
3 author={Matthew Henderson and Rami Al-Rfou and Brian Strope and Yun-hsuan Sung and Laszlo Lukacs and Ruiqi Guo and Sanjiv Kumar and Balint Miklos and Ray Kurzweil},
4 year={2017},
5 eprint={1705.00652},
6 archivePrefix={arXiv},
7 primaryClass={cs.CL}
8}