laverdes commited on
Commit
f3c6bfe
·
1 Parent(s): 1cba75b

chore: remove logo display

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -51,10 +51,13 @@ def run_prediction(sample):
51
 
52
  task_prompt = f"<s>"
53
 
54
- logo = Image.open("./img/unstructured_logo_header.png")
55
- st.image(logo)
56
 
57
  st.markdown('''
 
 
 
58
  This is an OCR-free Document Understanding Transformer nicknamed 🍩. It was fine-tuned with 1000 receipt images -> SROIE dataset.
59
  The original 🍩 implementation can be found on [here](https://github.com/clovaai/donut).
60
 
 
51
 
52
  task_prompt = f"<s>"
53
 
54
+ logo = Image.open("./img/rsz_unstructured_logo.png")
55
+ # st.image(logo)
56
 
57
  st.markdown('''
58
+ ## Receipt Parser
59
+ #### by [Unstructured.io](https://www.unstructured.io/)
60
+
61
  This is an OCR-free Document Understanding Transformer nicknamed 🍩. It was fine-tuned with 1000 receipt images -> SROIE dataset.
62
  The original 🍩 implementation can be found on [here](https://github.com/clovaai/donut).
63