Spaces:
Runtime error
Runtime error
Load images when page loads
Browse filesLoad images when page loads instead of clicking on the button
app.py
CHANGED
|
@@ -16,11 +16,7 @@ with block:
|
|
| 16 |
with gr.Group():
|
| 17 |
with gr.Box():
|
| 18 |
gallery=gr.Gallery(label="Hug Gallery")
|
| 19 |
-
|
| 20 |
-
margin=False,
|
| 21 |
-
rounded=(False, True, True, False),
|
| 22 |
-
)
|
| 23 |
-
btn.click(infer, inputs=None, outputs=gallery)
|
| 24 |
|
| 25 |
block.launch()
|
| 26 |
|
|
|
|
| 16 |
with gr.Group():
|
| 17 |
with gr.Box():
|
| 18 |
gallery=gr.Gallery(label="Hug Gallery")
|
| 19 |
+
block.load(infer, inputs=None, outputs=gallery)
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
|
| 21 |
block.launch()
|
| 22 |
|