πŸ›οΈ E-commerce Customer Support Classification

Model Description

This model is a fine-tuned version of distilbert-base-uncased for classifying e-commerce customer complaints and queries into multiple categories.
It was trained on the Ataur77/ecommerce-customer-support dataset and can identify a wide range of e-commerce support issues.

The goal is to help customer service teams automatically route tickets to the correct department for faster resolution.


Categories

The model can classify queries into the following 15 categories:

Label ID Category
0 Account & Shipping
1 Promotions
2 Payments
3 Order Tracking
4 Technical Issues
5 Product Issues
6 Refunds
7 Order Issues
8 Subscriptions
9 Checkout
10 Inventory
11 Product Quality
12 Returns
13 Account
14 Shipping
15 Special Requests

Intended Uses

  • Customer Support Automation: Automatically route customer support tickets.
  • CRM Integration: Enhance ticket management systems.
  • Analytics: Categorize historical support data for insights.

Limitations

  • Works best with English-language customer queries.
  • Performance depends on dataset quality β€” the training dataset is small, so real-world accuracy may vary.

Quick Usage

from transformers import pipeline

# Load the model from Hugging Face
classifier = pipeline(
    "text-classification",
    model="Chiraag-P-V/E-commerce-customer-query-classifier"
)

# Example query
query = "I have not received my delivery yet."
result = classifier(query)

print(result)
Downloads last month
6
Safetensors
Model size
67M params
Tensor type
F32
Β·
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support

Model tree for Chiraag-P-V/E-commerce-customer-query-classifier

Finetuned
(12465)
this model