This is the official website for ThinkMorph: Emergent Properties in Multimodal Interleaved Chain-of-Thought Reasoning.
Visit: https://thinkmorph.github.io
- Beautiful & Modern Design: Clean, gradient-based UI with smooth animations
- Interactive Case Gallery: Click on any case to view detailed reasoning traces
- Three Emergent Properties: Highlighted with distinct gradient cards
- Responsive Layout: Works perfectly on desktop, tablet, and mobile devices
- Key Results Dashboard: Visual grid showing major performance improvements
To view the website locally:
- Clone or navigate to this repository
- Open
index.htmlin your web browser - Or use a local server:
python -m http.server 8000 # Then visit http://localhost:8000
thinkmorph.github.io/
├── index.html # Main HTML file
├── README.md # This file
└── static/
├── css/ # Stylesheets (Bulma framework)
├── js/ # JavaScript files
└── images/ # All images (logo, figures, cases)
To add new case examples:
- Place your PDF/PNG files in
static/images/ - Update the case arrays in the
<script>section at the bottom ofindex.html:const mainCases = ['case1.pdf', 'case2.pdf', ...]; const unseenCases = ['unseen-case-1.pdf', ...]; const modeSwitchCases = ['mode-switch-case-1.pdf', ...];
Update the paper, arXiv, and other links in the hero section once they're available:
<a href="YOUR_PAPER_LINK" ...>Paper</a>
<a href="YOUR_ARXIV_LINK" ...>arXiv</a>- Create a GitHub repository named
thinkmorph.github.io - Push all files to the
mainbranch - Go to repository Settings → Pages
- Set source to "Deploy from a branch" →
main→/root - Your site will be live at
https://thinkmorph.github.io
Alternatively, if deploying to a project page:
- Repository name:
ThinkMorphor any name - URL will be:
https://YOUR_USERNAME.github.io/ThinkMorph/
- Update paper link once published
- Update arXiv link once available
- Convert remaining PDF images to PNG for better web compatibility
- Add Google Analytics tracking (optional)
- Add social media preview images (Open Graph tags)
- Website template adapted from EMMA Benchmark
- Built with Bulma CSS framework
- Icons from Font Awesome
For questions or suggestions, please open an issue on GitHub or contact the authors.
Note: Make sure all image paths are correct and all PDF files are accessible. Some browsers may have issues displaying PDF images directly; consider converting them to PNG for better compatibility.