Instructions to use zeroshot/deberta-binary-quest-state with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- 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") - Notebooks
- Google Colab
- Kaggle