HeisenbergLupenix/sap-ticket-classifier-bert
SAP Support Ticket Classifier — Arinous-0.2
Fine-tuned bert-base-uncased that classifies SAP enterprise support tickets into the correct SAP functional module. Built by Arinous AI.
Release → Arinous-0.2 (Hub revision v0.2) Live Demo → IntelliRoute on Hugging Face Spaces Model ID → HeisenbergLupenix/sap-ticket-classifier-bert
Labels
Validation Metrics
Evaluated on a held-out 20% validation split (114 samples). Release: Arinous-0.2 (v0.2) · Source: retrain · Trained: 2026-07-14 10:23 UTC
Per-class Scores
Train samples: 456 · Validation samples: 114 · Trained: 2026-07-14 10:23 UTC
Quick Start
from transformers import pipeline
clf = pipeline(
"text-classification",
model="HeisenbergLupenix/sap-ticket-classifier-bert",
revision="v0.2",
top_k=None,
)
result = clf("Vendor invoice not posted due to GR/IR account mismatch")
# [{'label': 'FI', 'score': 0.93}, {'label': 'MM', 'score': 0.03}, ...]
top = max(result[0], key=lambda x: x['score'])
print(top["label"], top["score"]) # FI 0.93Training Details
Training data
Seed dataset of labelled SAP support ticket examples across 9 classes (data/sample_tickets.csv). Human corrections from the feedback UI are accumulated and used for warm-start retraining via scripts/retrain.py.
Intended Use
Route incoming SAP support tickets automatically to the correct functional team without manual triaging. Designed for enterprise SAP environments generating high volumes of support requests across Finance, Logistics, HR, Technical, and Integration workstreams.
Limitations
- Trained on a small seed dataset. Production accuracy improves significantly with more labelled examples per class (500+ per class recommended).
- English language tickets only.
- Short tickets (< 10 words) may have lower confidence scores.
- To add more SAP modules (PP, PM, PS, QM, CO): extend
LABELSinsrc/config.py, add labelled examples, and retrain.
Human Feedback & Retraining
The live demo collects human corrections via the feedback panel. Corrections are stored in a private HF Dataset repo and merged with the original training set for warm-start retraining with double-weighted corrections.
# Retrain locally with accumulated feedback
python scripts/retrain.py --pushLicense
Built by [Arinous AI](https://huggingface.co/HeisenbergLupenix) · Intelligence. Innovation. Impact.
