Saurabh Kumar commited on
Commit
eed28b8
·
verified ·
1 Parent(s): 13ff626

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -4,6 +4,7 @@ import streamlit as st
4
  import torch
5
  from PIL import Image
6
 
 
7
  # default: Load the model on the available device(s)
8
  model = Qwen2VLForConditionalGeneration.from_pretrained(
9
  "Qwen/Qwen2-VL-7B-Instruct", torch_dtype="auto", device_map="auto"
@@ -25,6 +26,7 @@ processor = AutoProcessor.from_pretrained("Qwen/Qwen2-VL-7B-Instruct")
25
  # max_pixels = 1280*28*28
26
  # processor = AutoProcessor.from_pretrained("Qwen/Qwen2-VL-7B-Instruct", min_pixels=min_pixels, max_pixels=max_pixels)
27
 
 
28
  # Streamlit app title
29
  st.title("OCR Image Text Extraction")
30
 
 
4
  import torch
5
  from PIL import Image
6
 
7
+ @st.cache
8
  # default: Load the model on the available device(s)
9
  model = Qwen2VLForConditionalGeneration.from_pretrained(
10
  "Qwen/Qwen2-VL-7B-Instruct", torch_dtype="auto", device_map="auto"
 
26
  # max_pixels = 1280*28*28
27
  # processor = AutoProcessor.from_pretrained("Qwen/Qwen2-VL-7B-Instruct", min_pixels=min_pixels, max_pixels=max_pixels)
28
 
29
+ @st.cache_data
30
  # Streamlit app title
31
  st.title("OCR Image Text Extraction")
32