YiYiXu HF Staff commited on
Commit
62eb1af
·
verified ·
1 Parent(s): a7f3bbb

Upload MellonPipelineConfig

Browse files
Files changed (1) hide show
  1. mellon_pipeline_config.json +184 -0
mellon_pipeline_config.json ADDED
@@ -0,0 +1,184 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "label": "Qwen Image Layered Auto Blocks",
3
+ "default_repo": "",
4
+ "default_dtype": "",
5
+ "node_params": {
6
+ "custom": {
7
+ "params": {
8
+ "image": {
9
+ "label": "Image",
10
+ "type": "image",
11
+ "display": "input"
12
+ },
13
+ "resolution": {
14
+ "label": "Resolution",
15
+ "type": "int",
16
+ "display": "slider",
17
+ "default": 640,
18
+ "min": 640,
19
+ "max": 640,
20
+ "step": 1
21
+ },
22
+ "prompt": {
23
+ "label": "Prompt",
24
+ "type": "string",
25
+ "display": "textarea",
26
+ "default": ""
27
+ },
28
+ "use_en_prompt": {
29
+ "label": "Use En Prompt",
30
+ "type": "custom",
31
+ "display": "input"
32
+ },
33
+ "negative_prompt": {
34
+ "label": "Negative Prompt",
35
+ "type": "custom",
36
+ "display": "input"
37
+ },
38
+ "max_sequence_length": {
39
+ "label": "Max Sequence Length",
40
+ "type": "custom",
41
+ "display": "input"
42
+ },
43
+ "generator": {
44
+ "label": "Generator",
45
+ "type": "custom",
46
+ "display": "input"
47
+ },
48
+ "num_images_per_prompt": {
49
+ "label": "Num Images Per Prompt",
50
+ "type": "custom",
51
+ "display": "input"
52
+ },
53
+ "latents": {
54
+ "label": "Latents",
55
+ "type": "custom",
56
+ "display": "input"
57
+ },
58
+ "layers": {
59
+ "label": "Layers",
60
+ "type": "int",
61
+ "display": "slider",
62
+ "default": 4,
63
+ "min": 4,
64
+ "max": 4,
65
+ "step": 1
66
+ },
67
+ "num_inference_steps": {
68
+ "label": "Num Inference Steps",
69
+ "type": "int",
70
+ "default": 50
71
+ },
72
+ "sigmas": {
73
+ "label": "Sigmas",
74
+ "type": "custom",
75
+ "display": "input"
76
+ },
77
+ "attention_kwargs": {
78
+ "label": "Attention Kwargs",
79
+ "type": "custom",
80
+ "display": "input"
81
+ },
82
+ "output_type": {
83
+ "label": "Output Type",
84
+ "type": "custom",
85
+ "display": "input"
86
+ },
87
+ "image_resize_processor": {
88
+ "label": "Image Resize Processor",
89
+ "type": "diffusers_auto_model",
90
+ "display": "input"
91
+ },
92
+ "text_encoder": {
93
+ "label": "Text Encoder",
94
+ "type": "diffusers_auto_model",
95
+ "display": "input"
96
+ },
97
+ "processor": {
98
+ "label": "Processor",
99
+ "type": "diffusers_auto_model",
100
+ "display": "input"
101
+ },
102
+ "tokenizer": {
103
+ "label": "Tokenizer",
104
+ "type": "diffusers_auto_model",
105
+ "display": "input"
106
+ },
107
+ "guider": {
108
+ "label": "Guider",
109
+ "type": "diffusers_auto_model",
110
+ "display": "input"
111
+ },
112
+ "image_processor": {
113
+ "label": "Image Processor",
114
+ "type": "diffusers_auto_model",
115
+ "display": "input"
116
+ },
117
+ "vae": {
118
+ "label": "Vae",
119
+ "type": "diffusers_auto_model",
120
+ "display": "input"
121
+ },
122
+ "pachifier": {
123
+ "label": "Pachifier",
124
+ "type": "diffusers_auto_model",
125
+ "display": "input"
126
+ },
127
+ "scheduler": {
128
+ "label": "Scheduler",
129
+ "type": "diffusers_auto_model",
130
+ "display": "input"
131
+ },
132
+ "transformer": {
133
+ "label": "Transformer",
134
+ "type": "diffusers_auto_model",
135
+ "display": "input"
136
+ },
137
+ "images": {
138
+ "label": "Images",
139
+ "type": "image",
140
+ "display": "output"
141
+ },
142
+ "doc": {
143
+ "label": "Doc",
144
+ "type": "string",
145
+ "display": "output"
146
+ }
147
+ },
148
+ "input_names": [
149
+ "image",
150
+ "resolution",
151
+ "prompt",
152
+ "use_en_prompt",
153
+ "negative_prompt",
154
+ "max_sequence_length",
155
+ "generator",
156
+ "num_images_per_prompt",
157
+ "latents",
158
+ "layers",
159
+ "num_inference_steps",
160
+ "sigmas",
161
+ "attention_kwargs",
162
+ "output_type"
163
+ ],
164
+ "model_input_names": [
165
+ "image_resize_processor",
166
+ "text_encoder",
167
+ "processor",
168
+ "tokenizer",
169
+ "guider",
170
+ "image_processor",
171
+ "vae",
172
+ "pachifier",
173
+ "scheduler",
174
+ "transformer"
175
+ ],
176
+ "output_names": [
177
+ "images",
178
+ "doc"
179
+ ],
180
+ "block_name": "custom",
181
+ "node_type": "custom"
182
+ }
183
+ }
184
+ }