muthuramkumar commited on
Commit
4860854
1 Parent(s): e1025ef

initial-commit

Browse files
config.json ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "FacebookAI/roberta-base",
3
+ "architectures": [
4
+ "RobertaForSequenceClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "bos_token_id": 0,
8
+ "classifier_dropout": null,
9
+ "eos_token_id": 2,
10
+ "hidden_act": "gelu",
11
+ "hidden_dropout_prob": 0.1,
12
+ "hidden_size": 768,
13
+ "id2label": {
14
+ "0": "Continue Conversation",
15
+ "1": "Pause Conversation",
16
+ "2": "Restart Conversation",
17
+ "3": "Repeat Conversation",
18
+ "4": "End Conversation",
19
+ "5": "Refuse to Answer",
20
+ "6": "Affirmative Confirmation",
21
+ "7": "Negative Confirmation",
22
+ "8": "Correction Request",
23
+ "9": "Questions Answerable by Conversational Context / History",
24
+ "10": "Questions Requiring External Information",
25
+ "11": "Questions on Process",
26
+ "12": "New Inquiry or Request",
27
+ "13": "Transfer to Human Agent"
28
+ },
29
+ "initializer_range": 0.02,
30
+ "intermediate_size": 3072,
31
+ "label2id": {
32
+ "Affirmative Confirmation": 6,
33
+ "Continue Conversation": 0,
34
+ "Correction Request": 8,
35
+ "End Conversation": 4,
36
+ "Negative Confirmation": 7,
37
+ "New Inquiry or Request": 12,
38
+ "Pause Conversation": 1,
39
+ "Questions Answerable by Conversational Context / History": 9,
40
+ "Questions Requiring External Information": 10,
41
+ "Questions on Process": 11,
42
+ "Refuse to Answer": 5,
43
+ "Repeat Conversation": 3,
44
+ "Restart Conversation": 2,
45
+ "Transfer to Human Agent": 13
46
+ },
47
+ "layer_norm_eps": 1e-05,
48
+ "max_position_embeddings": 514,
49
+ "model_type": "roberta",
50
+ "num_attention_heads": 12,
51
+ "num_hidden_layers": 12,
52
+ "pad_token_id": 1,
53
+ "position_embedding_type": "absolute",
54
+ "problem_type": "multi_label_classification",
55
+ "torch_dtype": "float32",
56
+ "transformers_version": "4.40.2",
57
+ "type_vocab_size": 1,
58
+ "use_cache": true,
59
+ "vocab_size": 50265
60
+ }
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:90532c86631cfe4e64aabe2b5265a487343e44f375e4411b729a09a7039b4944
3
+ size 498649736
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,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": true,
47
+ "cls_token": "<s>",
48
+ "eos_token": "</s>",
49
+ "errors": "replace",
50
+ "mask_token": "<mask>",
51
+ "model_max_length": 512,
52
+ "pad_token": "<pad>",
53
+ "sep_token": "</s>",
54
+ "tokenizer_class": "RobertaTokenizer",
55
+ "trim_offsets": true,
56
+ "unk_token": "<unk>"
57
+ }
vocab.json ADDED
The diff for this file is too large to render. See raw diff