gallery_test / app.py
hmb's picture
hmb HF staff
Create app.py
948cd44 verified
raw
history blame contribute delete
220 Bytes
import gradio as gr
with gr.Blocks(analytics_enabled=False) as app:
gallery = gr.Gallery(label="Generated Images", interactive=True, show_label=True, preview=True, allow_preview=True)
app.launch(inbrowser=True)