Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -136,6 +136,7 @@ intro = """
|
|
136 |
css='''
|
137 |
#strip, #interactive{max-height: 256px; min-height: 65px}
|
138 |
#strip img{object-fit: cover}
|
|
|
139 |
'''
|
140 |
examples = [["a dog in the park", "winter", "summer", 1.5], ["a house", "USA suburb", "Europe", 2.5], ["a tomato", "rotten", "super fresh", 2.5]]
|
141 |
|
@@ -159,19 +160,13 @@ with gr.Blocks(css=css) as demo:
|
|
159 |
prompt = gr.Textbox(label="Prompt", info="Describe what you to be steered by the directions", placeholder="A dog in the park")
|
160 |
x = gr.Slider(minimum=0, value=1.75, step=0.1, maximum=4.0, label="Strength", info="maximum strength on each direction (unstable beyond 2.5)")
|
161 |
submit = gr.Button("Generate directions")
|
162 |
-
|
163 |
with gr.Column():
|
164 |
output_image = gr.Video(label="Looping video", elem_id="video", loop=True, autoplay=True)
|
165 |
-
|
166 |
-
with gr.Row():
|
167 |
-
with gr.Column(scale=3, min_width=50):
|
168 |
-
image_seq = gr.Image(label="Strip", elem_id="strip", height=65)
|
169 |
-
|
170 |
-
with gr.Column(scale=2, min_width=50):
|
171 |
with gr.Group(elem_id="group"):
|
172 |
post_generation_image = gr.Image(label="Generated Images", type="filepath", elem_id="interactive")
|
173 |
post_generation_slider = gr.Slider(minimum=-10, maximum=10, value=0, step=1, label="From 1st to 2nd direction")
|
174 |
-
|
175 |
with gr.Accordion(label="Advanced options", open=False):
|
176 |
interm_steps = gr.Slider(label = "Num of intermediate images", minimum=3, value=7, maximum=65, step=2)
|
177 |
with gr.Row():
|
|
|
136 |
css='''
|
137 |
#strip, #interactive{max-height: 256px; min-height: 65px}
|
138 |
#strip img{object-fit: cover}
|
139 |
+
.gradio-container{max-width: 850px !important}
|
140 |
'''
|
141 |
examples = [["a dog in the park", "winter", "summer", 1.5], ["a house", "USA suburb", "Europe", 2.5], ["a tomato", "rotten", "super fresh", 2.5]]
|
142 |
|
|
|
160 |
prompt = gr.Textbox(label="Prompt", info="Describe what you to be steered by the directions", placeholder="A dog in the park")
|
161 |
x = gr.Slider(minimum=0, value=1.75, step=0.1, maximum=4.0, label="Strength", info="maximum strength on each direction (unstable beyond 2.5)")
|
162 |
submit = gr.Button("Generate directions")
|
163 |
+
image_seq = gr.Image(label="Strip", elem_id="strip", height=65)
|
164 |
with gr.Column():
|
165 |
output_image = gr.Video(label="Looping video", elem_id="video", loop=True, autoplay=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
with gr.Group(elem_id="group"):
|
167 |
post_generation_image = gr.Image(label="Generated Images", type="filepath", elem_id="interactive")
|
168 |
post_generation_slider = gr.Slider(minimum=-10, maximum=10, value=0, step=1, label="From 1st to 2nd direction")
|
169 |
+
|
170 |
with gr.Accordion(label="Advanced options", open=False):
|
171 |
interm_steps = gr.Slider(label = "Num of intermediate images", minimum=3, value=7, maximum=65, step=2)
|
172 |
with gr.Row():
|