-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathflux-dev.json
More file actions
44 lines (44 loc) · 1.47 KB
/
Copy pathflux-dev.json
File metadata and controls
44 lines (44 loc) · 1.47 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"variables": {
"prompt": "prompt:flux/biomechanical_daffodil",
"num_images_per_prompt": 1,
"num_inference_steps": 25,
"guidance_scale": 3.5,
"width": 768,
"height": 768
},
"id": "FluxDev",
"description": "Text-to-image with FLUX.1 dev - the reference FLUX workflow.",
"cost": [
{"device": "cuda", "name": "RTX 3090", "vram_gb": 24, "minutes": 1.0}
],
"configures": "templates/text-to-image",
"steps": [
{
"name": "txt2img",
"pipeline": {
"configuration": {
"component_type": "FluxPipeline",
"offload": "model"
},
"from_pretrained_arguments": {
"model_name": "black-forest-labs/FLUX.1-dev",
"torch_dtype": "torch.bfloat16"
},
"arguments": {
"prompt": "variable:prompt",
"num_inference_steps": "variable:num_inference_steps",
"num_images_per_prompt": "variable:num_images_per_prompt",
"width": "variable:width",
"height": "variable:height",
"guidance_scale": "variable:guidance_scale",
"max_sequence_length": 512
}
},
"result": {
"content_type": "image/jpeg",
"embed_metadata": true
}
}
]
}