Spaces:
Running
on
A10G
Running
on
A10G
Update app.py
Browse files
app.py
CHANGED
@@ -111,7 +111,8 @@ with gr.Blocks(css=css) as app:
|
|
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"
|
|
|
115 |
)
|
116 |
|
117 |
subject = gr.Image(
|
@@ -130,7 +131,7 @@ with gr.Blocks(css=css) as app:
|
|
130 |
with gr.Row():
|
131 |
|
132 |
number_of_outputs = gr.Slider(
|
133 |
-
label="Number Of Outputs", info='''The number of images to generate.''', value=
|
134 |
minimum=1, maximum=4, step=1,
|
135 |
)
|
136 |
|
|
|
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",
|
115 |
+
interactive=False
|
116 |
)
|
117 |
|
118 |
subject = gr.Image(
|
|
|
131 |
with gr.Row():
|
132 |
|
133 |
number_of_outputs = gr.Slider(
|
134 |
+
label="Number Of Outputs", info='''The number of images to generate.''', value=4,
|
135 |
minimum=1, maximum=4, step=1,
|
136 |
)
|
137 |
|