Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,7 +1,10 @@
|
|
| 1 |
|
| 2 |
from image_summary import image_summary_demo
|
| 3 |
|
| 4 |
-
|
| 5 |
-
|
|
|
|
|
|
|
|
|
|
| 6 |
if __name__ == "__main__":
|
| 7 |
demo.launch(debug=True, cache_examples=True)
|
|
|
|
| 1 |
|
| 2 |
from image_summary import image_summary_demo
|
| 3 |
|
| 4 |
+
|
| 5 |
+
from OCR_Image_to_Text import get_OCR_demo
|
| 6 |
+
|
| 7 |
+
demo = gr.TabbedInterface([image_summary_demo, get_OCR_demo],
|
| 8 |
+
["Image to Text SUMMARY", "Extract TEXT"])
|
| 9 |
if __name__ == "__main__":
|
| 10 |
demo.launch(debug=True, cache_examples=True)
|