Instructions to use fedihch/InvoiceReceiptClassifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use fedihch/InvoiceReceiptClassifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="fedihch/InvoiceReceiptClassifier") pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")# Load model directly from transformers import AutoProcessor, AutoModelForSequenceClassification processor = AutoProcessor.from_pretrained("fedihch/InvoiceReceiptClassifier") model = AutoModelForSequenceClassification.from_pretrained("fedihch/InvoiceReceiptClassifier") - Notebooks
- Google Colab
- Kaggle
Add multilingual to the language tag
Browse filesHi! A PR to add multilingual to the language tag to improve the referencing.
README.md
CHANGED
|
@@ -1,10 +1,11 @@
|
|
| 1 |
---
|
| 2 |
-
language:
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
tags:
|
| 7 |
- image-classification
|
|
|
|
| 8 |
widget:
|
| 9 |
- src: https://upserve.com/media/sites/2/Bill-from-Mezcalero-in-Washington-D.C.-photo-by-Alfredo-Solis-1-e1507226752437.jpg
|
| 10 |
example_title: receipt
|
|
|
|
| 1 |
---
|
| 2 |
+
language:
|
| 3 |
+
- es
|
| 4 |
+
- en
|
| 5 |
+
- multilingual
|
| 6 |
tags:
|
| 7 |
- image-classification
|
| 8 |
+
pipeline_tag: image-classification
|
| 9 |
widget:
|
| 10 |
- src: https://upserve.com/media/sites/2/Bill-from-Mezcalero-in-Washington-D.C.-photo-by-Alfredo-Solis-1-e1507226752437.jpg
|
| 11 |
example_title: receipt
|