-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ColPali embedding and support for processing PDFs as images (#543)
Add ColPali embedding and support for processing PDFs as images
- Loading branch information
1 parent
f41bf58
commit a187208
Showing
4 changed files
with
435 additions
and
10 deletions.
There are no files selected for viewing
279 changes: 279 additions & 0 deletions
279
apis/python/examples/object_api/multi_modal_pdf_search.ipynb
Large diffs are not rendered by default.
Oops, something went wrong.
104 changes: 104 additions & 0 deletions
104
apis/python/src/tiledb/vector_search/embeddings/colpali_embedding.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
from typing import Dict, OrderedDict, Tuple | ||
|
||
import numpy as np | ||
|
||
from tiledb.vector_search.embeddings import ObjectEmbedding | ||
|
||
EMBED_DIM = 128 | ||
|
||
|
||
class ColpaliEmbedding(ObjectEmbedding): | ||
def __init__( | ||
self, | ||
model_name: str = "vidore/colpali-v1.2", | ||
device: str = None, | ||
batch_size: int = 4, | ||
): | ||
self.model_name = model_name | ||
self.device = device | ||
self.batch_size = batch_size | ||
self.model = None | ||
self.processor = None | ||
|
||
def init_kwargs(self) -> Dict: | ||
return { | ||
"model_name": self.model_name, | ||
"device": self.device, | ||
"batch_size": self.batch_size, | ||
} | ||
|
||
def dimensions(self) -> int: | ||
return EMBED_DIM | ||
|
||
def vector_type(self) -> np.dtype: | ||
return np.float32 | ||
|
||
def load(self) -> None: | ||
import torch | ||
from colpali_engine.models import ColPali | ||
from colpali_engine.models import ColPaliProcessor | ||
|
||
if self.device is None: | ||
if torch.cuda.is_available() and torch.cuda.device_count() > 0: | ||
self.device = "cuda" | ||
elif torch.backends.mps.is_available(): | ||
self.device = "mps" | ||
else: | ||
self.device = "cpu" | ||
|
||
# Load model | ||
self.model = ColPali.from_pretrained( | ||
self.model_name, torch_dtype=torch.bfloat16, device_map=self.device | ||
).eval() | ||
self.processor = ColPaliProcessor.from_pretrained(self.model_name) | ||
|
||
def embed( | ||
self, objects: OrderedDict, metadata: OrderedDict | ||
) -> Tuple[np.ndarray, np.array]: | ||
import torch | ||
from PIL import Image | ||
from torch.utils.data import DataLoader | ||
from tqdm import tqdm | ||
|
||
if "image" in objects: | ||
images = [] | ||
for i in range(len(objects["image"])): | ||
images.append( | ||
Image.fromarray( | ||
np.reshape(objects["image"][i], objects["shape"][i]) | ||
) | ||
) | ||
dataloader = DataLoader( | ||
images, | ||
batch_size=self.batch_size, | ||
shuffle=False, | ||
collate_fn=lambda x: self.processor.process_images(x), | ||
) | ||
elif "text" in objects: | ||
dataloader = DataLoader( | ||
objects["text"], | ||
batch_size=self.batch_size, | ||
shuffle=False, | ||
collate_fn=lambda x: self.processor.process_queries(x), | ||
) | ||
|
||
embeddings = None | ||
external_ids = None | ||
id = 0 | ||
for batch in tqdm(dataloader): | ||
with torch.no_grad(): | ||
batch = {k: v.to(self.model.device) for k, v in batch.items()} | ||
batch_embeddings = list(torch.unbind(self.model(**batch).to("cpu"))) | ||
for object_embeddings in batch_embeddings: | ||
object_embeddings_np = object_embeddings.to(torch.float32).cpu().numpy() | ||
ext_ids = metadata["external_id"][id] * np.ones( | ||
object_embeddings_np.shape[0], dtype=np.uint64 | ||
) | ||
if embeddings is None: | ||
external_ids = ext_ids | ||
embeddings = object_embeddings_np | ||
else: | ||
external_ids = np.concatenate((external_ids, ext_ids)) | ||
embeddings = np.vstack((embeddings, object_embeddings_np)) | ||
id += 1 | ||
return (embeddings, external_ids) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters