Human Value Detection
Collection
The models used in our submission for the Human Value Detection task of Touché for CLEF 2024. • 4 items • Updated
How to use aishanur/HVD_Deberta_Large with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="aishanur/HVD_Deberta_Large") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("aishanur/HVD_Deberta_Large")
model = AutoModelForSequenceClassification.from_pretrained("aishanur/HVD_Deberta_Large", device_map="auto")Base model
microsoft/deberta-v3-large