Spaces:
Runtime error
Runtime error
File size: 288 Bytes
2e3e917 2c804fd ac8761c f59db1f 2c804fd f59db1f |
1 2 3 4 5 6 7 8 9 10 11 |
import gradio as gr
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()
|