Commit
·
fae0273
1
Parent(s):
12eb796
docs: title and citation
Browse filesSigned-off-by: jupyterjazz <[email protected]>
README.md
CHANGED
@@ -10,13 +10,13 @@
|
|
10 |
</p>
|
11 |
|
12 |
<p align="center">
|
13 |
-
<b>Jina Embeddings v4:
|
14 |
</p>
|
15 |
|
16 |
|
17 |
## Quick Start
|
18 |
|
19 |
-
[Blog](https://
|
20 |
|
21 |
|
22 |
## Intended Usage & Model Info
|
@@ -303,21 +303,7 @@ code_embeddings = model.encode(
|
|
303 |
# ========================
|
304 |
# 4. Use multivectors
|
305 |
# ========================
|
306 |
-
|
307 |
-
multivector_text_embeddings = model.encode(
|
308 |
-
sentences=texts,
|
309 |
-
task="retrieval",
|
310 |
-
prompt_name="query",
|
311 |
-
return_multivector=True,
|
312 |
-
)
|
313 |
-
|
314 |
-
images = ["https://i.ibb.co/nQNGqL0/beach1.jpg", "https://i.ibb.co/r5w8hG8/beach2.jpg"]
|
315 |
-
|
316 |
-
multivector_image_embeddings = model.encode(
|
317 |
-
sentences=images,
|
318 |
-
task="retrieval",
|
319 |
-
return_multivector=True,
|
320 |
-
)
|
321 |
```
|
322 |
</details>
|
323 |
|
@@ -335,3 +321,14 @@ Join our [Discord community](https://discord.jina.ai) and chat with other commun
|
|
335 |
## Citation
|
336 |
|
337 |
If you find `jina-embeddings-v4` useful in your research, please cite the following paper:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
</p>
|
11 |
|
12 |
<p align="center">
|
13 |
+
<b>Jina Embeddings v4: Universal Embeddings for Multimodal Multilingual Retrieval</b>
|
14 |
</p>
|
15 |
|
16 |
|
17 |
## Quick Start
|
18 |
|
19 |
+
[Blog](https://jina.ai/news/) | [Technical Report](https://arxiv.org/abs/2506.18902) | [API](https://jina.ai/embeddings)
|
20 |
|
21 |
|
22 |
## Intended Usage & Model Info
|
|
|
303 |
# ========================
|
304 |
# 4. Use multivectors
|
305 |
# ========================
|
306 |
+
# If you want to use multi-vector embeddings, please use the Hugging Face model directly.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
307 |
```
|
308 |
</details>
|
309 |
|
|
|
321 |
## Citation
|
322 |
|
323 |
If you find `jina-embeddings-v4` useful in your research, please cite the following paper:
|
324 |
+
```
|
325 |
+
@misc{günther2025jinaembeddingsv4universalembeddingsmultimodal,
|
326 |
+
title={jina-embeddings-v4: Universal Embeddings for Multimodal Multilingual Retrieval},
|
327 |
+
author={Michael Günther and Saba Sturua and Mohammad Kalim Akram and Isabelle Mohr and Andrei Ungureanu and Sedigheh Eslami and Scott Martens and Bo Wang and Nan Wang and Han Xiao},
|
328 |
+
year={2025},
|
329 |
+
eprint={2506.18902},
|
330 |
+
archivePrefix={arXiv},
|
331 |
+
primaryClass={cs.AI},
|
332 |
+
url={https://arxiv.org/abs/2506.18902},
|
333 |
+
}
|
334 |
+
```
|