Duplicated from autoevaluate/entity-extraction
How to use autoevaluate/entity-extraction-not-evaluated with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="autoevaluate/entity-extraction-not-evaluated")
# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("autoevaluate/entity-extraction-not-evaluated") model = AutoModelForTokenClassification.from_pretrained("autoevaluate/entity-extraction-not-evaluated")
What is a pickle import?
How to fix it?