kms-engineer commited on
Commit
6717217
·
1 Parent(s): 31afe29

Add assistant-bot multitask classifier model

Browse files
label_mappings.json ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "base_model_name": "roberta-base",
3
+ "category_id2label": {
4
+ "0": "add",
5
+ "1": "edit",
6
+ "2": "other",
7
+ "3": "remove",
8
+ "4": "search",
9
+ "5": "show"
10
+ },
11
+ "category_label2id": {
12
+ "add": 0,
13
+ "edit": 1,
14
+ "other": 2,
15
+ "remove": 3,
16
+ "search": 4,
17
+ "show": 5
18
+ },
19
+ "intent_id2label": {
20
+ "0": "add_address",
21
+ "1": "add_birthday",
22
+ "2": "add_contact",
23
+ "3": "add_email",
24
+ "4": "add_note",
25
+ "5": "add_note_tag",
26
+ "6": "delete_contact",
27
+ "7": "edit_address",
28
+ "8": "edit_email",
29
+ "9": "edit_note",
30
+ "10": "edit_phone",
31
+ "11": "hello",
32
+ "12": "help",
33
+ "13": "list_all_contacts",
34
+ "14": "list_birthdays",
35
+ "15": "list_note_tags",
36
+ "16": "remove_address",
37
+ "17": "remove_email",
38
+ "18": "remove_note",
39
+ "19": "remove_note_tag",
40
+ "20": "remove_phone",
41
+ "21": "search_contacts",
42
+ "22": "search_notes_by_tag",
43
+ "23": "search_notes_text",
44
+ "24": "show_birthday",
45
+ "25": "show_notes",
46
+ "26": "show_phone"
47
+ },
48
+ "intent_label2id": {
49
+ "add_address": 0,
50
+ "add_birthday": 1,
51
+ "add_contact": 2,
52
+ "add_email": 3,
53
+ "add_note": 4,
54
+ "add_note_tag": 5,
55
+ "delete_contact": 6,
56
+ "edit_address": 7,
57
+ "edit_email": 8,
58
+ "edit_note": 9,
59
+ "edit_phone": 10,
60
+ "hello": 11,
61
+ "help": 12,
62
+ "list_all_contacts": 13,
63
+ "list_birthdays": 14,
64
+ "list_note_tags": 15,
65
+ "remove_address": 16,
66
+ "remove_email": 17,
67
+ "remove_note": 18,
68
+ "remove_note_tag": 19,
69
+ "remove_phone": 20,
70
+ "search_contacts": 21,
71
+ "search_notes_by_tag": 22,
72
+ "search_notes_text": 23,
73
+ "show_birthday": 24,
74
+ "show_notes": 25,
75
+ "show_phone": 26
76
+ }
77
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:620f50a316a82137e6b0e4dd0c8ec8b462df1188c162abbcb28264fc8aa9c6d1
3
+ size 498708980
special_tokens_map.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "<s>",
3
+ "cls_token": "<s>",
4
+ "eos_token": "</s>",
5
+ "mask_token": {
6
+ "content": "<mask>",
7
+ "lstrip": true,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false
11
+ },
12
+ "pad_token": "<pad>",
13
+ "sep_token": "</s>",
14
+ "unk_token": "<unk>"
15
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "added_tokens_decoder": {
4
+ "0": {
5
+ "content": "<s>",
6
+ "lstrip": false,
7
+ "normalized": true,
8
+ "rstrip": false,
9
+ "single_word": false,
10
+ "special": true
11
+ },
12
+ "1": {
13
+ "content": "<pad>",
14
+ "lstrip": false,
15
+ "normalized": true,
16
+ "rstrip": false,
17
+ "single_word": false,
18
+ "special": true
19
+ },
20
+ "2": {
21
+ "content": "</s>",
22
+ "lstrip": false,
23
+ "normalized": true,
24
+ "rstrip": false,
25
+ "single_word": false,
26
+ "special": true
27
+ },
28
+ "3": {
29
+ "content": "<unk>",
30
+ "lstrip": false,
31
+ "normalized": true,
32
+ "rstrip": false,
33
+ "single_word": false,
34
+ "special": true
35
+ },
36
+ "50264": {
37
+ "content": "<mask>",
38
+ "lstrip": true,
39
+ "normalized": false,
40
+ "rstrip": false,
41
+ "single_word": false,
42
+ "special": true
43
+ }
44
+ },
45
+ "bos_token": "<s>",
46
+ "clean_up_tokenization_spaces": false,
47
+ "cls_token": "<s>",
48
+ "eos_token": "</s>",
49
+ "errors": "replace",
50
+ "extra_special_tokens": {},
51
+ "mask_token": "<mask>",
52
+ "model_max_length": 512,
53
+ "pad_token": "<pad>",
54
+ "sep_token": "</s>",
55
+ "tokenizer_class": "RobertaTokenizer",
56
+ "trim_offsets": true,
57
+ "unk_token": "<unk>"
58
+ }
training_args.bin ADDED
Binary file (5.84 kB). View file
 
vocab.json ADDED
The diff for this file is too large to render. See raw diff