File size: 3,767 Bytes
7c523f8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5c02ee
7c523f8
bc079c2
7c523f8
bc079c2
7c523f8
 
 
 
2dc8f38
7c523f8
 
 
8e8adb5
7c523f8
 
 
 
89556d3
 
 
7c523f8
 
79df63d
 
7c523f8
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
import torch
import streamlit as st

from PIL import Image
from io import BytesIO
from transformers import VisionEncoderDecoderModel, VisionEncoderDecoderConfig , DonutProcessor


def run_prediction(sample):
    global pretrained_model, processor, task_prompt
    if isinstance(sample, dict):
        # prepare inputs
        pixel_values = torch.tensor(sample["pixel_values"]).unsqueeze(0)
    else:  # sample is an image
        # prepare encoder inputs
        pixel_values = processor(image, return_tensors="pt").pixel_values
    
    decoder_input_ids = processor.tokenizer(task_prompt, add_special_tokens=False, return_tensors="pt").input_ids

    # run inference
    outputs = pretrained_model.generate(
        pixel_values.to(device),
        decoder_input_ids=decoder_input_ids.to(device),
        max_length=pretrained_model.decoder.config.max_position_embeddings,
        early_stopping=True,
        pad_token_id=processor.tokenizer.pad_token_id,
        eos_token_id=processor.tokenizer.eos_token_id,
        use_cache=True,
        num_beams=1,
        bad_words_ids=[[processor.tokenizer.unk_token_id]],
        return_dict_in_generate=True,
    )

    # process output
    prediction = processor.batch_decode(outputs.sequences)[0]
    
    # post-processing
    if "cord" in task_prompt:
        prediction = prediction.replace(processor.tokenizer.eos_token, "").replace(processor.tokenizer.pad_token, "")
        # prediction = re.sub(r"<.*?>", "", prediction, count=1).strip()  # remove first task start token
    prediction = processor.token2json(prediction)
    
    # load reference target
    if isinstance(sample, dict):
        target = processor.token2json(sample["target_sequence"])
    else:
        target = "<not_provided>"
    
    return prediction, target
    

task_prompt = f"<s>"

# logo = Image.open("./img/rsz_unstructured_logo.png")
# st.image(logo)

st.markdown('''
### Donut Common Crawl
Experimental OCR-free Document Understanding Vision Transformer nicknamed 🍩, fine-tuned with few samples of the common-crawl with some specific document elements.
''')

with st.sidebar:
    information = st.radio(
    "Choose one predictor:?",
    ('Base Common-Crawl 🍩', 'Hierarchical Common-Crawl 🍩'))
    image_choice = st.selectbox('Pick one πŸ“‘', ['1', '2', '3'], index=1)
        
st.text(f'{information} mode is ON!\nTarget πŸ“‘: {image_choice}')  # \n(opening image @:./img/receipt-{receipt}.png)')

col1, col2 = st.columns(2)

image_choice_map = {
    '1': 'commoncrawl_amandalacombznewspolice-bust-man-sawed-oal_1.jpg',
    '2': 'commoncrawl_canyonhillschroniclecomtagwomens-basketbll_0.png',
    '3': 'commoncrawl_celstuttgartdeideaa-different-stort-of-nfe_0.png'
}
image = Image.open(image_choice_map[image_choice])
with col1:
    st.image(image, caption='Your target sample')

if st.button('Parse sample! 🐍'):
    image = image.convert('RGB')
    image.save('./target_image.jpg')
    image = Image.open('./target_image.jpg')
    with st.spinner(f'baking the 🍩s...'):
        if information == 'Base Common-Crawl 🍩':
            processor = DonutProcessor.from_pretrained("laverdes/donut-commoncrawl-mid")  # laverdes/donut-commoncrawl
            pretrained_model = VisionEncoderDecoderModel.from_pretrained("laverdes/donut-commoncrawl-mid")   # laverdes/donut-commoncrawl
            task_prompt = f"<s>"
            device = "cuda" if torch.cuda.is_available() else "cpu"
            pretrained_model.to(device)
        
        elif information == 'Hierarchical Common-Crawl 🍩':
            st.info("Not implemented yet...")
            
    with col2:
        st.info(f'parsing πŸ“‘...')
        parsed_info, _ = run_prediction(image)
        st.text(f'\n{information}')
        st.json(parsed_info)