Mike's Paper Reviews — Latent Space
An interactive 3D map of 236 daily paper reviews written by
Mike Erlihson.
Reviews on similar topics end up near each other in space.
Pipeline
- Fetch the 236 English-language review markdowns from
merlihson/scientific-resources.
- Embed each review (title + body, capped) with
all-MiniLM-L6-v2 (384-d).
- Project to 3D with UMAP (cosine metric).
- Cluster in the 384-d space with KMeans (k=10) — projection is lossy, so we cluster on the embedding, not on the 3D coords.
- Label each cluster by asking
gemma4:e2b (Ollama) for a 3–6 word human title over its 25 centroid-nearest members.
- Render with Three.js — glow sprites, neighbor-web, fog, orbit controls.
Controls
- Drag to rotate · scroll to zoom · right-drag to pan.
- Hover a point → tooltip · click → detail panel with the full review.
- Sidebar cluster row: click to isolate, shift-click to toggle.
- Search: full-text over title and body.