vineetsharma commited on
Commit
44991ab
1 Parent(s): 032671e

Training in progress, epoch 1

Browse files
config.json ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "albert-base-v2",
3
+ "architectures": [
4
+ "AlbertForSequenceClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0,
7
+ "bos_token_id": 2,
8
+ "classifier_dropout_prob": 0.1,
9
+ "down_scale_factor": 1,
10
+ "embedding_size": 128,
11
+ "eos_token_id": 3,
12
+ "gap_size": 0,
13
+ "hidden_act": "gelu_new",
14
+ "hidden_dropout_prob": 0,
15
+ "hidden_size": 768,
16
+ "id2label": {
17
+ "0": "cancel_order",
18
+ "1": "change_order",
19
+ "2": "change_shipping_address",
20
+ "3": "check_cancellation_fee",
21
+ "4": "check_invoice",
22
+ "5": "check_payment_methods",
23
+ "6": "check_refund_policy",
24
+ "7": "complaint",
25
+ "8": "contact_customer_service",
26
+ "9": "contact_human_agent",
27
+ "10": "create_account",
28
+ "11": "delete_account",
29
+ "12": "delivery_options",
30
+ "13": "delivery_period",
31
+ "14": "edit_account",
32
+ "15": "get_invoice",
33
+ "16": "get_refund",
34
+ "17": "newsletter_subscription",
35
+ "18": "payment_issue",
36
+ "19": "place_order",
37
+ "20": "recover_password",
38
+ "21": "registration_problems",
39
+ "22": "review",
40
+ "23": "set_up_shipping_address",
41
+ "24": "switch_account",
42
+ "25": "track_order",
43
+ "26": "track_refund"
44
+ },
45
+ "initializer_range": 0.02,
46
+ "inner_group_num": 1,
47
+ "intermediate_size": 3072,
48
+ "label2id": {
49
+ "cancel_order": 0,
50
+ "change_order": 1,
51
+ "change_shipping_address": 2,
52
+ "check_cancellation_fee": 3,
53
+ "check_invoice": 4,
54
+ "check_payment_methods": 5,
55
+ "check_refund_policy": 6,
56
+ "complaint": 7,
57
+ "contact_customer_service": 8,
58
+ "contact_human_agent": 9,
59
+ "create_account": 10,
60
+ "delete_account": 11,
61
+ "delivery_options": 12,
62
+ "delivery_period": 13,
63
+ "edit_account": 14,
64
+ "get_invoice": 15,
65
+ "get_refund": 16,
66
+ "newsletter_subscription": 17,
67
+ "payment_issue": 18,
68
+ "place_order": 19,
69
+ "recover_password": 20,
70
+ "registration_problems": 21,
71
+ "review": 22,
72
+ "set_up_shipping_address": 23,
73
+ "switch_account": 24,
74
+ "track_order": 25,
75
+ "track_refund": 26
76
+ },
77
+ "layer_norm_eps": 1e-12,
78
+ "max_position_embeddings": 512,
79
+ "model_type": "albert",
80
+ "net_structure_type": 0,
81
+ "num_attention_heads": 12,
82
+ "num_hidden_groups": 1,
83
+ "num_hidden_layers": 12,
84
+ "num_memory_blocks": 0,
85
+ "pad_token_id": 0,
86
+ "position_embedding_type": "absolute",
87
+ "problem_type": "single_label_classification",
88
+ "torch_dtype": "float32",
89
+ "transformers_version": "4.33.1",
90
+ "type_vocab_size": 2,
91
+ "vocab_size": 30000
92
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:baa991cb67ff1aece55a97177d01f92c9e4923244a8f401cda76554c2cef6125
3
+ size 46826306
special_tokens_map.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "[CLS]",
3
+ "cls_token": "[CLS]",
4
+ "eos_token": "[SEP]",
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": "[SEP]",
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,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "[CLS]",
3
+ "clean_up_tokenization_spaces": true,
4
+ "cls_token": "[CLS]",
5
+ "do_lower_case": true,
6
+ "eos_token": "[SEP]",
7
+ "keep_accents": false,
8
+ "mask_token": {
9
+ "__type": "AddedToken",
10
+ "content": "[MASK]",
11
+ "lstrip": true,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "model_max_length": 512,
17
+ "pad_token": "<pad>",
18
+ "remove_space": true,
19
+ "sep_token": "[SEP]",
20
+ "tokenizer_class": "AlbertTokenizer",
21
+ "unk_token": "<unk>"
22
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e8ce25c4bdb60b1125368104117637a601ff1b45ba4a63ffcf4b71dc7c42267d
3
+ size 4283