RioShiina commited on
Commit
95b4e48
·
verified ·
1 Parent(s): 98e58be

Upload 112 files

Browse files
requirements.txt CHANGED
@@ -1,6 +1,6 @@
1
  comfyui-frontend-package==1.47.10
2
- comfyui-workflow-templates==0.11.17
3
- comfyui-embedded-docs==0.5.8
4
  torch
5
  torchsde
6
  torchvision
@@ -22,7 +22,7 @@ alembic
22
  SQLAlchemy>=2.0.0
23
  filelock
24
  av>=16.0.0
25
- comfy-kitchen==0.2.22
26
  comfy-aimdo==0.4.10
27
  requests
28
  simpleeval>=1.0.0
 
1
  comfyui-frontend-package==1.47.10
2
+ comfyui-workflow-templates==0.11.19
3
+ comfyui-embedded-docs==0.5.9
4
  torch
5
  torchsde
6
  torchvision
 
22
  SQLAlchemy>=2.0.0
23
  filelock
24
  av>=16.0.0
25
+ comfy-kitchen==0.2.23
26
  comfy-aimdo==0.4.10
27
  requests
28
  simpleeval>=1.0.0
ui/shared/hires_fix_ui.py CHANGED
@@ -39,7 +39,7 @@ def create_ui():
39
 
40
  with gr.Row():
41
  with gr.Column(scale=1):
42
- components[f'input_image_{prefix}'] = gr.Image(type="pil", label="Input Image", height=255)
43
  with gr.Column(scale=2):
44
  components[f'prompt_{prefix}'] = gr.Text(label="Prompt", lines=3, value=DEFAULT_POS_PROMPT)
45
  components[f'neg_prompt_{prefix}'] = gr.Text(label="Negative prompt", lines=3, value=DEFAULT_NEG_PROMPT)
 
39
 
40
  with gr.Row():
41
  with gr.Column(scale=1):
42
+ components[f'input_image_{prefix}'] = gr.Image(type="pil", label="Input Image (No Scaling)", height=255)
43
  with gr.Column(scale=2):
44
  components[f'prompt_{prefix}'] = gr.Text(label="Prompt", lines=3, value=DEFAULT_POS_PROMPT)
45
  components[f'neg_prompt_{prefix}'] = gr.Text(label="Negative prompt", lines=3, value=DEFAULT_NEG_PROMPT)
ui/shared/img2img_ui.py CHANGED
@@ -33,7 +33,7 @@ def create_ui():
33
 
34
  with gr.Row():
35
  with gr.Column(scale=1):
36
- components[f'input_image_{prefix}'] = gr.Image(type="pil", label="Input Image", height=255)
37
 
38
  with gr.Column(scale=2):
39
  components[f'prompt_{prefix}'] = gr.Text(label="Prompt", lines=3, value=DEFAULT_POS_PROMPT)
 
33
 
34
  with gr.Row():
35
  with gr.Column(scale=1):
36
+ components[f'input_image_{prefix}'] = gr.Image(type="pil", label="Input Image (No Scaling)", height=255)
37
 
38
  with gr.Column(scale=2):
39
  components[f'prompt_{prefix}'] = gr.Text(label="Prompt", lines=3, value=DEFAULT_POS_PROMPT)
ui/shared/inpaint_ui.py CHANGED
@@ -49,7 +49,7 @@ def create_ui():
49
  )
50
  components[f'input_image_dict_{prefix}'] = gr.ImageEditor(
51
  type="pil",
52
- label="Image & Mask",
53
  height=272
54
  )
55
  components[f'editor_column_{prefix}'] = editor_column
 
49
  )
50
  components[f'input_image_dict_{prefix}'] = gr.ImageEditor(
51
  type="pil",
52
+ label="Image & Mask (No Scaling)",
53
  height=272
54
  )
55
  components[f'editor_column_{prefix}'] = editor_column
ui/shared/outpaint_ui.py CHANGED
@@ -39,7 +39,7 @@ def create_ui():
39
 
40
  with gr.Row():
41
  with gr.Column(scale=1):
42
- components[f'input_image_{prefix}'] = gr.Image(type="pil", label="Input Image", height=255)
43
  with gr.Column(scale=2):
44
  components[f'prompt_{prefix}'] = gr.Text(label="Prompt", lines=3, value=DEFAULT_POS_PROMPT)
45
  components[f'neg_prompt_{prefix}'] = gr.Text(label="Negative prompt", lines=3, value=DEFAULT_NEG_PROMPT)
 
39
 
40
  with gr.Row():
41
  with gr.Column(scale=1):
42
+ components[f'input_image_{prefix}'] = gr.Image(type="pil", label="Input Image (No Scaling)", height=255)
43
  with gr.Column(scale=2):
44
  components[f'prompt_{prefix}'] = gr.Text(label="Prompt", lines=3, value=DEFAULT_POS_PROMPT)
45
  components[f'neg_prompt_{prefix}'] = gr.Text(label="Negative prompt", lines=3, value=DEFAULT_NEG_PROMPT)
yaml/model_architectures.yaml CHANGED
@@ -35,7 +35,6 @@ architectures:
35
  model_type: "krea-2"
36
  "Mage-Flow":
37
  model_type: "mage-flow"
38
- controlnet_key: "Mage-Flow"
39
  "JoyAI-Image":
40
  model_type: "joyai-image"
41
  "Boogu-Image":
 
35
  model_type: "krea-2"
36
  "Mage-Flow":
37
  model_type: "mage-flow"
 
38
  "JoyAI-Image":
39
  model_type: "joyai-image"
40
  "Boogu-Image":
yaml/model_defaults.yaml CHANGED
@@ -6,6 +6,18 @@ Default:
6
  positive_prompt: ""
7
  negative_prompt: ""
8
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  Mage-Flow:
10
  _defaults:
11
  steps: 30
@@ -19,18 +31,6 @@ Mage-Flow:
19
  steps: 4
20
  cfg: 1.0
21
 
22
- Krea-2:
23
- _defaults:
24
- steps: 52
25
- cfg: 3.5
26
- sampler_name: "euler"
27
- scheduler: "simple"
28
- "Krea-2-Turbo":
29
- steps: 8
30
- cfg: 1.0
31
- sampler_name: "euler"
32
- scheduler: "simple"
33
-
34
  JoyAI-Image:
35
  _defaults:
36
  steps: 40
@@ -272,13 +272,7 @@ AuraFlow:
272
  cfg: 3.5
273
  sampler_name: "euler"
274
  scheduler: "sgm_uniform"
275
- "PurpleSmartAI/Pony-V7-Base":
276
- steps: 40
277
- cfg: 3.5
278
- sampler_name: "euler"
279
- scheduler: "simple"
280
- positive_prompt: "special tags, factual description of image, stylistic description of image, additional content tags"
281
-
282
  SD3.5:
283
  _defaults:
284
  steps: 20
 
6
  positive_prompt: ""
7
  negative_prompt: ""
8
 
9
+ Krea-2:
10
+ _defaults:
11
+ steps: 52
12
+ cfg: 3.5
13
+ sampler_name: "euler"
14
+ scheduler: "simple"
15
+ "Krea-2-Turbo":
16
+ steps: 8
17
+ cfg: 1.0
18
+ sampler_name: "euler"
19
+ scheduler: "simple"
20
+
21
  Mage-Flow:
22
  _defaults:
23
  steps: 30
 
31
  steps: 4
32
  cfg: 1.0
33
 
 
 
 
 
 
 
 
 
 
 
 
 
34
  JoyAI-Image:
35
  _defaults:
36
  steps: 40
 
272
  cfg: 3.5
273
  sampler_name: "euler"
274
  scheduler: "sgm_uniform"
275
+
 
 
 
 
 
 
276
  SD3.5:
277
  _defaults:
278
  steps: 20