Muennighoff commited on
Commit
7a64f6c
1 Parent(s): 6d28fa4

Add SBERT-large-nli-v2

Browse files
1_Pooling/config.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ {
2
+ "word_embedding_dimension": 1024,
3
+ "pooling_mode_cls_token": false,
4
+ "pooling_mode_mean_tokens": true,
5
+ "pooling_mode_max_tokens": false,
6
+ "pooling_mode_mean_sqrt_len_tokens": false
7
+ }
README.md ADDED
@@ -0,0 +1,128 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pipeline_tag: sentence-similarity
3
+ tags:
4
+ - sentence-transformers
5
+ - feature-extraction
6
+ - sentence-similarity
7
+ - transformers
8
+ ---
9
+
10
+ # {MODEL_NAME}
11
+
12
+ This is a [sentence-transformers](https://www.SBERT.net) model: It maps sentences & paragraphs to a 1024 dimensional dense vector space and can be used for tasks like clustering or semantic search.
13
+
14
+ <!--- Describe your model here -->
15
+
16
+ ## Usage (Sentence-Transformers)
17
+
18
+ Using this model becomes easy when you have [sentence-transformers](https://www.SBERT.net) installed:
19
+
20
+ ```
21
+ pip install -U sentence-transformers
22
+ ```
23
+
24
+ Then you can use the model like this:
25
+
26
+ ```python
27
+ from sentence_transformers import SentenceTransformer
28
+ sentences = ["This is an example sentence", "Each sentence is converted"]
29
+
30
+ model = SentenceTransformer('{MODEL_NAME}')
31
+ embeddings = model.encode(sentences)
32
+ print(embeddings)
33
+ ```
34
+
35
+
36
+
37
+ ## Usage (HuggingFace Transformers)
38
+ Without [sentence-transformers](https://www.SBERT.net), you can use the model like this: First, you pass your input through the transformer model, then you have to apply the right pooling-operation on-top of the contextualized word embeddings.
39
+
40
+ ```python
41
+ from transformers import AutoTokenizer, AutoModel
42
+ import torch
43
+
44
+
45
+ #Mean Pooling - Take attention mask into account for correct averaging
46
+ def mean_pooling(model_output, attention_mask):
47
+ token_embeddings = model_output[0] #First element of model_output contains all token embeddings
48
+ input_mask_expanded = attention_mask.unsqueeze(-1).expand(token_embeddings.size()).float()
49
+ return torch.sum(token_embeddings * input_mask_expanded, 1) / torch.clamp(input_mask_expanded.sum(1), min=1e-9)
50
+
51
+
52
+ # Sentences we want sentence embeddings for
53
+ sentences = ['This is an example sentence', 'Each sentence is converted']
54
+
55
+ # Load model from HuggingFace Hub
56
+ tokenizer = AutoTokenizer.from_pretrained('{MODEL_NAME}')
57
+ model = AutoModel.from_pretrained('{MODEL_NAME}')
58
+
59
+ # Tokenize sentences
60
+ encoded_input = tokenizer(sentences, padding=True, truncation=True, return_tensors='pt')
61
+
62
+ # Compute token embeddings
63
+ with torch.no_grad():
64
+ model_output = model(**encoded_input)
65
+
66
+ # Perform pooling. In this case, mean pooling.
67
+ sentence_embeddings = mean_pooling(model_output, encoded_input['attention_mask'])
68
+
69
+ print("Sentence embeddings:")
70
+ print(sentence_embeddings)
71
+ ```
72
+
73
+
74
+
75
+ ## Evaluation Results
76
+
77
+ <!--- Describe how your model was evaluated -->
78
+
79
+ For an automated evaluation of this model, see the *Sentence Embeddings Benchmark*: [https://seb.sbert.net](https://seb.sbert.net?model_name={MODEL_NAME})
80
+
81
+
82
+ ## Training
83
+ The model was trained with the parameters:
84
+
85
+ **DataLoader**:
86
+
87
+ `sentence_transformers.datasets.NoDuplicatesDataLoader.NoDuplicatesDataLoader` of length 93941 with parameters:
88
+ ```
89
+ {'batch_size': 6}
90
+ ```
91
+
92
+ **Loss**:
93
+
94
+ `sentence_transformers.losses.MultipleNegativesRankingLoss.MultipleNegativesRankingLoss` with parameters:
95
+ ```
96
+ {'scale': 20.0, 'similarity_fct': 'cos_sim'}
97
+ ```
98
+
99
+ Parameters of the fit()-Method:
100
+ ```
101
+ {
102
+ "epochs": 1,
103
+ "evaluation_steps": 9394,
104
+ "evaluator": "sentence_transformers.evaluation.EmbeddingSimilarityEvaluator.EmbeddingSimilarityEvaluator",
105
+ "max_grad_norm": 1,
106
+ "optimizer_class": "<class 'transformers.optimization.AdamW'>",
107
+ "optimizer_params": {
108
+ "lr": 1e-05
109
+ },
110
+ "scheduler": "WarmupLinear",
111
+ "steps_per_epoch": null,
112
+ "warmup_steps": 9395,
113
+ "weight_decay": 0.01
114
+ }
115
+ ```
116
+
117
+
118
+ ## Full Model Architecture
119
+ ```
120
+ SentenceTransformer(
121
+ (0): Transformer({'max_seq_length': 75, 'do_lower_case': False}) with Transformer model: BertModel
122
+ (1): Pooling({'word_embedding_dimension': 1024, 'pooling_mode_cls_token': False, 'pooling_mode_mean_tokens': True, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False})
123
+ )
124
+ ```
125
+
126
+ ## Citing & Authors
127
+
128
+ <!--- Describe where people can find more information -->
config.json ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "bert-large-uncased",
3
+ "architectures": [
4
+ "BertModel"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "gradient_checkpointing": false,
9
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.1,
11
+ "hidden_size": 1024,
12
+ "initializer_range": 0.02,
13
+ "intermediate_size": 4096,
14
+ "layer_norm_eps": 1e-12,
15
+ "max_position_embeddings": 512,
16
+ "model_type": "bert",
17
+ "num_attention_heads": 16,
18
+ "num_hidden_layers": 24,
19
+ "pad_token_id": 0,
20
+ "position_embedding_type": "absolute",
21
+ "torch_dtype": "float32",
22
+ "transformers_version": "4.11.3",
23
+ "type_vocab_size": 2,
24
+ "use_cache": true,
25
+ "vocab_size": 30522
26
+ }
config_sentence_transformers.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ {
2
+ "__version__": {
3
+ "sentence_transformers": "2.1.0",
4
+ "transformers": "4.11.3",
5
+ "pytorch": "1.10.1"
6
+ }
7
+ }
eval/similarity_evaluation_sts-dev_results.csv ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ epoch,steps,cosine_pearson,cosine_spearman,euclidean_pearson,euclidean_spearman,manhattan_pearson,manhattan_spearman,dot_pearson,dot_spearman
2
+ 0,9394,0.8490858242089108,0.855820662043251,0.8331457935472963,0.8350664342343017,0.8327844094724506,0.8347379215526596,0.7975655690934436,0.794819326459719
3
+ 0,9394,0.8490858242089108,0.855820662043251,0.8331457935472963,0.8350664342343017,0.8327844094724506,0.8347379215526596,0.7975655690934436,0.794819326459719
4
+ 0,9394,0.8490858242089108,0.855820662043251,0.8331457935472963,0.8350664342343017,0.8327844094724506,0.8347379215526596,0.7975655690934436,0.794819326459719
5
+ 0,9394,0.8490858242089108,0.855820662043251,0.8331457935472963,0.8350664342343017,0.8327844094724506,0.8347379215526596,0.7975655690934436,0.794819326459719
6
+ 0,9394,0.8490858242089108,0.855820662043251,0.8331457935472963,0.8350664342343017,0.8327844094724506,0.8347379215526596,0.7975655690934436,0.794819326459719
7
+ 0,9394,0.8490858242089108,0.855820662043251,0.8331457935472963,0.8350664342343017,0.8327844094724506,0.8347379215526596,0.7975655690934436,0.794819326459719
8
+ 0,9394,0.8490858242089108,0.855820662043251,0.8331457935472963,0.8350664342343017,0.8327844094724506,0.8347379215526596,0.7975655690934436,0.794819326459719
9
+ 0,9394,0.8490858242089108,0.855820662043251,0.8331457935472963,0.8350664342343017,0.8327844094724506,0.8347379215526596,0.7975655690934436,0.794819326459719
10
+ 0,18788,0.8553744290905592,0.8581462828611343,0.8261049159540707,0.8298256626812548,0.8260971451631354,0.8299099990383136,0.8189573669278749,0.8193815604485631
11
+ 0,18788,0.8553744290905592,0.8581462828611343,0.8261049159540707,0.8298256626812548,0.8260971451631354,0.8299099990383136,0.8189573669278749,0.8193815604485631
12
+ 0,18788,0.8553744290905592,0.8581462828611343,0.8261049159540707,0.8298256626812548,0.8260971451631354,0.8299099990383136,0.8189573669278749,0.8193815604485631
13
+ 0,18788,0.8553744290905592,0.8581462828611343,0.8261049159540707,0.8298256626812548,0.8260971451631354,0.8299099990383136,0.8189573669278749,0.8193815604485631
14
+ 0,18788,0.8553744290905592,0.8581462828611343,0.8261049159540707,0.8298256626812548,0.8260971451631354,0.8299099990383136,0.8189573669278749,0.8193815604485631
15
+ 0,18788,0.8553744290905592,0.8581462828611343,0.8261049159540707,0.8298256626812548,0.8260971451631354,0.8299099990383136,0.8189573669278749,0.8193815604485631
16
+ 0,18788,0.8553744290905592,0.8581462828611343,0.8261049159540707,0.8298256626812548,0.8260971451631354,0.8299099990383136,0.8189573669278749,0.8193815604485631
17
+ 0,18788,0.8553744290905592,0.8581462828611343,0.8261049159540707,0.8298256626812548,0.8260971451631354,0.8299099990383136,0.8189573669278749,0.8193815604485631
18
+ 0,28182,0.8504187400172329,0.8529898682797761,0.82704476027472,0.8306843707197624,0.8266952929931073,0.830335758380157,0.8218146242443229,0.821595764819648
19
+ 0,28182,0.8504187400172329,0.8529898682797761,0.82704476027472,0.8306843707197624,0.8266952929931073,0.830335758380157,0.8218146242443229,0.821595764819648
20
+ 0,28182,0.8504187400172329,0.8529898682797761,0.82704476027472,0.8306843707197624,0.8266952929931073,0.830335758380157,0.8218146242443229,0.821595764819648
21
+ 0,28182,0.8504187400172329,0.8529898682797761,0.82704476027472,0.8306843707197624,0.8266952929931073,0.830335758380157,0.8218146242443229,0.821595764819648
22
+ 0,28182,0.8504187400172329,0.8529898682797761,0.82704476027472,0.8306843707197624,0.8266952929931073,0.830335758380157,0.8218146242443229,0.821595764819648
23
+ 0,28182,0.8504187400172329,0.8529898682797761,0.82704476027472,0.8306843707197624,0.8266952929931073,0.830335758380157,0.8218146242443229,0.821595764819648
24
+ 0,28182,0.8504187400172329,0.8529898682797761,0.82704476027472,0.8306843707197624,0.8266952929931073,0.830335758380157,0.8218146242443229,0.821595764819648
25
+ 0,28182,0.8504187400172329,0.8529898682797761,0.82704476027472,0.8306843707197624,0.8266952929931073,0.830335758380157,0.8218146242443229,0.821595764819648
26
+ 0,37576,0.8433756445556863,0.846610200187373,0.8181038256990507,0.8222743275643051,0.8182922086799488,0.8223577511092727,0.8228330091069185,0.8243639820275941
27
+ 0,37576,0.8433756445556863,0.846610200187373,0.8181038256990507,0.8222743275643051,0.8182922086799488,0.8223577511092727,0.8228330091069185,0.8243639820275941
28
+ 0,37576,0.8433756445556863,0.846610200187373,0.8181038256990507,0.8222743275643051,0.8182922086799488,0.8223577511092727,0.8228330091069185,0.8243639820275941
29
+ 0,37576,0.8433756445556863,0.846610200187373,0.8181038256990507,0.8222743275643051,0.8182922086799488,0.8223577511092727,0.8228330091069185,0.8243639820275941
30
+ 0,37576,0.8433756445556863,0.846610200187373,0.8181038256990507,0.8222743275643051,0.8182922086799488,0.8223577511092727,0.8228330091069185,0.8243639820275941
31
+ 0,37576,0.8433756445556863,0.846610200187373,0.8181038256990507,0.8222743275643051,0.8182922086799488,0.8223577511092727,0.8228330091069185,0.8243639820275941
32
+ 0,37576,0.8433756445556863,0.846610200187373,0.8181038256990507,0.8222743275643051,0.8182922086799488,0.8223577511092727,0.8228330091069185,0.8243639820275941
33
+ 0,37576,0.8433756445556863,0.846610200187373,0.8181038256990507,0.8222743275643051,0.8182922086799488,0.8223577511092727,0.8228330091069185,0.8243639820275941
34
+ 0,46970,0.8460147377257901,0.8479995641330417,0.8177865629244383,0.8211161328169037,0.8173821403683041,0.8207322250793376,0.8255372370723681,0.8266552202595329
35
+ 0,46970,0.8460147377257901,0.8479995641330417,0.8177865629244383,0.8211161328169037,0.8173821403683041,0.8207322250793376,0.8255372370723681,0.8266552202595329
36
+ 0,46970,0.8460147377257901,0.8479995641330417,0.8177865629244383,0.8211161328169037,0.8173821403683041,0.8207322250793376,0.8255372370723681,0.8266552202595329
37
+ 0,46970,0.8460147377257901,0.8479995641330417,0.8177865629244383,0.8211161328169037,0.8173821403683041,0.8207322250793376,0.8255372370723681,0.8266552202595329
38
+ 0,46970,0.8460147377257901,0.8479995641330417,0.8177865629244383,0.8211161328169037,0.8173821403683041,0.8207322250793376,0.8255372370723681,0.8266552202595329
39
+ 0,46970,0.8460147377257901,0.8479995641330417,0.8177865629244383,0.8211161328169037,0.8173821403683041,0.8207322250793376,0.8255372370723681,0.8266552202595329
40
+ 0,46970,0.8460147377257901,0.8479995641330417,0.8177865629244383,0.8211161328169037,0.8173821403683041,0.8207322250793376,0.8255372370723681,0.8266552202595329
41
+ 0,46970,0.8460147377257901,0.8479995641330417,0.8177865629244383,0.8211161328169037,0.8173821403683041,0.8207322250793376,0.8255372370723681,0.8266552202595329
42
+ 0,56364,0.8451546145173996,0.8462922960539583,0.8177046022687481,0.8211771522721143,0.8176957176719277,0.8212923454120061,0.8262525595816623,0.8271807544291047
43
+ 0,56364,0.8451546145173996,0.8462922960539583,0.8177046022687481,0.8211771522721143,0.8176957176719277,0.8212923454120061,0.8262525595816623,0.8271807544291047
44
+ 0,56364,0.8451546145173996,0.8462922960539583,0.8177046022687481,0.8211771522721143,0.8176957176719277,0.8212923454120061,0.8262525595816623,0.8271807544291047
45
+ 0,56364,0.8451546145173996,0.8462922960539583,0.8177046022687481,0.8211771522721143,0.8176957176719277,0.8212923454120061,0.8262525595816623,0.8271807544291047
46
+ 0,56364,0.8451546145173996,0.8462922960539583,0.8177046022687481,0.8211771522721143,0.8176957176719277,0.8212923454120061,0.8262525595816623,0.8271807544291047
47
+ 0,56364,0.8451546145173996,0.8462922960539583,0.8177046022687481,0.8211771522721143,0.8176957176719277,0.8212923454120061,0.8262525595816623,0.8271807544291047
48
+ 0,56364,0.8451546145173996,0.8462922960539583,0.8177046022687481,0.8211771522721143,0.8176957176719277,0.8212923454120061,0.8262525595816623,0.8271807544291047
49
+ 0,56364,0.8451546145173996,0.8462922960539583,0.8177046022687481,0.8211771522721143,0.8176957176719277,0.8212923454120061,0.8262525595816623,0.8271807544291047
50
+ 0,65758,0.8433926267974765,0.8448841278248834,0.8162907587417658,0.8202673582113118,0.8159354518040114,0.8201126285674398,0.827943649586429,0.8287123070847461
51
+ 0,65758,0.8433926267974765,0.8448841278248834,0.8162907587417658,0.8202673582113118,0.8159354518040114,0.8201126285674398,0.827943649586429,0.8287123070847461
52
+ 0,65758,0.8433926267974765,0.8448841278248834,0.8162907587417658,0.8202673582113118,0.8159354518040114,0.8201126285674398,0.827943649586429,0.8287123070847461
53
+ 0,65758,0.8433926267974765,0.8448841278248834,0.8162907587417658,0.8202673582113118,0.8159354518040114,0.8201126285674398,0.827943649586429,0.8287123070847461
54
+ 0,65758,0.8433926267974765,0.8448841278248834,0.8162907587417658,0.8202673582113118,0.8159354518040114,0.8201126285674398,0.827943649586429,0.8287123070847461
55
+ 0,65758,0.8433926267974765,0.8448841278248834,0.8162907587417658,0.8202673582113118,0.8159354518040114,0.8201126285674398,0.827943649586429,0.8287123070847461
56
+ 0,65758,0.8433926267974765,0.8448841278248834,0.8162907587417658,0.8202673582113118,0.8159354518040114,0.8201126285674398,0.827943649586429,0.8287123070847461
57
+ 0,65758,0.8433926267974765,0.8448841278248834,0.8162907587417658,0.8202673582113118,0.8159354518040114,0.8201126285674398,0.827943649586429,0.8287123070847461
58
+ 0,75152,0.8446040925038956,0.8448201918378135,0.8156779589594462,0.8197217831026785,0.8153511249507209,0.8195530071857927,0.8310105126796238,0.8314112536317299
59
+ 0,75152,0.8446040925038956,0.8448201918378135,0.8156779589594462,0.8197217831026785,0.8153511249507209,0.8195530071857927,0.8310105126796238,0.8314112536317299
60
+ 0,75152,0.8446040925038956,0.8448201918378135,0.8156779589594462,0.8197217831026785,0.8153511249507209,0.8195530071857927,0.8310105126796238,0.8314112536317299
61
+ 0,75152,0.8446040925038956,0.8448201918378135,0.8156779589594462,0.8197217831026785,0.8153511249507209,0.8195530071857927,0.8310105126796238,0.8314112536317299
62
+ 0,75152,0.8446040925038956,0.8448201918378135,0.8156779589594462,0.8197217831026785,0.8153511249507209,0.8195530071857927,0.8310105126796238,0.8314112536317299
63
+ 0,75152,0.8446040925038956,0.8448201918378135,0.8156779589594462,0.8197217831026785,0.8153511249507209,0.8195530071857927,0.8310105126796238,0.8314112536317299
64
+ 0,75152,0.8446040925038956,0.8448201918378135,0.8156779589594462,0.8197217831026785,0.8153511249507209,0.8195530071857927,0.8310105126796238,0.8314112536317299
65
+ 0,75152,0.8446040925038956,0.8448201918378135,0.8156779589594462,0.8197217831026785,0.8153511249507209,0.8195530071857927,0.8310105126796238,0.8314112536317299
66
+ 0,84546,0.843446814296738,0.8441162411753252,0.8163671546102611,0.8202042389507829,0.8161744627422614,0.8199274120869228,0.8304331386108932,0.8307216323112473
67
+ 0,84546,0.843446814296738,0.8441162411753252,0.8163671546102611,0.8202042389507829,0.8161744627422614,0.8199274120869228,0.8304331386108932,0.8307216323112473
68
+ 0,84546,0.843446814296738,0.8441162411753252,0.8163671546102611,0.8202042389507829,0.8161744627422614,0.8199274120869228,0.8304331386108932,0.8307216323112473
69
+ 0,84546,0.843446814296738,0.8441162411753252,0.8163671546102611,0.8202042389507829,0.8161744627422614,0.8199274120869228,0.8304331386108932,0.8307216323112473
70
+ 0,84546,0.843446814296738,0.8441162411753252,0.8163671546102611,0.8202042389507829,0.8161744627422614,0.8199274120869228,0.8304331386108932,0.8307216323112473
71
+ 0,84546,0.843446814296738,0.8441162411753252,0.8163671546102611,0.8202042389507829,0.8161744627422614,0.8199274120869228,0.8304331386108932,0.8307216323112473
72
+ 0,84546,0.843446814296738,0.8441162411753252,0.8163671546102611,0.8202042389507829,0.8161744627422614,0.8199274120869228,0.8304331386108932,0.8307216323112473
73
+ 0,84546,0.843446814296738,0.8441162411753252,0.8163671546102611,0.8202042389507829,0.8161744627422614,0.8199274120869228,0.8304331386108932,0.8307216323112473
74
+ 0,93940,0.8437320757349038,0.8447999302580305,0.8158973728512129,0.8201478314386461,0.8156840205862232,0.8198638917414217,0.8310484448095099,0.8311148211939917
75
+ 0,93940,0.8437320757349038,0.8447999302580305,0.8158973728512129,0.8201478314386461,0.8156840205862232,0.8198638917414217,0.8310484448095099,0.8311148211939917
76
+ 0,93940,0.8437320757349038,0.8447999302580305,0.8158973728512129,0.8201478314386461,0.8156840205862232,0.8198638917414217,0.8310484448095099,0.8311148211939917
77
+ 0,93940,0.8437320757349038,0.8447999302580305,0.8158973728512129,0.8201478314386461,0.8156840205862232,0.8198638917414217,0.8310484448095099,0.8311148211939917
78
+ 0,93940,0.8437320757349038,0.8447999302580305,0.8158973728512129,0.8201478314386461,0.8156840205862232,0.8198638917414217,0.8310484448095099,0.8311148211939917
79
+ 0,93940,0.8437320757349038,0.8447999302580305,0.8158973728512129,0.8201478314386461,0.8156840205862232,0.8198638917414217,0.8310484448095099,0.8311148211939917
80
+ 0,93940,0.8437320757349038,0.8447999302580305,0.8158973728512129,0.8201478314386461,0.8156840205862232,0.8198638917414217,0.8310484448095099,0.8311148211939917
81
+ 0,93940,0.8437320757349038,0.8447999302580305,0.8158973728512129,0.8201478314386461,0.8156840205862232,0.8198638917414217,0.8310484448095099,0.8311148211939917
82
+ 0,-1,0.8437313128892662,0.8448056900484722,0.815895610345081,0.8201377033177958,0.8156822812149107,0.8198464006261792,0.8310463638823054,0.831102938623535
83
+ 0,-1,0.8437313128892662,0.8448056900484722,0.815895610345081,0.8201377033177958,0.8156822812149107,0.8198464006261792,0.8310463638823054,0.831102938623535
84
+ 0,-1,0.8437313128892662,0.8448056900484722,0.815895610345081,0.8201377033177958,0.8156822812149107,0.8198464006261792,0.8310463638823054,0.831102938623535
85
+ 0,-1,0.8437313128892662,0.8448056900484722,0.815895610345081,0.8201377033177958,0.8156822812149107,0.8198464006261792,0.8310463638823054,0.831102938623535
86
+ 0,-1,0.8437313128892662,0.8448056900484722,0.815895610345081,0.8201377033177958,0.8156822812149107,0.8198464006261792,0.8310463638823054,0.831102938623535
87
+ 0,-1,0.8437313128892662,0.8448056900484722,0.815895610345081,0.8201377033177958,0.8156822812149107,0.8198464006261792,0.8310463638823054,0.831102938623535
88
+ 0,-1,0.8437313128892662,0.8448056900484722,0.815895610345081,0.8201377033177958,0.8156822812149107,0.8198464006261792,0.8310463638823054,0.831102938623535
89
+ 0,-1,0.8437313128892662,0.8448056900484722,0.815895610345081,0.8201377033177958,0.8156822812149107,0.8198464006261792,0.8310463638823054,0.831102938623535
modules.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "idx": 0,
4
+ "name": "0",
5
+ "path": "",
6
+ "type": "sentence_transformers.models.Transformer"
7
+ },
8
+ {
9
+ "idx": 1,
10
+ "name": "1",
11
+ "path": "1_Pooling",
12
+ "type": "sentence_transformers.models.Pooling"
13
+ }
14
+ ]
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9d3c6c29f5ecc7b55900689567b37c907ccadb4ab171b20bf9f88f0d16733611
3
+ size 1340724401
sentence_bert_config.json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ {
2
+ "max_seq_length": 75,
3
+ "do_lower_case": false
4
+ }
similarity_evaluation_sts-test_results.csv ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ epoch,steps,cosine_pearson,cosine_spearman,euclidean_pearson,euclidean_spearman,manhattan_pearson,manhattan_spearman,dot_pearson,dot_spearman
2
+ -1,-1,0.8407875970815959,0.841459769408347,0.821371915049623,0.819864434233481,0.8209330570753741,0.8195859084312098,0.7792644877487102,0.7704072139452914
3
+ -1,-1,0.8407875970815959,0.841459769408347,0.821371915049623,0.819864434233481,0.8209330570753741,0.8195859084312098,0.7792644877487102,0.7704072139452914
4
+ -1,-1,0.8407875970815959,0.841459769408347,0.821371915049623,0.819864434233481,0.8209330570753741,0.8195859084312098,0.7792644877487102,0.7704072139452914
5
+ -1,-1,0.8407875970815959,0.841459769408347,0.821371915049623,0.819864434233481,0.8209330570753741,0.8195859084312098,0.7792644877487102,0.7704072139452914
6
+ -1,-1,0.8407875970815959,0.841459769408347,0.821371915049623,0.819864434233481,0.8209330570753741,0.8195859084312098,0.7792644877487102,0.7704072139452914
7
+ -1,-1,0.8407875970815959,0.841459769408347,0.821371915049623,0.819864434233481,0.8209330570753741,0.8195859084312098,0.7792644877487102,0.7704072139452914
8
+ -1,-1,0.8407875970815959,0.841459769408347,0.821371915049623,0.819864434233481,0.8209330570753741,0.8195859084312098,0.7792644877487102,0.7704072139452914
9
+ -1,-1,0.8407875970815959,0.841459769408347,0.821371915049623,0.819864434233481,0.8209330570753741,0.8195859084312098,0.7792644877487102,0.7704072139452914
special_tokens_map.json ADDED
@@ -0,0 +1 @@
 
1
+ {"unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]"}
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
tokenizer_config.json ADDED
@@ -0,0 +1 @@
 
1
+ {"do_lower_case": true, "unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]", "tokenize_chinese_chars": true, "strip_accents": null, "model_max_length": 512, "special_tokens_map_file": null, "name_or_path": "bert-large-uncased", "tokenizer_class": "BertTokenizer"}
vocab.txt ADDED
The diff for this file is too large to render. See raw diff