Views
No views yet
distilbert-base-uncased fine-tuned for banking customer-intent classification over the
77 intents of the BANKING77 dataset (card issues, transfers, top-ups, fees, verification, …).Trainer| Epoch | Accuracy | Macro-F1 |
|---|---|---|
| 1 | 0.8072 | 0.7850 |
| 2 | 0.9060 | 0.9061 |
| 3 | 0.9226 | 0.9225 |
| 5 | 0.9278 | 0.9278 |
1from transformers import pipeline
2clf = pipeline("text-classification", model="vivekkopthsd/banking-intent-distilbert")
3clf("My card payment was declined at the store")
4# [{'label': 'declined_card_payment', 'score': 0.98}]declined_card_payment, card_arrival,
exchange_rate) via the model's id2label mapping.