├── .gitignore ├── LICENSE ├── README.md ├── lib_free_u ├── global_state.py ├── unet.py └── xyz_grid.py └── scripts └── freeu.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | presets.json 3 | *.csv 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljleb/sd-webui-freeu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljleb/sd-webui-freeu/HEAD/README.md -------------------------------------------------------------------------------- /lib_free_u/global_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljleb/sd-webui-freeu/HEAD/lib_free_u/global_state.py -------------------------------------------------------------------------------- /lib_free_u/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljleb/sd-webui-freeu/HEAD/lib_free_u/unet.py -------------------------------------------------------------------------------- /lib_free_u/xyz_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljleb/sd-webui-freeu/HEAD/lib_free_u/xyz_grid.py -------------------------------------------------------------------------------- /scripts/freeu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljleb/sd-webui-freeu/HEAD/scripts/freeu.py --------------------------------------------------------------------------------