Update README.md
Browse files
README.md
CHANGED
@@ -10,6 +10,14 @@ Language model of the pre-print arXiv paper titled: "_**miCSE**: Mutual Informat
|
|
10 |
The **miCSE** language model is trained for sentence similarity computation. Training the model imposes alignment between the attention pattern of different views (embeddings of augmentations) during contrastive learning. Learning sentence embeddings with **miCSE** entails enforcing the syntactic consistency across augmented views for every single sentence, making contrastive self-supervised learning more sample efficient. Sentence representations correspond to the embedding of the _**[CLS]**_ token.
|
11 |
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
# Benchmark
|
14 |
|
15 |
Model results on SentEval Benchmark:
|
|
|
10 |
The **miCSE** language model is trained for sentence similarity computation. Training the model imposes alignment between the attention pattern of different views (embeddings of augmentations) during contrastive learning. Learning sentence embeddings with **miCSE** entails enforcing the syntactic consistency across augmented views for every single sentence, making contrastive self-supervised learning more sample efficient. Sentence representations correspond to the embedding of the _**[CLS]**_ token.
|
11 |
|
12 |
|
13 |
+
# Usage
|
14 |
+
|
15 |
+
|
16 |
+
```shell
|
17 |
+
tokenizer = AutoTokenizer.from_pretrained("sap-ai-research/<----Enter Model Name---->")
|
18 |
+
|
19 |
+
model = AutoModelWithLMHead.from_pretrained("sap-ai-research/<----Enter Model Name---->")
|
20 |
+
```
|
21 |
# Benchmark
|
22 |
|
23 |
Model results on SentEval Benchmark:
|