Kokolipa commited on
Commit
0b91fa4
·
verified ·
1 Parent(s): 08ac6c6

Training in progress, step 500

Browse files
README.md ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: apache-2.0
4
+ base_model: bert-base-uncased
5
+ tags:
6
+ - generated_from_trainer
7
+ model-index:
8
+ - name: test-trainer
9
+ results: []
10
+ ---
11
+
12
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
13
+ should probably proofread and complete it, then remove this comment. -->
14
+
15
+ # test-trainer
16
+
17
+ This model is a fine-tuned version of [bert-base-uncased](https://huggingface.co/bert-base-uncased) on an unknown dataset.
18
+ It achieves the following results on the evaluation set:
19
+ - Loss: 0.7231
20
+
21
+ ## Model description
22
+
23
+ More information needed
24
+
25
+ ## Intended uses & limitations
26
+
27
+ More information needed
28
+
29
+ ## Training and evaluation data
30
+
31
+ More information needed
32
+
33
+ ## Training procedure
34
+
35
+ ### Training hyperparameters
36
+
37
+ The following hyperparameters were used during training:
38
+ - learning_rate: 5e-05
39
+ - train_batch_size: 8
40
+ - eval_batch_size: 8
41
+ - seed: 42
42
+ - optimizer: Use OptimizerNames.ADAMW_TORCH_FUSED with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
43
+ - lr_scheduler_type: linear
44
+ - training_steps: 1377
45
+
46
+ ### Training results
47
+
48
+ | Training Loss | Epoch | Step | Validation Loss |
49
+ |:-------------:|:------:|:----:|:---------------:|
50
+ | No log | 0.1089 | 50 | 0.6239 |
51
+ | 0.6217 | 0.2179 | 100 | 0.4896 |
52
+ | 0.6217 | 0.3268 | 150 | 0.5328 |
53
+ | 0.5504 | 0.4357 | 200 | 0.4521 |
54
+ | 0.5504 | 0.5447 | 250 | 0.4645 |
55
+ | 0.4763 | 0.6536 | 300 | 0.4372 |
56
+ | 0.4763 | 0.7625 | 350 | 0.4010 |
57
+ | 0.4789 | 0.8715 | 400 | 0.5929 |
58
+ | 0.4789 | 0.9804 | 450 | 0.3999 |
59
+ | 0.4061 | 1.0893 | 500 | 0.4420 |
60
+ | 0.4061 | 1.1983 | 550 | 0.6670 |
61
+ | 0.3201 | 1.3072 | 600 | 0.5895 |
62
+ | 0.3201 | 1.4161 | 650 | 0.5257 |
63
+ | 0.3576 | 1.5251 | 700 | 0.4256 |
64
+ | 0.3576 | 1.6340 | 750 | 0.4559 |
65
+ | 0.3111 | 1.7429 | 800 | 0.6259 |
66
+ | 0.3111 | 1.8519 | 850 | 0.5151 |
67
+ | 0.348 | 1.9608 | 900 | 0.4774 |
68
+ | 0.348 | 2.0697 | 950 | 0.5877 |
69
+ | 0.1772 | 2.1786 | 1000 | 0.5795 |
70
+ | 0.1772 | 2.2876 | 1050 | 0.6874 |
71
+ | 0.122 | 2.3965 | 1100 | 0.7354 |
72
+ | 0.122 | 2.5054 | 1150 | 0.7051 |
73
+ | 0.1287 | 2.6144 | 1200 | 0.7774 |
74
+ | 0.1287 | 2.7233 | 1250 | 0.6771 |
75
+ | 0.1534 | 2.8322 | 1300 | 0.6675 |
76
+ | 0.1534 | 2.9412 | 1350 | 0.7231 |
77
+
78
+
79
+ ### Framework versions
80
+
81
+ - Transformers 4.55.4
82
+ - Pytorch 2.7.1
83
+ - Datasets 4.0.0
84
+ - Tokenizers 0.21.4
config.json ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "BertForSequenceClassification"
4
+ ],
5
+ "attention_probs_dropout_prob": 0.1,
6
+ "classifier_dropout": null,
7
+ "gradient_checkpointing": false,
8
+ "hidden_act": "gelu",
9
+ "hidden_dropout_prob": 0.1,
10
+ "hidden_size": 768,
11
+ "initializer_range": 0.02,
12
+ "intermediate_size": 3072,
13
+ "layer_norm_eps": 1e-12,
14
+ "max_position_embeddings": 512,
15
+ "model_type": "bert",
16
+ "num_attention_heads": 12,
17
+ "num_hidden_layers": 12,
18
+ "pad_token_id": 0,
19
+ "position_embedding_type": "absolute",
20
+ "problem_type": "single_label_classification",
21
+ "torch_dtype": "float32",
22
+ "transformers_version": "4.55.4",
23
+ "type_vocab_size": 2,
24
+ "use_cache": true,
25
+ "vocab_size": 30522
26
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d976f31c49731162c985b9c661436e85d118d269f70e98280b83e162dcd2a5cb
3
+ size 437958648
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
+ "clean_up_tokenization_spaces": false,
45
+ "cls_token": "[CLS]",
46
+ "do_lower_case": true,
47
+ "extra_special_tokens": {},
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
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:71e90239617394d9fa20277cec5259a1cdbac9bef787fec059a5b9d92df8a9c8
3
+ size 5713
vocab.txt ADDED
The diff for this file is too large to render. See raw diff