File size: 9,027 Bytes
fb12ddc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 | # HF_Space_hipVS/embedding.py
# ============================
# Multimodal embedding + LLM calls.
#
# Embedding strategy: NO CAPTIONING.
# GPU: Qwen3-VL-Embedding (2B or 8B) β encodes images AND text into same space
# CPU: CLIP ViT-L/14 β same idea, lighter weight
#
# LLM strategy:
# Primary: Qwen3-35B-A3B (local or HF Inference API)
# Fallback: Qwen3-1.7B or HF Inference API
import logging
import io
import numpy as np
from PIL import Image as PILImage
logger = logging.getLogger(__name__)
# ββ Lazy-loaded model singletons βββββββββββββββββββββββββββββββββββββββββββββ
_embed_model = None
_embed_processor = None
_embed_tokenizer = None
_is_clip = False
def _load_embed_model():
"""
Lazy-init the multimodal embedding model.
GPU path: Qwen3-VL-Embedding via transformers
CPU path: CLIP via transformers (CLIPModel + CLIPProcessor)
"""
global _embed_model, _embed_processor, _embed_tokenizer, _is_clip
if _embed_model is not None:
return
import torch
from config import EMBED_MODEL, DEVICE, USE_GPU
model_lower = EMBED_MODEL.lower()
if "clip" in model_lower:
# ββ CLIP path (CPU fallback) ββββββββββββββββββββββββββββββββββββ
from transformers import CLIPModel, CLIPProcessor
logger.info(f"Loading CLIP model: {EMBED_MODEL} on {DEVICE}")
_embed_model = CLIPModel.from_pretrained(EMBED_MODEL).to(DEVICE)
_embed_processor = CLIPProcessor.from_pretrained(EMBED_MODEL)
_embed_model.eval()
_is_clip = True
logger.info("CLIP model loaded")
else:
# ββ Qwen3-VL-Embedding path (GPU) ββββββββββββββββββββββββββββββ
from transformers import AutoModel, AutoProcessor
dtype = torch.float16 if USE_GPU else torch.float32
logger.info(f"Loading Qwen3-VL-Embedding: {EMBED_MODEL} on {DEVICE}")
_embed_model = AutoModel.from_pretrained(
EMBED_MODEL,
torch_dtype=dtype,
trust_remote_code=True,
).to(DEVICE)
_embed_processor = AutoProcessor.from_pretrained(
EMBED_MODEL,
trust_remote_code=True,
)
_embed_model.eval()
_is_clip = False
logger.info("Qwen3-VL-Embedding model loaded")
# ββ Text Embedding ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def embed_text(text: str) -> np.ndarray:
"""
Embed a text string into the shared multimodal vector space.
Works with both CLIP and Qwen3-VL-Embedding.
Returns a normalized float32 numpy vector.
"""
import torch
from config import DEVICE
_load_embed_model()
with torch.no_grad():
if _is_clip:
inputs = _embed_processor(text=[text], return_tensors="pt", padding=True, truncation=True).to(DEVICE)
features = _embed_model.get_text_features(**inputs)
else:
# Qwen3-VL-Embedding: text-only input
inputs = _embed_processor(text=[text], return_tensors="pt", padding=True, truncation=True).to(DEVICE)
outputs = _embed_model(**inputs)
# Use the [CLS] token or mean pooling depending on model
if hasattr(outputs, "pooler_output") and outputs.pooler_output is not None:
features = outputs.pooler_output
else:
features = outputs.last_hidden_state[:, 0, :]
vec = features.squeeze(0).cpu().float().numpy()
# L2 normalize
norm = np.linalg.norm(vec)
if norm > 0:
vec = vec / norm
return vec
def embed_texts(texts: list[str]) -> np.ndarray:
"""Batch embed multiple texts. Returns (N, D) float32 array."""
import torch
from config import DEVICE
_load_embed_model()
with torch.no_grad():
if _is_clip:
inputs = _embed_processor(text=texts, return_tensors="pt", padding=True, truncation=True).to(DEVICE)
features = _embed_model.get_text_features(**inputs)
else:
inputs = _embed_processor(text=texts, return_tensors="pt", padding=True, truncation=True).to(DEVICE)
outputs = _embed_model(**inputs)
if hasattr(outputs, "pooler_output") and outputs.pooler_output is not None:
features = outputs.pooler_output
else:
features = outputs.last_hidden_state[:, 0, :]
vecs = features.cpu().float().numpy()
norms = np.linalg.norm(vecs, axis=1, keepdims=True)
norms = np.where(norms == 0, 1, norms)
return vecs / norms
# ββ Image Embedding (direct, no captioning) βββββββββββββββββββββββββββββββββ
def embed_image(image: PILImage.Image) -> np.ndarray:
"""
Embed a PIL Image directly into the shared vector space.
No captioning step β the vision encoder handles it natively.
Returns a normalized float32 numpy vector.
"""
import torch
from config import DEVICE
_load_embed_model()
if image.mode != "RGB":
image = image.convert("RGB")
with torch.no_grad():
if _is_clip:
inputs = _embed_processor(images=image, return_tensors="pt").to(DEVICE)
features = _embed_model.get_image_features(**inputs)
else:
# Qwen3-VL-Embedding: image input via processor
inputs = _embed_processor(images=image, return_tensors="pt").to(DEVICE)
outputs = _embed_model(**inputs)
if hasattr(outputs, "pooler_output") and outputs.pooler_output is not None:
features = outputs.pooler_output
else:
features = outputs.last_hidden_state[:, 0, :]
vec = features.squeeze(0).cpu().float().numpy()
norm = np.linalg.norm(vec)
if norm > 0:
vec = vec / norm
return vec
def embed_image_bytes(data: bytes, mime_type: str = "image/jpeg") -> np.ndarray:
"""Embed raw image bytes. Returns normalized float32 vector."""
image = PILImage.open(io.BytesIO(data))
return embed_image(image)
# ββ LLM Summarization ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def llm_summarize(query: str, search_results: list[dict], mode: str = "image") -> str:
"""
Pass search results through an LLM for human-friendly interpretation.
Tries: local model -> HF Inference API -> plain text fallback.
"""
from config import LLM_MODEL, LLM_FALLBACK, HF_TOKEN
if not search_results:
return f'No results found for "{query}". Try uploading more media or using different search terms.'
# Build prompt context
if mode == "video":
results_text = "\n".join(
f" - Video: {r.get('video_name', '?')}, "
f"Time: {r.get('timestamp_label', '?')} ({r.get('timestamp_sec', 0):.1f}s), "
f"Score: {r.get('score', 0):.4f}"
for r in search_results
)
instruction = (
"You are a vision search assistant. Summarize the video search results below. "
"Highlight the most relevant moments and time ranges. Be concise. Use markdown."
)
else:
results_text = "\n".join(
f" - Image: {r.get('file_name', '?')}, "
f"Score: {r.get('score', 0):.4f}"
for r in search_results
)
instruction = (
"You are a vision search assistant. Summarize the image search results below. "
"Highlight the most relevant matches. Be concise. Use markdown."
)
prompt = (
f"{instruction}\n\n"
f"User query: \"{query}\"\n\n"
f"Search results ({len(search_results)} matches):\n{results_text}\n\n"
f"Summary:"
)
# Try HF Inference API (works for both local and remote models)
for model_id in (LLM_MODEL, LLM_FALLBACK):
try:
from huggingface_hub import InferenceClient
client = InferenceClient(
model=model_id,
token=HF_TOKEN if HF_TOKEN else None,
)
response = client.text_generation(
prompt,
max_new_tokens=300,
temperature=0.7,
do_sample=True,
)
if response and response.strip():
return response.strip()
except Exception as e:
logger.warning(f"LLM {model_id} failed: {e}")
continue
# Plain text fallback
return (
f"**Found {len(search_results)} results for \"{query}\"**\n\n"
f"_(LLM summary unavailable)_\n\n"
f"```\n{results_text}\n```"
)
|