Neo111x commited on
Commit
37eae19
·
verified ·
1 Parent(s): 552f853

Upload Falcon3-3B-Instruct-RL-CODE-FIX

Browse files
Files changed (33) hide show
  1. README.md +129 -0
  2. all_results.json +13 -0
  3. chat_template.jinja +45 -0
  4. checkpoint-1473/chat_template.jinja +45 -0
  5. checkpoint-1473/config.json +29 -0
  6. checkpoint-1473/generation_config.json +6 -0
  7. checkpoint-1473/model-00001-of-00002.safetensors +3 -0
  8. checkpoint-1473/model-00002-of-00002.safetensors +3 -0
  9. checkpoint-1473/model.safetensors.index.json +209 -0
  10. checkpoint-1473/optimizer.pt +3 -0
  11. checkpoint-1473/rng_state.pth +3 -0
  12. checkpoint-1473/scheduler.pt +3 -0
  13. checkpoint-1473/special_tokens_map.json +41 -0
  14. checkpoint-1473/tokenizer.json +0 -0
  15. checkpoint-1473/tokenizer_config.json +0 -0
  16. checkpoint-1473/trainer_state.json +0 -0
  17. checkpoint-1473/training_args.bin +3 -0
  18. config.json +29 -0
  19. eval_results.json +7 -0
  20. generation_config.json +6 -0
  21. model-00001-of-00002.safetensors +3 -0
  22. model-00002-of-00002.safetensors +3 -0
  23. model.safetensors.index.json +209 -0
  24. runs/Aug01_08-38-13_test-Standard-PC-Q35-ICH9-2009/events.out.tfevents.1754023096.test-Standard-PC-Q35-ICH9-2009 +3 -0
  25. runs/Aug01_11-55-18_test-Standard-PC-Q35-ICH9-2009/events.out.tfevents.1754038664.test-Standard-PC-Q35-ICH9-2009 +3 -0
  26. runs/Jul31_14-47-56_test-Standard-PC-Q35-ICH9-2009/events.out.tfevents.1753962242.test-Standard-PC-Q35-ICH9-2009 +3 -0
  27. runs/Jul31_16-34-20_test-Standard-PC-Q35-ICH9-2009/events.out.tfevents.1753965263.test-Standard-PC-Q35-ICH9-2009 +3 -0
  28. special_tokens_map.json +41 -0
  29. tokenizer.json +0 -0
  30. tokenizer_config.json +0 -0
  31. train_results.json +8 -0
  32. trainer_state.json +0 -0
  33. training_args.bin +3 -0
README.md ADDED
@@ -0,0 +1,129 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ # Falcon3-3B-Instruct-RL-CODE-FIX
3
+
4
+ This repository hosts the **Falcon3-3B-Instruct-RL-CODE-FIX** model — a fine-tuned version of [Falcon-3B-Instruct](https://huggingface.co/tiiuae/falcon3-3b-instruct), trained using **GRPO (Guided Reinforcement Program Optimization)** to solve programming tasks in the context of automatic program repair.
5
+
6
+ ## 🛠️ Model Purpose
7
+
8
+ This model is designed to:
9
+ - **Understand buggy code snippets**
10
+ - **Propose test cases that expose the bugs**
11
+ - **Generate fixed versions of the code**
12
+
13
+ It is particularly useful for:
14
+ - **Code contests**
15
+ - **Automated debugging**
16
+ - **Education and code quality assurance**
17
+
18
+ ## 🧠 Training Details
19
+
20
+ - **Base model**: Falcon3-3B-Instruct
21
+ - **Method**: GRPO (Guided Reinforcement Program Optimization)
22
+ - **Dataset**: Custom dataset of buggy code + test cases + fixes
23
+ - **Objective**: Improve model reasoning over structured code repair tasks
24
+
25
+ ## 🚀 Usage Example
26
+
27
+ ```python
28
+ from transformers import AutoModelForCausalLM, AutoTokenizer
29
+
30
+ faulty ="""
31
+ def add (x, y):
32
+ \"\"\"return sum of x and y\"\"\"
33
+ return x * y
34
+ """
35
+
36
+
37
+ PROGRAM_REPAIR_TEMPLATE = f"""
38
+ You are an expert in the field of software testing.
39
+ You are given a buggy Python program, you are supposed to first generate testcases that can expose the bug,
40
+ and then generate the corresponding fixed code. The two tasks are detailed as follows.
41
+
42
+ 1. **Generate a comprehensive set of test cases to expose the bug**:
43
+ - Each test case should include an input and the expected output.
44
+ - Output the test cases as a JSON list, where each entry is a dictionary with keys `"test_input"` and `"test_output"`.
45
+ - Write in ```json ``` block.
46
+
47
+ 2. **Provide a fixed version**:
48
+ - Write a correct Python program to fix the bug.
49
+ - Write in ```python ``` block.
50
+ - The code should read from standard input and write to standard output, matching the input/output format specified in the problem.
51
+
52
+ Here is an example.
53
+ The faulty Python program is:
54
+ \`\`\`python
55
+ \"\"\"Please write a Python program to sum two integer inputs\"\"\"
56
+ def add (x, y):
57
+ return x - y
58
+ x = int(input())
59
+ y = int(input())
60
+ print(add(x,y))
61
+ \`\`\`
62
+
63
+ Testcases that can expose the bug:
64
+ \`\`\`json
65
+ [
66
+ {{
67
+ \"test_input\":\"1\n2\",
68
+ \"test_output\":\"3\"
69
+ }},
70
+ {{
71
+ \"test_input\":\"-1\n1\",
72
+ \"test_output\":\"0\"
73
+ }},
74
+ {{
75
+ \"test_input\":\"-1\n2\",
76
+ \"test_output\":\"1\"
77
+ }}
78
+ ]
79
+ \`\`\`
80
+
81
+ Fixed code:
82
+ \`\`\`python
83
+ def add (x, y):
84
+ return x + y
85
+ x = int(input())
86
+ y = int(input())
87
+ print(add(x,y))
88
+ \`\`\`
89
+
90
+ Now, you are given a faulty Python function, please return:
91
+ 1. **Testcases** that helps expose the bug.
92
+ 2. **Fixed code** that can pass all testcases.
93
+
94
+ The faulty function is:
95
+ \`\`\`python
96
+ {faulty}
97
+ \`\`\`
98
+ <|assistant|>
99
+ """
100
+
101
+ model = AutoModelForCausalLM.from_pretrained(
102
+ "Neo111x/Falcon3-3B-Instruct-RL-CODE-FIX",
103
+ trust_remote_code=True
104
+ )
105
+ tokenizer = AutoTokenizer.from_pretrained(
106
+ "Neo111x/Falcon3-3B-Instruct-RL-CODE-FIX",
107
+ trust_remote_code=True
108
+ )
109
+
110
+ messages = [
111
+ {"role": "user", "content": PROGRAM_REPAIR_TEMPLATE}
112
+ ]
113
+ text = tokenizer.apply_chat_template(
114
+ messages,
115
+ tokenize=False,
116
+ )
117
+ model_inputs = tokenizer([text], return_tensors="pt").to(model.device)
118
+
119
+ generated_ids = model.generate(
120
+ **model_inputs,
121
+ max_new_tokens=512
122
+ )
123
+ generated_ids = [
124
+ output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
125
+ ]
126
+
127
+ response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
128
+ print(response)
129
+ ```
all_results.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "eval_train_loss": 0.1119963601231575,
3
+ "eval_train_model_preparation_time": 0.0021,
4
+ "eval_train_runtime": 3743.1417,
5
+ "eval_train_samples_per_second": 0.099,
6
+ "eval_train_steps_per_second": 0.013,
7
+ "total_flos": 0.0,
8
+ "train_loss": -4.9164727360556425e-09,
9
+ "train_runtime": 11457.4856,
10
+ "train_samples": 1473,
11
+ "train_samples_per_second": 0.129,
12
+ "train_steps_per_second": 0.129
13
+ }
chat_template.jinja ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|system|>\n' }}
3
+ {%- if messages[0]['role'] == 'system' %}
4
+ {{- messages[0]['content'] }}
5
+ {%- set remaining_messages = messages[1:] %}
6
+ {%- else %}
7
+ {%- set remaining_messages = messages %}
8
+ {%- endif %}
9
+ {{- 'You are a Falcon assistant skilled in function calling. You are helpful, respectful, and concise.\n\n# Tools\n\nYou have access to the following functions. You MUST use them to answer questions when needed. For each function call, you MUST return a JSON object inside <tool_call></tool_call> tags.\n\n<tools>' + tools|tojson(indent=2) + '</tools>\n\n# Output Format\n\nYour response MUST follow this format when making function calls:\n<tool_call>\n[\n {"name": "function_name", "arguments": {"arg1": "value1", "arg2": "value2"}},\n {"name": "another_function", "arguments": {"arg": "value"}}\n]\n</tool_call>\nIf no function calls are needed, respond normally without the tool_call tags.\n' }}
10
+ {%- for message in remaining_messages %}
11
+ {%- if message['role'] == 'user' %}
12
+ {{- '<|user|>\n' + message['content'] + '\n' }}
13
+ {%- elif message['role'] == 'assistant' %}
14
+ {%- if message.content %}
15
+ {{- '<|assistant|>\n' + message['content'] }}
16
+ {%- endif %}
17
+ {%- if message.tool_calls %}
18
+ {{- '\n<tool_call>\n' }}
19
+ {{- message.tool_calls|tojson(indent=2) }}
20
+ {{- '\n</tool_call>' }}
21
+ {%- endif %}
22
+ {{- eos_token + '\n' }}
23
+ {%- elif message['role'] == 'tool' %}
24
+ {{- '<|assistant|>\n<tool_response>\n' + message['content'] + '\n</tool_response>\n' }}
25
+ {%- endif %}
26
+ {%- endfor %}
27
+ {{- '<|assistant|>\n' if add_generation_prompt }}
28
+ {%- else %}
29
+ {%- for message in messages %}
30
+ {%- if message['role'] == 'system' %}
31
+ {{- '<|system|>\n' + message['content'] + '\n' }}
32
+ {%- elif message['role'] == 'user' %}
33
+ {{- '<|user|>\n' + message['content'] + '\n' }}
34
+ {%- elif message['role'] == 'assistant' %}
35
+ {%- if not loop.last %}
36
+ {{- '<|assistant|>\n' + message['content'] + eos_token + '\n' }}
37
+ {%- else %}
38
+ {{- '<|assistant|>\n' + message['content'] + eos_token }}
39
+ {%- endif %}
40
+ {%- endif %}
41
+ {%- if loop.last and add_generation_prompt %}
42
+ {{- '<|assistant|>\n' }}
43
+ {%- endif %}
44
+ {%- endfor %}
45
+ {%- endif %}
checkpoint-1473/chat_template.jinja ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|system|>\n' }}
3
+ {%- if messages[0]['role'] == 'system' %}
4
+ {{- messages[0]['content'] }}
5
+ {%- set remaining_messages = messages[1:] %}
6
+ {%- else %}
7
+ {%- set remaining_messages = messages %}
8
+ {%- endif %}
9
+ {{- 'You are a Falcon assistant skilled in function calling. You are helpful, respectful, and concise.\n\n# Tools\n\nYou have access to the following functions. You MUST use them to answer questions when needed. For each function call, you MUST return a JSON object inside <tool_call></tool_call> tags.\n\n<tools>' + tools|tojson(indent=2) + '</tools>\n\n# Output Format\n\nYour response MUST follow this format when making function calls:\n<tool_call>\n[\n {"name": "function_name", "arguments": {"arg1": "value1", "arg2": "value2"}},\n {"name": "another_function", "arguments": {"arg": "value"}}\n]\n</tool_call>\nIf no function calls are needed, respond normally without the tool_call tags.\n' }}
10
+ {%- for message in remaining_messages %}
11
+ {%- if message['role'] == 'user' %}
12
+ {{- '<|user|>\n' + message['content'] + '\n' }}
13
+ {%- elif message['role'] == 'assistant' %}
14
+ {%- if message.content %}
15
+ {{- '<|assistant|>\n' + message['content'] }}
16
+ {%- endif %}
17
+ {%- if message.tool_calls %}
18
+ {{- '\n<tool_call>\n' }}
19
+ {{- message.tool_calls|tojson(indent=2) }}
20
+ {{- '\n</tool_call>' }}
21
+ {%- endif %}
22
+ {{- eos_token + '\n' }}
23
+ {%- elif message['role'] == 'tool' %}
24
+ {{- '<|assistant|>\n<tool_response>\n' + message['content'] + '\n</tool_response>\n' }}
25
+ {%- endif %}
26
+ {%- endfor %}
27
+ {{- '<|assistant|>\n' if add_generation_prompt }}
28
+ {%- else %}
29
+ {%- for message in messages %}
30
+ {%- if message['role'] == 'system' %}
31
+ {{- '<|system|>\n' + message['content'] + '\n' }}
32
+ {%- elif message['role'] == 'user' %}
33
+ {{- '<|user|>\n' + message['content'] + '\n' }}
34
+ {%- elif message['role'] == 'assistant' %}
35
+ {%- if not loop.last %}
36
+ {{- '<|assistant|>\n' + message['content'] + eos_token + '\n' }}
37
+ {%- else %}
38
+ {{- '<|assistant|>\n' + message['content'] + eos_token }}
39
+ {%- endif %}
40
+ {%- endif %}
41
+ {%- if loop.last and add_generation_prompt %}
42
+ {{- '<|assistant|>\n' }}
43
+ {%- endif %}
44
+ {%- endfor %}
45
+ {%- endif %}
checkpoint-1473/config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "LlamaForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": 1,
8
+ "eos_token_id": 11,
9
+ "head_dim": 256,
10
+ "hidden_act": "silu",
11
+ "hidden_size": 3072,
12
+ "initializer_range": 0.02,
13
+ "intermediate_size": 9216,
14
+ "max_position_embeddings": 32768,
15
+ "mlp_bias": false,
16
+ "model_type": "llama",
17
+ "num_attention_heads": 12,
18
+ "num_hidden_layers": 22,
19
+ "num_key_value_heads": 4,
20
+ "pretraining_tp": 1,
21
+ "rms_norm_eps": 1e-06,
22
+ "rope_scaling": null,
23
+ "rope_theta": 1000042,
24
+ "tie_word_embeddings": false,
25
+ "torch_dtype": "bfloat16",
26
+ "transformers_version": "4.54.1",
27
+ "use_cache": false,
28
+ "vocab_size": 131072
29
+ }
checkpoint-1473/generation_config.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 11,
4
+ "eos_token_id": 11,
5
+ "transformers_version": "4.54.1"
6
+ }
checkpoint-1473/model-00001-of-00002.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:271f7ace3b1426f7bcc8159719743ad20689f73fd4edca266969318102a6e8fd
3
+ size 4989378032
checkpoint-1473/model-00002-of-00002.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fd198b4e6c751c850cef9d9fd49660e45183a9b9769cdc13ea7d660a8bf6bf4d
3
+ size 1465955608
checkpoint-1473/model.safetensors.index.json ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_parameters": 3227655168,
4
+ "total_size": 6455310336
5
+ },
6
+ "weight_map": {
7
+ "lm_head.weight": "model-00002-of-00002.safetensors",
8
+ "model.embed_tokens.weight": "model-00001-of-00002.safetensors",
9
+ "model.layers.0.input_layernorm.weight": "model-00001-of-00002.safetensors",
10
+ "model.layers.0.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
11
+ "model.layers.0.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
12
+ "model.layers.0.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
13
+ "model.layers.0.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
14
+ "model.layers.0.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
15
+ "model.layers.0.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
16
+ "model.layers.0.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
17
+ "model.layers.0.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
18
+ "model.layers.1.input_layernorm.weight": "model-00001-of-00002.safetensors",
19
+ "model.layers.1.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
20
+ "model.layers.1.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
21
+ "model.layers.1.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
22
+ "model.layers.1.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
23
+ "model.layers.1.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
24
+ "model.layers.1.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
25
+ "model.layers.1.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
26
+ "model.layers.1.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
27
+ "model.layers.10.input_layernorm.weight": "model-00001-of-00002.safetensors",
28
+ "model.layers.10.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
29
+ "model.layers.10.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
30
+ "model.layers.10.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
31
+ "model.layers.10.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
32
+ "model.layers.10.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
33
+ "model.layers.10.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
34
+ "model.layers.10.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
35
+ "model.layers.10.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
36
+ "model.layers.11.input_layernorm.weight": "model-00001-of-00002.safetensors",
37
+ "model.layers.11.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
38
+ "model.layers.11.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
39
+ "model.layers.11.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
40
+ "model.layers.11.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
41
+ "model.layers.11.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
42
+ "model.layers.11.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
43
+ "model.layers.11.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
44
+ "model.layers.11.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
45
+ "model.layers.12.input_layernorm.weight": "model-00001-of-00002.safetensors",
46
+ "model.layers.12.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
47
+ "model.layers.12.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
48
+ "model.layers.12.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
49
+ "model.layers.12.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
50
+ "model.layers.12.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
51
+ "model.layers.12.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
52
+ "model.layers.12.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
53
+ "model.layers.12.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
54
+ "model.layers.13.input_layernorm.weight": "model-00001-of-00002.safetensors",
55
+ "model.layers.13.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
56
+ "model.layers.13.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
57
+ "model.layers.13.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
58
+ "model.layers.13.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
59
+ "model.layers.13.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
60
+ "model.layers.13.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
61
+ "model.layers.13.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
62
+ "model.layers.13.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
63
+ "model.layers.14.input_layernorm.weight": "model-00001-of-00002.safetensors",
64
+ "model.layers.14.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
65
+ "model.layers.14.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
66
+ "model.layers.14.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
67
+ "model.layers.14.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
68
+ "model.layers.14.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
69
+ "model.layers.14.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
70
+ "model.layers.14.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
71
+ "model.layers.14.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
72
+ "model.layers.15.input_layernorm.weight": "model-00001-of-00002.safetensors",
73
+ "model.layers.15.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
74
+ "model.layers.15.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
75
+ "model.layers.15.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
76
+ "model.layers.15.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
77
+ "model.layers.15.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
78
+ "model.layers.15.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
79
+ "model.layers.15.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
80
+ "model.layers.15.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
81
+ "model.layers.16.input_layernorm.weight": "model-00001-of-00002.safetensors",
82
+ "model.layers.16.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
83
+ "model.layers.16.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
84
+ "model.layers.16.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
85
+ "model.layers.16.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
86
+ "model.layers.16.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
87
+ "model.layers.16.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
88
+ "model.layers.16.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
89
+ "model.layers.16.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
90
+ "model.layers.17.input_layernorm.weight": "model-00001-of-00002.safetensors",
91
+ "model.layers.17.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
92
+ "model.layers.17.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
93
+ "model.layers.17.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
94
+ "model.layers.17.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
95
+ "model.layers.17.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
96
+ "model.layers.17.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
97
+ "model.layers.17.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
98
+ "model.layers.17.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
99
+ "model.layers.18.input_layernorm.weight": "model-00001-of-00002.safetensors",
100
+ "model.layers.18.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
101
+ "model.layers.18.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
102
+ "model.layers.18.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
103
+ "model.layers.18.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
104
+ "model.layers.18.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
105
+ "model.layers.18.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
106
+ "model.layers.18.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
107
+ "model.layers.18.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
108
+ "model.layers.19.input_layernorm.weight": "model-00002-of-00002.safetensors",
109
+ "model.layers.19.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
110
+ "model.layers.19.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
111
+ "model.layers.19.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
112
+ "model.layers.19.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
113
+ "model.layers.19.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
114
+ "model.layers.19.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
115
+ "model.layers.19.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
116
+ "model.layers.19.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
117
+ "model.layers.2.input_layernorm.weight": "model-00001-of-00002.safetensors",
118
+ "model.layers.2.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
119
+ "model.layers.2.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
120
+ "model.layers.2.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
121
+ "model.layers.2.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
122
+ "model.layers.2.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
123
+ "model.layers.2.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
124
+ "model.layers.2.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
125
+ "model.layers.2.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
126
+ "model.layers.20.input_layernorm.weight": "model-00002-of-00002.safetensors",
127
+ "model.layers.20.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
128
+ "model.layers.20.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
129
+ "model.layers.20.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
130
+ "model.layers.20.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
131
+ "model.layers.20.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
132
+ "model.layers.20.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
133
+ "model.layers.20.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
134
+ "model.layers.20.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
135
+ "model.layers.21.input_layernorm.weight": "model-00002-of-00002.safetensors",
136
+ "model.layers.21.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
137
+ "model.layers.21.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
138
+ "model.layers.21.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
139
+ "model.layers.21.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
140
+ "model.layers.21.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
141
+ "model.layers.21.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
142
+ "model.layers.21.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
143
+ "model.layers.21.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
144
+ "model.layers.3.input_layernorm.weight": "model-00001-of-00002.safetensors",
145
+ "model.layers.3.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
146
+ "model.layers.3.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
147
+ "model.layers.3.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
148
+ "model.layers.3.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
149
+ "model.layers.3.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
150
+ "model.layers.3.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
151
+ "model.layers.3.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
152
+ "model.layers.3.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
153
+ "model.layers.4.input_layernorm.weight": "model-00001-of-00002.safetensors",
154
+ "model.layers.4.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
155
+ "model.layers.4.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
156
+ "model.layers.4.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
157
+ "model.layers.4.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
158
+ "model.layers.4.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
159
+ "model.layers.4.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
160
+ "model.layers.4.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
161
+ "model.layers.4.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
162
+ "model.layers.5.input_layernorm.weight": "model-00001-of-00002.safetensors",
163
+ "model.layers.5.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
164
+ "model.layers.5.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
165
+ "model.layers.5.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
166
+ "model.layers.5.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
167
+ "model.layers.5.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
168
+ "model.layers.5.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
169
+ "model.layers.5.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
170
+ "model.layers.5.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
171
+ "model.layers.6.input_layernorm.weight": "model-00001-of-00002.safetensors",
172
+ "model.layers.6.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
173
+ "model.layers.6.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
174
+ "model.layers.6.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
175
+ "model.layers.6.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
176
+ "model.layers.6.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
177
+ "model.layers.6.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
178
+ "model.layers.6.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
179
+ "model.layers.6.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
180
+ "model.layers.7.input_layernorm.weight": "model-00001-of-00002.safetensors",
181
+ "model.layers.7.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
182
+ "model.layers.7.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
183
+ "model.layers.7.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
184
+ "model.layers.7.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
185
+ "model.layers.7.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
186
+ "model.layers.7.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
187
+ "model.layers.7.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
188
+ "model.layers.7.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
189
+ "model.layers.8.input_layernorm.weight": "model-00001-of-00002.safetensors",
190
+ "model.layers.8.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
191
+ "model.layers.8.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
192
+ "model.layers.8.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
193
+ "model.layers.8.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
194
+ "model.layers.8.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
195
+ "model.layers.8.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
196
+ "model.layers.8.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
197
+ "model.layers.8.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
198
+ "model.layers.9.input_layernorm.weight": "model-00001-of-00002.safetensors",
199
+ "model.layers.9.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
200
+ "model.layers.9.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
201
+ "model.layers.9.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
202
+ "model.layers.9.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
203
+ "model.layers.9.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
204
+ "model.layers.9.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
205
+ "model.layers.9.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
206
+ "model.layers.9.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
207
+ "model.norm.weight": "model-00002-of-00002.safetensors"
208
+ }
209
+ }
checkpoint-1473/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2469be4acc58199f89d81ec2b78b87edbad5ac1fad63cbd1caf57b1c6eb7c18a
3
+ size 12910796263
checkpoint-1473/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dba23b2ae31fd221df02f9a3c7f7f01bf7683e64738e82dcdb601459f79f2224
3
+ size 14645
checkpoint-1473/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:20e36217acb4c73b5af431ae6c91a842a003193e5dc5c41bae5bc7f084c389ec
3
+ size 1465
checkpoint-1473/special_tokens_map.json ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ ">>TITLE<<",
4
+ ">>ABSTRACT<<",
5
+ ">>INTRODUCTION<<",
6
+ ">>SUMMARY<<",
7
+ ">>COMMENT<<",
8
+ ">>ANSWER<<",
9
+ ">>QUESTION<<",
10
+ ">>DOMAIN<<",
11
+ ">>EMAIL_ADDRESS<<",
12
+ ">>IP_ADDRESS<<",
13
+ "<|startoftext|>",
14
+ ">>IP_ADDRESS_0<<",
15
+ ">>IP_ADDRESS_1<<",
16
+ ">>IP_ADDRESS_2<<",
17
+ ">>IP_ADDRESS_3<<",
18
+ ">>IP_ADDRESS_4<<",
19
+ ">>IP_ADDRESS_5<<",
20
+ ">>IP_ADDRESS_6<<",
21
+ ">>IP_ADDRESS_7<<",
22
+ ">>IP_ADDRESS_8<<",
23
+ ">>IP_ADDRESS_9<<",
24
+ ">>PASSWORD<<",
25
+ ">>KEY<<"
26
+ ],
27
+ "eos_token": {
28
+ "content": "<|endoftext|>",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false
33
+ },
34
+ "pad_token": {
35
+ "content": "<|pad|>",
36
+ "lstrip": false,
37
+ "normalized": false,
38
+ "rstrip": false,
39
+ "single_word": false
40
+ }
41
+ }
checkpoint-1473/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-1473/tokenizer_config.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-1473/trainer_state.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-1473/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca0e49517c4d18721a9828e19abe08746cacdd83fbc682047bdb3bf0d153ad00
3
+ size 7185
config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "LlamaForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": 1,
8
+ "eos_token_id": 11,
9
+ "head_dim": 256,
10
+ "hidden_act": "silu",
11
+ "hidden_size": 3072,
12
+ "initializer_range": 0.02,
13
+ "intermediate_size": 9216,
14
+ "max_position_embeddings": 32768,
15
+ "mlp_bias": false,
16
+ "model_type": "llama",
17
+ "num_attention_heads": 12,
18
+ "num_hidden_layers": 22,
19
+ "num_key_value_heads": 4,
20
+ "pretraining_tp": 1,
21
+ "rms_norm_eps": 1e-06,
22
+ "rope_scaling": null,
23
+ "rope_theta": 1000042,
24
+ "tie_word_embeddings": false,
25
+ "torch_dtype": "bfloat16",
26
+ "transformers_version": "4.54.1",
27
+ "use_cache": false,
28
+ "vocab_size": 131072
29
+ }
eval_results.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "eval_train_loss": 0.1119963601231575,
3
+ "eval_train_model_preparation_time": 0.0021,
4
+ "eval_train_runtime": 3743.1417,
5
+ "eval_train_samples_per_second": 0.099,
6
+ "eval_train_steps_per_second": 0.013
7
+ }
generation_config.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 11,
4
+ "eos_token_id": 11,
5
+ "transformers_version": "4.54.1"
6
+ }
model-00001-of-00002.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:271f7ace3b1426f7bcc8159719743ad20689f73fd4edca266969318102a6e8fd
3
+ size 4989378032
model-00002-of-00002.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fd198b4e6c751c850cef9d9fd49660e45183a9b9769cdc13ea7d660a8bf6bf4d
3
+ size 1465955608
model.safetensors.index.json ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_parameters": 3227655168,
4
+ "total_size": 6455310336
5
+ },
6
+ "weight_map": {
7
+ "lm_head.weight": "model-00002-of-00002.safetensors",
8
+ "model.embed_tokens.weight": "model-00001-of-00002.safetensors",
9
+ "model.layers.0.input_layernorm.weight": "model-00001-of-00002.safetensors",
10
+ "model.layers.0.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
11
+ "model.layers.0.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
12
+ "model.layers.0.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
13
+ "model.layers.0.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
14
+ "model.layers.0.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
15
+ "model.layers.0.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
16
+ "model.layers.0.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
17
+ "model.layers.0.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
18
+ "model.layers.1.input_layernorm.weight": "model-00001-of-00002.safetensors",
19
+ "model.layers.1.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
20
+ "model.layers.1.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
21
+ "model.layers.1.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
22
+ "model.layers.1.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
23
+ "model.layers.1.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
24
+ "model.layers.1.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
25
+ "model.layers.1.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
26
+ "model.layers.1.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
27
+ "model.layers.10.input_layernorm.weight": "model-00001-of-00002.safetensors",
28
+ "model.layers.10.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
29
+ "model.layers.10.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
30
+ "model.layers.10.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
31
+ "model.layers.10.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
32
+ "model.layers.10.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
33
+ "model.layers.10.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
34
+ "model.layers.10.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
35
+ "model.layers.10.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
36
+ "model.layers.11.input_layernorm.weight": "model-00001-of-00002.safetensors",
37
+ "model.layers.11.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
38
+ "model.layers.11.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
39
+ "model.layers.11.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
40
+ "model.layers.11.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
41
+ "model.layers.11.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
42
+ "model.layers.11.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
43
+ "model.layers.11.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
44
+ "model.layers.11.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
45
+ "model.layers.12.input_layernorm.weight": "model-00001-of-00002.safetensors",
46
+ "model.layers.12.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
47
+ "model.layers.12.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
48
+ "model.layers.12.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
49
+ "model.layers.12.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
50
+ "model.layers.12.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
51
+ "model.layers.12.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
52
+ "model.layers.12.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
53
+ "model.layers.12.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
54
+ "model.layers.13.input_layernorm.weight": "model-00001-of-00002.safetensors",
55
+ "model.layers.13.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
56
+ "model.layers.13.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
57
+ "model.layers.13.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
58
+ "model.layers.13.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
59
+ "model.layers.13.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
60
+ "model.layers.13.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
61
+ "model.layers.13.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
62
+ "model.layers.13.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
63
+ "model.layers.14.input_layernorm.weight": "model-00001-of-00002.safetensors",
64
+ "model.layers.14.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
65
+ "model.layers.14.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
66
+ "model.layers.14.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
67
+ "model.layers.14.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
68
+ "model.layers.14.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
69
+ "model.layers.14.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
70
+ "model.layers.14.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
71
+ "model.layers.14.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
72
+ "model.layers.15.input_layernorm.weight": "model-00001-of-00002.safetensors",
73
+ "model.layers.15.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
74
+ "model.layers.15.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
75
+ "model.layers.15.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
76
+ "model.layers.15.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
77
+ "model.layers.15.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
78
+ "model.layers.15.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
79
+ "model.layers.15.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
80
+ "model.layers.15.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
81
+ "model.layers.16.input_layernorm.weight": "model-00001-of-00002.safetensors",
82
+ "model.layers.16.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
83
+ "model.layers.16.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
84
+ "model.layers.16.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
85
+ "model.layers.16.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
86
+ "model.layers.16.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
87
+ "model.layers.16.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
88
+ "model.layers.16.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
89
+ "model.layers.16.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
90
+ "model.layers.17.input_layernorm.weight": "model-00001-of-00002.safetensors",
91
+ "model.layers.17.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
92
+ "model.layers.17.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
93
+ "model.layers.17.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
94
+ "model.layers.17.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
95
+ "model.layers.17.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
96
+ "model.layers.17.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
97
+ "model.layers.17.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
98
+ "model.layers.17.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
99
+ "model.layers.18.input_layernorm.weight": "model-00001-of-00002.safetensors",
100
+ "model.layers.18.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
101
+ "model.layers.18.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
102
+ "model.layers.18.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
103
+ "model.layers.18.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
104
+ "model.layers.18.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
105
+ "model.layers.18.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
106
+ "model.layers.18.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
107
+ "model.layers.18.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
108
+ "model.layers.19.input_layernorm.weight": "model-00002-of-00002.safetensors",
109
+ "model.layers.19.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
110
+ "model.layers.19.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
111
+ "model.layers.19.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
112
+ "model.layers.19.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
113
+ "model.layers.19.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
114
+ "model.layers.19.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
115
+ "model.layers.19.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
116
+ "model.layers.19.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
117
+ "model.layers.2.input_layernorm.weight": "model-00001-of-00002.safetensors",
118
+ "model.layers.2.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
119
+ "model.layers.2.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
120
+ "model.layers.2.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
121
+ "model.layers.2.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
122
+ "model.layers.2.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
123
+ "model.layers.2.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
124
+ "model.layers.2.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
125
+ "model.layers.2.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
126
+ "model.layers.20.input_layernorm.weight": "model-00002-of-00002.safetensors",
127
+ "model.layers.20.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
128
+ "model.layers.20.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
129
+ "model.layers.20.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
130
+ "model.layers.20.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
131
+ "model.layers.20.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
132
+ "model.layers.20.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
133
+ "model.layers.20.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
134
+ "model.layers.20.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
135
+ "model.layers.21.input_layernorm.weight": "model-00002-of-00002.safetensors",
136
+ "model.layers.21.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
137
+ "model.layers.21.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
138
+ "model.layers.21.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
139
+ "model.layers.21.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
140
+ "model.layers.21.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
141
+ "model.layers.21.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
142
+ "model.layers.21.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
143
+ "model.layers.21.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
144
+ "model.layers.3.input_layernorm.weight": "model-00001-of-00002.safetensors",
145
+ "model.layers.3.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
146
+ "model.layers.3.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
147
+ "model.layers.3.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
148
+ "model.layers.3.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
149
+ "model.layers.3.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
150
+ "model.layers.3.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
151
+ "model.layers.3.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
152
+ "model.layers.3.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
153
+ "model.layers.4.input_layernorm.weight": "model-00001-of-00002.safetensors",
154
+ "model.layers.4.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
155
+ "model.layers.4.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
156
+ "model.layers.4.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
157
+ "model.layers.4.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
158
+ "model.layers.4.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
159
+ "model.layers.4.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
160
+ "model.layers.4.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
161
+ "model.layers.4.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
162
+ "model.layers.5.input_layernorm.weight": "model-00001-of-00002.safetensors",
163
+ "model.layers.5.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
164
+ "model.layers.5.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
165
+ "model.layers.5.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
166
+ "model.layers.5.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
167
+ "model.layers.5.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
168
+ "model.layers.5.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
169
+ "model.layers.5.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
170
+ "model.layers.5.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
171
+ "model.layers.6.input_layernorm.weight": "model-00001-of-00002.safetensors",
172
+ "model.layers.6.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
173
+ "model.layers.6.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
174
+ "model.layers.6.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
175
+ "model.layers.6.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
176
+ "model.layers.6.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
177
+ "model.layers.6.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
178
+ "model.layers.6.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
179
+ "model.layers.6.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
180
+ "model.layers.7.input_layernorm.weight": "model-00001-of-00002.safetensors",
181
+ "model.layers.7.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
182
+ "model.layers.7.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
183
+ "model.layers.7.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
184
+ "model.layers.7.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
185
+ "model.layers.7.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
186
+ "model.layers.7.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
187
+ "model.layers.7.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
188
+ "model.layers.7.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
189
+ "model.layers.8.input_layernorm.weight": "model-00001-of-00002.safetensors",
190
+ "model.layers.8.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
191
+ "model.layers.8.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
192
+ "model.layers.8.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
193
+ "model.layers.8.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
194
+ "model.layers.8.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
195
+ "model.layers.8.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
196
+ "model.layers.8.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
197
+ "model.layers.8.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
198
+ "model.layers.9.input_layernorm.weight": "model-00001-of-00002.safetensors",
199
+ "model.layers.9.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
200
+ "model.layers.9.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
201
+ "model.layers.9.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
202
+ "model.layers.9.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
203
+ "model.layers.9.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
204
+ "model.layers.9.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
205
+ "model.layers.9.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
206
+ "model.layers.9.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
207
+ "model.norm.weight": "model-00002-of-00002.safetensors"
208
+ }
209
+ }
runs/Aug01_08-38-13_test-Standard-PC-Q35-ICH9-2009/events.out.tfevents.1754023096.test-Standard-PC-Q35-ICH9-2009 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f9377f8d816effbb457e0a0fe5184aa7196a0b2fea671dbeed57d24608bb1998
3
+ size 2720490
runs/Aug01_11-55-18_test-Standard-PC-Q35-ICH9-2009/events.out.tfevents.1754038664.test-Standard-PC-Q35-ICH9-2009 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:596bb76350fbe452bdda5e9d5563ff273bb191d2ff175e5961ba0b0992842a56
3
+ size 1881
runs/Jul31_14-47-56_test-Standard-PC-Q35-ICH9-2009/events.out.tfevents.1753962242.test-Standard-PC-Q35-ICH9-2009 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9c0fcb79ee444af206dd8a934ea923990d96caaa8ccbd02d5313c246e616baef
3
+ size 1881
runs/Jul31_16-34-20_test-Standard-PC-Q35-ICH9-2009/events.out.tfevents.1753965263.test-Standard-PC-Q35-ICH9-2009 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c91c971b1c082c98ae53ea4d2d49f57fd1cb8c6486dea351a4495f4408c45755
3
+ size 844858
special_tokens_map.json ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ ">>TITLE<<",
4
+ ">>ABSTRACT<<",
5
+ ">>INTRODUCTION<<",
6
+ ">>SUMMARY<<",
7
+ ">>COMMENT<<",
8
+ ">>ANSWER<<",
9
+ ">>QUESTION<<",
10
+ ">>DOMAIN<<",
11
+ ">>EMAIL_ADDRESS<<",
12
+ ">>IP_ADDRESS<<",
13
+ "<|startoftext|>",
14
+ ">>IP_ADDRESS_0<<",
15
+ ">>IP_ADDRESS_1<<",
16
+ ">>IP_ADDRESS_2<<",
17
+ ">>IP_ADDRESS_3<<",
18
+ ">>IP_ADDRESS_4<<",
19
+ ">>IP_ADDRESS_5<<",
20
+ ">>IP_ADDRESS_6<<",
21
+ ">>IP_ADDRESS_7<<",
22
+ ">>IP_ADDRESS_8<<",
23
+ ">>IP_ADDRESS_9<<",
24
+ ">>PASSWORD<<",
25
+ ">>KEY<<"
26
+ ],
27
+ "eos_token": {
28
+ "content": "<|endoftext|>",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false
33
+ },
34
+ "pad_token": {
35
+ "content": "<|pad|>",
36
+ "lstrip": false,
37
+ "normalized": false,
38
+ "rstrip": false,
39
+ "single_word": false
40
+ }
41
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
The diff for this file is too large to render. See raw diff
 
train_results.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "total_flos": 0.0,
3
+ "train_loss": -4.9164727360556425e-09,
4
+ "train_runtime": 11457.4856,
5
+ "train_samples": 1473,
6
+ "train_samples_per_second": 0.129,
7
+ "train_steps_per_second": 0.129
8
+ }
trainer_state.json ADDED
The diff for this file is too large to render. See raw diff
 
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca0e49517c4d18721a9828e19abe08746cacdd83fbc682047bdb3bf0d153ad00
3
+ size 7185