lishouguang

Results 1 issues of lishouguang

我想实现这么个逻辑,我用多个向量同时做相似度计算,得出分数做求和,然后检索出topN。 官方文档有个实例, ![image](https://user-images.githubusercontent.com/10162331/162414304-67dca1db-2031-4b99-ac30-97614acd0fe8.png) 但文档上说这个sum是取交集的意思,有没有取并集的? 比如,我的space里有个字段叫vec,是vector类型的, 我使用[1,2]、[3,4]、[5,6]三个向量做相似度计算,然后将分数做求和,排序后取top20 ![image](https://user-images.githubusercontent.com/10162331/162416306-3b07b94e-af04-445f-bbda-75975a90f3d9.png)