├── .gitignore ├── README.md ├── README.old.md ├── docs ├── model-comparison.md ├── screenshot.png └── what-is-wd14-tagger.md ├── javascript ├── .ipynb_checkpoints │ └── tagger-checkpoint.js └── tagger.js ├── preload.py ├── scripts ├── .ipynb_checkpoints │ └── tagger-checkpoint.py └── tagger.py ├── style.css └── tagger ├── .ipynb_checkpoints ├── api-checkpoint.py ├── api_models-checkpoint.py ├── format-checkpoint.py ├── interrogator-checkpoint.py ├── preset-checkpoint.py ├── ui-checkpoint.py └── utils-checkpoint.py ├── api.py ├── api_models.py ├── dbimutils.py ├── format.py ├── interrogator.py ├── preset.py ├── ui.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolaa2/stable-diffusion-webui-wd14-tagger/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolaa2/stable-diffusion-webui-wd14-tagger/HEAD/README.md -------------------------------------------------------------------------------- /README.old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolaa2/stable-diffusion-webui-wd14-tagger/HEAD/README.old.md -------------------------------------------------------------------------------- /docs/model-comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolaa2/stable-diffusion-webui-wd14-tagger/HEAD/docs/model-comparison.md -------------------------------------------------------------------------------- /docs/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolaa2/stable-diffusion-webui-wd14-tagger/HEAD/docs/screenshot.png -------------------------------------------------------------------------------- /docs/what-is-wd14-tagger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolaa2/stable-diffusion-webui-wd14-tagger/HEAD/docs/what-is-wd14-tagger.md -------------------------------------------------------------------------------- /javascript/.ipynb_checkpoints/tagger-checkpoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolaa2/stable-diffusion-webui-wd14-tagger/HEAD/javascript/.ipynb_checkpoints/tagger-checkpoint.js -------------------------------------------------------------------------------- /javascript/tagger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolaa2/stable-diffusion-webui-wd14-tagger/HEAD/javascript/tagger.js -------------------------------------------------------------------------------- /preload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolaa2/stable-diffusion-webui-wd14-tagger/HEAD/preload.py -------------------------------------------------------------------------------- /scripts/.ipynb_checkpoints/tagger-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolaa2/stable-diffusion-webui-wd14-tagger/HEAD/scripts/.ipynb_checkpoints/tagger-checkpoint.py -------------------------------------------------------------------------------- /scripts/tagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolaa2/stable-diffusion-webui-wd14-tagger/HEAD/scripts/tagger.py -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolaa2/stable-diffusion-webui-wd14-tagger/HEAD/style.css -------------------------------------------------------------------------------- /tagger/.ipynb_checkpoints/api-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolaa2/stable-diffusion-webui-wd14-tagger/HEAD/tagger/.ipynb_checkpoints/api-checkpoint.py -------------------------------------------------------------------------------- /tagger/.ipynb_checkpoints/api_models-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolaa2/stable-diffusion-webui-wd14-tagger/HEAD/tagger/.ipynb_checkpoints/api_models-checkpoint.py -------------------------------------------------------------------------------- /tagger/.ipynb_checkpoints/format-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolaa2/stable-diffusion-webui-wd14-tagger/HEAD/tagger/.ipynb_checkpoints/format-checkpoint.py -------------------------------------------------------------------------------- /tagger/.ipynb_checkpoints/interrogator-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolaa2/stable-diffusion-webui-wd14-tagger/HEAD/tagger/.ipynb_checkpoints/interrogator-checkpoint.py -------------------------------------------------------------------------------- /tagger/.ipynb_checkpoints/preset-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolaa2/stable-diffusion-webui-wd14-tagger/HEAD/tagger/.ipynb_checkpoints/preset-checkpoint.py -------------------------------------------------------------------------------- /tagger/.ipynb_checkpoints/ui-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolaa2/stable-diffusion-webui-wd14-tagger/HEAD/tagger/.ipynb_checkpoints/ui-checkpoint.py -------------------------------------------------------------------------------- /tagger/.ipynb_checkpoints/utils-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolaa2/stable-diffusion-webui-wd14-tagger/HEAD/tagger/.ipynb_checkpoints/utils-checkpoint.py -------------------------------------------------------------------------------- /tagger/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolaa2/stable-diffusion-webui-wd14-tagger/HEAD/tagger/api.py -------------------------------------------------------------------------------- /tagger/api_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolaa2/stable-diffusion-webui-wd14-tagger/HEAD/tagger/api_models.py -------------------------------------------------------------------------------- /tagger/dbimutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolaa2/stable-diffusion-webui-wd14-tagger/HEAD/tagger/dbimutils.py -------------------------------------------------------------------------------- /tagger/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolaa2/stable-diffusion-webui-wd14-tagger/HEAD/tagger/format.py -------------------------------------------------------------------------------- /tagger/interrogator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolaa2/stable-diffusion-webui-wd14-tagger/HEAD/tagger/interrogator.py -------------------------------------------------------------------------------- /tagger/preset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolaa2/stable-diffusion-webui-wd14-tagger/HEAD/tagger/preset.py -------------------------------------------------------------------------------- /tagger/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolaa2/stable-diffusion-webui-wd14-tagger/HEAD/tagger/ui.py -------------------------------------------------------------------------------- /tagger/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolaa2/stable-diffusion-webui-wd14-tagger/HEAD/tagger/utils.py --------------------------------------------------------------------------------