abhijithneilabraham commited on
Commit
5105f13
1 Parent(s): 69f54cd

Update from abhijith

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -27,7 +27,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
  ```
27
  from sentence_transformers import SentenceTransformer
28
  sentences = ["This is an example sentence", "Each sentence is converted"]
29
 
30
+ model = SentenceTransformer('abhijithneilabraham/stsb_multi_mt_distilbert-base-uncased')
31
  embeddings = model.encode(sentences)
32
  print(embeddings)
33
  ```