-
Notifications
You must be signed in to change notification settings - Fork 72
/
workload.json
72 lines (71 loc) · 2.12 KB
/
workload.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{% import "benchmark.helpers" as benchmark with context %}
{
"version": 2,
"description": "Benchmark vector search engine performance for different engine types like faiss, lucene and nmslib",
"indices": [
{
"name": "{{ target_index_name }}",
"body": "{{ target_index_body }}"
},
{
"name": "{{ train_index_name }}",
"body": "{{ train_index_body }}"
}
],
"corpora": [
{
"name": "cohere",
"base-url": "https://dbyiw3u3rf9yr.cloudfront.net/corpora/vectorsearch/cohere-wikipedia-22-12-en-embeddings",
"target-index": "{{ target_index_name }}",
"documents": [
{
"source-file": "documents-1k.hdf5.bz2",
"source-format": "hdf5",
"document-count": 1000
}
]
},
{
"name": "cohere-100k",
"base-url": "https://dbyiw3u3rf9yr.cloudfront.net/corpora/vectorsearch/cohere-wikipedia-22-12-en-embeddings",
"target-index": "{{ target_index_name }}",
"documents": [
{
"source-file": "documents-100k.hdf5.bz2",
"source-format": "hdf5",
"document-count": 100000
}
]
},
{
"name": "cohere-1m",
"base-url": "https://dbyiw3u3rf9yr.cloudfront.net/corpora/vectorsearch/cohere-wikipedia-22-12-en-embeddings",
"target-index": "{{ target_index_name }}",
"documents": [
{
"source-file": "documents-1m.hdf5.bz2",
"source-format": "hdf5",
"document-count": 1000000
}
]
},
{
"name": "cohere-10m",
"base-url": "https://dbyiw3u3rf9yr.cloudfront.net/corpora/vectorsearch/cohere-wikipedia-22-12-en-embeddings",
"target-index": "{{ target_index_name }}",
"documents": [
{
"source-file": "documents-10m.hdf5.bz2",
"source-format": "hdf5",
"document-count": 10000000
}
]
}
],
"operations": [
{{ benchmark.collect(parts="operations/*.json") }}
],
"test_procedures": [
{{ benchmark.collect(parts="test_procedures/*.json") }}
]
}