hblim/customer-complaints
Viewer β’ Updated β’ 1.68k β’ 47 β’ 1
How to use hblim/bert-customer-complaints-classifier with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="hblim/bert-customer-complaints-classifier") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("hblim/bert-customer-complaints-classifier")
model = AutoModelForSequenceClassification.from_pretrained("hblim/bert-customer-complaints-classifier")This model is a fine-tuned version of bert-base-uncased using Hugging Face Transformers on a custom dataset of customer complaints. The task is multi-class text classification, where each complaint is categorized into one of three classes.
The model is intended to support downstream tasks like complaint triage, issue type prediction, or support ticket classification.
Training and evaluation were tracked using Weights & Biases, and all hyperparameters are reproducible and logged below.
bert-base-uncasedlinearAdamWTrainerEvaluation was tracked using:
To reproduce metrics and training logs, refer to the corresponding W&B run:
Weights & Biases Run - baseline-hf-hub
| Step | Training Loss | Validation Loss | Accuracy |
|---|---|---|---|
| 100 | 1.106100 | 1.040519 | 0.523810 |
| 200 | 0.944800 | 0.744273 | 0.738095 |
| 300 | 0.660000 | 0.385309 | 0.900000 |
| 400 | 0.412400 | 0.273423 | 0.904762 |
| 500 | 0.220800 | 0.185636 | 0.923810 |
| 600 | 0.163400 | 0.245850 | 0.919048 |
| 700 | 0.116100 | 0.180523 | 0.942857 |
| 800 | 0.097200 | 0.254475 | 0.928571 |
| 900 | 0.052200 | 0.233583 | 0.942857 |
| 1000 | 0.050700 | 0.223150 | 0.928571 |
| 1100 | 0.035100 | 0.271416 | 0.919048 |
| 1200 | 0.027700 | 0.226478 | 0.933333 |
| 1300 | 0.009000 | 0.218807 | 0.938095 |
| 1400 | 0.013600 | 0.246330 | 0.928571 |
| 1500 | 0.014500 | 0.226987 | 0.933333 |
from transformers import AutoTokenizer, AutoModelForSequenceClassification
model = AutoModelForSequenceClassification.from_pretrained("your-username/baseline-hf-hub")
tokenizer = AutoTokenizer.from_pretrained("your-username/baseline-hf-hub")
inputs = tokenizer("I want to report an issue with my account", return_tensors="pt")
outputs = model(**inputs)
predicted_class = outputs.logits.argmax(dim=-1).item()
Base model
google-bert/bert-base-uncased