Update README.md
Browse files
README.md
CHANGED
@@ -7,7 +7,9 @@ tags:
|
|
7 |
|
8 |
---
|
9 |
|
10 |
-
#
|
|
|
|
|
11 |
|
12 |
This is a [sentence-transformers](https://www.SBERT.net) model: It maps sentences & paragraphs to a 384 dimensional dense vector space and can be used for tasks like clustering or semantic search.
|
13 |
|
@@ -27,7 +29,7 @@ Then you can use the model like this:
|
|
27 |
from sentence_transformers import SentenceTransformer
|
28 |
sentences = ["This is an example sentence", "Each sentence is converted"]
|
29 |
|
30 |
-
model = SentenceTransformer('
|
31 |
embeddings = model.encode(sentences)
|
32 |
print(embeddings)
|
33 |
```
|
|
|
7 |
|
8 |
---
|
9 |
|
10 |
+
# contradiction-mini-lds
|
11 |
+
|
12 |
+
A model for the identification of contradiction sentences in patents using all-MiniLM-L6-v2
|
13 |
|
14 |
This is a [sentence-transformers](https://www.SBERT.net) model: It maps sentences & paragraphs to a 384 dimensional dense vector space and can be used for tasks like clustering or semantic search.
|
15 |
|
|
|
29 |
from sentence_transformers import SentenceTransformer
|
30 |
sentences = ["This is an example sentence", "Each sentence is converted"]
|
31 |
|
32 |
+
model = SentenceTransformer('nategro/contradiction-mini-lds')
|
33 |
embeddings = model.encode(sentences)
|
34 |
print(embeddings)
|
35 |
```
|