nategro commited on
Commit
aa5d41c
1 Parent(s): accd16f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -2
README.md CHANGED
@@ -7,7 +7,9 @@ tags:
7
 
8
  ---
9
 
10
- # {MODEL_NAME}
 
 
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('{MODEL_NAME}')
31
  embeddings = model.encode(sentences)
32
  print(embeddings)
33
  ```
 
7
 
8
  ---
9
 
10
+ # nps-mini
11
+
12
+ A model for the identification of problem and solution 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/nps-mini')
33
  embeddings = model.encode(sentences)
34
  print(embeddings)
35
  ```