Milvus - 构建向量数据库并进行相似度查询

打印 上一主题 下一主题

主题 1001|帖子 1001|积分 3003

向量相似度检索在大规模数据分析和机器学习应用中是一个非常关键的任务,特殊是在处理文本、图像或其他嵌入向量时。Milvus 是一个高性能的开源向量数据库,专为存储和检索大规模向量数据计划。本文将介绍如安在 Docker 中安装 Milvus,并展示怎样使用 Python 插入向量数据及进行向量相似度查询。
一、在 Docker 中安装并运行 Milvus

Milvus 提供了轻便的安装方式,可以通过 Docker 快速启动 Milvus 实例。
1. 安装 Docker

确保你已在系统上安装了 Docker。如果未安装,可以访问 Docker 官方网站 获取安装指南。
2. 在 Docker 中安装 Milvus

通过以下步骤下载并启动 Milvus 实例。
  1. # 下载 Milvus 安装脚本
  2. curl -sfL https://raw.githubusercontent.com/milvus-io/milvus/master/scripts/standalone_embed.sh -o standalone_embed.sh
  3. # 启动 Milvus 容器
  4. bash standalone_embed.sh start
复制代码
运行该脚本后,一个名为 milvus-standalone 的 Docker 容器将启动,并在 19530 端口提供 Milvus 服务。嵌入式的 etcd 也将在同一容器中运行,使用 2379 端口进行服务。
3. 停止和删除 Milvus

你可以随时停止和删除 Milvus 容器及其数据:
  1. # 停止 Milvus
  2. bash standalone_embed.sh stop
  3. # 删除 Milvus 容器和数据
  4. bash standalone_embed.sh delete
复制代码
二、创建向量集合

在 Milvus 中,数据存储在集合(Collection)中,雷同于传统数据库中的表。集合可以包含多个字段,包括嵌入向量字段。接下来,我们将通过 Python 创建一个存储文本及其对应向量的集合。
1. 连接 Milvus 并定义集合

首先,我们通过 Python 的 pymilvus 库连接 Milvus 并创建集合。
  1. from pymilvus import connections, FieldSchema, CollectionSchema, DataType, Collection
  2. # 连接 Milvus
  3. connections.connect("default", host="localhost", port="19530")
  4. # 定义集合 schema
  5. fields = [
  6.     FieldSchema(name="id", dtype=DataType.INT64, is_primary=True, auto_id=True),
  7.     FieldSchema(name="user_id", dtype=DataType.INT64),
  8.     FieldSchema(name="file_id", dtype=DataType.INT64),
  9.     FieldSchema(name="content", dtype=DataType.VARCHAR, max_length=65535),
  10.     FieldSchema(name="embedding", dtype=DataType.FLOAT_VECTOR, dim=384),  # 384维向量
  11. ]
  12. schema = CollectionSchema(fields, description="知识库向量数据")
  13. # 创建集合
  14. collection = Collection("knowledge_vector_data", schema=schema)
复制代码
2. 创建索引

为提高查询服从,Milvus 支持为向量字段创建索引。下面是为向量字段创建索引的示例:
  1. # 创建索引
  2. index_params = {
  3.     "metric_type": "IP",  # 内积,用于向量相似度
  4.     "index_type": "IVF_FLAT",  # 索引类型
  5.     "params": {"nlist": 128}
  6. }
  7. collection.create_index(field_name="embedding", index_params=index_params)
  8. print("Index created.")
复制代码
三、向量化、插入数据并进行相似度查询

在这个部门,我们将通过 Python 脚本,将测试句子向量化后插入 Milvus,并进行相似度查询。
1. 安装必要的 Python 库

首先,确保安装了 sentence-transformers 和 pymilvus 库:
  1. pip install sentence-transformers pymilvus numpy
复制代码
2. 完整的 Python 脚本

以下是一个完整的 Python 脚本,包含了向量化句子、插入数据和相似度查询的功能。
  1. import numpy as np
  2. from pymilvus import connections, FieldSchema, CollectionSchema, DataType, Collection, utility
  3. from sentence_transformers import SentenceTransformer
  4. # 连接 Milvus
  5. connections.connect("default", host="localhost", port="19530")
  6. # 定义集合 schema
  7. fields = [
  8.     FieldSchema(name="id", dtype=DataType.INT64, is_primary=True, auto_id=True),
  9.     FieldSchema(name="user_id", dtype=DataType.INT64),
  10.     FieldSchema(name="file_id", dtype=DataType.INT64),
  11.     FieldSchema(name="content", dtype=DataType.VARCHAR, max_length=65535),
  12.     FieldSchema(name="embedding", dtype=DataType.FLOAT_VECTOR, dim=384),  # 384维向量
  13. ]
  14. schema = CollectionSchema(fields, description="知识库向量数据")
  15. # 创建集合
  16. collection = Collection("knowledge_vector_data", schema=schema)
  17. # 向量化句子
  18. def vectorize_sentences(sentences):
  19.     model = SentenceTransformer('all-MiniLM-L6-v2')
  20.     return model.encode(sentences)
  21. # 插入向量到 Milvus
  22. def insert_vectors_to_milvus(sentences, vectors):
  23.     data = [
  24.         # [None] * len(sentences),  # ID 自动生成
  25.         [1] * len(sentences),  # user_id
  26.         [1] * len(sentences),  # file_id
  27.         sentences,  # content
  28.         vectors.tolist()  # 向量
  29.     ]
  30.     collection.insert(data)
  31.     print(f"Inserted {len(sentences)} sentences into Milvus")
  32. # 创建索引以加速检索
  33. def create_index():
  34.     index_params = {
  35.         "metric_type": "IP",  # 内积,用于向量相似度
  36.         "index_type": "IVF_FLAT",  # 索引类型
  37.         "params": {"nlist": 128}
  38.     }
  39.     collection.create_index(field_name="embedding", index_params=index_params)
  40.     print("Index created.")
  41. # 查询相似句子
  42. def query_similar_sentences(target_vector, top_k=5):
  43.     collection.load()
  44.     search_params = {"metric_type": "IP", "params": {"nprobe": 10}}
  45.     # 执行查询
  46.     results = collection.search(
  47.         data=[target_vector],
  48.         anns_field="embedding",
  49.         param=search_params,
  50.         limit=top_k,
  51.         output_fields=["content"]
  52.     )
  53.     for result in results[0]:
  54.         print(f"Content: {result.entity.get('content')}, Similarity score: {result.score}")
  55. if __name__ == "__main__":
  56.     # 测试句子
  57.     sentences = [
  58.         "This is a test sentence.",
  59.         "Another sentence for testing.",
  60.         "Milvus vector database integration."
  61.     ]
  62.     # 向量化测试句子
  63.     vectors = vectorize_sentences(sentences)
  64.     # 插入向量到 Milvus
  65.     insert_vectors_to_milvus(sentences, vectors)
  66.     # 创建索引
  67.     create_index()
  68.     # 目标句子,进行相似度查询
  69.     target_sentence = "This is a test sentence."
  70.     target_vector = vectorize_sentences([target_sentence])[0]
  71.     # 查询与目标句子最相似的句子
  72.     query_similar_sentences(target_vector)
复制代码
四、总结

通过本文的步骤,我们学习了如安在 Docker 中安装 Milvus,并使用 Python 向量化文本数据、插入数据和执行相似度查询。Milvus 是处理大规模向量数据的理想工具,特殊适合于多媒体数据的相似度搜索。

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

河曲智叟

论坛元老
这个人很懒什么都没写!
快速回复 返回顶部 返回列表