zeyadusf/daigt
Viewer • Updated • 31.4k • 760
How to use zeyadusf/deberta-DAIGT-MODELS with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="zeyadusf/deberta-DAIGT-MODELS") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("zeyadusf/deberta-DAIGT-MODELS")
model = AutoModelForSequenceClassification.from_pretrained("zeyadusf/deberta-DAIGT-MODELS")Classification Report:
precision recall f1-score support
0 1.00 1.00 1.00 1365
1 1.00 1.00 1.00 1365
accuracy 1.00 2730
macro avg 1.00 1.00 1.00 2730
weighted avg 1.00 1.00 1.00 2730
Base model
microsoft/deberta-base