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