Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ipvikas
/
ImageProcessing
like
3
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ipvikas
commited on
Jan 12
Commit
2c804fd
·
verified
·
1 Parent(s):
5da80f1
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
ADDED
Viewed
@@ -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)