Releases: tnwei/vqgan-clip-app
1.1 - Dec 18, 2021
What's new
- Fixed gallery app adding new images to the last page instead of the first page when refreshing (7bf3b04)
- Added output commit ID to metadata if GitPython is installed (19eeb30)
- Added cutout augmentations to VQGAN-CLIP (b3a7ab1) and guided diffusion (9651bc1)
- Fixed random seed not saved to output if unspecified in guided diffusion (8972a5f)
- Added feature to enable generating scrolling/zooming images to VQGAN-CLIP (#11)
Transitioning to 1.1 from 1.0
The Python environment defined in environment.yml
has been updated to enable generating scrolling/zooming images. Although we only need to add opencv, conda's package resolution required updating Pytorch as well to find a compatible version of opencv.
Therefore existing users need to do either of the following:
# Remove the current Python env and recreate
conda env remove -n vqgan-clip-app
conda env create -f environment.yml
# Directly update the Python environment in-place
conda activate vqgan-clip-app
conda env update -f environment.yml --prune
1.0 - Nov 21, 2021
Since starting this repo in Jul 2021 as a personal project, I believe the codebase is now sufficiently feature-complete and stable to call it a 1.0 release.
What's new
- Added support for CLIP guided diffusion (#8)
- Improvements to gallery viewer: added pagination (#3), improved webpage responsiveness (#9)
- Minor tweaks to VQGAN-CLIP app, added options to control MSE regularization (#4) and TV loss (#5)
- Reorganized documentation in README.md and
docs/
Transitioning to 1.0 for existing users
Update to 1.0 by running git pull
from your local copy of this repo. No breaking changes are expected, run results from older versions of the codebase should still show up in the gallery viewer.
However, some new packages are needed to support CLIP guided diffusion. You can follow these steps below instead of setting up the Python environment from scratch:
- In the repo directory, run
git clone https://github.com/crowsonkb/guided-diffusion
pip install ./guided-diffusion
pip install lpips
- Download diffusion model checkpoints in
download-diffusion-weights.sh
Before Oct 2, 2021
VQGAN-CLIP app and basic gallery viewer implemented.