Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
- fr
|
| 5 |
+
- es
|
| 6 |
+
- de
|
| 7 |
+
- it
|
| 8 |
+
- pt
|
| 9 |
+
- zh
|
| 10 |
+
- ar
|
| 11 |
+
- ru
|
| 12 |
+
tags:
|
| 13 |
+
- text-classification
|
| 14 |
+
- intent-classification
|
| 15 |
+
- enterprise-ai
|
| 16 |
+
- voice-ai
|
| 17 |
+
- multilingual
|
| 18 |
+
- distilbert
|
| 19 |
+
license: mit
|
| 20 |
+
---
|
| 21 |
+
|
| 22 |
+
# ConceptNet Intent Classifier
|
| 23 |
+
|
| 24 |
+
Fine-tuned `distilbert-base-multilingual-cased` on the ConceptNet 4-layer enterprise voice intent taxonomy.
|
| 25 |
+
|
| 26 |
+
## Accuracy
|
| 27 |
+
- Overall: **98.6%**
|
| 28 |
+
- Layer 3 Predictive: **100% precision**
|
| 29 |
+
- Trained on 584 examples, tested on 146
|
| 30 |
+
|
| 31 |
+
## The 4-Layer Taxonomy
|
| 32 |
+
- **Layer 1 — Basic:** "Do X" — immediate execution
|
| 33 |
+
- **Layer 2 — Context-Aware:** "Do X when Y" — conditional execution
|
| 34 |
+
- **Layer 3 — Predictive:** "Do X before Y" — proactive execution
|
| 35 |
+
- **Layer 4 — Autonomous:** "Do X always" — persistent agent deployment
|
| 36 |
+
|
| 37 |
+
## Languages
|
| 38 |
+
English · French · Spanish · German · Italian · Portuguese · Chinese · Arabic · Russian
|
| 39 |
+
|
| 40 |
+
## Usage
|
| 41 |
+
```python
|
| 42 |
+
from transformers import pipeline
|
| 43 |
+
classifier = pipeline("text-classification", model="conceptnetUk/intent-classifier")
|
| 44 |
+
classifier("Send the report when the contract is signed")
|
| 45 |
+
```
|
| 46 |
+
|
| 47 |
+
## Links
|
| 48 |
+
- Sandbox: https://conceptnet.co.uk/sandbox/
|
| 49 |
+
- GitHub: https://github.com/wushu75/ConceptNet
|
| 50 |
+
- Website: https://conceptnet.co.uk
|
| 51 |
+
|
| 52 |
+
*Patents pending · © 2026 ConceptNet Ltd*
|