├── .gitignore ├── README.md ├── XFORMERS_FIX_README.md ├── __init__.py ├── normal_crafter_nodes.py ├── normalcrafter ├── __init__.py ├── normal_crafter_ppl.py ├── unet.py └── utils.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIWarper/ComfyUI-NormalCrafterWrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIWarper/ComfyUI-NormalCrafterWrapper/HEAD/README.md -------------------------------------------------------------------------------- /XFORMERS_FIX_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIWarper/ComfyUI-NormalCrafterWrapper/HEAD/XFORMERS_FIX_README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIWarper/ComfyUI-NormalCrafterWrapper/HEAD/__init__.py -------------------------------------------------------------------------------- /normal_crafter_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIWarper/ComfyUI-NormalCrafterWrapper/HEAD/normal_crafter_nodes.py -------------------------------------------------------------------------------- /normalcrafter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /normalcrafter/normal_crafter_ppl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIWarper/ComfyUI-NormalCrafterWrapper/HEAD/normalcrafter/normal_crafter_ppl.py -------------------------------------------------------------------------------- /normalcrafter/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIWarper/ComfyUI-NormalCrafterWrapper/HEAD/normalcrafter/unet.py -------------------------------------------------------------------------------- /normalcrafter/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIWarper/ComfyUI-NormalCrafterWrapper/HEAD/normalcrafter/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIWarper/ComfyUI-NormalCrafterWrapper/HEAD/requirements.txt --------------------------------------------------------------------------------