From 9c9ce6d13390e5d65159163d26499d14cac89e89 Mon Sep 17 00:00:00 2001 From: Felix Date: Tue, 1 Jun 2021 18:42:28 +0800 Subject: [PATCH] Update README.md --- deploy/vector_search/README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/deploy/vector_search/README.md b/deploy/vector_search/README.md index 952a005c..88d5c323 100644 --- a/deploy/vector_search/README.md +++ b/deploy/vector_search/README.md @@ -6,7 +6,7 @@ 一些垂域识别任务(如车辆、商品等)需要识别的类别数较大,往往采用基于检索的方式,通过查询向量与底库向量进行快速的最近邻搜索,获得匹配的预测类别。向量检索模块提供基础的近似最近邻搜索算法,基于百度自研的Möbius算法,一种基于图的近似最近邻搜索算法,用于最大内积搜索 (MIPS)。 该模块提供python接口,支持numpy和 tensor类型向量,支持L2和Inner Product距离计算。 -Mobius 算法细节详见论文 ([Möbius Transformation for Fast Inner Product Search on Graph](http://research.baidu.com/Public/uploads/5e189d36b5cf6.PDF)) +Mobius 算法细节详见论文 ([Möbius Transformation for Fast Inner Product Search on Graph](http://research.baidu.com/Public/uploads/5e189d36b5cf6.PDF), [Code](https://github.com/sunbelbd/mobius)) @@ -42,6 +42,3 @@ Mobius 算法细节详见论文 ([Möbius Transformation for Fast Inner Produc # 保存与加载 indexer.dump(index_path="test") indexer.load(index_path="test") - - - -- GitLab