| |
| """ |
| Interactive Embedding Inversion Demo Server - Multi-Model Support. |
| Runs on port 8080. Serves a TurboPuffer-style dark UI for real-time diffusion visualization. |
| |
| Supports both Qwen3-Embedding and EmbeddingGemma models. |
| """ |
|
|
| import sys |
| import os |
| import pickle |
| import yaml |
| import json |
| import math |
| import random |
| import asyncio |
| import time |
| from pathlib import Path |
|
|
| import torch |
| import torch.nn as nn |
| import torch.nn.functional as F |
| from transformers import AutoModel, AutoTokenizer |
| from fastapi import FastAPI, Request |
| from fastapi.middleware.cors import CORSMiddleware |
| from starlette.responses import JSONResponse |
| from fastapi.responses import HTMLResponse, StreamingResponse, FileResponse |
| from pydantic import BaseModel |
| from typing import List, Optional |
|
|
| |
| |
| |
|
|
| class AdaLN(nn.Module): |
| """Adaptive LayerNorm: norm(x) * (1+scale) + shift, conditioned on cond.""" |
| def __init__(self, hidden_dim, cond_dim): |
| super().__init__() |
| self.norm = nn.LayerNorm(hidden_dim, elementwise_affine=False) |
| self.proj = nn.Linear(cond_dim, 2 * hidden_dim) |
|
|
| def forward(self, x, cond): |
| |
| params = self.proj(cond).unsqueeze(1) |
| scale, shift = params.chunk(2, dim=-1) |
| return self.norm(x) * (1 + scale) + shift |
|
|
|
|
| class Block(nn.Module): |
| """Transformer block with AdaLN conditioning.""" |
| def __init__(self, hidden_dim, num_heads, ff_dim, dropout=0.0): |
| super().__init__() |
| self.adaln1 = AdaLN(hidden_dim, hidden_dim) |
| self.attn = nn.MultiheadAttention(hidden_dim, num_heads, dropout=dropout, batch_first=True) |
| self.adaln2 = AdaLN(hidden_dim, hidden_dim) |
| self.ff = nn.Sequential( |
| nn.Linear(hidden_dim, ff_dim), |
| nn.GELU(), |
| nn.Dropout(dropout), |
| nn.Linear(ff_dim, hidden_dim), |
| ) |
|
|
| def forward(self, x, cond): |
| |
| normed = self.adaln1(x, cond) |
| attn_out, _ = self.attn(normed, normed, normed, need_weights=False) |
| x = x + attn_out |
| |
| normed = self.adaln2(x, cond) |
| x = x + self.ff(normed) |
| return x |
|
|
|
|
| class ConditionalMDLM(nn.Module): |
| """Conditional Masked Diffusion Language Model - matches checkpoint exactly.""" |
| def __init__(self, config): |
| super().__init__() |
| mc = config["model"] |
| self.vocab_size = mc["vocab_size"] |
| self.hidden_dim = mc["hidden_dim"] |
| self.max_seq_len = mc["max_seq_len"] |
| self.mask_token_id = mc["mask_token_id"] |
|
|
| self.token_embed = nn.Embedding(self.vocab_size, self.hidden_dim) |
| self.pos_embed = nn.Embedding(self.max_seq_len, self.hidden_dim) |
| self.cond_proj = nn.Sequential( |
| nn.Linear(mc["embedding_cond_dim"], self.hidden_dim), |
| nn.GELU(), |
| nn.Linear(self.hidden_dim, self.hidden_dim), |
| ) |
| self.blocks = nn.ModuleList([ |
| Block(self.hidden_dim, mc["num_heads"], mc["ff_dim"], mc.get("dropout", 0.0)) |
| for _ in range(mc["num_layers"]) |
| ]) |
| self.final_norm = AdaLN(self.hidden_dim, self.hidden_dim) |
| self.output_proj = nn.Linear(self.hidden_dim, self.vocab_size, bias=False) |
|
|
| def forward(self, input_ids, cond_embedding, padding_mask=None): |
| B, L = input_ids.shape |
| positions = torch.arange(L, device=input_ids.device).unsqueeze(0) |
| x = self.token_embed(input_ids) + self.pos_embed(positions) |
| cond = self.cond_proj(cond_embedding) |
| for block in self.blocks: |
| x = block(x, cond) |
| x = self.final_norm(x, cond) |
| return self.output_proj(x) |
|
|
|
|
| |
| |
| |
|
|
| def last_token_pool(hidden, attention_mask): |
| """Pool using last non-padding token (Qwen3-Embedding style).""" |
| left_padding = attention_mask[:, -1].sum() == attention_mask.shape[0] |
| if left_padding: |
| return hidden[:, -1] |
| seq_lens = attention_mask.sum(dim=1) - 1 |
| return hidden[torch.arange(hidden.shape[0], device=hidden.device), seq_lens] |
|
|
|
|
| def mean_pool(hidden, attention_mask): |
| m = attention_mask.unsqueeze(-1).expand(hidden.size()).float() |
| return (hidden * m).sum(1) / m.sum(1).clamp(min=1e-9) |
|
|
| def get_pool_fn(model_name): |
| if "qwen" in model_name.lower(): |
| return last_token_pool |
| return mean_pool |
|
|
| |
| |
| |
|
|
| app = FastAPI() |
|
|
| |
| app.add_middleware( |
| CORSMiddleware, |
| allow_origins=["https://embedding-inversion-demo.jina.ai"], |
| allow_methods=["GET", "POST"], |
| allow_headers=["Content-Type"], |
| ) |
|
|
| ALLOWED_ORIGINS = { |
| "https://embedding-inversion-demo.jina.ai", |
| "http://localhost:8080", |
| "http://127.0.0.1:8080", |
| } |
|
|
| @app.middleware("http") |
| async def check_browser_request(request: Request, call_next): |
| |
| if request.url.path in ("/health", "/queue", "/", "/favicon.ico"): |
| return await call_next(request) |
| |
| |
| origin = request.headers.get("origin", "") |
| referer = request.headers.get("referer", "") |
| |
| origin_ok = any(origin.startswith(o) for o in ALLOWED_ORIGINS) if origin else False |
| referer_ok = any(referer.startswith(o) for o in ALLOWED_ORIGINS) if referer else False |
| |
| |
| is_page_load = not origin and not referer and request.method == "GET" |
| |
| if not origin_ok and not referer_ok and not is_page_load: |
| return JSONResponse( |
| status_code=403, |
| content={"error": "API access not allowed. Use the web interface."} |
| ) |
| |
| return await call_next(request) |
|
|
| |
| MODELS = {} |
| DEVICE = None |
|
|
| |
| ENCODE_SEM = asyncio.Semaphore(8) |
| DECODE_SEM = asyncio.Semaphore(6) |
| ACTIVE_COUNT = 0 |
| WAITING_COUNT = 0 |
| count_lock = asyncio.Lock() |
|
|
| |
| MODEL_CONFIGS = { |
| "qwen3": { |
| "checkpoint_path": str(Path.home() / "checkpoints" / "qwen3_best.pt"), |
| "config_path": "configs/v2_qwen3.yaml", |
| }, |
| "gemma": { |
| "checkpoint_path": str(Path.home() / "checkpoints" / "gemma_best.pt"), |
| "config_path": "configs/v2_gemma.yaml", |
| }, |
| } |
|
|
| SAMPLE_SENTENCES_QWEN3_EASY = [ |
| "The coldest winter I ever spent was a summer in San Francisco, said Mark Twain", |
| "Napoleon marched his Grand Army from Paris to Moscow in the winter of 1812", |
| "The Great Wall of China stretches over 13,000 miles from Dandong to Lop Lake", |
| "Albert Einstein developed the theory of relativity while working in Bern, Switzerland", |
| "The Titanic sank in the North Atlantic Ocean after hitting an iceberg in April 1912", |
| "Neil Armstrong landed on the Moon at the Sea of Tranquility on July 20, 1969", |
| "The Berlin Wall fell on November 9, 1989, reuniting East and West Germany", |
| "Amazon was founded by Jeff Bezos in his garage in Bellevue, Washington in 1994", |
| "The Eiffel Tower in Paris was built by Gustave Eiffel for the 1889 World Fair", |
| "Marco Polo traveled from Venice to China along the Silk Road in the 13th century", |
| "The Panama Canal connects the Atlantic Ocean to the Pacific Ocean across Panama", |
| "Steve Jobs unveiled the first iPhone at Moscone Center in San Francisco in 2007", |
| "Mount Everest stands at 8,849 meters on the border between Nepal and Tibet", |
| "The Treaty of Versailles was signed near Paris, France on June 28, 1919", |
| "SpaceX launched its first Falcon 9 rocket from Cape Canaveral, Florida in 2010", |
| ] |
|
|
| SAMPLE_SENTENCES_QWEN3_HARD = [ |
| "is this a pigeon? no it is a transformer model", |
| "i asked chatgpt to write my resignation letter and it was too polite", |
| "my embeddings are not aligned and neither is my sleep schedule", |
| "sir this is a vector database not a therapy session", |
| "instructions unclear, model started generating poetry", |
| "me: i will go to bed early. also me at 3am: reading arxiv papers", |
| "nobody: absolutely nobody: AI twitter: we need to talk about scaling laws", |
| "OpenAI announces GPT-5 while researchers debate if benchmarks even matter", |
| "NVIDIA stock hits new high as demand for H100 GPUs continues to outpace supply", |
| "Google DeepMind achieves breakthrough in protein structure prediction", |
| "the mitochondria is the powerhouse of the cell and I still remember that", |
| "according to all known laws of aviation a bee should not be able to fly", |
| "you miss 100 percent of the shots you do not take says Wayne Gretzky", |
| "404 meaning of life not found try again after coffee", |
| "rm -rf is not a valid debugging strategy no matter what stackoverflow says", |
| ] |
|
|
| SAMPLE_SENTENCES_GEMMA_EASY = [ |
| "The coldest winter I ever spent was a summer in San Francisco, said Mark Twain", |
| "Napoleon marched his Grand Army from Paris to Moscow in the winter of 1812", |
| "The Great Wall of China stretches over 13,000 miles from Dandong to Lop Lake", |
| "Albert Einstein developed the theory of relativity while working in Bern, Switzerland", |
| "The Titanic sank in the North Atlantic Ocean after hitting an iceberg in April 1912", |
| "Neil Armstrong landed on the Moon at the Sea of Tranquility on July 20, 1969", |
| "Amazon was founded by Jeff Bezos in his garage in Bellevue, Washington in 1994", |
| "The Eiffel Tower in Paris was built by Gustave Eiffel for the 1889 World Fair", |
| "Marco Polo traveled from Venice to China along the Silk Road in the 13th century", |
| "Mount Everest stands at 8,849 meters on the border between Nepal and Tibet", |
| ] |
|
|
| SAMPLE_SENTENCES_GEMMA_HARD = [ |
| "Die Kunst des Maschinenlernens liegt in den Daten", |
| "L intelligence artificielle transforme notre quotidien", |
| "El aprendizaje profundo revoluciona la medicina moderna", |
| "La ricerca scientifica apre nuove frontiere ogni giorno", |
| "Yapay zeka gunluk hayatimizi derinden etkiliyor", |
| "A inteligencia artificial esta revolucionando a pesquisa", |
| "Le traitement du langage naturel permet aux machines de comprendre", |
| "Los modelos de lenguaje grandes generan texto sorprendentemente coherente", |
| "chatgpt wrote my thesis and my professor did not notice anything wrong", |
| "the cake is a lie but the embeddings are real", |
| "the voyager 1 spacecraft is still sending data from interstellar space", |
| "Ich bin ein Berliner said JFK but the model thinks he said donut", |
| "selon toutes les lois connues de l aviation une abeille ne devrait pas voler", |
| ] |
|
|
| SAMPLE_SENTENCES = SAMPLE_SENTENCES_QWEN3_EASY |
|
|
|
|
| def load_model(model_key): |
| """Load a specific model (qwen3 or gemma).""" |
| global DEVICE |
| |
| if DEVICE is None: |
| DEVICE = torch.device("cuda" if torch.cuda.is_available() else "cpu") |
| print(f"Device: {DEVICE}") |
|
|
| cfg = MODEL_CONFIGS[model_key] |
| print(f"\n{'='*60}") |
| print(f"Loading {model_key.upper()} model") |
| print(f"{'='*60}") |
|
|
| |
| ckpt_path = cfg["checkpoint_path"] |
| print(f"Loading checkpoint {ckpt_path} ...") |
| with open(ckpt_path, "rb") as f: |
| ckpt = torch.load(f, map_location=DEVICE, pickle_module=pickle) |
| config = ckpt["config"] |
| print(f" step={ckpt['step']}, val_loss={ckpt['best_val_loss']:.4f}") |
| print(f" config: vocab={config['model']['vocab_size']}, " |
| f"seq_len={config['model']['max_seq_len']}, " |
| f"layers={config['model']['num_layers']}, " |
| f"embedding_cond_dim={config['model']['embedding_cond_dim']}") |
|
|
| |
| model = ConditionalMDLM(config).to(DEVICE) |
| state = {k: v.float() for k, v in ckpt["ema_state_dict"].items()} |
| model.load_state_dict(state, strict=True) |
| model.eval() |
| print(" Model loaded OK") |
| del ckpt |
|
|
| |
| enc_name = config["model"]["encoder_model"] |
| print(f"Loading encoder: {enc_name} ...") |
| encoder_tok = AutoTokenizer.from_pretrained(enc_name, trust_remote_code=True) |
| encoder_model = AutoModel.from_pretrained(enc_name, trust_remote_code=True).to(DEVICE).eval() |
| print(" Encoder loaded OK") |
|
|
| |
| dec_name = config["model"]["decoder_tokenizer"] |
| print(f"Loading decoder tokenizer: {dec_name} ...") |
| decoder_tok = AutoTokenizer.from_pretrained(dec_name, trust_remote_code=True) |
| print(" Decoder tokenizer loaded OK") |
|
|
| MODELS[model_key] = { |
| "model": model, |
| "config": config, |
| "encoder_model": encoder_model, |
| "encoder_tok": encoder_tok, |
| "decoder_tok": decoder_tok, |
| } |
| print(f"{model_key.upper()} ready") |
|
|
|
|
| def load_models(): |
| """Load all models on startup.""" |
| for model_key in MODEL_CONFIGS: |
| load_model(model_key) |
| print("\n" + "="*60) |
| print("=== Ready ===") |
| print("="*60 + "\n") |
|
|
|
|
| |
| |
| |
|
|
| async def increment_active(): |
| global ACTIVE_COUNT |
| async with count_lock: |
| ACTIVE_COUNT += 1 |
|
|
| async def decrement_active(): |
| global ACTIVE_COUNT |
| async with count_lock: |
| ACTIVE_COUNT -= 1 |
|
|
| async def increment_waiting(): |
| global WAITING_COUNT |
| async with count_lock: |
| WAITING_COUNT += 1 |
|
|
| async def decrement_waiting(): |
| global WAITING_COUNT |
| async with count_lock: |
| WAITING_COUNT -= 1 |
|
|
| async def get_queue_status(): |
| async with count_lock: |
| return {"active": ACTIVE_COUNT, "waiting": WAITING_COUNT} |
|
|
| |
| |
| |
|
|
| class EncodeRequest(BaseModel): |
| text: str |
| model: str = "qwen3" |
|
|
| class DecodeRequest(BaseModel): |
| embedding: List[float] |
| steps: int = 32 |
| model: str = "qwen3" |
|
|
| class EncodeResponse(BaseModel): |
| embedding: List[float] |
| text: str |
|
|
|
|
| @app.on_event("startup") |
| async def startup(): |
| load_models() |
|
|
|
|
| @app.get("/", response_class=HTMLResponse) |
| async def index(): |
| html_path = Path(__file__).parent / "demo" / "index.html" |
| return HTMLResponse(html_path.read_text()) |
|
|
|
|
|
|
|
|
| @app.get("/og-image.png") |
| async def og_image(): |
| return FileResponse(Path(__file__).parent / "demo" / "og-image.png", media_type="image/png", headers={"Cache-Control": "no-cache, max-age=0"}) |
|
|
| @app.get("/favicon-32.png") |
| async def favicon(): |
| return FileResponse(Path(__file__).parent / "demo" / "favicon-32.png", media_type="image/png", headers={"Cache-Control": "no-cache, max-age=0"}) |
|
|
| @app.get("/favicon.ico") |
| async def favicon_ico(): |
| return FileResponse(Path(__file__).parent / "demo" / "favicon-32.png", media_type="image/png") |
|
|
| @app.get("/queue") |
| async def queue_status(): |
| """Return current queue status for frontend polling.""" |
| return await get_queue_status() |
|
|
|
|
| @app.post("/encode", response_model=EncodeResponse) |
| async def encode(req: EncodeRequest): |
| model_key = req.model.lower() |
| if model_key not in MODELS: |
| return {"error": f"Unknown model: {model_key}"} |
| |
| m = MODELS[model_key] |
| |
| |
| await increment_waiting() |
| start_wait = time.time() |
| |
| try: |
| |
| try: |
| async with asyncio.timeout(30): |
| async with ENCODE_SEM: |
| await decrement_waiting() |
| await increment_active() |
| try: |
| with torch.no_grad(): |
| inputs = m["encoder_tok"]( |
| [req.text], return_tensors="pt", |
| padding=True, truncation=True, max_length=512 |
| ).to(DEVICE) |
| out = m["encoder_model"](**inputs) |
| pool_fn = get_pool_fn(m["config"]["model"]["encoder_model"]) |
| emb = pool_fn(out.last_hidden_state, inputs["attention_mask"]) |
| emb = F.normalize(emb, dim=-1) |
| return EncodeResponse(embedding=emb[0].cpu().tolist(), text=req.text) |
| finally: |
| await decrement_active() |
| except asyncio.TimeoutError: |
| await decrement_waiting() |
| raise HTTPException( |
| status_code=503, |
| detail="Server busy, please try again in a moment" |
| ) |
| except HTTPException: |
| raise |
| except Exception as e: |
| await decrement_waiting() |
| raise |
|
|
|
|
| @app.post("/decode") |
| async def decode(req: DecodeRequest): |
| model_key = req.model.lower() |
| if model_key not in MODELS: |
| return {"error": f"Unknown model: {model_key}"} |
| |
| m = MODELS[model_key] |
| model = m["model"] |
| config = m["config"] |
| encoder_model = m["encoder_model"] |
| encoder_tok = m["encoder_tok"] |
| decoder_tok = m["decoder_tok"] |
|
|
| async def generate(): |
| |
| await increment_waiting() |
| |
| try: |
| |
| try: |
| async with asyncio.timeout(30): |
| async with DECODE_SEM: |
| await decrement_waiting() |
| await increment_active() |
| try: |
| embedding = torch.tensor([req.embedding], device=DEVICE, dtype=torch.float32) |
| embedding = F.normalize(embedding, dim=-1) |
|
|
| L = m["config"]["model"]["max_seq_len"] |
| mask_id = m["config"]["model"]["mask_token_id"] |
| steps = max(1, min(req.steps, L)) |
| per_step = max(1, L // steps) |
|
|
| ids = torch.full((1, L), mask_id, dtype=torch.long, device=DEVICE) |
| unmasked = torch.zeros(L, dtype=torch.bool, device=DEVICE) |
|
|
| with torch.no_grad(): |
| for step in range(steps): |
| if unmasked.all(): |
| break |
|
|
| logits = model(ids, embedding) |
| probs = F.softmax(logits[0], dim=-1) |
| confidence, preds = probs.max(dim=-1) |
| confidence[unmasked] = -1.0 |
|
|
| k = min(per_step, (~unmasked).sum().item()) |
| if k == 0: |
| break |
| _, topk = confidence.topk(k) |
| topk_set = set(topk.cpu().tolist()) |
|
|
| ids[0, topk] = preds[topk] |
| unmasked[topk] = True |
|
|
| |
| tokens = [] |
| for i in range(L): |
| tid = ids[0, i].item() |
| if tid == mask_id: |
| tokens.append({"t": "[MASK]", "s": "m"}) |
| else: |
| tok_text = decoder_tok.decode([tid]) |
| state = "c" if i in topk_set else "u" |
| tokens.append({"t": tok_text, "s": state}) |
|
|
| |
| clean = [t for t in ids[0].cpu().tolist() if t != mask_id] |
| text = decoder_tok.decode(clean, skip_special_tokens=True) |
|
|
| evt = { |
| "step": step, |
| "total": steps, |
| "tokens": tokens, |
| "text": text, |
| "progress": float(unmasked.sum().item()) / L, |
| } |
| yield f"data: {json.dumps(evt)}\n\n" |
| await asyncio.sleep(0.08) |
|
|
| |
| clean = [t for t in ids[0].cpu().tolist() if t != mask_id] |
| final_text = decoder_tok.decode(clean, skip_special_tokens=True) |
|
|
| with torch.no_grad(): |
| inputs2 = encoder_tok( |
| [final_text], return_tensors="pt", |
| padding=True, truncation=True, max_length=512 |
| ).to(DEVICE) |
| out2 = encoder_model(**inputs2) |
| pool_fn2 = get_pool_fn(m["config"]["model"]["encoder_model"]) |
| emb2 = pool_fn2(out2.last_hidden_state, inputs2["attention_mask"]) |
| emb2 = F.normalize(emb2, dim=-1) |
| cos_sim = F.cosine_similarity(embedding, emb2).item() |
|
|
| |
| tokens = [] |
| for i in range(L): |
| tid = ids[0, i].item() |
| if tid == mask_id: |
| tokens.append({"t": "[MASK]", "s": "m"}) |
| else: |
| tokens.append({"t": decoder_tok.decode([tid]), "s": "u"}) |
|
|
| evt = { |
| "step": steps, |
| "total": steps, |
| "tokens": tokens, |
| "text": final_text, |
| "progress": 1.0, |
| "cosine_similarity": round(cos_sim, 4), |
| "done": True, |
| } |
| yield f"data: {json.dumps(evt)}\n\n" |
| finally: |
| await decrement_active() |
| except asyncio.TimeoutError: |
| await decrement_waiting() |
| yield f"data: {json.dumps({'error': 'Server busy, please try again in a moment'})}\n\n" |
| return |
| except Exception as e: |
| await decrement_waiting() |
| yield f"data: {json.dumps({'error': str(e)})}\n\n" |
|
|
| return StreamingResponse(generate(), media_type="text/event-stream") |
|
|
|
|
| @app.get("/random") |
| async def get_random(model: str = "qwen3", hard: bool = False): |
| if model.lower() == "gemma": |
| pool = SAMPLE_SENTENCES_GEMMA_HARD if hard else SAMPLE_SENTENCES_GEMMA_EASY |
| else: |
| pool = SAMPLE_SENTENCES_QWEN3_HARD if hard else SAMPLE_SENTENCES_QWEN3_EASY |
| return {"text": random.choice(pool)} |
|
|
|
|
| @app.get("/health") |
| async def health(): |
| queue = await get_queue_status() |
| return { |
| "status": "ok", |
| "device": str(DEVICE), |
| "models": list(MODELS.keys()), |
| "queue": queue |
| } |
|
|
|
|
| if __name__ == "__main__": |
| import uvicorn |
| uvicorn.run(app, host="0.0.0.0", port=8080, log_level="info") |
|
|