ipvikas commited on
Commit
2c804fd
·
verified ·
1 Parent(s): 5da80f1

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+
2
+ from image_summary import image_summary_demo
3
+
4
+ demo = gr.TabbedInterface([image_summary_demo],
5
+ ["Image to Text SUMMARY])
6
+ if __name__ == "__main__":
7
+ demo.launch(debug=True, cache_examples=True)