Update README.md
Browse files
README.md
CHANGED
|
@@ -33,4 +33,38 @@ Fine-tuned `distilbert-base-multilingual-cased` on the ConceptNet 4-layer enterp
|
|
| 33 |
Independently tested by the Hugging Face community (john6666):
|
| 34 |
- Confirmed 99.315% on reconstructed public test split
|
| 35 |
- Grouped lexical-family holdout: 99.78%
|
| 36 |
-
- Conclusion: "The obvious train/test leakage explanation did not survive that
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
Independently tested by the Hugging Face community (john6666):
|
| 34 |
- Confirmed 99.315% on reconstructed public test split
|
| 35 |
- Grouped lexical-family holdout: 99.78%
|
| 36 |
+
- Conclusion: "The obvious train/test leakage explanation did not survive that check"
|
| 37 |
+
- All 4 identified improvements implemented within 24 hours
|
| 38 |
+
|
| 39 |
+
## Cascade Performance
|
| 40 |
+
| Threshold | Fast coverage | Fast accuracy | Final accuracy |
|
| 41 |
+
|-----------|--------------|---------------|----------------|
|
| 42 |
+
| 0.50 | 69.2% | 95.0% | 95.9% |
|
| 43 |
+
| 0.55 | 60.3% | 98.9% | 99.3% |
|
| 44 |
+
| 0.65 | 43.2% | 100% | 100% |
|
| 45 |
+
|
| 46 |
+
## Layer Precedence
|
| 47 |
+
Mixed semantics: **L4 > L3 > L2 > L1**
|
| 48 |
+
|
| 49 |
+
## The 4 Layers
|
| 50 |
+
- **L1 Basic** — "Do X" — immediate execution
|
| 51 |
+
- **L2 Context-Aware** — "Do X when Y" — conditional
|
| 52 |
+
- **L3 Predictive** — "Do X before/ahead of/prior to Y" — proactive
|
| 53 |
+
- **L4 Autonomous** — "Do X always" — persistent agent
|
| 54 |
+
|
| 55 |
+
## Languages
|
| 56 |
+
English · French · Spanish · German · Italian · Portuguese · Chinese · Arabic · Russian
|
| 57 |
+
|
| 58 |
+
## Usage
|
| 59 |
+
```python
|
| 60 |
+
from transformers import pipeline
|
| 61 |
+
classifier = pipeline("text-classification", model="conceptnetUk/intent-classifier")
|
| 62 |
+
classifier("Send the report when the contract is signed")
|
| 63 |
+
```
|
| 64 |
+
|
| 65 |
+
## Links
|
| 66 |
+
- Sandbox: https://conceptnet.co.uk/sandbox/
|
| 67 |
+
- GitHub: https://github.com/wushu75/ConceptNet
|
| 68 |
+
- Website: https://conceptnet.co.uk
|
| 69 |
+
|
| 70 |
+
*© 2026 ConceptNet Ltd · Patents pending*
|