File size: 787 Bytes
5215cf4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
library_name: scikit-learn
tags:
- text-classification
- nlp
- customer-support
- tf-idf
---

# Customer Support Intent Classifier

A small NLP model that classifies customer-support messages into nine intents
using TF-IDF and Logistic Regression.

## Intents
password_reset, login_issue, billing_issue, refund_request,
performance_issue, subscription_cancel, plan_upgrade, service_outage,
general_support

## Intended use
Educational/portfolio demonstration of NLP and customer-support automation.
The training data is synthetic and this model is not intended for production
use without additional real-world training and evaluation.

## Usage
```python
import joblib
model = joblib.load("model.joblib")
print(model.predict(["I need to reset my password"]))
```

## Author
Samuel V