forked from pamparamm/sd-perturbed-attention
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__init__.py
18 lines (16 loc) · 851 Bytes
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from .pag_nodes import PerturbedAttention, SmoothedEnergyGuidanceAdvanced, SlidingWindowGuidanceAdvanced
from .pag_trt_nodes import TRTAttachPag, TRTPerturbedAttention
NODE_CLASS_MAPPINGS = {
"PerturbedAttention": PerturbedAttention,
"SmoothedEnergyGuidanceAdvanced": SmoothedEnergyGuidanceAdvanced,
"SlidingWindowGuidanceAdvanced": SlidingWindowGuidanceAdvanced,
"TRTAttachPag": TRTAttachPag,
"TRTPerturbedAttention": TRTPerturbedAttention,
}
NODE_DISPLAY_NAME_MAPPINGS = {
"PerturbedAttention": "Perturbed-Attention Guidance (Advanced)",
"SmoothedEnergyGuidanceAdvanced": "Smoothed Energy Guidance (Advanced)",
"SlidingWindowGuidanceAdvanced": "Sliding Window Guidance (Advanced)",
"TRTAttachPag": "TensorRT Attach PAG",
"TRTPerturbedAttention": "TensorRT Perturbed-Attention Guidance",
}