-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmodel_config.json
More file actions
73 lines (73 loc) · 1.73 KB
/
model_config.json
File metadata and controls
73 lines (73 loc) · 1.73 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "FLUX.1-dev",
"pipeline": {
"hf_model_id": "ChuckMcSneed/FLUX.1-dev",
"max_n": 2,
"torch_dtype_init": "bfloat16",
"torch_dtype_run": "float16",
"torch_device": "cuda",
"enable_cpu_offload": false,
"enable_vae_slicing": true,
"enable_vae_tiling": true,
"global_guidance_scale": 7.0,
"global_num_inference_steps": 50,
"generations_config": {
"enabled": true,
"pipeline": "FluxPipeline"
},
"edits_config": {
"enabled": true,
"pipeline": "FluxFillPipeline",
"inpaint_pipeline": null
},
"variations_config": {
"enable_flux_redux": false,
"enable_flux_canny": false,
"enable_flux_depth": false,
"enabled": true,
"vision_model": "gpt-4o",
"vision_model_host": "https://api.openai.com",
"vision_model_api_key_variable": "OPENAI_API_KEY"
},
"loras": [
{
"type": "hub",
"address": "black-forest-labs/FLUX.1-Canny-dev-lora",
"weight_name": null,
"adapter_name": "flux-canny"
},
{
"type": "hub",
"address": "black-forest-labs/FLUX.1-Depth-dev-lora",
"weight_name": null,
"adapter_name": "flux-depth"
}
]
},
"generation_presets": {
"standard": {
"guidance_scale": 3.5,
"num_inference_steps": 25
},
"standard+": {
"guidance_scale": 5.5,
"num_inference_steps": 25
},
"standard++": {
"guidance_scale": 7.0,
"num_inference_steps": 25
},
"bfl": {
"guidance_scale": 3.5,
"num_inference_steps": 50
},
"hd": {
"guidance_scale": 5.5,
"num_inference_steps": 50
},
"xhd": {
"guidance_scale": 7.0,
"num_inference_steps": 50
}
}
}