How to use eventdata-utd/conflibert-satp-binary-classification with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="eventdata-utd/conflibert-satp-binary-classification")
# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("eventdata-utd/conflibert-satp-binary-classification") model = AutoModelForTokenClassification.from_pretrained("eventdata-utd/conflibert-satp-binary-classification")
The community tab is the place to discuss and collaborate with the HF community!