@@ -284,7 +284,7 @@ func createSchema(cfg *Config, client *weaviate.Client) {
284
284
"dataBits" : cfg .RQDataBits ,
285
285
"queryBits" : cfg .RQQueryBits ,
286
286
"rescore" : cfg .RQRescore ,
287
- "rescoreLimit" : cfg .RQRescoreLimit ,
287
+ "rescoreLimit" : cfg .RescoreLimit ,
288
288
},
289
289
}
290
290
}
@@ -377,7 +377,7 @@ func createSchema(cfg *Config, client *weaviate.Client) {
377
377
"rqDataBits" : cfg .RQDataBits ,
378
378
"rqQueryBits" : cfg .RQQueryBits ,
379
379
"rescore" : cfg .RQRescore ,
380
- "rescoreLimit" : cfg .RQRescoreLimit ,
380
+ "rescoreLimit" : cfg .RescoreLimit ,
381
381
},
382
382
}
383
383
}
@@ -591,7 +591,7 @@ func enableCompression(cfg *Config, client *weaviate.Client, dimensions uint, co
591
591
"dataBits" : cfg .RQDataBits ,
592
592
"queryBits" : cfg .RQQueryBits ,
593
593
"rescore" : cfg .RQRescore ,
594
- "rescoreLimit" : cfg .RQRescoreLimit ,
594
+ "rescoreLimit" : cfg .RescoreLimit ,
595
595
}
596
596
}
597
597
@@ -1276,7 +1276,7 @@ func initAnnBenchmark() {
1276
1276
annBenchmarkCommand .PersistentFlags ().BoolVar (& globalConfig .Cache ,
1277
1277
"cache" , false , "Set cache" )
1278
1278
annBenchmarkCommand .PersistentFlags ().IntVar (& globalConfig .RescoreLimit ,
1279
- "rescoreLimit" , 256 , "Rescore limit (default 256) for BQ" )
1279
+ "rescoreLimit" , 256 , "Rescore limit (default 256) for BQ. If using RQ, it's recommended to set it to 20 " )
1280
1280
annBenchmarkCommand .PersistentFlags ().StringVar (& globalConfig .PQ ,
1281
1281
"pq" , "disabled" , "Set PQ (disabled, auto, or enabled) (default disabled)" )
1282
1282
annBenchmarkCommand .PersistentFlags ().StringVar (& globalConfig .SQ ,
@@ -1295,8 +1295,6 @@ func initAnnBenchmark() {
1295
1295
"rqQueryBits" , 8 , "Set RQ query bit (default 8)" )
1296
1296
annBenchmarkCommand .PersistentFlags ().BoolVar (& globalConfig .RQRescore ,
1297
1297
"rqRescore" , false , "Skip rescoring for RQ (default true)" )
1298
- annBenchmarkCommand .PersistentFlags ().UintVar (& globalConfig .RQRescoreLimit ,
1299
- "rqRescoreLimit" , 20 , "Set RQ rescore limit (default 20)" )
1300
1298
annBenchmarkCommand .PersistentFlags ().IntVarP (& globalConfig .MultiVectorDimensions ,
1301
1299
"multiVector" , "m" , 0 , "Enable multi-dimensional vectors with the specified number of dimensions" )
1302
1300
annBenchmarkCommand .PersistentFlags ().BoolVar (& globalConfig .MuveraEnabled ,
0 commit comments