├── .gitignore ├── LICENSE ├── README.md ├── blip2.py ├── install.py ├── screenshots ├── screenshot-1.jpg └── screenshot-2.jpg └── scripts └── main.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1atdev/stable-diffusion-webui-blip2-captioner/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1atdev/stable-diffusion-webui-blip2-captioner/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1atdev/stable-diffusion-webui-blip2-captioner/HEAD/README.md -------------------------------------------------------------------------------- /blip2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1atdev/stable-diffusion-webui-blip2-captioner/HEAD/blip2.py -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1atdev/stable-diffusion-webui-blip2-captioner/HEAD/install.py -------------------------------------------------------------------------------- /screenshots/screenshot-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1atdev/stable-diffusion-webui-blip2-captioner/HEAD/screenshots/screenshot-1.jpg -------------------------------------------------------------------------------- /screenshots/screenshot-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1atdev/stable-diffusion-webui-blip2-captioner/HEAD/screenshots/screenshot-2.jpg -------------------------------------------------------------------------------- /scripts/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1atdev/stable-diffusion-webui-blip2-captioner/HEAD/scripts/main.py --------------------------------------------------------------------------------