Melons commited on
Commit
f7fb675
·
verified ·
1 Parent(s): c49ef53

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +56 -0
config.json ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "parameters": {
3
+ "height": {
4
+ "type": "integer",
5
+ "default": 512,
6
+ "min": 256,
7
+ "max": 1440,
8
+ "description": "Height of the generated image."
9
+ },
10
+ "width": {
11
+ "type": "integer",
12
+ "default": 512,
13
+ "min": 256,
14
+ "max": 1440,
15
+ "description": "Width of the generated image."
16
+ },
17
+ "num_inference_steps": {
18
+ "type": "integer",
19
+ "default": 50,
20
+ "min": 1,
21
+ "max": 100,
22
+ "description": "Number of denoising steps."
23
+ },
24
+ "guidance_scale": {
25
+ "type": "number",
26
+ "default": 3.48,
27
+ "min": 0,
28
+ "max": 10,
29
+ "description": "Guidance scale for the diffusion process."
30
+ },
31
+ "seed": {
32
+ "type": "integer",
33
+ "optional": true,
34
+ "description": "Random seed for reproducibility."
35
+ },
36
+ "output_quality": {
37
+ "type": "integer",
38
+ "default": 100,
39
+ "min": 0,
40
+ "max": 100,
41
+ "description": "Quality of the output image."
42
+ },
43
+ "megapixels": {
44
+ "type": "string",
45
+ "default": "1",
46
+ "description": "Approximate number of megapixels for the generated image."
47
+ },
48
+ "lora_scale": {
49
+ "type": "number",
50
+ "default": 1,
51
+ "min": -1,
52
+ "max": 3,
53
+ "description": "Strength of LoRA scale."
54
+ }
55
+ }
56
+ }