Static React site for the ECCV 2026 paper Concept Distillation Sampling for
Training-Free Multi-Concept Image Editing. Deployed to GitHub Pages at
https://nickyfot.github.io/cds/.
Same Vite + React + TypeScript + Tailwind + shadcn stack as the LoRAtorio page.
npm install
npm run dev # localhost:8080
npm run build # outputs to dist/
npm run preview # serve the production build locallyPushes to main trigger the workflow in .github/workflows/deploy.yaml, which
builds with Vite and publishes dist/ to GitHub Pages.
One-time setup steps live in SETUP_GITHUB_PAGES.md.
- The whole page lives in
src/pages/Index.tsx. - Chart data (GPT-4V quality scores, human win rates) is defined at the top of
that file — edit
qualityDataandwinRateData. - Figures live in
src/assets/— see that folder's README for the mapping from paper figures. - BibTeX entry is hardcoded in the BibTeX section — swap when Springer assigns the final proceedings entry.
- Related-work card links to LoRAtorio; see
LORATORIO_PATCH.mdfor the reverse-link snippet to paste into the LoRAtorio repo.