ciCic commited on
Commit
c1a29f2
1 Parent(s): 2300903
Files changed (1) hide show
  1. app.py +8 -9
app.py CHANGED
@@ -53,11 +53,8 @@ def app():
53
  lines=3,
54
  value="Self-portrait oil painting, a beautiful cyborg with golden hair, 8k",
55
  ),
56
- gr.Slider(2, 20, value=7.5, label="Guidance Scale",
57
- info="Higher scale depicts more creativity"),
58
- gr.Slider(1, 50, value=4, label="Inference steps",
59
- info="Higher steps the more clarity"
60
- )
61
  ],
62
 
63
  gr.Image(type="pil",
@@ -66,10 +63,12 @@ def app():
66
  )
67
  , allow_flagging='never', title='Gen Image',
68
  examples=[
69
- "Illustrate the concept of 'serendipity' in a single image.",
70
- "Create a visual representation of the phrase 'whispers of the autumn wind.'",
71
- "Design an image capturing the essence of 'timeless wonder' in a mystical forest setting.",
72
- "Visualize the emotions evoked by the words 'bittersweet symphony' in a unique artwork.",
 
 
73
  ]
74
  )
75
 
 
53
  lines=3,
54
  value="Self-portrait oil painting, a beautiful cyborg with golden hair, 8k",
55
  ),
56
+ gr.Slider(2, 20, value=7.5, label="Guidance Scale"),
57
+ gr.Slider(1, 50, value=4, label="Inference steps")
 
 
 
58
  ],
59
 
60
  gr.Image(type="pil",
 
63
  )
64
  , allow_flagging='never', title='Gen Image',
65
  examples=[
66
+ ["Self-portrait oil painting, a beautiful cyborg with golden hair, 8k", 7, 10],
67
+ ["Self-portrait oil painting, a beautiful cyborg with golden hair, 8k", 15, 20],
68
+ ["Design an image capturing the essence of 'timeless wonder' in a mystical forest setting.",
69
+ 7, 20],
70
+ ["Visualize the emotions evoked by the words 'bittersweet symphony' in a unique artwork.",
71
+ 15, 20],
72
  ]
73
  )
74