一 簡介
Chroma是一款AI開源向量資料庫,用於快速構建基於LLM的應用,支援Python和Javascript語言。具備輕量化、快速安裝等特點,可與Langchain、LlamaIndex等知名LLM框架組合使用。
二 基本用法
1 安裝
安裝方式非常簡單,只需要一行命令
pip instakk chromadb
2 建立一個客戶端
import chromadb
chroma_client = chromadb.Client()
3 建立一個集合
這裡面的集合用於存放向量以及後設資料的資訊,可以理解為傳統資料庫的一張表
collection = chroma_client.create_collection(name="my_collection")
4 新增資料
集合中可以新增文字,元資訊,以及序號等資料。新增文字之後會呼叫預設的嵌入模型對文字進行向量化表示。
documents和ids為必需項,其他為可選項。(metadatas、embeddings、urls、data)
collection.add(
documents=["This is a document", "This is another document"],
metadatas=[{"source": "my_source"}, {"source": "my_source"}],
ids=["id1", "id2"]
)
如果已經有文字的向量化表示,可以直接新增進embedding欄位。需要注意手動新增的向量的維度需要與初始化集合時用到的嵌入模型維度一致,否則會報錯。
collection.add(
embeddings=[[1.2, 2.3, 4.5], [6.7, 8.2, 9.2]],
documents=["This is a document", "This is another document"],
metadatas=[{"source": "my_source"}, {"source": "my_source"}],
ids=["id1", "id2"]
)
5 從集合中檢索
results = collection.query(
query_texts=["This is a query document"],
n_results=2
)
三 進階用法
建立本地資料存放路徑
前面程式碼中建立的集合不會落到資料盤中,只用於快速搭建專案原型,程式退出即消失。如果想使集合可以重複利用,只需要稍微修改一下程式碼即可:
# Client改為PersistentClient
client = chromadb.PersistentClient(path="/path/to/save/to")
客戶端/服務端部署
實際專案一般不會只有客戶端程式碼,因此chroma也被設計成可以客戶端-服務端方式進行部署
服務端啟動命令:
# --path引數可以指定資料持久化路徑
# 預設開啟8000埠
chroma run --path /db_path
客戶端連線命令:
import chromadb
client = chromadb.HttpClient(host='localhost', port=8000)
如果你負責的專案只需要維護客戶端的資料,則可以安裝更加輕量化的客戶端chroma
pip install chromadb-client
在客戶端,連線方式同前面一樣。chromadb-client相比完整版減少很多依賴項,特別是不支援預設的embedding模型了,因此必須自定義embedding function對文字進行向量化表示。
建立或選擇已有的集合:
# 建立名稱為my_collection的集合,如果已經存在,則會報錯
collection = client.create_collection(name="my_collection", embedding_function=emb_fn)
# 獲取名稱為my_collection的集合,如果不存在,則會報錯
collection = client.get_collection(name="my_collection", embedding_function=emb_fn)
# 獲取名稱為my_collection的集合,如果不存在,則建立
collection = client.get_or_create_collection(name="my_collection", embedding_function=emb_fn)
探索集合
# 返回集合中的前10條記錄
collection.peek()
# 返回集合的數量
collection.count()
# 重新命名集合
collection.modify(name="new_name")
操作集合
增
集合的增用add
來實現,前面已有,這裡不贅述
查
集合的查詢包含query
和get
兩個介面
# 可以用文字進行查詢,會呼叫模型對文字進行向量化表示,然後再查詢出相似的向量
collection.query(
query_texts=["doc10", "thus spake zarathustra", ...],
n_results=10,
where={"metadata_field": "is_equal_to_this"},
where_document={"$contains":"search_string"}
)
# 也可以用向量進行查詢
collection.query(
query_embeddings=[[11.1, 12.1, 13.1],[1.1, 2.3, 3.2], ...],
n_results=10,
where={"metadata_field": "is_equal_to_this"},
where_document={"$contains":"search_string"}
)
where和where_document分別對元資訊和文字進行過濾。這部分的過濾條件比較複雜,可以參考官方的說明文件。個人感覺有點多餘了,對於這種輕量化資料庫以及AI應用來說必要性不強。
collection.get(
ids=["id1", "id2", "id3", ...],
where={"style": "style1"},
where_document={"$contains":"search_string"}
)
get
更像是傳統意義上的select操作,同樣也支援where和where_document兩個過濾條件。
刪
集合的刪除操作透過指定ids實現,如果沒有指定ids,則會刪除滿足where的所有資料
collection.delete(
ids=["id1", "id2", "id3",...],
where={"chapter": "20"}
)
改
集合的修改也是透過指定id實現,如果id不存在,則會報錯。如果更新的內容是documents,則連同對應的embeddings都一併更新
collection.update(
ids=["id1", "id2", "id3", ...],
embeddings=[[1.1, 2.3, 3.2], [4.5, 6.9, 4.4], [1.1, 2.3, 3.2], ...],
metadatas=[{"chapter": "3", "verse": "16"}, {"chapter": "3", "verse": "5"}, {"chapter": "29", "verse": "11"}, ...],
documents=["doc1", "doc2", "doc3", ...],
)
自定義embedding函式
chroma支援多種向量化模型,除此之外還能自定義模型。下面是一個用text2vec模型來定義embedding function的例子:
from chromadb import Documents, EmbeddingFunction, Embeddings
from text2vec import SentenceModel
# 載入text2vec庫的向量化模型
model = SentenceModel('text2vec-chinese')
# Documents是字串陣列型別,Embeddings是浮點陣列型別
class MyEmbeddingFunction(EmbeddingFunction):
def __call__(self, input: Documents) -> Embeddings:
# embed the documents somehow
return model.encode(input).tolist()
多模態
chroma的集合支援多模態的資料儲存和查詢,只需要embedding function能對多模型資料進行向量化表示即可。官方給出了以下例子:
import chromadb
from chromadb.utils.embedding_functions import OpenCLIPEmbeddingFunction
from chromadb.utils.data_loaders import ImageLoader
# 用到了Openai的CLIP文字-圖片模型
embedding_function = OpenCLIPEmbeddingFunction()
# 還需要呼叫一個內建的圖片載入器
data_loader = ImageLoader()
client = chromadb.Client()
collection = client.create_collection(
name='multimodal_collection',
embedding_function=embedding_function,
data_loader=data_loader)
往集合中新增numpy型別的圖片
collection.add(
ids=['id1', 'id2', 'id3'],
images=[...] # A list of numpy arrays representing images
)
與文字檢索類似,只是變成了query_images而已
results = collection.query(
query_images=[...] # A list of numpy arrays representing images
)