├── .gitignore ├── LICENSE ├── README.md ├── assets ├── architecture.jpg └── banner.jpg ├── flux_nag_demo.ipynb ├── nag ├── __init__.py ├── attention_flux_nag.py ├── attention_joint_nag.py ├── attention_nag.py ├── attention_wan_nag.py ├── normalization.py ├── pipeline_flux_kontext_nag.py ├── pipeline_flux_nag.py ├── pipeline_sd3_nag.py ├── pipeline_sdxl_nag.py ├── pipeline_wan_nag.py ├── transformer_flux.py └── transformer_wan_nag.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenDarYen/Normalized-Attention-Guidance/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenDarYen/Normalized-Attention-Guidance/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenDarYen/Normalized-Attention-Guidance/HEAD/README.md -------------------------------------------------------------------------------- /assets/architecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenDarYen/Normalized-Attention-Guidance/HEAD/assets/architecture.jpg -------------------------------------------------------------------------------- /assets/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenDarYen/Normalized-Attention-Guidance/HEAD/assets/banner.jpg -------------------------------------------------------------------------------- /flux_nag_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenDarYen/Normalized-Attention-Guidance/HEAD/flux_nag_demo.ipynb -------------------------------------------------------------------------------- /nag/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenDarYen/Normalized-Attention-Guidance/HEAD/nag/__init__.py -------------------------------------------------------------------------------- /nag/attention_flux_nag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenDarYen/Normalized-Attention-Guidance/HEAD/nag/attention_flux_nag.py -------------------------------------------------------------------------------- /nag/attention_joint_nag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenDarYen/Normalized-Attention-Guidance/HEAD/nag/attention_joint_nag.py -------------------------------------------------------------------------------- /nag/attention_nag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenDarYen/Normalized-Attention-Guidance/HEAD/nag/attention_nag.py -------------------------------------------------------------------------------- /nag/attention_wan_nag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenDarYen/Normalized-Attention-Guidance/HEAD/nag/attention_wan_nag.py -------------------------------------------------------------------------------- /nag/normalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenDarYen/Normalized-Attention-Guidance/HEAD/nag/normalization.py -------------------------------------------------------------------------------- /nag/pipeline_flux_kontext_nag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenDarYen/Normalized-Attention-Guidance/HEAD/nag/pipeline_flux_kontext_nag.py -------------------------------------------------------------------------------- /nag/pipeline_flux_nag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenDarYen/Normalized-Attention-Guidance/HEAD/nag/pipeline_flux_nag.py -------------------------------------------------------------------------------- /nag/pipeline_sd3_nag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenDarYen/Normalized-Attention-Guidance/HEAD/nag/pipeline_sd3_nag.py -------------------------------------------------------------------------------- /nag/pipeline_sdxl_nag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenDarYen/Normalized-Attention-Guidance/HEAD/nag/pipeline_sdxl_nag.py -------------------------------------------------------------------------------- /nag/pipeline_wan_nag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenDarYen/Normalized-Attention-Guidance/HEAD/nag/pipeline_wan_nag.py -------------------------------------------------------------------------------- /nag/transformer_flux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenDarYen/Normalized-Attention-Guidance/HEAD/nag/transformer_flux.py -------------------------------------------------------------------------------- /nag/transformer_wan_nag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenDarYen/Normalized-Attention-Guidance/HEAD/nag/transformer_wan_nag.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenDarYen/Normalized-Attention-Guidance/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenDarYen/Normalized-Attention-Guidance/HEAD/setup.py --------------------------------------------------------------------------------