File size: 467 Bytes
1e3b872 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | from .pag_nodes import PerturbedAttention, TRTAttachPag, TRTPerturbedAttention
NODE_CLASS_MAPPINGS = {
"PerturbedAttention": PerturbedAttention,
"TRTAttachPag": TRTAttachPag,
"TRTPerturbedAttention": TRTPerturbedAttention,
}
NODE_DISPLAY_NAME_MAPPINGS = {
"PerturbedAttention": "Perturbed-Attention Guidance (Advanced)",
"TRTAttachPag": "TensorRT Attach PAG",
"TRTPerturbedAttention": "TensorRT Perturbed-Attention Guidance",
}
|