forked from jtydhr88/ComfyUI-See-through
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
23 lines (18 loc) · 768 Bytes
/
__init__.py
File metadata and controls
23 lines (18 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"""
ComfyUI-See-through: Anime Layer Decomposition from a Single Image
Wraps the See-through research project as ComfyUI custom nodes.
Paper: arxiv:2602.03749
"""
import traceback
WEB_DIRECTORY = "./web"
print("[ComfyUI-See-through] __init__.py loading...", flush=True)
try:
from .nodes import NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS
print(f"[ComfyUI-See-through] Loaded {len(NODE_CLASS_MAPPINGS)} nodes: {list(NODE_CLASS_MAPPINGS.keys())}", flush=True)
except Exception as e:
print(f"[ComfyUI-See-through] Failed to import nodes: {e}", flush=True)
traceback.print_exc()
NODE_CLASS_MAPPINGS = {}
NODE_DISPLAY_NAME_MAPPINGS = {}
__all__ = ["NODE_CLASS_MAPPINGS", "NODE_DISPLAY_NAME_MAPPINGS", "WEB_DIRECTORY"]
__version__ = "0.1.0"