Update README.md with the full model name
Browse filesThe current code returns:
```
huggingface_hub.errors.RepositoryNotFoundError: 401 Client Error. (Request ID: Root=1-683b28c0-711c03c11db8e3f476c2852b;30ceaae5-3e5f-41c6-a908-fd8622e433f4)
Repository Not Found for url: https://huggingface.co/potion-multilingual-128M/resolve/main/model.safetensors.
```
README.md
CHANGED
@@ -141,7 +141,7 @@ Load this model using the `from_pretrained` method:
|
|
141 |
from model2vec import StaticModel
|
142 |
|
143 |
# Load a pretrained Model2Vec model
|
144 |
-
model = StaticModel.from_pretrained("potion-multilingual-128M")
|
145 |
|
146 |
# Compute text embeddings
|
147 |
embeddings = model.encode(["Example sentence"])
|
|
|
141 |
from model2vec import StaticModel
|
142 |
|
143 |
# Load a pretrained Model2Vec model
|
144 |
+
model = StaticModel.from_pretrained("minishlab/potion-multilingual-128M")
|
145 |
|
146 |
# Compute text embeddings
|
147 |
embeddings = model.encode(["Example sentence"])
|