Instructions to use impira/layoutlm-document-classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use impira/layoutlm-document-classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="impira/layoutlm-document-classifier")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("impira/layoutlm-document-classifier") model = AutoModelForSequenceClassification.from_pretrained("impira/layoutlm-document-classifier") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,4 +1,14 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
|
| 3 |
# Model Details
|
| 4 |
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language: en
|
| 3 |
+
license: cc-by-nc-sa-4.0
|
| 4 |
+
tags:
|
| 5 |
+
- layoutlm
|
| 6 |
+
- document-classification
|
| 7 |
+
- pdf
|
| 8 |
+
- invoices
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# Model Card for LayoutLM for Document Classification
|
| 12 |
|
| 13 |
# Model Details
|
| 14 |
|