Update README.md
Browse files
README.md
CHANGED
|
@@ -1,7 +1,35 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
license: mit
|
| 5 |
+
tags:
|
| 6 |
+
- text-classification
|
| 7 |
+
- bert
|
| 8 |
+
- sales-intent
|
| 9 |
+
- transformers
|
| 10 |
+
pipeline_tag: text-classification
|
| 11 |
+
widget:
|
| 12 |
+
- text: "Can we schedule a demo for next week?"
|
| 13 |
+
- text: "Thanks for the demo! When can we start testing?"
|
| 14 |
+
- text: "The pricing seems too high for our budget."
|
| 15 |
+
- text: "Not interested at this time."
|
| 16 |
+
---
|
| 17 |
+
|
| 18 |
+
# Fine-Tuned BERT for Sales Intent Classification
|
| 19 |
+
|
| 20 |
+
This model classifies sales conversation text into 8 intent categories:
|
| 21 |
+
- Enrolled
|
| 22 |
+
- Ghosted
|
| 23 |
+
- Information Gathering
|
| 24 |
+
- Interested
|
| 25 |
+
- Meeting Scheduled
|
| 26 |
+
- Not Interested
|
| 27 |
+
- Price Concern
|
| 28 |
+
- Wants Demo
|
| 29 |
+
|
| 30 |
+
## Usage
|
| 31 |
+
```python
|
| 32 |
+
from transformers import AutoTokenizer, AutoModelForSequenceClassification
|
| 33 |
+
|
| 34 |
+
tokenizer = AutoTokenizer.from_pretrained("Sanji8421/fine_tuned_BERT")
|
| 35 |
+
model = AutoModelForSequenceClassification.from_pretrained("Sanji8421/fine_tuned_BERT")
|