File size: 16,321 Bytes
f5eeb1c | 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 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 | """
FaceIndex — sqlite-vec backed reverse face search index.
Stores 512-d ArcFace face embeddings in a SQLite database with sqlite-vec
for fast cosine similarity search. Persists to a single file
(data/face_index.db by default).
Why sqlite-vec instead of ChromaDB / FAISS / Pinecone?
- Zero external dependencies beyond the `sqlite-vec` Python package (5MB)
- Persists to a single file (easy backup, easy ship)
- Runs on free-tier VPS without RAM issues
- Supports standard SQL queries alongside vector search
- Can be inspected with the `sqlite3` CLI
Schema:
faces — one row per enrolled face (face_id, embedding, metadata)
enrollments — audit log of all enrollment events
The embedding is stored as a serialized 512-d float32 vector via sqlite-vec's
vec0 virtual table type. Search is cosine similarity (since embeddings are
L2-normalized, this equals dot product).
"""
from __future__ import annotations
import json
import sqlite3
import threading
import uuid
from datetime import datetime, timezone
from pathlib import Path
from typing import Any, Optional
import numpy as np
from loguru import logger
# Schema for the metadata table (regular SQLite)
_SCHEMA_METADATA = """
CREATE TABLE IF NOT EXISTS faces (
face_id TEXT PRIMARY KEY,
name TEXT,
source_url TEXT,
metadata TEXT NOT NULL DEFAULT '{}',
thumbnail_path TEXT,
embedding_dim INTEGER NOT NULL,
created_at TEXT NOT NULL,
updated_at TEXT NOT NULL
);
CREATE INDEX IF NOT EXISTS idx_faces_name ON faces(name);
CREATE INDEX IF NOT EXISTS idx_faces_created ON faces(created_at);
CREATE TABLE IF NOT EXISTS enrollments (
id INTEGER PRIMARY KEY AUTOINCREMENT,
face_id TEXT NOT NULL,
action TEXT NOT NULL, -- 'enroll' | 'delete'
timestamp TEXT NOT NULL,
details TEXT,
FOREIGN KEY (face_id) REFERENCES faces(face_id)
);
CREATE INDEX IF NOT EXISTS idx_enrollments_face ON enrollments(face_id);
"""
class FaceIndex:
"""Thread-safe reverse face search index backed by sqlite-vec."""
EMBEDDING_DIM = 512
def __init__(self, path: str = ":memory:") -> None:
self._path = path
self._lock = threading.RLock()
# Ensure parent dir exists
if path != ":memory:":
Path(path).parent.mkdir(parents=True, exist_ok=True)
self._conn = sqlite3.connect(path, check_same_thread=False)
self._conn.row_factory = sqlite3.Row
# Load sqlite-vec extension
try:
import sqlite_vec # type: ignore
self._conn.enable_load_extension(True)
sqlite_vec.load(self._conn)
self._conn.enable_load_extension(False)
self._vec_available = True
logger.info("sqlite-vec extension loaded successfully")
except ImportError:
self._vec_available = False
logger.warning(
"sqlite-vec not installed — FaceIndex will use pure-Python fallback "
"(slower, no vector indexing). Install with: pip install sqlite-vec"
)
except Exception as e:
self._vec_available = False
logger.error(f"Failed to load sqlite-vec: {e}")
# Initialize schema
self._conn.executescript(_SCHEMA_METADATA)
self._uses_l2 = False # set by _init_vec_table
self._init_vec_table()
self._conn.commit()
if self._vec_available:
count = self.count()
logger.info(f"FaceIndex initialized at {path} (sqlite-vec mode, {count} faces)")
else:
logger.info(f"FaceIndex initialized at {path} (fallback mode)")
def _init_vec_table(self) -> None:
"""Create the vec0 virtual table for fast vector search.
We use cosine distance (1 - dot product for L2-normalized vectors)
by partition-adding a `distance_metric` column metadata. However,
sqlite-vec's vec0 currently defaults to L2 (Euclidean) distance.
For L2-normalized embeddings, L2² = 2(1 - cos), so we can convert
at query time: cos_sim = 1 - (L2² / 2).
"""
if not self._vec_available:
return
try:
self._conn.execute(
f"""
CREATE VIRTUAL TABLE IF NOT EXISTS face_embeddings USING vec0(
face_id TEXT PRIMARY KEY,
embedding float[{self.EMBEDDING_DIM}] distance_metric=cosine
)
"""
)
self._conn.commit()
except Exception as e:
# Fallback: try without distance_metric (older sqlite-vec versions)
logger.warning(f"cosine metric not supported, falling back to L2: {e}")
try:
self._conn.execute(
f"""
CREATE VIRTUAL TABLE IF NOT EXISTS face_embeddings USING vec0(
face_id TEXT PRIMARY KEY,
embedding float[{self.EMBEDDING_DIM}]
)
"""
)
self._conn.commit()
self._uses_l2 = True
except Exception as e2:
logger.error(f"Failed to create vec0 table: {e2}")
self._vec_available = False
else:
self._uses_l2 = False
# ------------------------------------------------------------------ #
# Enrollment
# ------------------------------------------------------------------ #
def enroll(
self,
embedding: np.ndarray,
name: Optional[str] = None,
source_url: Optional[str] = None,
metadata: Optional[dict] = None,
thumbnail_path: Optional[str] = None,
) -> str:
"""
Add a face to the searchable index.
Args:
embedding: 512-d L2-normalized face embedding (ArcFace)
name: optional human-readable name
source_url: optional URL where the face was found
metadata: optional dict of arbitrary metadata (age, location, etc.)
thumbnail_path: optional path to a thumbnail image of the face
Returns:
face_id (UUID string)
"""
if embedding.shape != (self.EMBEDDING_DIM,):
raise ValueError(
f"Embedding must be shape ({self.EMBEDDING_DIM},), got {embedding.shape}"
)
# L2-normalize (defensive — should already be normalized)
norm = np.linalg.norm(embedding)
if norm > 0:
embedding = embedding / norm
face_id = str(uuid.uuid4())
now = datetime.now(timezone.utc).isoformat()
metadata_json = json.dumps(metadata or {}, default=str)
embedding_bytes = embedding.astype(np.float32).tobytes()
with self._lock:
# Insert metadata
self._conn.execute(
"""INSERT INTO faces
(face_id, name, source_url, metadata, thumbnail_path,
embedding_dim, created_at, updated_at)
VALUES (?, ?, ?, ?, ?, ?, ?, ?)""",
(face_id, name, source_url, metadata_json, thumbnail_path,
self.EMBEDDING_DIM, now, now),
)
# Insert embedding
if self._vec_available:
self._conn.execute(
"INSERT INTO face_embeddings (face_id, embedding) VALUES (?, ?)",
(face_id, embedding_bytes),
)
# Audit log
self._conn.execute(
"""INSERT INTO enrollments (face_id, action, timestamp, details)
VALUES (?, ?, ?, ?)""",
(face_id, "enroll", now, json.dumps({"name": name, "source_url": source_url})),
)
self._conn.commit()
logger.debug(f"Enrolled face {face_id} (name={name})")
return face_id
# ------------------------------------------------------------------ #
# Search
# ------------------------------------------------------------------ #
def search(
self,
query_embedding: np.ndarray,
top_k: int = 10,
threshold: float = 0.0,
) -> list[dict]:
"""
Search the index for faces similar to the query embedding.
Args:
query_embedding: 512-d L2-normalized face embedding
top_k: number of results to return
threshold: minimum cosine similarity (0-1); 0 = return all
Returns:
list of dicts sorted by similarity (descending):
{
"face_id": str,
"name": str | None,
"source_url": str | None,
"metadata": dict,
"thumbnail_path": str | None,
"similarity": float,
"created_at": str,
}
"""
if query_embedding.shape != (self.EMBEDDING_DIM,):
raise ValueError(
f"Query embedding must be shape ({self.EMBEDDING_DIM},), got {query_embedding.shape}"
)
# L2-normalize
norm = np.linalg.norm(query_embedding)
if norm > 0:
query_embedding = query_embedding / norm
with self._lock:
if self._vec_available:
matches = self._search_vec(query_embedding, top_k * 2)
else:
matches = self._search_fallback(query_embedding, top_k * 2)
# Filter by threshold + take top_k
results = []
for m in matches:
if m["similarity"] >= threshold:
results.append(m)
if len(results) >= top_k:
break
return results
def _search_vec(self, query_embedding: np.ndarray, k: int) -> list[dict]:
"""Use sqlite-vec KNN search."""
query_bytes = query_embedding.astype(np.float32).tobytes()
rows = self._conn.execute(
"""
SELECT
f.face_id, f.name, f.source_url, f.metadata,
f.thumbnail_path, f.created_at,
v.distance
FROM face_embeddings v
JOIN faces f ON f.face_id = v.face_id
WHERE v.embedding MATCH ?
AND k = ?
ORDER BY v.distance ASC
""",
(query_bytes, k),
).fetchall()
# distance interpretation depends on metric:
# - cosine: distance = 1 - cos_sim, so sim = 1 - distance
# - L2 (Euclidean): for L2-normalized vectors, L2² = 2(1 - cos_sim),
# so cos_sim = 1 - (distance² / 2). We use squared distance here
# since sqlite-vec returns Euclidean (not squared).
out = []
for r in rows:
if getattr(self, "_uses_l2", False):
# L2 distance — convert to cosine similarity
sim = 1.0 - (r["distance"] ** 2) / 2.0
else:
# cosine distance
sim = 1.0 - r["distance"]
out.append({
"face_id": r["face_id"],
"name": r["name"],
"source_url": r["source_url"],
"metadata": json.loads(r["metadata"] or "{}"),
"thumbnail_path": r["thumbnail_path"],
"similarity": float(sim),
"created_at": r["created_at"],
})
return out
def _search_fallback(self, query_embedding: np.ndarray, k: int) -> list[dict]:
"""Pure-Python fallback when sqlite-vec is not available."""
rows = self._conn.execute(
"SELECT face_id, name, source_url, metadata, thumbnail_path, created_at FROM faces"
).fetchall()
# We don't store embeddings in the metadata table for fallback mode.
# In a real fallback, we'd need a separate embedding store. For now,
# return empty results — installation of sqlite-vec is required.
logger.warning(
"FaceIndex fallback mode does not support search — install sqlite-vec: "
"pip install sqlite-vec"
)
return []
# ------------------------------------------------------------------ #
# CRUD
# ------------------------------------------------------------------ #
def get(self, face_id: str) -> Optional[dict]:
"""Get details of a specific enrolled face."""
with self._lock:
row = self._conn.execute(
"SELECT * FROM faces WHERE face_id = ?", (face_id,)
).fetchone()
if not row:
return None
d = dict(row)
d["metadata"] = json.loads(d.get("metadata") or "{}")
return d
def list(self, limit: int = 50, offset: int = 0, name: Optional[str] = None) -> list[dict]:
"""Paginated list of enrolled faces."""
with self._lock:
if name:
cur = self._conn.execute(
"SELECT * FROM faces WHERE name LIKE ? ORDER BY created_at DESC LIMIT ? OFFSET ?",
(f"%{name}%", limit, offset),
)
else:
cur = self._conn.execute(
"SELECT * FROM faces ORDER BY created_at DESC LIMIT ? OFFSET ?",
(limit, offset),
)
rows = [dict(r) for r in cur.fetchall()]
for r in rows:
r["metadata"] = json.loads(r.get("metadata") or "{}")
return rows
def delete(self, face_id: str) -> bool:
"""Remove a face from the index. Returns True if deleted."""
now = datetime.now(timezone.utc).isoformat()
with self._lock:
# Check exists
row = self._conn.execute(
"SELECT face_id FROM faces WHERE face_id = ?", (face_id,)
).fetchone()
if not row:
return False
self._conn.execute("DELETE FROM faces WHERE face_id = ?", (face_id,))
if self._vec_available:
self._conn.execute(
"DELETE FROM face_embeddings WHERE face_id = ?", (face_id,)
)
self._conn.execute(
"""INSERT INTO enrollments (face_id, action, timestamp, details)
VALUES (?, ?, ?, ?)""",
(face_id, "delete", now, "{}"),
)
self._conn.commit()
logger.debug(f"Deleted face {face_id}")
return True
def count(self) -> int:
"""Total number of enrolled faces."""
with self._lock:
row = self._conn.execute("SELECT COUNT(*) as n FROM faces").fetchone()
return row["n"] if row else 0
def stats(self) -> dict:
"""Index statistics."""
with self._lock:
total = self.count()
named = self._conn.execute(
"SELECT COUNT(*) as n FROM faces WHERE name IS NOT NULL"
).fetchone()["n"]
last_enrollment = self._conn.execute(
"SELECT created_at FROM faces ORDER BY created_at DESC LIMIT 1"
).fetchone()
recent_enrollments = self._conn.execute(
"""SELECT COUNT(*) as n FROM enrollments
WHERE action = 'enroll'
AND timestamp > datetime('now', '-24 hours')"""
).fetchone()["n"]
return {
"total_faces": total,
"named_faces": named,
"anonymous_faces": total - named,
"last_enrollment": last_enrollment["created_at"] if last_enrollment else None,
"recent_enrollments_24h": recent_enrollments,
"vec_available": self._vec_available,
"embedding_dim": self.EMBEDDING_DIM,
"path": self._path,
}
def clear(self) -> int:
"""Remove ALL faces from the index. Returns count deleted."""
with self._lock:
n = self.count()
self._conn.execute("DELETE FROM faces")
if self._vec_available:
self._conn.execute("DELETE FROM face_embeddings")
self._conn.execute("DELETE FROM enrollments")
self._conn.commit()
logger.warning(f"Cleared {n} faces from index")
return n
def close(self) -> None:
with self._lock:
self._conn.close()
|