├── .gitignore ├── LICENSE ├── README.md ├── scripts └── vram_estimator.py └── static └── preview.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | *.log 4 | tmp/ 5 | 6 | stats.json 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/space-nuko/a1111-stable-diffusion-webui-vram-estimator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/space-nuko/a1111-stable-diffusion-webui-vram-estimator/HEAD/README.md -------------------------------------------------------------------------------- /scripts/vram_estimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/space-nuko/a1111-stable-diffusion-webui-vram-estimator/HEAD/scripts/vram_estimator.py -------------------------------------------------------------------------------- /static/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/space-nuko/a1111-stable-diffusion-webui-vram-estimator/HEAD/static/preview.png --------------------------------------------------------------------------------