ChenyangSi commited on
Commit
f19876a
1 Parent(s): c171db0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +29 -2
app.py CHANGED
@@ -69,6 +69,33 @@ def infer(prompt, sd_options, seed, b1, b2, s1, s2):
69
 
70
 
71
  examples = [
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
72
  [
73
  "A horse galloping on the ocean",
74
  ],
@@ -136,7 +163,7 @@ block = gr.Blocks(css='style.css')
136
  options = ['SD2.1']
137
 
138
  with block:
139
- gr.Markdown("# SD 2.1 vs. FreeU")
140
  with gr.Group():
141
  with gr.Row(elem_id="prompt-container").style(mobile_collapse=False, equal_height=True):
142
  with gr.Column():
@@ -151,7 +178,7 @@ with block:
151
 
152
  with gr.Group():
153
  with gr.Row():
154
- sd_options = gr.Dropdown(["SD2.1", "SDXL"], label="SD options", value="SD2.1", visible=True)
155
 
156
 
157
 
 
69
 
70
 
71
  examples = [
72
+ [
73
+ "RAW photo, subject, 8k uhd, dslr, soft lighting, high quality, clearly face, a futuristic visage with cybernetic enhancements seamlessly integrated into human features",
74
+ ],
75
+ [
76
+ "Sculpt a life-sized animal using discarded plastic bottles and metal scraps, highlighting it's beauty, highly detailed, 8k",
77
+ ],
78
+ [
79
+ "A robot standing in the rain reading newspaper, rusty and worn down, in a dystopian cyberpunk street, photo-realistic , urbanpunk",
80
+ ],
81
+ [
82
+ "an outdoor full size sculpture using discarded car parts, highlighting it's beauty, highly detailed, 8k",
83
+ ],
84
+ [
85
+ "1955, moon landing, sci-fi, 8k, photorealistic, no atmosphere, earth in the sky, terraforming, style by Dean ellis",
86
+ ],
87
+ [
88
+ "a futuristic home , spaceship design,beautiful interior , high end design",
89
+ ],
90
+ [
91
+ "Hypnotic Maze, Fantasy Castle, Challenging Maze, Impossible Geometry, Mc Escher, Surreal Photography Within A Glass Sphere, Diorama, Beautiful Abundance, Medieval detailing , Digital Painting, Digital Illustration, Extreme Detail, Digital Art, 8k, Ultra Hd, Fantasy Art, Hyper Detailed, Hyperrealism, Elaborate, Vray, Unrea",
92
+ ],
93
+ [
94
+ "photo of half life combine standing outside city 17, glossy robot, rainy, rtx, octane, unreal",
95
+ ],
96
+ [
97
+ "new art : landscape into a Underground oasis in egypt. satara by johnny taylor, in the style of brushstroke-inmersive landscape, cinematic elegance, golden light, dark proportions, flowing brushwork, multilayered realism, --ar 61:128 --s 750 --v 5.2",
98
+ ],
99
  [
100
  "A horse galloping on the ocean",
101
  ],
 
163
  options = ['SD2.1']
164
 
165
  with block:
166
+ gr.Markdown("# SD vs. FreeU")
167
  with gr.Group():
168
  with gr.Row(elem_id="prompt-container").style(mobile_collapse=False, equal_height=True):
169
  with gr.Column():
 
178
 
179
  with gr.Group():
180
  with gr.Row():
181
+ sd_options = gr.Dropdown(["SD2.1", "SDXL"], label="SD options", value="SDXL", visible=True)
182
 
183
 
184