Transformers How to use bhums/argilla_token_classifier with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="bhums/argilla_token_classifier") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("bhums/argilla_token_classifier", dtype="auto")