laverdes commited on
Commit
5534f9c
·
1 Parent(s): 6527a47

fix: enhance markdown

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -51,13 +51,13 @@ def run_prediction(sample):
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
  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: https://github.com/clovaai/donut .
60
- At (Unstructured.io)[https://github.com/Unstructured-IO/unstructured] we are on a mission to build custom preprocessing pipelines for labeling, training, or production ML-ready pipelines 🤩.
61
  Come and join us in our public repos and contribute! Each of your contributions and feedback holds great value and is very significant to the community 😊.
62
  ''')
63
 
 
51
 
52
  task_prompt = f"<s>"
53
 
54
+ logo = Image.open("./img/unstructured_logo.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
+ At [Unstructured.io](https://github.com/Unstructured-IO/unstructured) we are on a mission to build custom preprocessing pipelines for labeling, training, or production ML-ready pipelines 🤩.
61
  Come and join us in our public repos and contribute! Each of your contributions and feedback holds great value and is very significant to the community 😊.
62
  ''')
63