├── .github └── workflows │ └── publish.yml ├── ClipVisionStyleLoader.py ├── LICENSE ├── README.md ├── ReduxFineTune.py ├── __init__.py ├── pyproject.toml ├── requirements.txt ├── update.md └── web └── js └── appearance.js /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-ReduxFineTune/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /ClipVisionStyleLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-ReduxFineTune/HEAD/ClipVisionStyleLoader.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-ReduxFineTune/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-ReduxFineTune/HEAD/README.md -------------------------------------------------------------------------------- /ReduxFineTune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-ReduxFineTune/HEAD/ReduxFineTune.py -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-ReduxFineTune/HEAD/__init__.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-ReduxFineTune/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | torch -------------------------------------------------------------------------------- /update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-ReduxFineTune/HEAD/update.md -------------------------------------------------------------------------------- /web/js/appearance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-ReduxFineTune/HEAD/web/js/appearance.js --------------------------------------------------------------------------------