obrizum commited on
Commit
147cb32
1 Parent(s): 414113c

update readme

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -19,7 +19,7 @@ Then you can use the model like this:
19
  from sentence_transformers import SentenceTransformer
20
  sentences = ["This is an example sentence", "Each sentence is converted"]
21
 
22
- model = SentenceTransformer('sentence-transformers/all-mpnet-base-v2')
23
  embeddings = model.encode(sentences)
24
  print(embeddings)
25
  ```
19
  from sentence_transformers import SentenceTransformer
20
  sentences = ["This is an example sentence", "Each sentence is converted"]
21
 
22
+ model = SentenceTransformer('obrizum/all-mpnet-base-v2')
23
  embeddings = model.encode(sentences)
24
  print(embeddings)
25
  ```