Transformers How to use zeroshot/deberta-binary-quest-state with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="zeroshot/deberta-binary-quest-state") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("zeroshot/deberta-binary-quest-state")
model = AutoModelForSequenceClassification.from_pretrained("zeroshot/deberta-binary-quest-state")