tner/ontonotes5
Viewer • Updated • 76.7k • 2.03k • 25
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", device_map="auto")How to use bhums/argilla_token_classifier with GLiNER:
from gliner import GLiNER
model = GLiNER.from_pretrained("bhums/argilla_token_classifier")# Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("bhums/argilla_token_classifier", device_map="auto")Base model
urchade/gliner_medium-v2.1
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="bhums/argilla_token_classifier")