Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -65,6 +65,15 @@ with gr.Blocks(css=css) as demo:
|
|
| 65 |
with gr.Row():
|
| 66 |
with gr.Column():
|
| 67 |
image = gr.Image(type='filepath')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 68 |
textbox = gr.Textbox(show_label=False, value="a person facing the camera, making a hand gesture, indoor")
|
| 69 |
seed = gr.Slider(label="Seed", minimum=0, maximum=1000000, value=643534)
|
| 70 |
button = gr.Button()
|
|
|
|
| 65 |
with gr.Row():
|
| 66 |
with gr.Column():
|
| 67 |
image = gr.Image(type='filepath')
|
| 68 |
+
gr.Examples(
|
| 69 |
+
examples = [
|
| 70 |
+
"examples/IMG_1050.jpeg",
|
| 71 |
+
"examples/IMG_1051.jpeg",
|
| 72 |
+
"examples/IMG_1052.jpeg",
|
| 73 |
+
"examples/IMG_1053.jpeg"
|
| 74 |
+
],
|
| 75 |
+
inputs = [image]
|
| 76 |
+
)
|
| 77 |
textbox = gr.Textbox(show_label=False, value="a person facing the camera, making a hand gesture, indoor")
|
| 78 |
seed = gr.Slider(label="Seed", minimum=0, maximum=1000000, value=643534)
|
| 79 |
button = gr.Button()
|