Transformers How to use Szczotar93/LayoutLM_Invoice6 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="Szczotar93/LayoutLM_Invoice6") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("Szczotar93/LayoutLM_Invoice6")
model = AutoModelForTokenClassification.from_pretrained("Szczotar93/LayoutLM_Invoice6")