Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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("
|
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 |
-
|
|
|
22 |
st.write("Testing the model with the selected image...")
|
23 |
-
elif
|
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")
|