
Implementation / replication of Generative Powers of Ten, using Stability AI's DeepFloyd IF.
First, refer to the examples
folder to see how to structure your prompts and zoom level p
in a metadata.json
file.
Then, simply run:
python generate.py --name <name> --seed <seed>
You can customize various generation parameters (e.g., steps
, cfg
, negative
, etc.) as well.
To generate a video animation based on the generated images, run:
python make_animation.py <generated_images_folder>
If you find this repository useful, consider giving it a star 🌟 and refer to the original paper:
@article{wang2023generativepowers,
title={Generative Powers of Ten},
author={Xiaojuan Wang and Janne Kontkanen and Brian Curless and Steve Seitz and Ira Kemelmacher
and Ben Mildenhall and Pratul Srinivasan and Dor Verbin and Aleksander Holynski},
journal={arXiv preprint arXiv:2312.02149},
year={2023}
}
Thanks to Yifan Zhou for providing the foundation to reproducing this work.