gokuls commited on
Commit
ee19d09
·
verified ·
1 Parent(s): f98f810

Model save

Browse files
README.md ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: bert-large-uncased
4
+ tags:
5
+ - generated_from_trainer
6
+ metrics:
7
+ - accuracy
8
+ model-index:
9
+ - name: BERT_pretraining_h_100_wo_deepspeed
10
+ results: []
11
+ ---
12
+
13
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
14
+ should probably proofread and complete it, then remove this comment. -->
15
+
16
+ # BERT_pretraining_h_100_wo_deepspeed
17
+
18
+ This model is a fine-tuned version of [bert-large-uncased](https://huggingface.co/bert-large-uncased) on an unknown dataset.
19
+ It achieves the following results on the evaluation set:
20
+ - Loss: 5.7886
21
+ - Accuracy: 0.1537
22
+
23
+ ## Model description
24
+
25
+ More information needed
26
+
27
+ ## Intended uses & limitations
28
+
29
+ More information needed
30
+
31
+ ## Training and evaluation data
32
+
33
+ More information needed
34
+
35
+ ## Training procedure
36
+
37
+ ### Training hyperparameters
38
+
39
+ The following hyperparameters were used during training:
40
+ - learning_rate: 1e-05
41
+ - train_batch_size: 208
42
+ - eval_batch_size: 208
43
+ - seed: 10
44
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
45
+ - lr_scheduler_type: linear
46
+ - lr_scheduler_warmup_steps: 100000
47
+ - num_epochs: 100
48
+
49
+ ### Training results
50
+
51
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy |
52
+ |:-------------:|:-----:|:------:|:---------------:|:--------:|
53
+ | 6.8769 | 0.36 | 10000 | 6.7582 | 0.1101 |
54
+ | 6.4647 | 0.71 | 20000 | 6.4764 | 0.1314 |
55
+ | 6.3679 | 1.07 | 30000 | 6.3218 | 0.1407 |
56
+ | 6.252 | 1.42 | 40000 | 6.2139 | 0.1454 |
57
+ | 6.2132 | 1.78 | 50000 | 6.1398 | 0.1478 |
58
+ | 6.0407 | 2.13 | 60000 | 6.0774 | 0.1502 |
59
+ | 6.0694 | 2.49 | 70000 | 6.0303 | 0.1516 |
60
+ | 5.9996 | 2.84 | 80000 | 5.9893 | 0.1521 |
61
+ | 5.9166 | 3.2 | 90000 | 5.9553 | 0.1526 |
62
+ | 5.8915 | 3.55 | 100000 | 5.9261 | 0.1530 |
63
+ | 5.8924 | 3.91 | 110000 | 5.8996 | 0.1534 |
64
+ | 5.8972 | 4.26 | 120000 | 5.8814 | 0.1533 |
65
+ | 5.8454 | 4.62 | 130000 | 5.8626 | 0.1532 |
66
+ | 5.8104 | 4.97 | 140000 | 5.8494 | 0.1534 |
67
+ | 5.8461 | 5.33 | 150000 | 5.8378 | 0.1534 |
68
+ | 5.8476 | 5.68 | 160000 | 5.8246 | 0.1536 |
69
+ | 5.7255 | 6.04 | 170000 | 5.8155 | 0.1532 |
70
+ | 5.8431 | 6.39 | 180000 | 5.8068 | 0.1537 |
71
+ | 5.7526 | 6.75 | 190000 | 5.7981 | 0.1537 |
72
+ | 5.7826 | 7.1 | 200000 | 5.7886 | 0.1537 |
73
+
74
+
75
+ ### Framework versions
76
+
77
+ - Transformers 4.37.1
78
+ - Pytorch 2.1.2+cu121
79
+ - Datasets 2.16.1
80
+ - Tokenizers 0.15.1
config.json ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "bert-large-uncased",
3
+ "architectures": [
4
+ "BertForMaskedLM"
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
+ "initializer_range": 0.02,
13
+ "intermediate_size": 4096,
14
+ "layer_norm_eps": 1e-12,
15
+ "max_position_embeddings": 512,
16
+ "model_type": "bert",
17
+ "num_attention_heads": 16,
18
+ "num_hidden_layers": 24,
19
+ "pad_token_id": 0,
20
+ "position_embedding_type": "absolute",
21
+ "torch_dtype": "float32",
22
+ "transformers_version": "4.37.1",
23
+ "type_vocab_size": 2,
24
+ "use_cache": true,
25
+ "vocab_size": 30522
26
+ }
generation_config.json ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "pad_token_id": 0,
4
+ "transformers_version": "4.37.1"
5
+ }
logs/events.out.tfevents.1707750327.ki-g0009 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa47a93503e86b5abe94452488df9ad62a829e4d07e1aa57e7eb07a2e234cb3c
3
+ size 4536
logs/events.out.tfevents.1707750771.ki-g0009 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8ee8f2f85c99f0bc98f4da989d75ecb2759a7e37d05a8a8e4b665f41ab42d1de
3
+ size 33222585
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b7ee6be52ba93be0d504056163946e69fdc4b17474166928faf09997d16afa5d
3
+ size 1340745016
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": true,
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": "BertTokenizer",
54
+ "unk_token": "[UNK]"
55
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c4aeaa8d320228bd4f0cb6aab22221de7d9eaf04f8a29399e80f2192f4a1ca3e
3
+ size 4792
vocab.txt ADDED
The diff for this file is too large to render. See raw diff