pierreguillou
commited on
Commit
•
7a89dbb
1
Parent(s):
4200a62
Update app.py
Browse files
app.py
CHANGED
@@ -58,7 +58,7 @@ device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
|
58 |
# model
|
59 |
from transformers import LayoutLMv2ForTokenClassification
|
60 |
|
61 |
-
model_id = "pierreguillou/layout-xlm-base-finetuned-with-DocLayNet-base-at-
|
62 |
|
63 |
model = LayoutLMv2ForTokenClassification.from_pretrained(model_id);
|
64 |
model.to(device);
|
@@ -133,7 +133,7 @@ def app_outputs(uploaded_pdf):
|
|
133 |
return msg, img_files[0], img_files[1], images[0], images[1], csv_files[0], csv_files[1], df[0], df[1]
|
134 |
|
135 |
# gradio APP
|
136 |
-
with gr.Blocks(title="Inference APP for Document Understanding at
|
137 |
gr.HTML("""
|
138 |
<div style="font-family:'Times New Roman', 'Serif'; font-size:26pt; font-weight:bold; text-align:center;"><h1>Inference APP for Document Understanding at line level (v2 - LayoutXLM base)</h1></div>
|
139 |
<div style="margin-top: 40px"><p>(03/05/2023) This Inference APP uses the <a style="text-decoration: none; border-bottom: #64b5f6 0.125em solid; color: #64b5f6" href="https://huggingface.co/pierreguillou/layout-xlm-base-finetuned-with-DocLayNet-base-at-linelevel-ml384" target="_blank">model Layout XLM base combined with XLM-RoBERTa base and finetuned on the dataset DocLayNet base at line level</a> (chunk size of 384 tokens).</p></div>
|
|
|
58 |
# model
|
59 |
from transformers import LayoutLMv2ForTokenClassification
|
60 |
|
61 |
+
model_id = "pierreguillou/layout-xlm-base-finetuned-with-DocLayNet-base-at-paragraphlevel-ml512"
|
62 |
|
63 |
model = LayoutLMv2ForTokenClassification.from_pretrained(model_id);
|
64 |
model.to(device);
|
|
|
133 |
return msg, img_files[0], img_files[1], images[0], images[1], csv_files[0], csv_files[1], df[0], df[1]
|
134 |
|
135 |
# gradio APP
|
136 |
+
with gr.Blocks(title="Inference APP for Document Understanding at paragraph level (v2 - LayoutXLM base)", css=".gradio-container") as demo:
|
137 |
gr.HTML("""
|
138 |
<div style="font-family:'Times New Roman', 'Serif'; font-size:26pt; font-weight:bold; text-align:center;"><h1>Inference APP for Document Understanding at line level (v2 - LayoutXLM base)</h1></div>
|
139 |
<div style="margin-top: 40px"><p>(03/05/2023) This Inference APP uses the <a style="text-decoration: none; border-bottom: #64b5f6 0.125em solid; color: #64b5f6" href="https://huggingface.co/pierreguillou/layout-xlm-base-finetuned-with-DocLayNet-base-at-linelevel-ml384" target="_blank">model Layout XLM base combined with XLM-RoBERTa base and finetuned on the dataset DocLayNet base at line level</a> (chunk size of 384 tokens).</p></div>
|