ziansu commited on
Commit
192876e
Β·
verified Β·
1 Parent(s): 4fc99aa

Training in progress, step 50

Browse files
adapter_config.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "meta-llama/CodeLlama-7b-Instruct-hf",
5
+ "bias": "none",
6
+ "eva_config": null,
7
+ "exclude_modules": null,
8
+ "fan_in_fan_out": false,
9
+ "inference_mode": true,
10
+ "init_lora_weights": true,
11
+ "layer_replication": null,
12
+ "layers_pattern": null,
13
+ "layers_to_transform": null,
14
+ "loftq_config": {},
15
+ "lora_alpha": 16,
16
+ "lora_bias": false,
17
+ "lora_dropout": 0.0,
18
+ "megatron_config": null,
19
+ "megatron_core": "megatron.core",
20
+ "modules_to_save": null,
21
+ "peft_type": "LORA",
22
+ "r": 8,
23
+ "rank_pattern": {},
24
+ "revision": null,
25
+ "target_modules": [
26
+ "k_proj",
27
+ "gate_proj",
28
+ "o_proj",
29
+ "v_proj",
30
+ "down_proj",
31
+ "q_proj",
32
+ "up_proj"
33
+ ],
34
+ "task_type": "CAUSAL_LM",
35
+ "use_dora": false,
36
+ "use_rslora": false
37
+ }
adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:df09833f347b02053eabab8c51d7622fa800e6547da018ca3b27e743c5422c3d
3
+ size 40036488
special_tokens_map.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "▁<PRE>",
4
+ "▁<MID>",
5
+ "▁<SUF>",
6
+ "▁<EOT>"
7
+ ],
8
+ "bos_token": {
9
+ "content": "<s>",
10
+ "lstrip": false,
11
+ "normalized": false,
12
+ "rstrip": false,
13
+ "single_word": false
14
+ },
15
+ "eos_token": {
16
+ "content": "</s>",
17
+ "lstrip": false,
18
+ "normalized": false,
19
+ "rstrip": false,
20
+ "single_word": false
21
+ },
22
+ "pad_token": "</s>",
23
+ "unk_token": {
24
+ "content": "<unk>",
25
+ "lstrip": false,
26
+ "normalized": false,
27
+ "rstrip": false,
28
+ "single_word": false
29
+ }
30
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "added_tokens_decoder": {
5
+ "0": {
6
+ "content": "<unk>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "1": {
14
+ "content": "<s>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "2": {
22
+ "content": "</s>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ },
29
+ "32007": {
30
+ "content": "▁<PRE>",
31
+ "lstrip": false,
32
+ "normalized": false,
33
+ "rstrip": false,
34
+ "single_word": false,
35
+ "special": true
36
+ },
37
+ "32008": {
38
+ "content": "▁<SUF>",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false,
43
+ "special": true
44
+ },
45
+ "32009": {
46
+ "content": "▁<MID>",
47
+ "lstrip": false,
48
+ "normalized": false,
49
+ "rstrip": false,
50
+ "single_word": false,
51
+ "special": true
52
+ },
53
+ "32010": {
54
+ "content": "▁<EOT>",
55
+ "lstrip": false,
56
+ "normalized": false,
57
+ "rstrip": false,
58
+ "single_word": false,
59
+ "special": true
60
+ }
61
+ },
62
+ "additional_special_tokens": [
63
+ "▁<PRE>",
64
+ "▁<MID>",
65
+ "▁<SUF>",
66
+ "▁<EOT>"
67
+ ],
68
+ "bos_token": "<s>",
69
+ "chat_template": "{% if messages[0]['role'] == 'system' %}{% set system_message = messages[0]['content'] %}{% endif %}{% for message in messages %}{% set content = message['content'] %}{% if loop.index0 == 0 and system_message is defined %}{% set content = '<<SYS>>\n' + system_message + '\n<</SYS>>\n\n' + message['content'] %}{% endif %}{% if message['role'] == 'user' %}{{ '<s>' + '[INST] ' + content + ' [/INST]' }}{% elif message['role'] == 'assistant' %}{{ ' ' + content + ' ' + '</s>' }}{% endif %}{% endfor %}",
70
+ "clean_up_tokenization_spaces": false,
71
+ "eos_token": "</s>",
72
+ "eot_token": "▁<EOT>",
73
+ "extra_special_tokens": {},
74
+ "fill_token": "<FILL_ME>",
75
+ "legacy": null,
76
+ "middle_token": "▁<MID>",
77
+ "model_max_length": 1000000000000000019884624838656,
78
+ "pad_token": "</s>",
79
+ "padding_side": "right",
80
+ "prefix_token": "▁<PRE>",
81
+ "sp_model_kwargs": {},
82
+ "split_special_tokens": false,
83
+ "suffix_token": "▁<SUF>",
84
+ "tokenizer_class": "CodeLlamaTokenizer",
85
+ "unk_token": "<unk>",
86
+ "use_default_system_prompt": false
87
+ }
trainer_log.jsonl ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {"current_steps": 10, "total_steps": 1500, "loss": 7.3904, "accuracy": 0.550000011920929, "learning_rate": 4.999451708687114e-06, "epoch": 0.007248346470961312, "percentage": 0.67, "elapsed_time": "0:01:20", "remaining_time": "3:18:57", "throughput": "0.00", "total_tokens": 0}
2
+ {"current_steps": 20, "total_steps": 1500, "loss": 7.3756, "accuracy": 0.574999988079071, "learning_rate": 4.997807075247147e-06, "epoch": 0.014496692941922623, "percentage": 1.33, "elapsed_time": "0:02:34", "remaining_time": "3:10:59", "throughput": "0.00", "total_tokens": 0}
3
+ {"current_steps": 30, "total_steps": 1500, "loss": 7.451, "accuracy": 0.4375, "learning_rate": 4.9950668210706795e-06, "epoch": 0.021745039412883936, "percentage": 2.0, "elapsed_time": "0:03:48", "remaining_time": "3:06:12", "throughput": "0.00", "total_tokens": 0}
4
+ {"current_steps": 40, "total_steps": 1500, "loss": 7.3892, "accuracy": 0.6499999761581421, "learning_rate": 4.9912321481237616e-06, "epoch": 0.028993385883845247, "percentage": 2.67, "elapsed_time": "0:05:02", "remaining_time": "3:04:08", "throughput": "0.00", "total_tokens": 0}
5
+ {"current_steps": 50, "total_steps": 1500, "loss": 7.5171, "accuracy": 0.512499988079071, "learning_rate": 4.986304738420684e-06, "epoch": 0.03624173235480656, "percentage": 3.33, "elapsed_time": "0:06:19", "remaining_time": "3:03:27", "throughput": "0.00", "total_tokens": 0}
6
+ {"current_steps": 50, "total_steps": 1500, "eval_loss": 0.9120001792907715, "epoch": 0.03624173235480656, "percentage": 3.33, "elapsed_time": "0:06:50", "remaining_time": "3:18:26", "throughput": "0.00", "total_tokens": 0}
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:91b9d0e6e8c92ae4a2c435b81fedf969ba2fc02907285b004770a8256166d71d
3
+ size 7224