I’ve been generating image drafts using an external browser tool (Muse Image) for a poster layout project, and now I’m trying to build a Jupyter notebook that lets my team review the outputs in a structured, reproducible way. The tool itself isn’t integrated with Jupyter at all - I just download the finished images locally and want the notebook to handle organization and review.
What I’m trying to solve
Right now I have a folder of PNGs with inconsistent naming, and a spreadsheet of prompts that doesn’t line up cleanly with the files. I’d like the notebook to:
- Read a CSV or JSON manifest linking each local image path to its prompt text, reference images used, and generation parameters (aspect ratio, iteration number, etc.)
- Display thumbnails inline with prompt metadata for quick scanning
- Let reviewers add labels (approved/revise/reject) and free-text comments, ideally through notebook widgets or a simple form cell
- Persist those labels back to the manifest so re-running the notebook doesn’t lose prior review data
Parameterization and reporting
Has anyone parameterized a notebook (via papermill or similar) to swap in different experiment batches without editing cells directly? I also want a clean way to export the final reviewed notebook to HTML for stakeholders who don’t use Jupyter, including thumbnails and comments, but excluding any raw code cells.
I’m not sharing a finished project - just trying to figure out a sane folder structure, manifest schema, and widget setup before I write more one-off code. Any patterns, extension recommendations, or example repos for this kind of visual experiment review workflow would be genuinely helpful.