CoolFace
Modelpublic

Chiraag-P-V/E-commerce-customer-query-classifier

sourceHugging Facemitupdated 1y agoView on Hugging Face
0likes6downloads
Model Card

๐Ÿ›๏ธ 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 IDCategory
0Account & Shipping
1Promotions
2Payments
3Order Tracking
4Technical Issues
5Product Issues
6Refunds
7Order Issues
8Subscriptions
9Checkout
10Inventory
11Product Quality
12Returns
13Account
14Shipping
15Special 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

python
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)