Upload folder using huggingface_hub
Browse files
app.py
CHANGED
@@ -109,7 +109,7 @@ with gr.Blocks(css=css) as demo:
|
|
109 |
content_image = gr.Image(label='Content', type='pil', sources=['upload', 'webcam', 'clipboard'], format='jpg', show_download_button=False)
|
110 |
style_dropdown = gr.Radio(choices=list(style_options.keys()), label='Style', value='Starry Night', type='value')
|
111 |
with gr.Group():
|
112 |
-
style_strength_slider = gr.Slider(label='Style Strength', minimum=1, maximum=10, step=1, value=
|
113 |
submit_button = gr.Button('Submit', variant='primary')
|
114 |
|
115 |
examples = gr.Examples(
|
|
|
109 |
content_image = gr.Image(label='Content', type='pil', sources=['upload', 'webcam', 'clipboard'], format='jpg', show_download_button=False)
|
110 |
style_dropdown = gr.Radio(choices=list(style_options.keys()), label='Style', value='Starry Night', type='value')
|
111 |
with gr.Group():
|
112 |
+
style_strength_slider = gr.Slider(label='Style Strength', minimum=1, maximum=10, step=1, value=10, info='Higher values add artistic flair, lower values add a realistic feel.')
|
113 |
submit_button = gr.Button('Submit', variant='primary')
|
114 |
|
115 |
examples = gr.Examples(
|