Spaces:
Running
on
L40S
Running
on
L40S
Update app.py
Browse files
app.py
CHANGED
@@ -108,7 +108,7 @@ with gr.Blocks(css=css) as app:
|
|
108 |
""")
|
109 |
|
110 |
with gr.Row():
|
111 |
-
with gr.Column(scale=
|
112 |
prompt = gr.Textbox(
|
113 |
label="Prompt", info='''Describe the subject. Include clothes and hairstyle for more consistency.''',
|
114 |
value="a person, darkblue suit, black tie, white pocket"
|
@@ -159,7 +159,7 @@ with gr.Blocks(css=css) as app:
|
|
159 |
label="Seed", info='''Set a seed for reproducibility. Random by default.''', value=None
|
160 |
)
|
161 |
|
162 |
-
with gr.Column(scale=
|
163 |
consistent_results = gr.Gallery(label="Consistent Results")
|
164 |
|
165 |
inputs = [prompt, negative_prompt, subject, number_of_outputs, number_of_images_per_pose, randomise_poses, output_format, output_quality, seed]
|
|
|
108 |
""")
|
109 |
|
110 |
with gr.Row():
|
111 |
+
with gr.Column(scale=2):
|
112 |
prompt = gr.Textbox(
|
113 |
label="Prompt", info='''Describe the subject. Include clothes and hairstyle for more consistency.''',
|
114 |
value="a person, darkblue suit, black tie, white pocket"
|
|
|
159 |
label="Seed", info='''Set a seed for reproducibility. Random by default.''', value=None
|
160 |
)
|
161 |
|
162 |
+
with gr.Column(scale=3):
|
163 |
consistent_results = gr.Gallery(label="Consistent Results")
|
164 |
|
165 |
inputs = [prompt, negative_prompt, subject, number_of_outputs, number_of_images_per_pose, randomise_poses, output_format, output_quality, seed]
|