Spaces:
Runtime error
Runtime error
#from main import classify | |
#import easyocr as ocr #OCR | |
import streamlit as st #Web App | |
from main import classify | |
#title | |
st.title("Easy OCR - Extract Text from Images") | |
#subtitle | |
st.markdown("## Optical Character Recognition - Using `easyocr`, `streamlit` - hosted on 🤗 Spaces") | |
input_sentences = st.text_area("Sentences", value="", height=200) | |
data = input_sentence.split('\n') | |
for i in data: | |
st.write(f"{i} :: Classification - TODO") | |
st.markdown("Link to the app - [image-to-text-app on 🤗 Spaces](https://huggingface.co/spaces/Amrrs/image-to-text-app)") | |