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