Spaces:
Runtime error
Runtime error
File size: 299 Bytes
2c804fd ac8761c 2c804fd |
1 2 3 4 5 6 7 8 9 10 |
from image_summary import image_summary_demo
from OCR_Image_to_Text import get_OCR_demo
demo = gr.TabbedInterface([image_summary_demo, get_OCR_demo],
["Image to Text SUMMARY", "Extract TEXT"])
if __name__ == "__main__":
demo.launch(debug=True, cache_examples=True) |