Linux_Gallery / app.py
samadhan2601's picture
update app.py with gallery
3059ead verified
raw
history blame contribute delete
352 Bytes
import gradio as gr
with gr.Blocks() as demo:
images = [
"https://huggingface.co/spaces/samadhan2601/Linux_Gallery/blob/main/20210331_093718-1.jpg",
"https://huggingface.co/spaces/samadhan2601/Linux_Gallery/blob/main/RTSP_2024-01-11_04%2054%2022%2B0900_interval.jpg",
]
gr.Gallery(value=images, columns=4)
demo.launch()