Create vidore_eval.md
Browse files- vidore_eval.md +18 -0
vidore_eval.md
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# How to run the Vidore Evaluation
|
2 |
+
|
3 |
+
If you want to run the vidore evaluation on the jina-embeddings-v4 model (and on the Document Retrieval Benchmark curated by Jina AI), you need to install requirements in [this fork/branch](https://github.com/jina-ai/vidore-benchmark-fork/tree/feat-add-jina-embeddings) (these changes should be merged with the source code of Vidore soon).
|
4 |
+
|
5 |
+
```
|
6 |
+
pip install vidore-benchmark[jina-v4]
|
7 |
+
```
|
8 |
+
|
9 |
+
You can run the evaluation with the following command:
|
10 |
+
|
11 |
+
```
|
12 |
+
vidore-benchmark evaluate-retriever \
|
13 |
+
--model-class jev4 \
|
14 |
+
--model-name jinaai/jina-embeddings-v4 \
|
15 |
+
--collection-name jinaai/document-screenshot-retrieval-benchmark-small-684831c022c53b21c313b449 \
|
16 |
+
--dataset-format qa \
|
17 |
+
--split test
|
18 |
+
```
|