TJKlein commited on
Commit
9fddd0e
1 Parent(s): 7be9985

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -1
README.md CHANGED
@@ -10,6 +10,10 @@ 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
  # Model Usage
14
 
15
  ```shell
@@ -20,7 +24,6 @@ tokenizer = AutoTokenizer.from_pretrained("sap-ai-research/miCSE")
20
 
21
  model = AutoModel.from_pretrained("sap-ai-research/miCSE")
22
 
23
-
24
  # Encoding of sentences in a list with a predefined maximum lengths of tokens (max_length)
25
 
26
  max_length = 32
 
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
+ # Intended Use
14
+ The model intended to be used for encoding sentences or short paragraphs. Given an input text, the model produces a vector embedding, which captures the semantics. The embedding can be used for numerous tasks, e.g., retrieval, clustering or sentence similarity comparison.
15
+
16
+
17
  # Model Usage
18
 
19
  ```shell
 
24
 
25
  model = AutoModel.from_pretrained("sap-ai-research/miCSE")
26
 
 
27
  # Encoding of sentences in a list with a predefined maximum lengths of tokens (max_length)
28
 
29
  max_length = 32