kh-CHEUNG commited on
Commit
a385b9c
·
verified ·
1 Parent(s): 092ff29

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -6,7 +6,7 @@ import streamlit as st
6
  # processor = AutoProcessor.from_pretrained("microsoft/udop-large", apply_ocr=True)
7
  # model = UdopForConditionalGeneration.from_pretrained("microsoft/udop-large")
8
 
9
- st.title("Document (/Image) Selection and Upload")
10
  st.write("Select or upload a document (/an image) to test the model.")
11
 
12
  # Image selection
@@ -18,9 +18,10 @@ if selected_file is not None and selected_file != "None":
18
  st.image(selected_file, caption="Selected Image")
19
 
20
  # Model testing button
21
- if st.button("Test Model") and selected_file != "None":
 
22
  st.write("Testing the model with the selected image...")
23
- elif st.button("Test Model") and selected_file == "None":
24
  st.write("Please upload and select an image.")
25
 
26
  # encoding = processor(image, question, words, boxes=boxes, return_tensors="pt")
 
6
  # processor = AutoProcessor.from_pretrained("microsoft/udop-large", apply_ocr=True)
7
  # model = UdopForConditionalGeneration.from_pretrained("microsoft/udop-large")
8
 
9
+ st.title("CIC Demo (by ITT)")
10
  st.write("Select or upload a document (/an image) to test the model.")
11
 
12
  # Image selection
 
18
  st.image(selected_file, caption="Selected Image")
19
 
20
  # Model testing button
21
+ testButton = st.button("Test Model")
22
+ if testButton and selected_file != "None":
23
  st.write("Testing the model with the selected image...")
24
+ elif testButton and selected_file == "None":
25
  st.write("Please upload and select an image.")
26
 
27
  # encoding = processor(image, question, words, boxes=boxes, return_tensors="pt")