mstachow commited on
Commit
3d3fd68
1 Parent(s): e5976c6

First commit

Browse files
added_tokens.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "[CLS]": 101,
3
+ "[MASK]": 103,
4
+ "[PAD]": 0,
5
+ "[SEP]": 102,
6
+ "[UNK]": 100
7
+ }
config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "bert-large-uncased",
3
+ "architectures": [
4
+ "BertForSequenceClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "gradient_checkpointing": false,
9
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.1,
11
+ "hidden_size": 1024,
12
+ "id2label": {
13
+ "0": "Knowledge",
14
+ "1": "Comprehension",
15
+ "2": "Application",
16
+ "3": "Analysis",
17
+ "4": "Synthesis",
18
+ "5": "Evaluation"
19
+ },
20
+ "initializer_range": 0.02,
21
+ "intermediate_size": 4096,
22
+ "label2id": {
23
+ "Analysis": 3,
24
+ "Application": 2,
25
+ "Comprehension": 1,
26
+ "Evaluation": 5,
27
+ "Knowledge": 0,
28
+ "Synthesis": 4
29
+ },
30
+ "layer_norm_eps": 1e-12,
31
+ "max_position_embeddings": 512,
32
+ "model_type": "bert",
33
+ "num_attention_heads": 16,
34
+ "num_hidden_layers": 24,
35
+ "pad_token_id": 0,
36
+ "position_embedding_type": "absolute",
37
+ "problem_type": "single_label_classification",
38
+ "torch_dtype": "float32",
39
+ "transformers_version": "4.34.0",
40
+ "type_vocab_size": 2,
41
+ "use_cache": true,
42
+ "vocab_size": 30522
43
+ }
optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da9328113ca2a2c61e763ce827b9c2dd4d5072658f2574459740dbb2113740b0
3
+ size 2681512760
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b6b714895521df58bbd5de168d42ad81241eecbb87546d66d68d85b12cffd121
3
+ size 1340726577
rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:19ad9768ce19300657441de3b9273c47b9c04ef155b1e325dd830348040f7dc8
3
+ size 14575
scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0a9055abc17030374b2c46b6002ce0976792187dc796436315f5f291553a394e
3
+ size 627
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,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "additional_special_tokens": [],
45
+ "clean_up_tokenization_spaces": true,
46
+ "cls_token": "[CLS]",
47
+ "do_lower_case": true,
48
+ "mask_token": "[MASK]",
49
+ "model_max_length": 512,
50
+ "pad_token": "[PAD]",
51
+ "sep_token": "[SEP]",
52
+ "strip_accents": null,
53
+ "tokenize_chinese_chars": true,
54
+ "tokenizer_class": "BertTokenizer",
55
+ "unk_token": "[UNK]"
56
+ }
trainer_state.json ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": 0.0809762105345726,
3
+ "best_model_checkpoint": "bert_large_finetune_bloom_question_classifier_enhanced\\checkpoint-390",
4
+ "epoch": 4.0,
5
+ "eval_steps": 500,
6
+ "global_step": 520,
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.9486301369863014,
14
+ "eval_loss": 0.18780267238616943,
15
+ "eval_runtime": 14.9911,
16
+ "eval_samples_per_second": 38.956,
17
+ "eval_steps_per_second": 2.201,
18
+ "step": 130
19
+ },
20
+ {
21
+ "epoch": 2.0,
22
+ "eval_accuracy": 0.964041095890411,
23
+ "eval_loss": 0.15712498128414154,
24
+ "eval_runtime": 14.9873,
25
+ "eval_samples_per_second": 38.966,
26
+ "eval_steps_per_second": 2.202,
27
+ "step": 260
28
+ },
29
+ {
30
+ "epoch": 3.0,
31
+ "eval_accuracy": 0.9811643835616438,
32
+ "eval_loss": 0.0809762105345726,
33
+ "eval_runtime": 14.9624,
34
+ "eval_samples_per_second": 39.031,
35
+ "eval_steps_per_second": 2.206,
36
+ "step": 390
37
+ },
38
+ {
39
+ "epoch": 3.85,
40
+ "learning_rate": 7.692307692307694e-07,
41
+ "loss": 0.2409,
42
+ "step": 500
43
+ },
44
+ {
45
+ "epoch": 4.0,
46
+ "eval_accuracy": 0.9811643835616438,
47
+ "eval_loss": 0.08374008536338806,
48
+ "eval_runtime": 14.9759,
49
+ "eval_samples_per_second": 38.996,
50
+ "eval_steps_per_second": 2.204,
51
+ "step": 520
52
+ }
53
+ ],
54
+ "logging_steps": 500,
55
+ "max_steps": 520,
56
+ "num_train_epochs": 4,
57
+ "save_steps": 500,
58
+ "total_flos": 8496707809392000.0,
59
+ "trial_name": null,
60
+ "trial_params": null
61
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b6f0c829c50eda89ab587f9fcec6fde2810844eea8869b2b4bbac191bea7d15f
3
+ size 4219
vocab.txt ADDED
The diff for this file is too large to render. See raw diff