├── .gitignore ├── README.md ├── __init__.py ├── checkpoints └── .keep ├── comfy_utils.py ├── docs └── cover.png ├── image.py ├── models ├── __init__.py ├── blocks.py └── models.py └── nodes.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesWalker55/comfyui-p2ldgan/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesWalker55/comfyui-p2ldgan/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesWalker55/comfyui-p2ldgan/HEAD/__init__.py -------------------------------------------------------------------------------- /checkpoints/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comfy_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesWalker55/comfyui-p2ldgan/HEAD/comfy_utils.py -------------------------------------------------------------------------------- /docs/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesWalker55/comfyui-p2ldgan/HEAD/docs/cover.png -------------------------------------------------------------------------------- /image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesWalker55/comfyui-p2ldgan/HEAD/image.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | from .models import Generator 2 | -------------------------------------------------------------------------------- /models/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesWalker55/comfyui-p2ldgan/HEAD/models/blocks.py -------------------------------------------------------------------------------- /models/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesWalker55/comfyui-p2ldgan/HEAD/models/models.py -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesWalker55/comfyui-p2ldgan/HEAD/nodes.py --------------------------------------------------------------------------------