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