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