Spaces:
Runtime error
Runtime error
File size: 1,473 Bytes
e4b9ee5 ee0e82a e4b9ee5 ee0e82a e4b9ee5 ee0e82a e4b9ee5 ee0e82a e4b9ee5 ee0e82a e4b9ee5 ee0e82a e4b9ee5 |
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 |
"""
Donut
Copyright (c) 2022-present NAVER Corp.
MIT License
https://github.com/clovaai/donut
"""
import gradio as gr
import torch
from PIL import Image
from donut import DonutModel
def demo_process(input_img):
global pretrained_model, task_prompt, task_name
# input_img = Image.fromarray(input_img)
output = pretrained_model.inference(image=input_img, prompt=task_prompt)[
"predictions"
][0]
return output
task_prompt = f"<s_cord-v2>"
pretrained_model = DonutModel.from_pretrained(
"naver-clova-ix/donut-base-finetuned-cord-v2"
)
# pretrained_model: DonutModel = DonutModel.from_pretrained(
# "result", local_files_only=True
# )
pretrained_model.eval()
demo = gr.Interface(
fn=demo_process,
inputs=gr.inputs.Image(type="pil"),
outputs="json",
title=f"Donut π© demonstration for `cord-v2` task",
description="""This model is trained with 800 Indonesian receipt images of CORD dataset. <br>
Demonstrations for other types of documents/tasks are available at https://github.com/clovaai/donut <br>
More CORD receipt images are available at https://huggingface.co/datasets/naver-clova-ix/cord-v2
More details are available at:
- Paper: https://arxiv.org/abs/2111.15664
- GitHub: https://github.com/clovaai/donut""",
examples=[
["sample_image_cord_test_receipt_00004.png"],
["sample_image_cord_test_receipt_00012.png"],
],
cache_examples=False,
)
demo.launch(server_name="0.0.0.0")
|