-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsweeps.json
More file actions
66 lines (66 loc) · 1.68 KB
/
sweeps.json
File metadata and controls
66 lines (66 loc) · 1.68 KB
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
{
"wiki10m": {
"dataset": "wiki-10m",
"common-params": {
"numDocs": 10000000,
"numQueriesToRun": 500,
"numWarmUpQueries": 20,
"flushFreq": 500000,
"topK": 100,
"efSearch": 150,
"queryThreads": 1,
"vectorColName": "vector",
"createIndexInMemory": false,
"cleanIndexDirectory": true,
"saveResultsOnDisk": true,
"forceMerge": 0,
"enableTieredMerge": true
},
"algorithms": {
"LUCENE_HNSW": {
"hnswIndexDirPath": "hnswIndex",
"hnswMaxConn": [16, 32, 64, 96, 128],
"hnswBeamWidth": [64, 128, 256],
"numIndexThreads": 32
},
"CAGRA_HNSW": {
"cuvsIndexDirPath": "cuvsIndex",
"cagraGraphDegree": [16, 32, 64],
"cagraIntermediateGraphDegree": [64, 128],
"cuvsWriterThreads": 32,
"numIndexThreads": 32
}
}
},
"sift-1m": {
"dataset": "sift-1m",
"common-params": {
"numDocs": 1000000,
"numQueriesToRun": 500,
"numWarmUpQueries": 50,
"flushFreq": 500000,
"topK": 100,
"efSearch": 150,
"queryThreads": 1,
"vectorColName": "vector",
"createIndexInMemory": false,
"cleanIndexDirectory": true,
"saveResultsOnDisk": true
},
"algorithms": {
"CAGRA_HNSW": {
"cuvsIndexDirPath": "cuvsIndex",
"cagraGraphDegree": [32, 64],
"cagraIntermediateGraphDegree": [64, 128],
"cuvsWriterThreads": 32,
"numIndexThreads": 32
},
"LUCENE_HNSW": {
"hnswIndexDirPath": "hnswIndex",
"hnswMaxConn": [32, 64, 96, 128],
"hnswBeamWidth": [128, 256],
"numIndexThreads": 32
}
}
}
}