|
4 | 4 |
|
5 | 5 | ### Making the Invisible Visible Through Generative World Models |
6 | 6 |
|
| 7 | +[](https://github.com/QuantBlockchain/quantum-cinema/actions/workflows/ci.yml) |
| 8 | +[](LICENSE) |
| 9 | +[](https://nextjs.org/) |
| 10 | +[](https://react.dev/) |
| 11 | +[](https://aws.amazon.com/cdk/) |
| 12 | +[](SUPPLEMENTARY.md) |
| 13 | + |
7 | 14 | <p> |
8 | 15 | <a href="https://nextjs.org/"><img src="https://img.shields.io/badge/Next.js-16-black?style=for-the-badge&logo=next.js&logoColor=white" alt="Next.js 16" /></a> |
9 | 16 | <a href="https://react.dev/"><img src="https://img.shields.io/badge/React-19-61DAFB?style=for-the-badge&logo=react&logoColor=black" alt="React 19" /></a> |
|
14 | 21 | </p> |
15 | 22 |
|
16 | 23 | <p> |
17 | | - <a href="#-research-context">Research Context</a> · |
18 | | - <a href="#-overview">Overview</a> · |
19 | | - <a href="#-the-four-act-experience">The Experience</a> · |
20 | | - <a href="#-the-three-worlds">The Three Worlds</a> · |
21 | | - <a href="#-architecture">Architecture</a> · |
22 | | - <a href="#-quick-start">Quick Start</a> · |
23 | | - <a href="#-future-research">Future Research</a> |
| 24 | + <a href="#overview">Overview</a> · |
| 25 | + <a href="#features">Features</a> · |
| 26 | + <a href="#architecture">Architecture</a> · |
| 27 | + <a href="#quick-start">Quick Start</a> · |
| 28 | + <a href="#reproducibility">Reproducibility</a> · |
| 29 | + <a href="#supplementary-material">Supplementary material</a> · |
| 30 | + <a href="#license">License</a> |
24 | 31 | </p> |
25 | 32 |
|
26 | 33 | --- |
27 | 34 |
|
28 | | -> **Quantum Cinema** turns invisible quantum hardware into a cinematic, browsable experience. Real quantum processors — trapped ions, superconducting circuits, and neutral atoms on AWS Braket — are reimagined as **generative world models**: immersive 3D "worlds" that are not *filmed* but *dreamed* by AI. Decoherence, laser cooling, and energy loss become things you can **watch happen**, conditioned on real device characteristics. No headset. No PhD. No live quantum hardware. Just a browser and curiosity. |
| 35 | +> **Quantum Cinema** turns hidden quantum hardware into a cinematic browser experience. It combines generative world models, AWS Braket device metrics, and a guided four-step interface to support science communication and academic reproducibility. |
29 | 36 |
|
30 | 37 | </div> |
31 | 38 |
|
32 | 39 | --- |
33 | 40 |
|
| 41 | +## Overview |
| 42 | + |
| 43 | +Quantum Cinema is a reproducible software artifact for academic publication. It demonstrates how immersive, browser-based visualizations can make quantum device architecture and performance legible to a broad audience. |
| 44 | + |
| 45 | +### What this repository includes |
| 46 | + |
| 47 | +- `quantum-cinema/` — Next.js 16 application |
| 48 | +- `lib/` — AWS CDK infrastructure definition |
| 49 | +- `bin/` — CDK deploy entrypoint |
| 50 | +- `.github/workflows/ci.yml` — automated validation workflow |
| 51 | +- `SUPPLEMENTARY.md` — reproducibility and provenance guide |
| 52 | +- `CITATION.cff` — citation metadata for academic use |
| 53 | + |
| 54 | +## Features |
| 55 | + |
| 56 | +- Four-act immersive narrative flow: Nobel Prize → video showcase → world model → comparison |
| 57 | +- Generative world models that map to three real AWS Braket device architectures |
| 58 | +- AWS deployment with ECS Fargate, ALB, and CloudFront |
| 59 | +- Security controls including ALB secret-header validation and modern HTTP headers |
| 60 | +- Paper-ready artifact with reproducibility and citation metadata |
| 61 | + |
| 62 | +## World Models Documentation |
| 63 | + |
| 64 | +The world-model documentation is located under `docs/world-models/` and includes the three technical note categories requested by the engineering team: |
| 65 | + |
| 66 | +- creation pipeline documentation (reference images, Nano-Banana concept generation, Marble 3D world creation) |
| 67 | +- teaching story assets and screenshot galleries that explain the visual metaphors and entanglement behavior |
| 68 | +- parameter analysis and cross-device comparison guidance using AWS Braket metrics |
| 69 | + |
| 70 | +- `docs/world-models/ion-trap/` — Ion-trap creation pipeline, teaching story, screenshots, and Marble world reference |
| 71 | +- `docs/world-models/superconducting/` — Superconducting creation pipeline, teaching story, screenshots, and Marble world reference |
| 72 | +- `docs/world-models/neutral-atoms/` — Neutral-atom creation pipeline, teaching story, screenshots, and Marble world reference |
| 73 | +- `docs/world-models/architectural-contrast.md` — cross-platform summary of the three world-model approaches |
| 74 | +- `docs/world-models/significance-analysis.md` — AWS Braket parameter analysis, conveyed metrics, future directions, and cross-device comparison guidance |
| 75 | +- `docs/world-models/README.md` — summary of the world-model documentation package |
| 76 | + |
| 77 | +### Sample world-model assets |
| 78 | + |
| 79 | + |
| 80 | + |
| 81 | +Captured still frames and videos are also available for all three platforms: |
| 82 | + |
| 83 | +- `docs/world-models/ion-trap/ion-trap-screenshots/` + `docs/world-models/ion-trap/ionq-world-explore.mp4` |
| 84 | +- `docs/world-models/superconducting/superconducting-screenshots/` + `docs/world-models/superconducting/superconducting-world-explore.mp4` |
| 85 | +- `docs/world-models/neutral-atoms/neutral-atom-screenshots/` + `docs/world-models/neutral-atoms/quera.mp4` |
| 86 | + |
| 87 | +## Quick Start |
| 88 | + |
| 89 | +```bash |
| 90 | +git clone https://github.com/QuantBlockchain/quantum-cinema.git |
| 91 | +cd quantum-cinema |
| 92 | +npm ci |
| 93 | +cd quantum-cinema |
| 94 | +npm ci |
| 95 | +npm run dev |
| 96 | +``` |
| 97 | + |
| 98 | +Then open `http://localhost:3000`. |
| 99 | + |
| 100 | +## Reproducibility |
| 101 | + |
| 102 | +This repository is structured for academic review. It includes a dedicated guide, CI validation, and citation metadata to support reproducibility. |
| 103 | + |
| 104 | +- `SUPPLEMENTARY.md` — reproducibility and provenance guide |
| 105 | +- `CITATION.cff` — citation metadata for academic use |
| 106 | +- `.github/workflows/ci.yml` — automated frontend and infrastructure validation |
| 107 | + |
| 108 | +## Supplementary material |
| 109 | + |
| 110 | +The package is intended as a supplementary artifact for publication. The artifact contains: |
| 111 | + |
| 112 | +- reproducible build and deployment workflow |
| 113 | +- deployment infrastructure defined as AWS CDK |
| 114 | +- explicit academic citation metadata |
| 115 | +- evidence of environment and provenance documentation |
| 116 | + |
| 117 | +--- |
| 118 | + |
34 | 119 | <details> |
35 | 120 | <summary><strong>🔬 What makes this "quantum"? — A plain-language primer</strong></summary> |
36 | 121 | <br> |
|
0 commit comments