innocent-charles commited on
Commit
b40010f
·
verified ·
1 Parent(s): ea11c0a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -119,7 +119,7 @@ library_name: sentence-transformers
119
  license: apache-2.0
120
  ---
121
 
122
- # LaBSE
123
  This is a port of the [LaBSE](https://tfhub.dev/google/LaBSE/1) model to PyTorch. It can be used to map 109 languages to a shared vector space.
124
 
125
 
@@ -137,7 +137,7 @@ Then you can use the model like this:
137
  from sentence_transformers import SentenceTransformer
138
  sentences = ["This is an example sentence", "Each sentence is converted"]
139
 
140
- model = SentenceTransformer('sentence-transformers/LaBSE')
141
  embeddings = model.encode(sentences)
142
  print(embeddings)
143
  ```
 
119
  license: apache-2.0
120
  ---
121
 
122
+ # AviLaBSE
123
  This is a port of the [LaBSE](https://tfhub.dev/google/LaBSE/1) model to PyTorch. It can be used to map 109 languages to a shared vector space.
124
 
125
 
 
137
  from sentence_transformers import SentenceTransformer
138
  sentences = ["This is an example sentence", "Each sentence is converted"]
139
 
140
+ model = SentenceTransformer('sartifyllc/AviLaBSE')
141
  embeddings = model.encode(sentences)
142
  print(embeddings)
143
  ```