forked from ali-vilab/FlashFace
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path__init__.py
More file actions
26 lines (19 loc) · 877 Bytes
/
__init__.py
File metadata and controls
26 lines (19 loc) · 877 Bytes
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 .nodes.flashface_generator import FlashFaceGenerator
from .nodes.flashface_cliptextencode import FlashFaceCLIPTextEncode
from .nodes.flashface_loadmodel import FlashFaceLoadModel
from .nodes.flashface_detectface import FlashFaceDetectFace
NODE_CLASS_MAPPINGS = {
"FlashFaceGenerator": FlashFaceGenerator,
"FlashFaceCLIPTextEncode": FlashFaceCLIPTextEncode,
"FlashFaceLoadModel": FlashFaceLoadModel,
"FlashFaceDetectFace": FlashFaceDetectFace,
}
NODE_DISPLAY_NAME_MAPPINGS = {
"FlashFaceGenerator": "⚡🎭FlashFace Generator",
"FlashFaceCLIPTextEncode": "⚡🎭FlashFace CLIP Text Encode",
"FlashFaceLoadModel": "⚡🎭FlashFace Load Model",
"FlashFaceDetectFace": "⚡🎭FlashFace Detect Face",
}
WEB_DIRECTORY = "./web"
__all__ = ['NODE_CLASS_MAPPINGS', 'WEB_DIRECTORY']
print("\033[34mFlashFace Nodes: \033[92mLoaded\033[0m")