hatmanstack commited on
Commit
1d047e4
1 Parent(s): 911f98c

example images

Browse files
Files changed (1) hide show
  1. app.py +13 -6
app.py CHANGED
@@ -177,14 +177,21 @@ with gr.Blocks() as demo:
177
  <div style="text-align: center;">
178
  <h1>Sample Prompts and Results</h1>
179
  </div>
 
180
 
 
 
 
 
 
 
181
 
182
- | Example | Prompt |
183
- |:-------:|:-------|
184
- | <img src='examples/sample2.png' width='200'> | A whimsical outdoor scene where vibrant flowers and sprawling vines, crafted from an array of colorful fruit leathers and intricately designed candies, flutter with delicate, lifelike butterflies made from translucent, shimmering sweets. Each petal and leaf glistens with a soft, sugary sheen, casting playful reflections. The butterflies, with their candy wings adorned in fruity patterns, flit about, creating a magical, edible landscape that delights the senses. |
185
- | <img src='examples/sample4.png' width='200'> | A rugged adventurer's ensemble, crafted for the wild, featuring a khaki jacket adorned with numerous functional pockets, a sun-bleached pith hat with a wide brim, sturdy canvas trousers with reinforced knees, and a pair of weathered leather boots with high-traction soles. Accented with a brass compass pendant and a leather utility belt laden with small tools, the outfit is completed by a pair of aviator sunglasses and a weathered map tucked into a side pocket. |
186
-
187
- """)
188
 
189
 
190
 
 
177
  <div style="text-align: center;">
178
  <h1>Sample Prompts and Results</h1>
179
  </div>
180
+ """)
181
 
182
+ # Example 1
183
+ with gr.Row():
184
+ with gr.Column():
185
+ gr.Image("examples/sample2.png", width=200, show_label=False, container=False)
186
+ with gr.Column():
187
+ gr.Markdown("""A whimsical outdoor scene where vibrant flowers and sprawling vines, crafted from an array of colorful fruit leathers and intricately designed candies, flutter with delicate, lifelike butterflies made from translucent, shimmering sweets. Each petal and leaf glistens with a soft, sugary sheen, casting playful reflections. The butterflies, with their candy wings adorned in fruity patterns, flit about, creating a magical, edible landscape that delights the senses.""")
188
 
189
+ # Example 2
190
+ with gr.Row():
191
+ with gr.Column():
192
+ gr.Image("examples/sample4.png", width=200, show_label=False, container=False)
193
+ with gr.Column():
194
+ gr.Markdown("""A rugged adventurer's ensemble, crafted for the wild, featuring a khaki jacket adorned with numerous functional pockets, a sun-bleached pith hat with a wide brim, sturdy canvas trousers with reinforced knees, and a pair of weathered leather boots with high-traction soles. Accented with a brass compass pendant and a leather utility belt laden with small tools, the outfit is completed by a pair of aviator sunglasses and a weathered map tucked into a side pocket.""")
195
 
196
 
197