version 1.5.2

bugfix missing config file
pull/18/head 1.5.2
Bryce 2 years ago
parent 37db8db1a2
commit 3d64867e1f

@ -164,7 +164,10 @@ docker run -it --gpus all -v $HOME/.cache/huggingface:/root/.cache/huggingface -
## ChangeLog
**1.5.0**
**1.5.2**
- fix: missing config file for describe feature
**1.5.1**
- img2img now supported with PLMS (instead of just DDIM)
- added image captioning feature `aimg describe dog.jpg` => `a brown dog sitting on grass`
- added new commandline tool `aimg` for additional image manipulation functionality

@ -7,7 +7,7 @@ setup(
name="imaginAIry",
author="Bryce Drennan",
# author_email="b r y p y d o t io",
version="1.5.1",
version="1.5.2",
description="AI imagined images. Pythonic generation of stable diffusion images.",
long_description=readme,
long_description_content_type="text/markdown",
@ -27,6 +27,7 @@ setup(
"configs/*.yaml",
"vendored/clip/*.txt.gz",
"vendored/clipseg/*.pth",
"vendored/configs/*.*",
]
},
install_requires=[

Loading…
Cancel
Save