├── .github └── workflows │ └── publish.yml ├── FST_preview.PNG ├── FastStyleTransferNode.py ├── README.md ├── Style_Transfer_Workflow.json ├── __init__.py ├── dataset └── MC COCO train dataset goes here ├── models ├── bayanihan.pth ├── lazy.pth ├── mosaic.pth ├── starry.pth ├── tokyo_ghoul.pth ├── udnie.pth └── wave.pth ├── neural_style_transfer.py ├── output └── Intermediate pictures from training saved here ├── pyproject.toml ├── temp └── temp_files_go_here ├── train.py └── vgg └── vgg16-00b39a1b model goes here /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroxoxo/ComfyUI-Fast-Style-Transfer/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /FST_preview.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroxoxo/ComfyUI-Fast-Style-Transfer/HEAD/FST_preview.PNG -------------------------------------------------------------------------------- /FastStyleTransferNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroxoxo/ComfyUI-Fast-Style-Transfer/HEAD/FastStyleTransferNode.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroxoxo/ComfyUI-Fast-Style-Transfer/HEAD/README.md -------------------------------------------------------------------------------- /Style_Transfer_Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroxoxo/ComfyUI-Fast-Style-Transfer/HEAD/Style_Transfer_Workflow.json -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroxoxo/ComfyUI-Fast-Style-Transfer/HEAD/__init__.py -------------------------------------------------------------------------------- /dataset/MC COCO train dataset goes here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/bayanihan.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroxoxo/ComfyUI-Fast-Style-Transfer/HEAD/models/bayanihan.pth -------------------------------------------------------------------------------- /models/lazy.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroxoxo/ComfyUI-Fast-Style-Transfer/HEAD/models/lazy.pth -------------------------------------------------------------------------------- /models/mosaic.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroxoxo/ComfyUI-Fast-Style-Transfer/HEAD/models/mosaic.pth -------------------------------------------------------------------------------- /models/starry.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroxoxo/ComfyUI-Fast-Style-Transfer/HEAD/models/starry.pth -------------------------------------------------------------------------------- /models/tokyo_ghoul.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroxoxo/ComfyUI-Fast-Style-Transfer/HEAD/models/tokyo_ghoul.pth -------------------------------------------------------------------------------- /models/udnie.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroxoxo/ComfyUI-Fast-Style-Transfer/HEAD/models/udnie.pth -------------------------------------------------------------------------------- /models/wave.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroxoxo/ComfyUI-Fast-Style-Transfer/HEAD/models/wave.pth -------------------------------------------------------------------------------- /neural_style_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroxoxo/ComfyUI-Fast-Style-Transfer/HEAD/neural_style_transfer.py -------------------------------------------------------------------------------- /output/Intermediate pictures from training saved here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroxoxo/ComfyUI-Fast-Style-Transfer/HEAD/pyproject.toml -------------------------------------------------------------------------------- /temp/temp_files_go_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeroxoxo/ComfyUI-Fast-Style-Transfer/HEAD/train.py -------------------------------------------------------------------------------- /vgg/vgg16-00b39a1b model goes here: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------