hmb HF staff commited on
Commit
948cd44
·
verified ·
1 Parent(s): 80c553f

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ import gradio as gr
2
+ with gr.Blocks(analytics_enabled=False) as app:
3
+ gallery = gr.Gallery(label="Generated Images", interactive=True, show_label=True, preview=True, allow_preview=True)
4
+
5
+ app.launch(inbrowser=True)