Spaces:
Sleeping
Sleeping
update app.py with gallery
Browse files
app.py
CHANGED
@@ -1,7 +1,10 @@
|
|
1 |
-
import gradio as gr
|
2 |
|
3 |
-
|
4 |
-
|
|
|
|
|
|
|
|
|
5 |
|
6 |
-
|
7 |
-
iface.launch()
|
|
|
1 |
+
import gradio as gr
|
2 |
|
3 |
+
with gr.Blocks() as demo:
|
4 |
+
images = [
|
5 |
+
"https://huggingface.co/spaces/samadhan2601/Linux_Gallery/blob/main/20210331_093718-1.jpg",
|
6 |
+
"https://huggingface.co/spaces/samadhan2601/Linux_Gallery/blob/main/RTSP_2024-01-11_04%2054%2022%2B0900_interval.jpg",
|
7 |
+
]
|
8 |
+
gr.Gallery(value=images, columns=4)
|
9 |
|
10 |
+
demo.launch()
|
|