Training in progress epoch 0 0a80744
Gutema Fite commited on
How to use Gutema/layoutlm-funsd-tf with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="Gutema/layoutlm-funsd-tf") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("Gutema/layoutlm-funsd-tf")
model = AutoModelForTokenClassification.from_pretrained("Gutema/layoutlm-funsd-tf")