Sadikshya commited on
Commit
d36818f
·
verified ·
1 Parent(s): 078ec47

Initial commit

Browse files
config.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "distilbert-base-cased",
3
+ "activation": "gelu",
4
+ "architectures": [
5
+ "DistilBertForSequenceClassification"
6
+ ],
7
+ "attention_dropout": 0.1,
8
+ "dim": 768,
9
+ "dropout": 0.1,
10
+ "hidden_dim": 3072,
11
+ "id2label": {
12
+ "0": "Casual",
13
+ "1": "Professional",
14
+ "2": "Friendly",
15
+ "3": "Informative",
16
+ "4": "Serious",
17
+ "5": "Humorous",
18
+ "6": "Authoritative",
19
+ "7": "Intimate"
20
+ },
21
+ "initializer_range": 0.02,
22
+ "label2id": {
23
+ "Authoritative": 6,
24
+ "Casual": 0,
25
+ "Friendly": 2,
26
+ "Humorous": 5,
27
+ "Informative": 3,
28
+ "Intimate": 7,
29
+ "Professional": 1,
30
+ "Serious": 4
31
+ },
32
+ "max_position_embeddings": 512,
33
+ "model_type": "distilbert",
34
+ "n_heads": 12,
35
+ "n_layers": 6,
36
+ "output_past": true,
37
+ "pad_token_id": 0,
38
+ "problem_type": "single_label_classification",
39
+ "qa_dropout": 0.1,
40
+ "seq_classif_dropout": 0.2,
41
+ "sinusoidal_pos_embds": false,
42
+ "tie_weights_": true,
43
+ "torch_dtype": "float32",
44
+ "transformers_version": "4.41.1",
45
+ "vocab_size": 28996
46
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cba2603cb1ce82a119714fa0592518a85a3385185a7261d8cab10bd74b745fa0
3
+ size 263163144
optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e90d83ebe436c1e9fc3af81c9d5b15a0d0bc055b9ced3da6f43d4cf5d9699ea4
3
+ size 526388410
rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:877c4ba1599fab3df390d0a0343142677d514aefe626ab40669e03511e87bd89
3
+ size 14244
scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:20546c36203b63b34154fbe25b8b9d9cbad79fd7ee5df0a7eb320bd929581f52
3
+ size 1064
special_tokens_map.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "mask_token": "[MASK]",
4
+ "pad_token": "[PAD]",
5
+ "sep_token": "[SEP]",
6
+ "unk_token": "[UNK]"
7
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "[PAD]",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "100": {
12
+ "content": "[UNK]",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "101": {
20
+ "content": "[CLS]",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "102": {
28
+ "content": "[SEP]",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "103": {
36
+ "content": "[MASK]",
37
+ "lstrip": false,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": true
42
+ }
43
+ },
44
+ "clean_up_tokenization_spaces": true,
45
+ "cls_token": "[CLS]",
46
+ "do_lower_case": false,
47
+ "mask_token": "[MASK]",
48
+ "model_max_length": 512,
49
+ "pad_token": "[PAD]",
50
+ "sep_token": "[SEP]",
51
+ "strip_accents": null,
52
+ "tokenize_chinese_chars": true,
53
+ "tokenizer_class": "DistilBertTokenizer",
54
+ "unk_token": "[UNK]"
55
+ }
trainer_state.json ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": null,
3
+ "best_model_checkpoint": null,
4
+ "epoch": 5.0,
5
+ "eval_steps": 500,
6
+ "global_step": 255,
7
+ "is_hyper_param_search": false,
8
+ "is_local_process_zero": true,
9
+ "is_world_process_zero": true,
10
+ "log_history": [
11
+ {
12
+ "epoch": 1.0,
13
+ "eval_accuracy": 0.8695652173913043,
14
+ "eval_f1": 0.8728600541101488,
15
+ "eval_loss": 0.6608906984329224,
16
+ "eval_runtime": 0.8181,
17
+ "eval_samples_per_second": 421.7,
18
+ "eval_steps_per_second": 7.334,
19
+ "step": 51
20
+ },
21
+ {
22
+ "epoch": 2.0,
23
+ "eval_accuracy": 0.9188405797101449,
24
+ "eval_f1": 0.9254201727996807,
25
+ "eval_loss": 0.282185822725296,
26
+ "eval_runtime": 0.8009,
27
+ "eval_samples_per_second": 430.79,
28
+ "eval_steps_per_second": 7.492,
29
+ "step": 102
30
+ },
31
+ {
32
+ "epoch": 3.0,
33
+ "eval_accuracy": 0.9565217391304348,
34
+ "eval_f1": 0.957832432085824,
35
+ "eval_loss": 0.14275817573070526,
36
+ "eval_runtime": 0.7983,
37
+ "eval_samples_per_second": 432.18,
38
+ "eval_steps_per_second": 7.516,
39
+ "step": 153
40
+ },
41
+ {
42
+ "epoch": 4.0,
43
+ "eval_accuracy": 0.9623188405797102,
44
+ "eval_f1": 0.962796387059804,
45
+ "eval_loss": 0.11694291979074478,
46
+ "eval_runtime": 0.7991,
47
+ "eval_samples_per_second": 431.736,
48
+ "eval_steps_per_second": 7.508,
49
+ "step": 204
50
+ },
51
+ {
52
+ "epoch": 5.0,
53
+ "eval_accuracy": 0.9623188405797102,
54
+ "eval_f1": 0.9634447984007641,
55
+ "eval_loss": 0.1356935352087021,
56
+ "eval_runtime": 0.8116,
57
+ "eval_samples_per_second": 425.078,
58
+ "eval_steps_per_second": 7.393,
59
+ "step": 255
60
+ }
61
+ ],
62
+ "logging_steps": 500,
63
+ "max_steps": 255,
64
+ "num_input_tokens_seen": 0,
65
+ "num_train_epochs": 5,
66
+ "save_steps": 500,
67
+ "stateful_callbacks": {
68
+ "TrainerControl": {
69
+ "args": {
70
+ "should_epoch_stop": false,
71
+ "should_evaluate": false,
72
+ "should_log": false,
73
+ "should_save": true,
74
+ "should_training_stop": true
75
+ },
76
+ "attributes": {}
77
+ }
78
+ },
79
+ "total_flos": 49293495228288.0,
80
+ "train_batch_size": 16,
81
+ "trial_name": null,
82
+ "trial_params": null
83
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c2f57bb1af615bffb83e8813544684b3016f2f0ac0f36ede66238ff8c589dc87
3
+ size 5112
vocab.txt ADDED
The diff for this file is too large to render. See raw diff