# Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("ColeD0/FiNERT")
model = AutoModelForTokenClassification.from_pretrained("ColeD0/FiNERT")Quick Links
# Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("ColeD0/FiNERT")
model = AutoModelForTokenClassification.from_pretrained("ColeD0/FiNERT")
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="ColeD0/FiNERT")