semeval2024-task8
Collection
semeval2024-task8 • 8 items • Updated
How to use andricValdez/semeval-subtaskB-ConvBERT with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="andricValdez/semeval-subtaskB-ConvBERT") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("andricValdez/semeval-subtaskB-ConvBERT")
model = AutoModelForSequenceClassification.from_pretrained("andricValdez/semeval-subtaskB-ConvBERT")No model card