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