Spaces:
Running
on
Zero
Running
on
Zero
alfredplpl
commited on
Commit
•
114766c
1
Parent(s):
2d7c34b
Update app.py
Browse files
app.py
CHANGED
@@ -16,6 +16,13 @@ pipe_normal.to("cuda")
|
|
16 |
def run_normal(prompt, negative_prompt="", guidance_scale=7, progress=gr.Progress(track_tqdm=True)):
|
17 |
return pipe_normal(prompt, negative_prompt=negative_prompt, guidance_scale=guidance_scale, num_inference_steps=20).images[0]
|
18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
normal_examples = ["portrait photo of a girl, photograph, highly detailed face, depth of field, moody light, golden hour, style by Dan Winters, Russell James, Steve McCurry, centered, extremely detailed, Nikon D850, award winning photography", "backlit photography of a dog", "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k", "A photo of beautiful mountain with realistic sunset and blue lake, highly detailed, masterpiece"]
|
20 |
with gr.Blocks(css=css) as demo:
|
21 |
gr.Markdown('''# Emi 2
|
|
|
16 |
def run_normal(prompt, negative_prompt="", guidance_scale=7, progress=gr.Progress(track_tqdm=True)):
|
17 |
return pipe_normal(prompt, negative_prompt=negative_prompt, guidance_scale=guidance_scale, num_inference_steps=20).images[0]
|
18 |
|
19 |
+
css = '''
|
20 |
+
.gradio-container{
|
21 |
+
max-width: 768px !important;
|
22 |
+
margin: 0 auto;
|
23 |
+
}
|
24 |
+
'''
|
25 |
+
|
26 |
normal_examples = ["portrait photo of a girl, photograph, highly detailed face, depth of field, moody light, golden hour, style by Dan Winters, Russell James, Steve McCurry, centered, extremely detailed, Nikon D850, award winning photography", "backlit photography of a dog", "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k", "A photo of beautiful mountain with realistic sunset and blue lake, highly detailed, masterpiece"]
|
27 |
with gr.Blocks(css=css) as demo:
|
28 |
gr.Markdown('''# Emi 2
|