Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,47 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
---
|
| 6 |
+
### This model is designed for intent detection, being suitable for designing virtual assistants and chatbots.
|
| 7 |
+
|
| 8 |
+
``python
|
| 9 |
+
labels_name={'greeting': 0,
|
| 10 |
+
'goodbye': 1,
|
| 11 |
+
'creator': 2,
|
| 12 |
+
'name': 3,
|
| 13 |
+
'hours': 4,
|
| 14 |
+
'number': 5,
|
| 15 |
+
'course': 6,
|
| 16 |
+
'fees': 7,
|
| 17 |
+
'location': 8,
|
| 18 |
+
'hostel': 9,
|
| 19 |
+
'event': 10,
|
| 20 |
+
'document': 11,
|
| 21 |
+
'floors': 12,
|
| 22 |
+
'syllabus': 13,
|
| 23 |
+
'library': 14,
|
| 24 |
+
'infrastructure': 15,
|
| 25 |
+
'canteen': 16,
|
| 26 |
+
'menu': 17,
|
| 27 |
+
'placement': 18,
|
| 28 |
+
'ithod': 19,
|
| 29 |
+
'computerhod': 20,
|
| 30 |
+
'extchod': 21,
|
| 31 |
+
'principal': 22,
|
| 32 |
+
'sem': 23,
|
| 33 |
+
'admission': 24,
|
| 34 |
+
'scholarship': 25,
|
| 35 |
+
'facilities': 26,
|
| 36 |
+
'college intake': 27,
|
| 37 |
+
'uniform': 28,
|
| 38 |
+
'committee': 29,
|
| 39 |
+
'random': 30,
|
| 40 |
+
'swear': 31,
|
| 41 |
+
'vacation': 32,
|
| 42 |
+
'sports': 33,
|
| 43 |
+
'salutaion': 34,
|
| 44 |
+
'task': 35,
|
| 45 |
+
'ragging': 36,
|
| 46 |
+
'hod': 37}
|
| 47 |
+
``
|