add a vllm pointer
Browse files
README.md
CHANGED
|
@@ -57,4 +57,6 @@ model = SentenceTransformer('cointegrated/rubert-tiny2')
|
|
| 57 |
sentences = ["привет мир", "hello world", "здравствуй вселенная"]
|
| 58 |
embeddings = model.encode(sentences)
|
| 59 |
print(embeddings)
|
| 60 |
-
```
|
|
|
|
|
|
|
|
|
| 57 |
sentences = ["привет мир", "hello world", "здравствуй вселенная"]
|
| 58 |
embeddings = model.encode(sentences)
|
| 59 |
print(embeddings)
|
| 60 |
+
```
|
| 61 |
+
|
| 62 |
+
For those who want to run the inference with [VLLM](https://docs.vllm.ai/en/latest/), there is a vLLM-optimized version of this model: [WpythonW/rubert-tiny2-vllm](https://huggingface.co/WpythonW/rubert-tiny2-vllm)
|