forked from LeanModels/ComfyUI-DFloat11
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path__init__.py
More file actions
25 lines (21 loc) · 1.27 KB
/
Copy path__init__.py
File metadata and controls
25 lines (21 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from .dfloat11_model_loader import DFloat11ModelLoader, DFloat11ModelLoaderAdvanced, DFloat11DiffusersModelLoader, DFloat11ModelCompressor, DFloat11CheckpointCompressor, CheckpointLoaderWithDFloat11, DFloat11LoadingPatch, DFloat11Decompressor
NODE_CLASS_MAPPINGS = {
"DFloat11ModelLoader": DFloat11ModelLoader,
"DFloat11ModelLoaderAdvanced": DFloat11ModelLoaderAdvanced,
"DFloat11DiffusersModelLoader": DFloat11DiffusersModelLoader,
"DFloat11ModelCompressor": DFloat11ModelCompressor,
"DFloat11CheckpointCompressor": DFloat11CheckpointCompressor,
"CheckpointLoaderWithDFloat11": CheckpointLoaderWithDFloat11,
"DFloat11LoadingPatch": DFloat11LoadingPatch,
"DFloat11Decompressor": DFloat11Decompressor,
}
NODE_DISPLAY_NAME_MAPPINGS = {
"DFloat11ModelLoader": "DFloat11 Model Loader",
"DFloat11ModelLoaderAdvanced": "DFloat11 Model Loader (Advanced)",
"DFloat11DiffusersModelLoader": "DFloat11 diffusers-native Model Loader",
"DFloat11ModelCompressor": "DFloat11 Model Compressor",
"DFloat11CheckpointCompressor": "DFloat11 Checkpoint Compressor",
"CheckpointLoaderWithDFloat11": "Load Checkpoint with DFloat11 Unet",
"DFloat11LoadingPatch" : "Patch DFloat11 Loading",
}
__all__ = ['NODE_CLASS_MAPPINGS', 'NODE_DISPLAY_NAME_MAPPINGS']