mkoot007 commited on
Commit
821d791
1 Parent(s): 45c4e80

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -4,8 +4,8 @@ from PIL import Image
4
  import easyocr
5
  from transformers import pipeline
6
 
7
- # Create a text2text-generation pipeline with the "google/flan-t5-base" model
8
- pipe = pipeline("text2text-generation", model="google/flan-t5-base")
9
 
10
  # Initialize the EasyOCR reader for text extraction from images
11
  ocr_reader = easyocr.Reader(['en'])
@@ -26,7 +26,7 @@ if uploaded_file is not None:
26
 
27
  if extracted_text:
28
  # Use the pipeline to generate a concise explanation
29
- explanation = pipe(extracted_text, max_length=30, do_sample=True)[0]["generated_text"]
30
  st.markdown("**Explanation (5-6 lines):**")
31
  st.markdown(explanation)
32
  else:
 
4
  import easyocr
5
  from transformers import pipeline
6
 
7
+ # Create a text2text-generation pipeline with the "t5-small" model
8
+ pipe = pipeline("text2text-generation", model="t5-small")
9
 
10
  # Initialize the EasyOCR reader for text extraction from images
11
  ocr_reader = easyocr.Reader(['en'])
 
26
 
27
  if extracted_text:
28
  # Use the pipeline to generate a concise explanation
29
+ explanation = pipe(extracted_text, max_length=150, do_sample=True)[0]["generated_text"]
30
  st.markdown("**Explanation (5-6 lines):**")
31
  st.markdown(explanation)
32
  else: