Spaces:
Running
Running
File size: 12,892 Bytes
23680f2 |
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 |
"""FastAPI application for HyperView."""
import os
from pathlib import Path
from typing import Any
from fastapi import Depends, FastAPI, HTTPException, Query
from fastapi.middleware.cors import CORSMiddleware
from fastapi.responses import JSONResponse
from fastapi.staticfiles import StaticFiles
from pydantic import BaseModel
import numpy as np
from hyperview.core.dataset import Dataset
from hyperview.core.selection import points_in_polygon
# Global dataset reference (set by launch())
_current_dataset: Dataset | None = None
_current_session_id: str | None = None
class SelectionRequest(BaseModel):
"""Request model for selection sync."""
sample_ids: list[str]
class LassoSelectionRequest(BaseModel):
"""Request model for lasso selection queries."""
layout_key: str # e.g., "openai_clip-vit-base-patch32__umap"
# Polygon vertices in data space, interleaved: [x0, y0, x1, y1, ...]
polygon: list[float]
offset: int = 0
limit: int = 100
include_thumbnails: bool = True
class SampleResponse(BaseModel):
"""Response model for a sample."""
id: str
filepath: str
filename: str
label: str | None
thumbnail: str | None
metadata: dict
width: int | None = None
height: int | None = None
class LayoutInfoResponse(BaseModel):
"""Response model for layout info."""
layout_key: str
space_key: str
method: str
geometry: str
count: int
params: dict[str, Any] | None
class SpaceInfoResponse(BaseModel):
"""Response model for embedding space info."""
space_key: str
model_id: str
dim: int
count: int
provider: str
geometry: str
config: dict[str, Any] | None
class DatasetResponse(BaseModel):
"""Response model for dataset info."""
name: str
num_samples: int
labels: list[str]
label_colors: dict[str, str]
spaces: list[SpaceInfoResponse]
layouts: list[LayoutInfoResponse]
class EmbeddingsResponse(BaseModel):
"""Response model for embeddings data (for scatter plot)."""
layout_key: str
geometry: str
ids: list[str]
labels: list[str | None]
coords: list[list[float]]
label_colors: dict[str, str]
class SimilarSampleResponse(BaseModel):
"""Response model for a similar sample with distance."""
id: str
filepath: str
filename: str
label: str | None
thumbnail: str | None
distance: float
metadata: dict
class SimilaritySearchResponse(BaseModel):
"""Response model for similarity search results."""
query_id: str
k: int
results: list[SimilarSampleResponse]
def create_app(dataset: Dataset | None = None, session_id: str | None = None) -> FastAPI:
"""Create the FastAPI application.
Args:
dataset: Optional dataset to serve. If None, uses global dataset.
Returns:
FastAPI application instance.
"""
global _current_dataset, _current_session_id
if dataset is not None:
_current_dataset = dataset
if session_id is not None:
_current_session_id = session_id
app = FastAPI(
title="HyperView",
description="Dataset visualization with hyperbolic embeddings",
version="0.1.0",
)
def get_dataset() -> Dataset:
"""Dependency that returns the current dataset or raises 404."""
if _current_dataset is None:
raise HTTPException(status_code=404, detail="No dataset loaded")
return _current_dataset
# CORS middleware for development
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
@app.get("/__hyperview__/health")
async def hyperview_health():
return {
"name": "hyperview",
"version": app.version,
"session_id": _current_session_id,
"dataset": _current_dataset.name if _current_dataset is not None else None,
"pid": os.getpid(),
}
@app.get("/api/dataset", response_model=DatasetResponse)
async def get_dataset_info(ds: Dataset = Depends(get_dataset)):
"""Get dataset metadata."""
spaces = ds.list_spaces()
space_dicts = [s.to_api_dict() for s in spaces]
layouts = ds.list_layouts()
layout_dicts = [l.to_api_dict() for l in layouts]
return DatasetResponse(
name=ds.name,
num_samples=len(ds),
labels=ds.labels,
label_colors=ds.get_label_colors(),
spaces=space_dicts,
layouts=layout_dicts,
)
@app.get("/api/samples")
async def get_samples(
ds: Dataset = Depends(get_dataset),
offset: int = Query(0, ge=0),
limit: int = Query(100, ge=1, le=1000),
label: str | None = None,
):
"""Get paginated samples with thumbnails."""
samples, total = ds.get_samples_paginated(
offset=offset, limit=limit, label=label
)
return {
"total": total,
"offset": offset,
"limit": limit,
"samples": [s.to_api_dict(include_thumbnail=True) for s in samples],
}
@app.get("/api/samples/{sample_id}", response_model=SampleResponse)
async def get_sample(sample_id: str, ds: Dataset = Depends(get_dataset)):
"""Get a single sample by ID."""
try:
sample = ds[sample_id]
return SampleResponse(**sample.to_api_dict())
except KeyError:
raise HTTPException(status_code=404, detail=f"Sample not found: {sample_id}")
@app.post("/api/samples/batch")
async def get_samples_batch(request: SelectionRequest, ds: Dataset = Depends(get_dataset)):
"""Get multiple samples by their IDs."""
samples = ds.get_samples_by_ids(request.sample_ids)
return {"samples": [s.to_api_dict(include_thumbnail=True) for s in samples]}
@app.get("/api/embeddings", response_model=EmbeddingsResponse)
async def get_embeddings(ds: Dataset = Depends(get_dataset), layout_key: str | None = None):
"""Get embedding coordinates for visualization."""
layouts = ds.list_layouts()
if not layouts:
raise HTTPException(
status_code=400, detail="No layouts computed. Call compute_visualization() first."
)
# Find the requested layout
layout_info = None
if layout_key is None:
layout_info = layouts[0]
layout_key = layout_info.layout_key
else:
layout_info = next((l for l in layouts if l.layout_key == layout_key), None)
if layout_info is None:
raise HTTPException(status_code=404, detail=f"Layout not found: {layout_key}")
ids, labels, coords = ds.get_visualization_data(layout_key)
if not ids:
raise HTTPException(status_code=400, detail=f"No data in layout '{layout_key}'.")
return EmbeddingsResponse(
layout_key=layout_key,
geometry=layout_info.geometry,
ids=ids,
labels=labels,
coords=coords.tolist(),
label_colors=ds.get_label_colors(),
)
@app.get("/api/spaces")
async def get_spaces(ds: Dataset = Depends(get_dataset)):
"""Get all embedding spaces."""
spaces = ds.list_spaces()
return {"spaces": [s.to_api_dict() for s in spaces]}
@app.get("/api/layouts")
async def get_layouts(ds: Dataset = Depends(get_dataset)):
"""Get all available layouts."""
layouts = ds.list_layouts()
return {"layouts": [l.to_api_dict() for l in layouts]}
@app.post("/api/selection")
async def sync_selection(request: SelectionRequest):
"""Sync selection state (for future use)."""
return {"status": "ok", "selected": request.sample_ids}
@app.post("/api/selection/lasso")
async def lasso_selection(request: LassoSelectionRequest, ds: Dataset = Depends(get_dataset)):
"""Compute a lasso selection over the current embeddings.
Returns a total selected count and a paginated page of selected samples.
Notes:
- Selection is performed in *data space* (the same coordinates returned
by /api/embeddings).
- For now we use an in-memory scan with a tight AABB prefilter.
"""
if request.offset < 0:
raise HTTPException(status_code=400, detail="offset must be >= 0")
if request.limit < 1 or request.limit > 2000:
raise HTTPException(status_code=400, detail="limit must be between 1 and 2000")
if len(request.polygon) < 6 or len(request.polygon) % 2 != 0:
raise HTTPException(
status_code=400,
detail="polygon must be an even-length list with at least 3 vertices",
)
poly = np.asarray(request.polygon, dtype=np.float32).reshape((-1, 2))
if not np.all(np.isfinite(poly)):
raise HTTPException(status_code=400, detail="polygon must contain only finite numbers")
# Tight AABB prefilter.
x_min = float(np.min(poly[:, 0]))
x_max = float(np.max(poly[:, 0]))
y_min = float(np.min(poly[:, 1]))
y_max = float(np.max(poly[:, 1]))
candidate_ids, candidate_coords = ds.get_lasso_candidates_aabb(
layout_key=request.layout_key,
x_min=x_min,
x_max=x_max,
y_min=y_min,
y_max=y_max,
)
if candidate_coords.size == 0:
return {"total": 0, "offset": request.offset, "limit": request.limit, "sample_ids": [], "samples": []}
inside_mask = points_in_polygon(candidate_coords, poly)
if not np.any(inside_mask):
return {"total": 0, "offset": request.offset, "limit": request.limit, "sample_ids": [], "samples": []}
selected_ids = [candidate_ids[i] for i in np.flatnonzero(inside_mask)]
total = len(selected_ids)
start = int(request.offset)
end = int(request.offset + request.limit)
sample_ids = selected_ids[start:end]
samples = ds.get_samples_by_ids(sample_ids)
sample_dicts = [s.to_api_dict(include_thumbnail=request.include_thumbnails) for s in samples]
return {
"total": total,
"offset": request.offset,
"limit": request.limit,
"sample_ids": sample_ids,
"samples": sample_dicts,
}
@app.get("/api/search/similar/{sample_id}", response_model=SimilaritySearchResponse)
async def search_similar(
sample_id: str,
ds: Dataset = Depends(get_dataset),
k: int = Query(10, ge=1, le=100),
space_key: str | None = None,
):
"""Return k nearest neighbors for a given sample."""
try:
similar = ds.find_similar(
sample_id, k=k, space_key=space_key
)
except ValueError as e:
raise HTTPException(status_code=400, detail=str(e))
except KeyError:
raise HTTPException(status_code=404, detail=f"Sample not found: {sample_id}")
results = []
for sample, distance in similar:
try:
thumbnail = sample.get_thumbnail_base64()
except Exception:
thumbnail = None
results.append(
SimilarSampleResponse(
id=sample.id,
filepath=sample.filepath,
filename=sample.filename,
label=sample.label,
thumbnail=thumbnail,
distance=distance,
metadata=sample.metadata,
)
)
return SimilaritySearchResponse(
query_id=sample_id,
k=k,
results=results,
)
@app.get("/api/thumbnail/{sample_id}")
async def get_thumbnail(sample_id: str, ds: Dataset = Depends(get_dataset)):
"""Get thumbnail image for a sample."""
try:
sample = ds[sample_id]
thumbnail_b64 = sample.get_thumbnail_base64()
return JSONResponse({"thumbnail": thumbnail_b64})
except KeyError:
raise HTTPException(status_code=404, detail=f"Sample not found: {sample_id}")
# Serve static frontend files
static_dir = Path(__file__).parent / "static"
if static_dir.exists():
app.mount("/", StaticFiles(directory=str(static_dir), html=True), name="static")
else:
# Fallback: serve a simple HTML page
@app.get("/")
async def root():
return {"message": "HyperView API", "docs": "/docs"}
return app
def set_dataset(dataset: Dataset) -> None:
"""Set the global dataset for the server."""
global _current_dataset
_current_dataset = dataset
|