efederici commited on
Commit
7fa457e
1 Parent(s): 7dbb15b

Updated README

Browse files
Files changed (1) hide show
  1. README.md +34 -1
README.md CHANGED
@@ -1 +1,34 @@
1
- hello
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pipeline_tag: text-classification
3
+ language:
4
+ - it
5
+ datasets:
6
+ - stsb_multi_mt
7
+ tags:
8
+ - cross-encoder
9
+ - sentence-similarity
10
+ - transformers
11
+ ---
12
+
13
+ # Cross-Encoder
14
+
15
+ This model was trained using [SentenceTransformers](https://sbert.net) [Cross-Encoder](https://www.sbert.net/examples/applications/cross-encoder/README.html) class.
16
+
17
+ <p align="center">
18
+ <img src="https://user-images.githubusercontent.com/7140210/72913702-d55a8480-3d3d-11ea-99fc-f2ef29af4e72.jpg" width="700"> </br>
19
+ Marco Lodola, Monument to Umberto Eco, Alessandria 2019
20
+ </p>
21
+
22
+ ## Training Data
23
+ This model was trained on [stsb](https://huggingface.co/datasets/stsb_multi_mt/viewer/it/train). The model will predict a score between 0 and 1 how for the semantic similarity of two sentences.
24
+
25
+
26
+ ## Usage and Performance
27
+
28
+ ```python
29
+ from sentence_transformers import CrossEncoder
30
+ model = CrossEncoder('efederici/cross-encoder-umberto-stsb')
31
+ scores = model.predict([('Sentence 1', 'Sentence 2'), ('Sentence 3', 'Sentence 4')])
32
+ ```
33
+
34
+ The model will predict scores for the pairs `('Sentence 1', 'Sentence 2')` and `('Sentence 3', 'Sentence 4')`.