Spaces:
Running
Running
Saurabh Kumar
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -11,8 +11,6 @@ def init_qwen_model():
|
|
11 |
_processor = AutoProcessor.from_pretrained("Qwen/Qwen2-VL-7B-Instruct")
|
12 |
return _model, _processor
|
13 |
|
14 |
-
# Modified function to use only the image as the argument
|
15 |
-
@st.cache_data
|
16 |
def get_qwen_text(uploaded_file, model, processor):
|
17 |
if uploaded_file is not None:
|
18 |
# Open the uploaded image file
|
@@ -55,7 +53,8 @@ def get_qwen_text(uploaded_file, model, processor):
|
|
55 |
generated_ids_trimmed, skip_special_tokens=True, clean_up_tokenization_spaces=False
|
56 |
)
|
57 |
return output_text
|
58 |
-
|
|
|
59 |
# Streamlit app title
|
60 |
st.title("OCR Image Text Extraction")
|
61 |
|
|
|
11 |
_processor = AutoProcessor.from_pretrained("Qwen/Qwen2-VL-7B-Instruct")
|
12 |
return _model, _processor
|
13 |
|
|
|
|
|
14 |
def get_qwen_text(uploaded_file, model, processor):
|
15 |
if uploaded_file is not None:
|
16 |
# Open the uploaded image file
|
|
|
53 |
generated_ids_trimmed, skip_special_tokens=True, clean_up_tokenization_spaces=False
|
54 |
)
|
55 |
return output_text
|
56 |
+
|
57 |
+
@st.cache_data
|
58 |
# Streamlit app title
|
59 |
st.title("OCR Image Text Extraction")
|
60 |
|