utrobinmv commited on
Commit
87dc229
1 Parent(s): b070fd8

update readme

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -53,7 +53,7 @@ Then you can use the model like this:
53
  ```python
54
  from sentence_transformers import SentenceTransformer
55
  sentences = ["This is an example sentence", "Each sentence is converted"]
56
- model = SentenceTransformer('sentence-transformers/sentence-t5-base')
57
  embeddings = model.encode(sentences)
58
  print(embeddings)
59
  ```
 
53
  ```python
54
  from sentence_transformers import SentenceTransformer
55
  sentences = ["This is an example sentence", "Each sentence is converted"]
56
+ model = SentenceTransformer('utrobinmv/t5_translate_en_ru_zh_base_200_sent')
57
  embeddings = model.encode(sentences)
58
  print(embeddings)
59
  ```