acsankar commited on
Commit
739aa02
·
verified ·
1 Parent(s): 9eaaf4c

Upload folder using huggingface_hub

Browse files
Files changed (3) hide show
  1. README.md +25 -0
  2. label_encoder.joblib +3 -0
  3. pipeline.joblib +3 -0
README.md ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ # SVM Ticket Agent Classifier
3
+
4
+ This model classifies support tickets to either DATA AGENT or USER ACCESS AGENT based on the ticket text.
5
+
6
+ ## Model Details
7
+ - Model Type: Support Vector Machine (SVM)
8
+ - Feature Extraction: TF-IDF Vectorizer
9
+ - Training Size: 40 samples
10
+ - Classes: ['DATA AGENT', 'No decision', 'USER ACCESS AGENT']
11
+
12
+ ## Usage
13
+ ```python
14
+ from joblib import load
15
+
16
+ # Load model components
17
+ pipeline = load('pipeline.joblib')
18
+ label_encoder = load('label_encoder.joblib')
19
+
20
+ # Make prediction
21
+ text = "I need access to the sales dashboard"
22
+ agent_encoded = pipeline.predict([text])[0]
23
+ agent = label_encoder.inverse_transform([agent_encoded])[0]
24
+ ```
25
+
label_encoder.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4c013e04510ae2858272b2deda8e2f7e21d19185b7cedf9721b0a42c35f1d27b
3
+ size 577
pipeline.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd87f34ee1aa78e4bf3c79e73bdcaa4f1369979167d40d93fde38b20960e31c9
3
+ size 23237