forked from jtscmw01/ComfyUI-DiffBIR
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
19 lines (17 loc) · 679 Bytes
/
__init__.py
File metadata and controls
19 lines (17 loc) · 679 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from .diffbir.sampler import DiffBIR_sample, DiffBIR_sample_advanced
from .diffbir.load import Stage2_load, Stage1_load, Simple_load
NODE_CLASS_MAPPINGS = {
"DiffBIR_sample": DiffBIR_sample,
"DiffBIR_sample_advanced": DiffBIR_sample_advanced,
"Stage1_load": Stage1_load,
"Stage2_load": Stage2_load,
"Simple_load": Simple_load,
}
NODE_DISPLAY_NAME_MAPPINGS = {
"DiffBIR_sample": "DiffBIR Sampler",
"DiffBIR_sample_advanced": "DiffBIR Sampler (Advanced)",
"Stage1_load": "DiffBIR stage1 loader",
"Stage2_load": "DiffBIR stage2 loader",
"Simple_load": "DiffBIR simple load",
}
__all__ = ["NODE_CLASS_MAPPINGS", "NODE_DISPLAY_NAME_MAPPINGS"]