Downloads · 30 days
0
TuShar2309/ticket-classifier
ticket-classifier is a text classification model from TuShar2309. Use it when you need a label for a piece of text. The card lists the license as mit.
A DistilBERT-based model for classifying IT support tickets into 12 categories.
Downloads · 30 days
0
Access
Public
Updated Jan 8, 2026
Repo size
266 MB
Likes
0
Public
Click a slice to open those files.
.pt266 MB · 100%
From the Hugging Face model README
A DistilBERT-based model for classifying IT support tickets into 12 categories.
This model classifies IT service desk tickets into the following categories:
| Category | Description |
|---|---|
| Access Management | Login, permissions, MFA issues |
| Backup | Backup and restore operations |
| Database | SQL, database connectivity |
| Outlook, calendar, mailbox | |
| General Inquiry | How-to questions |
| Hardware | Physical device issues |
| Network | WiFi, VPN, connectivity |
| Other | Miscellaneous |
| Printing | Printer and scanning |
| Security | Threats, breaches, security |
| Software | Application issues |
| Storage | OneDrive, SharePoint, drives |
from huggingface_hub import hf_hub_download
import torch
# Download model
model_path = hf_hub_download(
repo_id="YOUR_USERNAME/ticket-classifier",
filename="ticket_classifier.pt"
)
# Load model
checkpoint = torch.load(model_path, map_location="cpu")
Achieves 85%+ macro F1 score across 12 categories.
MIT