taskydata/tasky_or_not
Updated • 1.02k
How to use taskydata/deberta-v3-base_10xp3nirstbbflanse_5xc4 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="taskydata/deberta-v3-base_10xp3nirstbbflanse_5xc4") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("taskydata/deberta-v3-base_10xp3nirstbbflanse_5xc4")
model = AutoModelForSequenceClassification.from_pretrained("taskydata/deberta-v3-base_10xp3nirstbbflanse_5xc4")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("taskydata/deberta-v3-base_10xp3nirstbbflanse_5xc4")
model = AutoModelForSequenceClassification.from_pretrained("taskydata/deberta-v3-base_10xp3nirstbbflanse_5xc4")Hyperparameters:
Dataset version:
Checkpoint:
Results on Validation set:
| Step | Training Loss | Validation Loss | Accuracy | Precision | Recall | F1 |
|---|---|---|---|---|---|---|
| 24000 | 0.052000 | 0.071572 | 0.988261 | 0.999752 | 0.987852 | 0.993767 |
| 48000 | 0.015100 | 0.026952 | 0.995925 | 0.999564 | 0.996132 | 0.997846 |
Wandb logs:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="taskydata/deberta-v3-base_10xp3nirstbbflanse_5xc4")