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