Skip to content

Commit 3e0019d

Browse files
committed
added a new config with no calibration
1 parent 4d112a3 commit 3e0019d

File tree

1 file changed

+62
-0
lines changed

1 file changed

+62
-0
lines changed
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
[
2+
{
3+
"name": "dbpedia-hnsw-float16",
4+
"engine": "redis",
5+
"connection_params": {},
6+
"collection_params": {
7+
"algorithm": "hnsw",
8+
"data_type": "FLOAT16",
9+
"hnsw_config": {
10+
"M": 16,
11+
"DISTANCE_METRIC": "L2",
12+
"EF_CONSTRUCTION": 200
13+
}
14+
},
15+
"search_params": [
16+
{
17+
"parallel": 100,
18+
"top": 100,
19+
"search_params": {
20+
"ef": 199,
21+
"data_type": "FLOAT16"
22+
}
23+
}
24+
],
25+
"upload_params": {
26+
"parallel": 100,
27+
"algorithm": "hnsw",
28+
"data_type": "FLOAT16"
29+
}
30+
},
31+
{
32+
"name": "dbpedia-svs-LVQ8-float16",
33+
"engine": "redis",
34+
"connection_params": {},
35+
"collection_params": {
36+
"algorithm": "svs-vamana",
37+
"data_type": "FLOAT16",
38+
"svs-vamana_config": {
39+
"DISTANCE_METRIC": "L2",
40+
"GRAPH_MAX_DEGREE": 32,
41+
"CONSTRUCTION_WINDOW_SIZE": 200,
42+
"compression": "LVQ8"
43+
}
44+
},
45+
"search_params": [
46+
{
47+
"algorithm": "svs-vamana",
48+
"parallel": 100,
49+
"top": 100,
50+
"search_params": {
51+
"SEARCH_WINDOW_SIZE": 130,
52+
"data_type": "FLOAT16"
53+
}
54+
}
55+
],
56+
"upload_params": {
57+
"parallel": 100,
58+
"data_type": "FLOAT16",
59+
"algorithm": "svs-vamana"
60+
}
61+
}
62+
]

0 commit comments

Comments
 (0)