thsohn commited on
Commit
945683a
1 Parent(s): a7fbd7f

End of training

Browse files
README.md ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ base_model: gpt2
4
+ tags:
5
+ - generated_from_trainer
6
+ model-index:
7
+ - name: codeparrot-ds
8
+ results: []
9
+ ---
10
+
11
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
12
+ should probably proofread and complete it, then remove this comment. -->
13
+
14
+ # codeparrot-ds
15
+
16
+ This model is a fine-tuned version of [gpt2](https://huggingface.co/gpt2) on an unknown dataset.
17
+ It achieves the following results on the evaluation set:
18
+ - Loss: 4.9260
19
+
20
+ ## Model description
21
+
22
+ More information needed
23
+
24
+ ## Intended uses & limitations
25
+
26
+ More information needed
27
+
28
+ ## Training and evaluation data
29
+
30
+ More information needed
31
+
32
+ ## Training procedure
33
+
34
+ ### Training hyperparameters
35
+
36
+ The following hyperparameters were used during training:
37
+ - learning_rate: 0.0005
38
+ - train_batch_size: 32
39
+ - eval_batch_size: 32
40
+ - seed: 42
41
+ - gradient_accumulation_steps: 8
42
+ - total_train_batch_size: 256
43
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
44
+ - lr_scheduler_type: cosine
45
+ - lr_scheduler_warmup_steps: 10
46
+ - num_epochs: 5
47
+ - mixed_precision_training: Native AMP
48
+
49
+ ### Training results
50
+
51
+ | Training Loss | Epoch | Step | Validation Loss |
52
+ |:-------------:|:-----:|:----:|:---------------:|
53
+ | 9.4997 | 0.18 | 10 | 8.0307 |
54
+ | 7.1464 | 0.36 | 20 | 7.0639 |
55
+ | 6.7447 | 0.54 | 30 | 6.8856 |
56
+ | 6.4819 | 0.72 | 40 | 6.6801 |
57
+ | 6.2576 | 0.9 | 50 | 6.4703 |
58
+ | 6.0151 | 1.08 | 60 | 6.2236 |
59
+ | 5.7178 | 1.26 | 70 | 6.0277 |
60
+ | 5.5432 | 1.44 | 80 | 5.8780 |
61
+ | 5.4003 | 1.62 | 90 | 5.7475 |
62
+ | 5.2611 | 1.8 | 100 | 5.6555 |
63
+ | 5.1703 | 1.98 | 110 | 5.5344 |
64
+ | 5.0115 | 2.16 | 120 | 5.4731 |
65
+ | 4.9182 | 2.34 | 130 | 5.3787 |
66
+ | 4.8519 | 2.52 | 140 | 5.3300 |
67
+ | 4.7389 | 2.7 | 150 | 5.2398 |
68
+ | 4.6887 | 2.88 | 160 | 5.1947 |
69
+ | 4.5515 | 3.06 | 170 | 5.1424 |
70
+ | 4.4606 | 3.24 | 180 | 5.1048 |
71
+ | 4.4699 | 3.42 | 190 | 5.0667 |
72
+ | 4.3777 | 3.6 | 200 | 5.0200 |
73
+ | 4.3894 | 3.78 | 210 | 4.9892 |
74
+ | 4.3143 | 3.96 | 220 | 4.9688 |
75
+ | 4.2688 | 4.14 | 230 | 4.9515 |
76
+ | 4.2468 | 4.32 | 240 | 4.9410 |
77
+ | 4.2191 | 4.5 | 250 | 4.9304 |
78
+ | 4.2512 | 4.68 | 260 | 4.9270 |
79
+ | 4.217 | 4.86 | 270 | 4.9260 |
80
+
81
+
82
+ ### Framework versions
83
+
84
+ - Transformers 4.38.2
85
+ - Pytorch 2.2.1+cu121
86
+ - Datasets 2.18.0
87
+ - Tokenizers 0.15.2
config.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "gpt2",
3
+ "activation_function": "gelu_new",
4
+ "architectures": [
5
+ "GPT2LMHeadModel"
6
+ ],
7
+ "attn_pdrop": 0.1,
8
+ "bos_token_id": 0,
9
+ "embd_pdrop": 0.1,
10
+ "eos_token_id": 0,
11
+ "initializer_range": 0.02,
12
+ "layer_norm_epsilon": 1e-05,
13
+ "model_type": "gpt2",
14
+ "n_ctx": 128,
15
+ "n_embd": 768,
16
+ "n_head": 12,
17
+ "n_inner": null,
18
+ "n_layer": 12,
19
+ "n_positions": 1024,
20
+ "reorder_and_upcast_attn": false,
21
+ "resid_pdrop": 0.1,
22
+ "scale_attn_by_inverse_layer_idx": false,
23
+ "scale_attn_weights": true,
24
+ "summary_activation": null,
25
+ "summary_first_dropout": 0.1,
26
+ "summary_proj_to_labels": true,
27
+ "summary_type": "cls_index",
28
+ "summary_use_proj": true,
29
+ "task_specific_params": {
30
+ "text-generation": {
31
+ "do_sample": true,
32
+ "max_length": 50
33
+ }
34
+ },
35
+ "torch_dtype": "float32",
36
+ "transformers_version": "4.38.2",
37
+ "use_cache": true,
38
+ "vocab_size": 50000
39
+ }
generation_config.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 0,
4
+ "eos_token_id": 0,
5
+ "transformers_version": "4.38.2"
6
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ef0bf9c7c51fb732c575f3ae9f1dc26caa7ba44fab7490a3c7a6af2873bbf3f3
3
+ size 496984704
runs/Apr08_06-53-20_0d16767672c6/events.out.tfevents.1712559212.0d16767672c6.4370.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3bedd6deab919f43b49e425e2e02b4e8e9f17a15a7ddb7e5be8f8bc9d8ba3ee1
3
+ size 18038
special_tokens_map.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<|endoftext|>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "<|endoftext|>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": "<|endoftext|>",
17
+ "unk_token": {
18
+ "content": "<|endoftext|>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ }
24
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "added_tokens_decoder": {
4
+ "0": {
5
+ "content": "<|endoftext|>",
6
+ "lstrip": false,
7
+ "normalized": false,
8
+ "rstrip": false,
9
+ "single_word": false,
10
+ "special": true
11
+ }
12
+ },
13
+ "bos_token": "<|endoftext|>",
14
+ "clean_up_tokenization_spaces": true,
15
+ "eos_token": "<|endoftext|>",
16
+ "model_max_length": 1024,
17
+ "pad_token": "<|endoftext|>",
18
+ "tokenizer_class": "GPT2Tokenizer",
19
+ "unk_token": "<|endoftext|>"
20
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:734f9b589f1158e614a9277737c59583eda1f029829884a61d4adf4e5fb4348c
3
+ size 4856
vocab.json ADDED
The diff for this file is too large to render. See raw diff