Instructions to use barha/granite-cti-technique-mapping-350m-alora with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use barha/granite-cti-technique-mapping-350m-alora with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("ibm-granite/granite-4.0-350m") model = PeftModel.from_pretrained(base_model, "barha/granite-cti-technique-mapping-350m-alora") - Transformers
How to use barha/granite-cti-technique-mapping-350m-alora with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="barha/granite-cti-technique-mapping-350m-alora") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("barha/granite-cti-technique-mapping-350m-alora", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use barha/granite-cti-technique-mapping-350m-alora with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "barha/granite-cti-technique-mapping-350m-alora" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "barha/granite-cti-technique-mapping-350m-alora", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/barha/granite-cti-technique-mapping-350m-alora
- SGLang
How to use barha/granite-cti-technique-mapping-350m-alora with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "barha/granite-cti-technique-mapping-350m-alora" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "barha/granite-cti-technique-mapping-350m-alora", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "barha/granite-cti-technique-mapping-350m-alora" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "barha/granite-cti-technique-mapping-350m-alora", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use barha/granite-cti-technique-mapping-350m-alora with Docker Model Runner:
docker model run hf.co/barha/granite-cti-technique-mapping-350m-alora
aLoRA retrain of cti-technique-mapping on granite-4.0-350m (gated on assistant invocation tokens)
Browse files- adapter_config.json +7 -9
- adapter_model.safetensors +2 -2
- checkpoint-47/adapter_config.json +7 -9
- checkpoint-47/adapter_model.safetensors +2 -2
- checkpoint-47/optimizer.pt +2 -2
- checkpoint-47/rng_state_0.pth +1 -1
- checkpoint-47/rng_state_1.pth +1 -1
- checkpoint-47/rng_state_2.pth +1 -1
- checkpoint-47/rng_state_3.pth +1 -1
- checkpoint-47/trainer_state.json +189 -189
- checkpoint-47/training_args.bin +1 -1
- checkpoint-94/adapter_config.json +7 -9
- checkpoint-94/adapter_model.safetensors +2 -2
- checkpoint-94/optimizer.pt +2 -2
- checkpoint-94/rng_state_0.pth +1 -1
- checkpoint-94/rng_state_1.pth +1 -1
- checkpoint-94/rng_state_2.pth +1 -1
- checkpoint-94/rng_state_3.pth +1 -1
- checkpoint-94/trainer_state.json +358 -358
- checkpoint-94/training_args.bin +1 -1
- predictions.jsonl +6 -6
- training_args.bin +1 -1
adapter_config.json
CHANGED
|
@@ -32,23 +32,21 @@
|
|
| 32 |
"qalora_group_size": 16,
|
| 33 |
"r": 32,
|
| 34 |
"rank_pattern": {
|
| 35 |
-
"
|
| 36 |
-
"gate_proj": 32,
|
| 37 |
"k_proj": 32,
|
| 38 |
"o_proj": 32,
|
|
|
|
| 39 |
"q_proj": 32,
|
| 40 |
-
"up_proj": 32,
|
| 41 |
"v_proj": 32
|
| 42 |
},
|
| 43 |
"revision": null,
|
| 44 |
"target_modules": [
|
| 45 |
-
"o_proj",
|
| 46 |
-
"down_proj",
|
| 47 |
-
"v_proj",
|
| 48 |
-
"up_proj",
|
| 49 |
-
"q_proj",
|
| 50 |
"k_proj",
|
| 51 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
| 52 |
],
|
| 53 |
"target_parameters": null,
|
| 54 |
"task_type": "CAUSAL_LM",
|
|
|
|
| 32 |
"qalora_group_size": 16,
|
| 33 |
"r": 32,
|
| 34 |
"rank_pattern": {
|
| 35 |
+
"input_linear": 32,
|
|
|
|
| 36 |
"k_proj": 32,
|
| 37 |
"o_proj": 32,
|
| 38 |
+
"output_linear": 32,
|
| 39 |
"q_proj": 32,
|
|
|
|
| 40 |
"v_proj": 32
|
| 41 |
},
|
| 42 |
"revision": null,
|
| 43 |
"target_modules": [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
"k_proj",
|
| 45 |
+
"v_proj",
|
| 46 |
+
"output_linear",
|
| 47 |
+
"input_linear",
|
| 48 |
+
"o_proj",
|
| 49 |
+
"q_proj"
|
| 50 |
],
|
| 51 |
"target_parameters": null,
|
| 52 |
"task_type": "CAUSAL_LM",
|
adapter_model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c53817328b96754c14be89373a8eb12fa045594a449a585e99c570db7202904a
|
| 3 |
+
size 53261144
|
checkpoint-47/adapter_config.json
CHANGED
|
@@ -32,23 +32,21 @@
|
|
| 32 |
"qalora_group_size": 16,
|
| 33 |
"r": 32,
|
| 34 |
"rank_pattern": {
|
| 35 |
-
"
|
| 36 |
-
"gate_proj": 32,
|
| 37 |
"k_proj": 32,
|
| 38 |
"o_proj": 32,
|
|
|
|
| 39 |
"q_proj": 32,
|
| 40 |
-
"up_proj": 32,
|
| 41 |
"v_proj": 32
|
| 42 |
},
|
| 43 |
"revision": null,
|
| 44 |
"target_modules": [
|
| 45 |
-
"o_proj",
|
| 46 |
-
"down_proj",
|
| 47 |
-
"v_proj",
|
| 48 |
-
"up_proj",
|
| 49 |
-
"q_proj",
|
| 50 |
"k_proj",
|
| 51 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
| 52 |
],
|
| 53 |
"target_parameters": null,
|
| 54 |
"task_type": "CAUSAL_LM",
|
|
|
|
| 32 |
"qalora_group_size": 16,
|
| 33 |
"r": 32,
|
| 34 |
"rank_pattern": {
|
| 35 |
+
"input_linear": 32,
|
|
|
|
| 36 |
"k_proj": 32,
|
| 37 |
"o_proj": 32,
|
| 38 |
+
"output_linear": 32,
|
| 39 |
"q_proj": 32,
|
|
|
|
| 40 |
"v_proj": 32
|
| 41 |
},
|
| 42 |
"revision": null,
|
| 43 |
"target_modules": [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
"k_proj",
|
| 45 |
+
"v_proj",
|
| 46 |
+
"output_linear",
|
| 47 |
+
"input_linear",
|
| 48 |
+
"o_proj",
|
| 49 |
+
"q_proj"
|
| 50 |
],
|
| 51 |
"target_parameters": null,
|
| 52 |
"task_type": "CAUSAL_LM",
|
checkpoint-47/adapter_model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5b9929ed09931e8216e923d38f7c2c633c26f95a958a88968894bce3b67bed88
|
| 3 |
+
size 53261144
|
checkpoint-47/optimizer.pt
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b18e3326536b38c5b10b9d2f555a7a835f4b99d98acb8d93137cc9f9ee1b635e
|
| 3 |
+
size 106712578
|
checkpoint-47/rng_state_0.pth
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 15024
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:275eba8d3b12cdd60d49296aac9adc57bd8616f1c8c1cd6586111be538f59f9a
|
| 3 |
size 15024
|
checkpoint-47/rng_state_1.pth
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 15024
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1b5ee2a746d9c3f96ab1ed4c2fc63068afebb6190d2dbff804cfd7e0a87e5486
|
| 3 |
size 15024
|
checkpoint-47/rng_state_2.pth
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 15024
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:28890307ce499e464ca161a5037b46dcea79080b7621c9deef43a568289a28ae
|
| 3 |
size 15024
|
checkpoint-47/rng_state_3.pth
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 15024
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5c11327af107ac2062249c8de836804e44a688bc5c509f9203b55f021ec246d8
|
| 3 |
size 15024
|
checkpoint-47/trainer_state.json
CHANGED
|
@@ -10,472 +10,472 @@
|
|
| 10 |
"is_world_process_zero": true,
|
| 11 |
"log_history": [
|
| 12 |
{
|
| 13 |
-
"entropy": 0.
|
| 14 |
"epoch": 0.02127659574468085,
|
| 15 |
-
"grad_norm":
|
| 16 |
"learning_rate": 0.0,
|
| 17 |
-
"loss": 11.
|
| 18 |
"mean_token_accuracy": 0.22714237496256828,
|
| 19 |
"num_tokens": 2486.0,
|
| 20 |
"step": 1
|
| 21 |
},
|
| 22 |
{
|
| 23 |
-
"entropy": 0.
|
| 24 |
"epoch": 0.0425531914893617,
|
| 25 |
-
"grad_norm":
|
| 26 |
"learning_rate": 4e-05,
|
| 27 |
-
"loss": 11.
|
| 28 |
"mean_token_accuracy": 0.2649671100080013,
|
| 29 |
"num_tokens": 4959.0,
|
| 30 |
"step": 2
|
| 31 |
},
|
| 32 |
{
|
| 33 |
-
"entropy": 1.
|
| 34 |
"epoch": 0.06382978723404255,
|
| 35 |
-
"grad_norm":
|
| 36 |
"learning_rate": 8e-05,
|
| 37 |
-
"loss": 9.
|
| 38 |
-
"mean_token_accuracy": 0.
|
| 39 |
"num_tokens": 7552.0,
|
| 40 |
"step": 3
|
| 41 |
},
|
| 42 |
{
|
| 43 |
-
"entropy": 1.
|
| 44 |
"epoch": 0.0851063829787234,
|
| 45 |
-
"grad_norm":
|
| 46 |
"learning_rate": 0.00012,
|
| 47 |
-
"loss": 6.
|
| 48 |
-
"mean_token_accuracy": 0.
|
| 49 |
"num_tokens": 10017.0,
|
| 50 |
"step": 4
|
| 51 |
},
|
| 52 |
{
|
| 53 |
-
"entropy": 1.
|
| 54 |
"epoch": 0.10638297872340426,
|
| 55 |
-
"grad_norm":
|
| 56 |
"learning_rate": 0.00016,
|
| 57 |
-
"loss": 5.
|
| 58 |
-
"mean_token_accuracy": 0.
|
| 59 |
"num_tokens": 12542.0,
|
| 60 |
"step": 5
|
| 61 |
},
|
| 62 |
{
|
| 63 |
-
"entropy": 0.
|
| 64 |
"epoch": 0.1276595744680851,
|
| 65 |
-
"grad_norm":
|
| 66 |
"learning_rate": 0.0002,
|
| 67 |
-
"loss":
|
| 68 |
-
"mean_token_accuracy": 0.
|
| 69 |
"num_tokens": 15108.0,
|
| 70 |
"step": 6
|
| 71 |
},
|
| 72 |
{
|
| 73 |
-
"entropy": 0.
|
| 74 |
"epoch": 0.14893617021276595,
|
| 75 |
-
"grad_norm": 8.
|
| 76 |
"learning_rate": 0.00019993770622619782,
|
| 77 |
-
"loss": 4.
|
| 78 |
-
"mean_token_accuracy": 0.
|
| 79 |
"num_tokens": 17715.0,
|
| 80 |
"step": 7
|
| 81 |
},
|
| 82 |
{
|
| 83 |
-
"entropy": 0.
|
| 84 |
"epoch": 0.1702127659574468,
|
| 85 |
-
"grad_norm": 7.
|
| 86 |
"learning_rate": 0.00019975090251507638,
|
| 87 |
-
"loss": 4.
|
| 88 |
-
"mean_token_accuracy": 0.
|
| 89 |
"num_tokens": 20143.0,
|
| 90 |
"step": 8
|
| 91 |
},
|
| 92 |
{
|
| 93 |
-
"entropy": 0.
|
| 94 |
"epoch": 0.19148936170212766,
|
| 95 |
-
"grad_norm": 4.
|
| 96 |
"learning_rate": 0.0001994398216007982,
|
| 97 |
-
"loss": 4.
|
| 98 |
-
"mean_token_accuracy": 0.
|
| 99 |
"num_tokens": 22656.0,
|
| 100 |
"step": 9
|
| 101 |
},
|
| 102 |
{
|
| 103 |
-
"entropy": 0.
|
| 104 |
"epoch": 0.2127659574468085,
|
| 105 |
-
"grad_norm":
|
| 106 |
"learning_rate": 0.00019900485105144543,
|
| 107 |
-
"loss": 4.
|
| 108 |
"mean_token_accuracy": 0.7753759473562241,
|
| 109 |
"num_tokens": 25094.0,
|
| 110 |
"step": 10
|
| 111 |
},
|
| 112 |
{
|
| 113 |
-
"entropy": 0.
|
| 114 |
"epoch": 0.23404255319148937,
|
| 115 |
-
"grad_norm": 3.
|
| 116 |
"learning_rate": 0.00019844653278615833,
|
| 117 |
-
"loss": 4.
|
| 118 |
-
"mean_token_accuracy": 0.
|
| 119 |
"num_tokens": 27456.0,
|
| 120 |
"step": 11
|
| 121 |
},
|
| 122 |
{
|
| 123 |
-
"entropy": 0.
|
| 124 |
"epoch": 0.2553191489361702,
|
| 125 |
-
"grad_norm":
|
| 126 |
"learning_rate": 0.00019776556239997146,
|
| 127 |
-
"loss": 4.
|
| 128 |
-
"mean_token_accuracy": 0.
|
| 129 |
"num_tokens": 29914.0,
|
| 130 |
"step": 12
|
| 131 |
},
|
| 132 |
{
|
| 133 |
-
"entropy": 0.
|
| 134 |
"epoch": 0.2765957446808511,
|
| 135 |
-
"grad_norm":
|
| 136 |
"learning_rate": 0.00019696278829718883,
|
| 137 |
-
"loss": 3.
|
| 138 |
-
"mean_token_accuracy": 0.
|
| 139 |
"num_tokens": 32448.0,
|
| 140 |
"step": 13
|
| 141 |
},
|
| 142 |
{
|
| 143 |
-
"entropy": 0.
|
| 144 |
"epoch": 0.2978723404255319,
|
| 145 |
-
"grad_norm":
|
| 146 |
"learning_rate": 0.00019603921063437793,
|
| 147 |
-
"loss": 4.
|
| 148 |
-
"mean_token_accuracy": 0.
|
| 149 |
"num_tokens": 34909.0,
|
| 150 |
"step": 14
|
| 151 |
},
|
| 152 |
{
|
| 153 |
-
"entropy": 0.
|
| 154 |
"epoch": 0.3191489361702128,
|
| 155 |
-
"grad_norm": 3.
|
| 156 |
"learning_rate": 0.0001949959800742991,
|
| 157 |
-
"loss": 4.
|
| 158 |
-
"mean_token_accuracy": 0.
|
| 159 |
"num_tokens": 37476.0,
|
| 160 |
"step": 15
|
| 161 |
},
|
| 162 |
{
|
| 163 |
-
"entropy": 0.
|
| 164 |
"epoch": 0.3404255319148936,
|
| 165 |
-
"grad_norm":
|
| 166 |
"learning_rate": 0.00019383439635232294,
|
| 167 |
-
"loss": 4.
|
| 168 |
-
"mean_token_accuracy": 0.
|
| 169 |
"num_tokens": 39881.0,
|
| 170 |
"step": 16
|
| 171 |
},
|
| 172 |
{
|
| 173 |
-
"entropy": 0.
|
| 174 |
"epoch": 0.3617021276595745,
|
| 175 |
-
"grad_norm":
|
| 176 |
"learning_rate": 0.00019255590665712214,
|
| 177 |
-
"loss": 4.
|
| 178 |
-
"mean_token_accuracy": 0.
|
| 179 |
"num_tokens": 42235.0,
|
| 180 |
"step": 17
|
| 181 |
},
|
| 182 |
{
|
| 183 |
-
"entropy": 0.
|
| 184 |
"epoch": 0.3829787234042553,
|
| 185 |
-
"grad_norm":
|
| 186 |
"learning_rate": 0.0001911621038276542,
|
| 187 |
-
"loss": 4.
|
| 188 |
-
"mean_token_accuracy": 0.
|
| 189 |
"num_tokens": 44687.0,
|
| 190 |
"step": 18
|
| 191 |
},
|
| 192 |
{
|
| 193 |
-
"entropy": 0.
|
| 194 |
"epoch": 0.40425531914893614,
|
| 195 |
-
"grad_norm":
|
| 196 |
"learning_rate": 0.00018965472436868286,
|
| 197 |
-
"loss": 4.
|
| 198 |
-
"mean_token_accuracy": 0.
|
| 199 |
"num_tokens": 47206.0,
|
| 200 |
"step": 19
|
| 201 |
},
|
| 202 |
{
|
| 203 |
-
"entropy": 0.
|
| 204 |
"epoch": 0.425531914893617,
|
| 205 |
-
"grad_norm":
|
| 206 |
"learning_rate": 0.00018803564628730915,
|
| 207 |
-
"loss": 4.
|
| 208 |
-
"mean_token_accuracy": 0.
|
| 209 |
"num_tokens": 49799.0,
|
| 210 |
"step": 20
|
| 211 |
},
|
| 212 |
{
|
| 213 |
-
"entropy": 0.
|
| 214 |
"epoch": 0.44680851063829785,
|
| 215 |
-
"grad_norm": 0.
|
| 216 |
"learning_rate": 0.00018630688675320842,
|
| 217 |
-
"loss": 4.
|
| 218 |
-
"mean_token_accuracy": 0.
|
| 219 |
"num_tokens": 52291.0,
|
| 220 |
"step": 21
|
| 221 |
},
|
| 222 |
{
|
| 223 |
-
"entropy": 0.
|
| 224 |
"epoch": 0.46808510638297873,
|
| 225 |
-
"grad_norm":
|
| 226 |
"learning_rate": 0.0001844705995854882,
|
| 227 |
-
"loss": 3.
|
| 228 |
-
"mean_token_accuracy": 0.
|
| 229 |
"num_tokens": 54812.0,
|
| 230 |
"step": 22
|
| 231 |
},
|
| 232 |
{
|
| 233 |
-
"entropy": 0.
|
| 234 |
"epoch": 0.48936170212765956,
|
| 235 |
-
"grad_norm": 1.
|
| 236 |
"learning_rate": 0.00018252907256929775,
|
| 237 |
-
"loss": 4.
|
| 238 |
-
"mean_token_accuracy": 0.
|
| 239 |
"num_tokens": 57280.0,
|
| 240 |
"step": 23
|
| 241 |
},
|
| 242 |
{
|
| 243 |
-
"entropy": 0.
|
| 244 |
"epoch": 0.5106382978723404,
|
| 245 |
-
"grad_norm":
|
| 246 |
"learning_rate": 0.00018048472460553257,
|
| 247 |
-
"loss": 4.
|
| 248 |
-
"mean_token_accuracy": 0.
|
| 249 |
"num_tokens": 59802.0,
|
| 250 |
"step": 24
|
| 251 |
},
|
| 252 |
{
|
| 253 |
-
"entropy": 0.
|
| 254 |
"epoch": 0.5319148936170213,
|
| 255 |
-
"grad_norm":
|
| 256 |
"learning_rate": 0.00017834010269718526,
|
| 257 |
-
"loss": 4.
|
| 258 |
-
"mean_token_accuracy": 0.
|
| 259 |
"num_tokens": 62271.0,
|
| 260 |
"step": 25
|
| 261 |
},
|
| 262 |
{
|
| 263 |
-
"entropy": 0.
|
| 264 |
"epoch": 0.5531914893617021,
|
| 265 |
-
"grad_norm": 0.
|
| 266 |
"learning_rate": 0.0001760978787760968,
|
| 267 |
-
"loss": 4.
|
| 268 |
-
"mean_token_accuracy": 0.
|
| 269 |
"num_tokens": 64751.0,
|
| 270 |
"step": 26
|
| 271 |
},
|
| 272 |
{
|
| 273 |
-
"entropy": 0.
|
| 274 |
"epoch": 0.574468085106383,
|
| 275 |
-
"grad_norm": 1.
|
| 276 |
"learning_rate": 0.00017376084637406222,
|
| 277 |
-
"loss": 4.
|
| 278 |
-
"mean_token_accuracy": 0.
|
| 279 |
"num_tokens": 67220.0,
|
| 280 |
"step": 27
|
| 281 |
},
|
| 282 |
{
|
| 283 |
-
"entropy": 0.
|
| 284 |
"epoch": 0.5957446808510638,
|
| 285 |
-
"grad_norm":
|
| 286 |
"learning_rate": 0.00017133191714243805,
|
| 287 |
-
"loss": 4.
|
| 288 |
-
"mean_token_accuracy": 0.
|
| 289 |
"num_tokens": 69678.0,
|
| 290 |
"step": 28
|
| 291 |
},
|
| 292 |
{
|
| 293 |
-
"entropy": 0.
|
| 294 |
"epoch": 0.6170212765957447,
|
| 295 |
-
"grad_norm": 1.
|
| 296 |
"learning_rate": 0.00016881411722458688,
|
| 297 |
-
"loss":
|
| 298 |
-
"mean_token_accuracy": 0.
|
| 299 |
"num_tokens": 72158.0,
|
| 300 |
"step": 29
|
| 301 |
},
|
| 302 |
{
|
| 303 |
-
"entropy": 0.
|
| 304 |
"epoch": 0.6382978723404256,
|
| 305 |
-
"grad_norm": 1.
|
| 306 |
"learning_rate": 0.00016621058348568007,
|
| 307 |
-
"loss": 4.
|
| 308 |
-
"mean_token_accuracy": 0.
|
| 309 |
"num_tokens": 74621.0,
|
| 310 |
"step": 30
|
| 311 |
},
|
| 312 |
{
|
| 313 |
-
"entropy": 0.
|
| 314 |
"epoch": 0.6595744680851063,
|
| 315 |
-
"grad_norm":
|
| 316 |
"learning_rate": 0.00016352455960455387,
|
| 317 |
-
"loss": 3.
|
| 318 |
-
"mean_token_accuracy": 0.
|
| 319 |
"num_tokens": 77122.0,
|
| 320 |
"step": 31
|
| 321 |
},
|
| 322 |
{
|
| 323 |
-
"entropy": 0.
|
| 324 |
"epoch": 0.6808510638297872,
|
| 325 |
-
"grad_norm": 0.
|
| 326 |
"learning_rate": 0.0001607593920324899,
|
| 327 |
-
"loss": 4.
|
| 328 |
-
"mean_token_accuracy": 0.
|
| 329 |
"num_tokens": 79658.0,
|
| 330 |
"step": 32
|
| 331 |
},
|
| 332 |
{
|
| 333 |
-
"entropy": 0.
|
| 334 |
"epoch": 0.7021276595744681,
|
| 335 |
-
"grad_norm":
|
| 336 |
"learning_rate": 0.00015791852582395334,
|
| 337 |
-
"loss": 4.
|
| 338 |
-
"mean_token_accuracy": 0.
|
| 339 |
"num_tokens": 82198.0,
|
| 340 |
"step": 33
|
| 341 |
},
|
| 342 |
{
|
| 343 |
-
"entropy": 0.
|
| 344 |
"epoch": 0.723404255319149,
|
| 345 |
-
"grad_norm":
|
| 346 |
"learning_rate": 0.00015500550034448413,
|
| 347 |
-
"loss": 4.
|
| 348 |
-
"mean_token_accuracy": 0.
|
| 349 |
"num_tokens": 84670.0,
|
| 350 |
"step": 34
|
| 351 |
},
|
| 352 |
{
|
| 353 |
-
"entropy": 0.
|
| 354 |
"epoch": 0.7446808510638298,
|
| 355 |
-
"grad_norm":
|
| 356 |
"learning_rate": 0.0001520239448610882,
|
| 357 |
-
"loss": 4.
|
| 358 |
-
"mean_token_accuracy": 0.
|
| 359 |
"num_tokens": 87292.0,
|
| 360 |
"step": 35
|
| 361 |
},
|
| 362 |
{
|
| 363 |
-
"entropy": 0.
|
| 364 |
"epoch": 0.7659574468085106,
|
| 365 |
-
"grad_norm": 0.
|
| 366 |
"learning_rate": 0.00014897757402062284,
|
| 367 |
-
"loss": 4.
|
| 368 |
-
"mean_token_accuracy": 0.
|
| 369 |
"num_tokens": 89830.0,
|
| 370 |
"step": 36
|
| 371 |
},
|
| 372 |
{
|
| 373 |
-
"entropy": 0.
|
| 374 |
"epoch": 0.7872340425531915,
|
| 375 |
-
"grad_norm": 0.
|
| 376 |
"learning_rate": 0.00014587018322180905,
|
| 377 |
-
"loss": 4.
|
| 378 |
-
"mean_token_accuracy": 0.
|
| 379 |
"num_tokens": 92344.0,
|
| 380 |
"step": 37
|
| 381 |
},
|
| 382 |
{
|
| 383 |
-
"entropy": 0.
|
| 384 |
"epoch": 0.8085106382978723,
|
| 385 |
-
"grad_norm": 1.
|
| 386 |
"learning_rate": 0.0001427056438866376,
|
| 387 |
-
"loss": 4.
|
| 388 |
-
"mean_token_accuracy": 0.
|
| 389 |
"num_tokens": 94826.0,
|
| 390 |
"step": 38
|
| 391 |
},
|
| 392 |
{
|
| 393 |
-
"entropy": 0.
|
| 394 |
"epoch": 0.8297872340425532,
|
| 395 |
-
"grad_norm":
|
| 396 |
"learning_rate": 0.00013948789863705912,
|
| 397 |
-
"loss": 4.
|
| 398 |
-
"mean_token_accuracy": 0.
|
| 399 |
"num_tokens": 97290.0,
|
| 400 |
"step": 39
|
| 401 |
},
|
| 402 |
{
|
| 403 |
-
"entropy": 0.
|
| 404 |
"epoch": 0.851063829787234,
|
| 405 |
-
"grad_norm": 0.
|
| 406 |
"learning_rate": 0.00013622095638296826,
|
| 407 |
-
"loss": 4.
|
| 408 |
-
"mean_token_accuracy": 0.
|
| 409 |
"num_tokens": 99776.0,
|
| 410 |
"step": 40
|
| 411 |
},
|
| 412 |
{
|
| 413 |
-
"entropy": 0.
|
| 414 |
"epoch": 0.8723404255319149,
|
| 415 |
-
"grad_norm": 0.
|
| 416 |
"learning_rate": 0.000132908887327601,
|
| 417 |
-
"loss": 3.
|
| 418 |
-
"mean_token_accuracy": 0.
|
| 419 |
"num_tokens": 102278.0,
|
| 420 |
"step": 41
|
| 421 |
},
|
| 422 |
{
|
| 423 |
-
"entropy": 0.
|
| 424 |
"epoch": 0.8936170212765957,
|
| 425 |
-
"grad_norm": 1.
|
| 426 |
"learning_rate": 0.00012955581789656843,
|
| 427 |
-
"loss": 4.
|
| 428 |
-
"mean_token_accuracy": 0.
|
| 429 |
"num_tokens": 104764.0,
|
| 430 |
"step": 42
|
| 431 |
},
|
| 432 |
{
|
| 433 |
-
"entropy": 0.
|
| 434 |
"epoch": 0.9148936170212766,
|
| 435 |
-
"grad_norm": 0.
|
| 436 |
"learning_rate": 0.0001261659255968441,
|
| 437 |
-
"loss": 4.
|
| 438 |
-
"mean_token_accuracy": 0.
|
| 439 |
"num_tokens": 107201.0,
|
| 440 |
"step": 43
|
| 441 |
},
|
| 442 |
{
|
| 443 |
-
"entropy": 0.
|
| 444 |
"epoch": 0.9361702127659575,
|
| 445 |
-
"grad_norm": 0.
|
| 446 |
"learning_rate": 0.00012274343381211066,
|
| 447 |
-
"loss": 4.
|
| 448 |
-
"mean_token_accuracy": 0.
|
| 449 |
"num_tokens": 109660.0,
|
| 450 |
"step": 44
|
| 451 |
},
|
| 452 |
{
|
| 453 |
-
"entropy": 0.
|
| 454 |
"epoch": 0.9574468085106383,
|
| 455 |
-
"grad_norm": 0.
|
| 456 |
"learning_rate": 0.00011929260654094969,
|
| 457 |
-
"loss": 4.
|
| 458 |
-
"mean_token_accuracy": 0.
|
| 459 |
"num_tokens": 112117.0,
|
| 460 |
"step": 45
|
| 461 |
},
|
| 462 |
{
|
| 463 |
-
"entropy": 0.
|
| 464 |
"epoch": 0.9787234042553191,
|
| 465 |
-
"grad_norm":
|
| 466 |
"learning_rate": 0.0001158177430844304,
|
| 467 |
-
"loss": 4.
|
| 468 |
-
"mean_token_accuracy": 0.
|
| 469 |
"num_tokens": 114595.0,
|
| 470 |
"step": 46
|
| 471 |
},
|
| 472 |
{
|
| 473 |
-
"entropy": 0.
|
| 474 |
"epoch": 1.0,
|
| 475 |
-
"grad_norm":
|
| 476 |
"learning_rate": 0.00011232317268971585,
|
| 477 |
-
"loss": 4.
|
| 478 |
-
"mean_token_accuracy": 0.
|
| 479 |
"num_tokens": 117080.0,
|
| 480 |
"step": 47
|
| 481 |
},
|
|
@@ -485,9 +485,9 @@
|
|
| 485 |
"eval_loss": NaN,
|
| 486 |
"eval_mean_token_accuracy": 0.0,
|
| 487 |
"eval_num_tokens": 117080.0,
|
| 488 |
-
"eval_runtime":
|
| 489 |
-
"eval_samples_per_second":
|
| 490 |
-
"eval_steps_per_second":
|
| 491 |
"step": 47
|
| 492 |
}
|
| 493 |
],
|
|
@@ -517,7 +517,7 @@
|
|
| 517 |
"attributes": {}
|
| 518 |
}
|
| 519 |
},
|
| 520 |
-
"total_flos":
|
| 521 |
"train_batch_size": 2,
|
| 522 |
"trial_name": null,
|
| 523 |
"trial_params": null
|
|
|
|
| 10 |
"is_world_process_zero": true,
|
| 11 |
"log_history": [
|
| 12 |
{
|
| 13 |
+
"entropy": 0.8770920187234879,
|
| 14 |
"epoch": 0.02127659574468085,
|
| 15 |
+
"grad_norm": 101.38615417480469,
|
| 16 |
"learning_rate": 0.0,
|
| 17 |
+
"loss": 11.496590614318848,
|
| 18 |
"mean_token_accuracy": 0.22714237496256828,
|
| 19 |
"num_tokens": 2486.0,
|
| 20 |
"step": 1
|
| 21 |
},
|
| 22 |
{
|
| 23 |
+
"entropy": 0.9114853590726852,
|
| 24 |
"epoch": 0.0425531914893617,
|
| 25 |
+
"grad_norm": 96.85296630859375,
|
| 26 |
"learning_rate": 4e-05,
|
| 27 |
+
"loss": 11.215909004211426,
|
| 28 |
"mean_token_accuracy": 0.2649671100080013,
|
| 29 |
"num_tokens": 4959.0,
|
| 30 |
"step": 2
|
| 31 |
},
|
| 32 |
{
|
| 33 |
+
"entropy": 1.2038442194461823,
|
| 34 |
"epoch": 0.06382978723404255,
|
| 35 |
+
"grad_norm": 73.84027862548828,
|
| 36 |
"learning_rate": 8e-05,
|
| 37 |
+
"loss": 9.273573875427246,
|
| 38 |
+
"mean_token_accuracy": 0.37812498956918716,
|
| 39 |
"num_tokens": 7552.0,
|
| 40 |
"step": 3
|
| 41 |
},
|
| 42 |
{
|
| 43 |
+
"entropy": 1.0524671226739883,
|
| 44 |
"epoch": 0.0851063829787234,
|
| 45 |
+
"grad_norm": 30.00477409362793,
|
| 46 |
"learning_rate": 0.00012,
|
| 47 |
+
"loss": 6.997811317443848,
|
| 48 |
+
"mean_token_accuracy": 0.5748837292194366,
|
| 49 |
"num_tokens": 10017.0,
|
| 50 |
"step": 4
|
| 51 |
},
|
| 52 |
{
|
| 53 |
+
"entropy": 1.0943913161754608,
|
| 54 |
"epoch": 0.10638297872340426,
|
| 55 |
+
"grad_norm": 29.77185821533203,
|
| 56 |
"learning_rate": 0.00016,
|
| 57 |
+
"loss": 5.874476432800293,
|
| 58 |
+
"mean_token_accuracy": 0.6206140369176865,
|
| 59 |
"num_tokens": 12542.0,
|
| 60 |
"step": 5
|
| 61 |
},
|
| 62 |
{
|
| 63 |
+
"entropy": 0.690106213092804,
|
| 64 |
"epoch": 0.1276595744680851,
|
| 65 |
+
"grad_norm": 28.456193923950195,
|
| 66 |
"learning_rate": 0.0002,
|
| 67 |
+
"loss": 4.93742036819458,
|
| 68 |
+
"mean_token_accuracy": 0.7391025722026825,
|
| 69 |
"num_tokens": 15108.0,
|
| 70 |
"step": 6
|
| 71 |
},
|
| 72 |
{
|
| 73 |
+
"entropy": 0.42824630439281464,
|
| 74 |
"epoch": 0.14893617021276595,
|
| 75 |
+
"grad_norm": 8.46117877960205,
|
| 76 |
"learning_rate": 0.00019993770622619782,
|
| 77 |
+
"loss": 4.776185512542725,
|
| 78 |
+
"mean_token_accuracy": 0.7670790255069733,
|
| 79 |
"num_tokens": 17715.0,
|
| 80 |
"step": 7
|
| 81 |
},
|
| 82 |
{
|
| 83 |
+
"entropy": 0.6275453418493271,
|
| 84 |
"epoch": 0.1702127659574468,
|
| 85 |
+
"grad_norm": 7.040255069732666,
|
| 86 |
"learning_rate": 0.00019975090251507638,
|
| 87 |
+
"loss": 4.601991653442383,
|
| 88 |
+
"mean_token_accuracy": 0.7641165554523468,
|
| 89 |
"num_tokens": 20143.0,
|
| 90 |
"step": 8
|
| 91 |
},
|
| 92 |
{
|
| 93 |
+
"entropy": 0.49182429164648056,
|
| 94 |
"epoch": 0.19148936170212766,
|
| 95 |
+
"grad_norm": 4.624846458435059,
|
| 96 |
"learning_rate": 0.0001994398216007982,
|
| 97 |
+
"loss": 4.511226654052734,
|
| 98 |
+
"mean_token_accuracy": 0.7724626064300537,
|
| 99 |
"num_tokens": 22656.0,
|
| 100 |
"step": 9
|
| 101 |
},
|
| 102 |
{
|
| 103 |
+
"entropy": 0.626158207654953,
|
| 104 |
"epoch": 0.2127659574468085,
|
| 105 |
+
"grad_norm": 7.813827037811279,
|
| 106 |
"learning_rate": 0.00019900485105144543,
|
| 107 |
+
"loss": 4.358890533447266,
|
| 108 |
"mean_token_accuracy": 0.7753759473562241,
|
| 109 |
"num_tokens": 25094.0,
|
| 110 |
"step": 10
|
| 111 |
},
|
| 112 |
{
|
| 113 |
+
"entropy": 0.5334508866071701,
|
| 114 |
"epoch": 0.23404255319148937,
|
| 115 |
+
"grad_norm": 3.6953277587890625,
|
| 116 |
"learning_rate": 0.00019844653278615833,
|
| 117 |
+
"loss": 4.273573875427246,
|
| 118 |
+
"mean_token_accuracy": 0.7838225364685059,
|
| 119 |
"num_tokens": 27456.0,
|
| 120 |
"step": 11
|
| 121 |
},
|
| 122 |
{
|
| 123 |
+
"entropy": 0.43513786792755127,
|
| 124 |
"epoch": 0.2553191489361702,
|
| 125 |
+
"grad_norm": 2.8964409828186035,
|
| 126 |
"learning_rate": 0.00019776556239997146,
|
| 127 |
+
"loss": 4.085248947143555,
|
| 128 |
+
"mean_token_accuracy": 0.8868782967329025,
|
| 129 |
"num_tokens": 29914.0,
|
| 130 |
"step": 12
|
| 131 |
},
|
| 132 |
{
|
| 133 |
+
"entropy": 0.3346208333969116,
|
| 134 |
"epoch": 0.2765957446808511,
|
| 135 |
+
"grad_norm": 5.369524955749512,
|
| 136 |
"learning_rate": 0.00019696278829718883,
|
| 137 |
+
"loss": 3.968517303466797,
|
| 138 |
+
"mean_token_accuracy": 0.8908246159553528,
|
| 139 |
"num_tokens": 32448.0,
|
| 140 |
"step": 13
|
| 141 |
},
|
| 142 |
{
|
| 143 |
+
"entropy": 0.33365894854068756,
|
| 144 |
"epoch": 0.2978723404255319,
|
| 145 |
+
"grad_norm": 2.550203800201416,
|
| 146 |
"learning_rate": 0.00019603921063437793,
|
| 147 |
+
"loss": 4.0511908531188965,
|
| 148 |
+
"mean_token_accuracy": 0.8805366605520248,
|
| 149 |
"num_tokens": 34909.0,
|
| 150 |
"step": 14
|
| 151 |
},
|
| 152 |
{
|
| 153 |
+
"entropy": 0.25230497866868973,
|
| 154 |
"epoch": 0.3191489361702128,
|
| 155 |
+
"grad_norm": 3.365182876586914,
|
| 156 |
"learning_rate": 0.0001949959800742991,
|
| 157 |
+
"loss": 4.221365928649902,
|
| 158 |
+
"mean_token_accuracy": 0.8763548880815506,
|
| 159 |
"num_tokens": 37476.0,
|
| 160 |
"step": 15
|
| 161 |
},
|
| 162 |
{
|
| 163 |
+
"entropy": 0.21353815868496895,
|
| 164 |
"epoch": 0.3404255319148936,
|
| 165 |
+
"grad_norm": 1.1460461616516113,
|
| 166 |
"learning_rate": 0.00019383439635232294,
|
| 167 |
+
"loss": 4.106394290924072,
|
| 168 |
+
"mean_token_accuracy": 0.8868418335914612,
|
| 169 |
"num_tokens": 39881.0,
|
| 170 |
"step": 16
|
| 171 |
},
|
| 172 |
{
|
| 173 |
+
"entropy": 0.21475103124976158,
|
| 174 |
"epoch": 0.3617021276595745,
|
| 175 |
+
"grad_norm": 3.043959617614746,
|
| 176 |
"learning_rate": 0.00019255590665712214,
|
| 177 |
+
"loss": 4.265631675720215,
|
| 178 |
+
"mean_token_accuracy": 0.8690433949232101,
|
| 179 |
"num_tokens": 42235.0,
|
| 180 |
"step": 17
|
| 181 |
},
|
| 182 |
{
|
| 183 |
+
"entropy": 0.1718740463256836,
|
| 184 |
"epoch": 0.3829787234042553,
|
| 185 |
+
"grad_norm": 0.8078291416168213,
|
| 186 |
"learning_rate": 0.0001911621038276542,
|
| 187 |
+
"loss": 4.106135368347168,
|
| 188 |
+
"mean_token_accuracy": 0.892671525478363,
|
| 189 |
"num_tokens": 44687.0,
|
| 190 |
"step": 18
|
| 191 |
},
|
| 192 |
{
|
| 193 |
+
"entropy": 0.16231479868292809,
|
| 194 |
"epoch": 0.40425531914893614,
|
| 195 |
+
"grad_norm": 0.9561502933502197,
|
| 196 |
"learning_rate": 0.00018965472436868286,
|
| 197 |
+
"loss": 4.120131015777588,
|
| 198 |
+
"mean_token_accuracy": 0.8869824111461639,
|
| 199 |
"num_tokens": 47206.0,
|
| 200 |
"step": 19
|
| 201 |
},
|
| 202 |
{
|
| 203 |
+
"entropy": 0.14364850148558617,
|
| 204 |
"epoch": 0.425531914893617,
|
| 205 |
+
"grad_norm": 0.9734947681427002,
|
| 206 |
"learning_rate": 0.00018803564628730915,
|
| 207 |
+
"loss": 4.03128719329834,
|
| 208 |
+
"mean_token_accuracy": 0.8906020969152451,
|
| 209 |
"num_tokens": 49799.0,
|
| 210 |
"step": 20
|
| 211 |
},
|
| 212 |
{
|
| 213 |
+
"entropy": 0.13312280178070068,
|
| 214 |
"epoch": 0.44680851063829785,
|
| 215 |
+
"grad_norm": 0.4489222764968872,
|
| 216 |
"learning_rate": 0.00018630688675320842,
|
| 217 |
+
"loss": 4.058135032653809,
|
| 218 |
+
"mean_token_accuracy": 0.8986841887235641,
|
| 219 |
"num_tokens": 52291.0,
|
| 220 |
"step": 21
|
| 221 |
},
|
| 222 |
{
|
| 223 |
+
"entropy": 0.13586510717868805,
|
| 224 |
"epoch": 0.46808510638297873,
|
| 225 |
+
"grad_norm": 0.7964894771575928,
|
| 226 |
"learning_rate": 0.0001844705995854882,
|
| 227 |
+
"loss": 3.965346574783325,
|
| 228 |
+
"mean_token_accuracy": 0.8940518647432327,
|
| 229 |
"num_tokens": 54812.0,
|
| 230 |
"step": 22
|
| 231 |
},
|
| 232 |
{
|
| 233 |
+
"entropy": 0.15179748088121414,
|
| 234 |
"epoch": 0.48936170212765956,
|
| 235 |
+
"grad_norm": 1.6409692764282227,
|
| 236 |
"learning_rate": 0.00018252907256929775,
|
| 237 |
+
"loss": 4.181431293487549,
|
| 238 |
+
"mean_token_accuracy": 0.8783541172742844,
|
| 239 |
"num_tokens": 57280.0,
|
| 240 |
"step": 23
|
| 241 |
},
|
| 242 |
{
|
| 243 |
+
"entropy": 0.11831228621304035,
|
| 244 |
"epoch": 0.5106382978723404,
|
| 245 |
+
"grad_norm": 0.7683380842208862,
|
| 246 |
"learning_rate": 0.00018048472460553257,
|
| 247 |
+
"loss": 4.24875545501709,
|
| 248 |
+
"mean_token_accuracy": 0.8903311938047409,
|
| 249 |
"num_tokens": 59802.0,
|
| 250 |
"step": 24
|
| 251 |
},
|
| 252 |
{
|
| 253 |
+
"entropy": 0.15002421662211418,
|
| 254 |
"epoch": 0.5319148936170213,
|
| 255 |
+
"grad_norm": 2.176997661590576,
|
| 256 |
"learning_rate": 0.00017834010269718526,
|
| 257 |
+
"loss": 4.15623664855957,
|
| 258 |
+
"mean_token_accuracy": 0.8820056915283203,
|
| 259 |
"num_tokens": 62271.0,
|
| 260 |
"step": 25
|
| 261 |
},
|
| 262 |
{
|
| 263 |
+
"entropy": 0.11383292451500893,
|
| 264 |
"epoch": 0.5531914893617021,
|
| 265 |
+
"grad_norm": 0.5305500030517578,
|
| 266 |
"learning_rate": 0.0001760978787760968,
|
| 267 |
+
"loss": 4.076779365539551,
|
| 268 |
+
"mean_token_accuracy": 0.8941320031881332,
|
| 269 |
"num_tokens": 64751.0,
|
| 270 |
"step": 26
|
| 271 |
},
|
| 272 |
{
|
| 273 |
+
"entropy": 0.13319513201713562,
|
| 274 |
"epoch": 0.574468085106383,
|
| 275 |
+
"grad_norm": 1.0374587774276733,
|
| 276 |
"learning_rate": 0.00017376084637406222,
|
| 277 |
+
"loss": 4.014706611633301,
|
| 278 |
+
"mean_token_accuracy": 0.8837339729070663,
|
| 279 |
"num_tokens": 67220.0,
|
| 280 |
"step": 27
|
| 281 |
},
|
| 282 |
{
|
| 283 |
+
"entropy": 0.13686015084385872,
|
| 284 |
"epoch": 0.5957446808510638,
|
| 285 |
+
"grad_norm": 1.387152075767517,
|
| 286 |
"learning_rate": 0.00017133191714243805,
|
| 287 |
+
"loss": 4.015310764312744,
|
| 288 |
+
"mean_token_accuracy": 0.8779295533895493,
|
| 289 |
"num_tokens": 69678.0,
|
| 290 |
"step": 28
|
| 291 |
},
|
| 292 |
{
|
| 293 |
+
"entropy": 0.13596300408244133,
|
| 294 |
"epoch": 0.6170212765957447,
|
| 295 |
+
"grad_norm": 1.2698324918746948,
|
| 296 |
"learning_rate": 0.00016881411722458688,
|
| 297 |
+
"loss": 3.992821455001831,
|
| 298 |
+
"mean_token_accuracy": 0.8992939442396164,
|
| 299 |
"num_tokens": 72158.0,
|
| 300 |
"step": 29
|
| 301 |
},
|
| 302 |
{
|
| 303 |
+
"entropy": 0.13812873139977455,
|
| 304 |
"epoch": 0.6382978723404256,
|
| 305 |
+
"grad_norm": 1.9082021713256836,
|
| 306 |
"learning_rate": 0.00016621058348568007,
|
| 307 |
+
"loss": 4.059752464294434,
|
| 308 |
+
"mean_token_accuracy": 0.886225238442421,
|
| 309 |
"num_tokens": 74621.0,
|
| 310 |
"step": 30
|
| 311 |
},
|
| 312 |
{
|
| 313 |
+
"entropy": 0.1471228487789631,
|
| 314 |
"epoch": 0.6595744680851063,
|
| 315 |
+
"grad_norm": 1.0790090560913086,
|
| 316 |
"learning_rate": 0.00016352455960455387,
|
| 317 |
+
"loss": 3.956774950027466,
|
| 318 |
+
"mean_token_accuracy": 0.8888719379901886,
|
| 319 |
"num_tokens": 77122.0,
|
| 320 |
"step": 31
|
| 321 |
},
|
| 322 |
{
|
| 323 |
+
"entropy": 0.13649508357048035,
|
| 324 |
"epoch": 0.6808510638297872,
|
| 325 |
+
"grad_norm": 0.8638296127319336,
|
| 326 |
"learning_rate": 0.0001607593920324899,
|
| 327 |
+
"loss": 4.1457977294921875,
|
| 328 |
+
"mean_token_accuracy": 0.8863866329193115,
|
| 329 |
"num_tokens": 79658.0,
|
| 330 |
"step": 32
|
| 331 |
},
|
| 332 |
{
|
| 333 |
+
"entropy": 0.13422205485403538,
|
| 334 |
"epoch": 0.7021276595744681,
|
| 335 |
+
"grad_norm": 0.8206593990325928,
|
| 336 |
"learning_rate": 0.00015791852582395334,
|
| 337 |
+
"loss": 4.104636192321777,
|
| 338 |
+
"mean_token_accuracy": 0.893946647644043,
|
| 339 |
"num_tokens": 82198.0,
|
| 340 |
"step": 33
|
| 341 |
},
|
| 342 |
{
|
| 343 |
+
"entropy": 0.13717253133654594,
|
| 344 |
"epoch": 0.723404255319149,
|
| 345 |
+
"grad_norm": 0.43719571828842163,
|
| 346 |
"learning_rate": 0.00015500550034448413,
|
| 347 |
+
"loss": 4.031332015991211,
|
| 348 |
+
"mean_token_accuracy": 0.894197016954422,
|
| 349 |
"num_tokens": 84670.0,
|
| 350 |
"step": 34
|
| 351 |
},
|
| 352 |
{
|
| 353 |
+
"entropy": 0.1137513667345047,
|
| 354 |
"epoch": 0.7446808510638298,
|
| 355 |
+
"grad_norm": 1.8441417217254639,
|
| 356 |
"learning_rate": 0.0001520239448610882,
|
| 357 |
+
"loss": 4.112149715423584,
|
| 358 |
+
"mean_token_accuracy": 0.8909876793622971,
|
| 359 |
"num_tokens": 87292.0,
|
| 360 |
"step": 35
|
| 361 |
},
|
| 362 |
{
|
| 363 |
+
"entropy": 0.11223667673766613,
|
| 364 |
"epoch": 0.7659574468085106,
|
| 365 |
+
"grad_norm": 0.4776930809020996,
|
| 366 |
"learning_rate": 0.00014897757402062284,
|
| 367 |
+
"loss": 4.026741027832031,
|
| 368 |
+
"mean_token_accuracy": 0.8924113065004349,
|
| 369 |
"num_tokens": 89830.0,
|
| 370 |
"step": 36
|
| 371 |
},
|
| 372 |
{
|
| 373 |
+
"entropy": 0.12275257520377636,
|
| 374 |
"epoch": 0.7872340425531915,
|
| 375 |
+
"grad_norm": 0.9828954935073853,
|
| 376 |
"learning_rate": 0.00014587018322180905,
|
| 377 |
+
"loss": 4.183655738830566,
|
| 378 |
+
"mean_token_accuracy": 0.8827805668115616,
|
| 379 |
"num_tokens": 92344.0,
|
| 380 |
"step": 37
|
| 381 |
},
|
| 382 |
{
|
| 383 |
+
"entropy": 0.12380701676011086,
|
| 384 |
"epoch": 0.8085106382978723,
|
| 385 |
+
"grad_norm": 1.3710100650787354,
|
| 386 |
"learning_rate": 0.0001427056438866376,
|
| 387 |
+
"loss": 4.003378868103027,
|
| 388 |
+
"mean_token_accuracy": 0.8812988549470901,
|
| 389 |
"num_tokens": 94826.0,
|
| 390 |
"step": 38
|
| 391 |
},
|
| 392 |
{
|
| 393 |
+
"entropy": 0.10968485288321972,
|
| 394 |
"epoch": 0.8297872340425532,
|
| 395 |
+
"grad_norm": 0.37869715690612793,
|
| 396 |
"learning_rate": 0.00013948789863705912,
|
| 397 |
+
"loss": 4.050682067871094,
|
| 398 |
+
"mean_token_accuracy": 0.8941126763820648,
|
| 399 |
"num_tokens": 97290.0,
|
| 400 |
"step": 39
|
| 401 |
},
|
| 402 |
{
|
| 403 |
+
"entropy": 0.12006617523729801,
|
| 404 |
"epoch": 0.851063829787234,
|
| 405 |
+
"grad_norm": 0.5866818428039551,
|
| 406 |
"learning_rate": 0.00013622095638296826,
|
| 407 |
+
"loss": 4.113466262817383,
|
| 408 |
+
"mean_token_accuracy": 0.8894326388835907,
|
| 409 |
"num_tokens": 99776.0,
|
| 410 |
"step": 40
|
| 411 |
},
|
| 412 |
{
|
| 413 |
+
"entropy": 0.09959963150322437,
|
| 414 |
"epoch": 0.8723404255319149,
|
| 415 |
+
"grad_norm": 0.4211389422416687,
|
| 416 |
"learning_rate": 0.000132908887327601,
|
| 417 |
+
"loss": 3.8911352157592773,
|
| 418 |
+
"mean_token_accuracy": 0.8987201750278473,
|
| 419 |
"num_tokens": 102278.0,
|
| 420 |
"step": 41
|
| 421 |
},
|
| 422 |
{
|
| 423 |
+
"entropy": 0.10989912413060665,
|
| 424 |
"epoch": 0.8936170212765957,
|
| 425 |
+
"grad_norm": 1.014770746231079,
|
| 426 |
"learning_rate": 0.00012955581789656843,
|
| 427 |
+
"loss": 4.067371845245361,
|
| 428 |
+
"mean_token_accuracy": 0.8916666656732559,
|
| 429 |
"num_tokens": 104764.0,
|
| 430 |
"step": 42
|
| 431 |
},
|
| 432 |
{
|
| 433 |
+
"entropy": 0.11506957560777664,
|
| 434 |
"epoch": 0.9148936170212766,
|
| 435 |
+
"grad_norm": 0.4580586552619934,
|
| 436 |
"learning_rate": 0.0001261659255968441,
|
| 437 |
+
"loss": 4.101069927215576,
|
| 438 |
+
"mean_token_accuracy": 0.8936023861169815,
|
| 439 |
"num_tokens": 107201.0,
|
| 440 |
"step": 43
|
| 441 |
},
|
| 442 |
{
|
| 443 |
+
"entropy": 0.10838168673217297,
|
| 444 |
"epoch": 0.9361702127659575,
|
| 445 |
+
"grad_norm": 0.4166942536830902,
|
| 446 |
"learning_rate": 0.00012274343381211066,
|
| 447 |
+
"loss": 4.025703430175781,
|
| 448 |
+
"mean_token_accuracy": 0.8947224318981171,
|
| 449 |
"num_tokens": 109660.0,
|
| 450 |
"step": 44
|
| 451 |
},
|
| 452 |
{
|
| 453 |
+
"entropy": 0.09614014439284801,
|
| 454 |
"epoch": 0.9574468085106383,
|
| 455 |
+
"grad_norm": 0.9769757390022278,
|
| 456 |
"learning_rate": 0.00011929260654094969,
|
| 457 |
+
"loss": 4.121439456939697,
|
| 458 |
+
"mean_token_accuracy": 0.8903171271085739,
|
| 459 |
"num_tokens": 112117.0,
|
| 460 |
"step": 45
|
| 461 |
},
|
| 462 |
{
|
| 463 |
+
"entropy": 0.11138966307044029,
|
| 464 |
"epoch": 0.9787234042553191,
|
| 465 |
+
"grad_norm": 1.5290015935897827,
|
| 466 |
"learning_rate": 0.0001158177430844304,
|
| 467 |
+
"loss": 4.022660732269287,
|
| 468 |
+
"mean_token_accuracy": 0.8867548704147339,
|
| 469 |
"num_tokens": 114595.0,
|
| 470 |
"step": 46
|
| 471 |
},
|
| 472 |
{
|
| 473 |
+
"entropy": 0.10535211116075516,
|
| 474 |
"epoch": 1.0,
|
| 475 |
+
"grad_norm": 0.6933005452156067,
|
| 476 |
"learning_rate": 0.00011232317268971585,
|
| 477 |
+
"loss": 4.150263786315918,
|
| 478 |
+
"mean_token_accuracy": 0.8926616609096527,
|
| 479 |
"num_tokens": 117080.0,
|
| 480 |
"step": 47
|
| 481 |
},
|
|
|
|
| 485 |
"eval_loss": NaN,
|
| 486 |
"eval_mean_token_accuracy": 0.0,
|
| 487 |
"eval_num_tokens": 117080.0,
|
| 488 |
+
"eval_runtime": 14.1972,
|
| 489 |
+
"eval_samples_per_second": 21.131,
|
| 490 |
+
"eval_steps_per_second": 5.283,
|
| 491 |
"step": 47
|
| 492 |
}
|
| 493 |
],
|
|
|
|
| 517 |
"attributes": {}
|
| 518 |
}
|
| 519 |
},
|
| 520 |
+
"total_flos": 196239614279680.0,
|
| 521 |
"train_batch_size": 2,
|
| 522 |
"trial_name": null,
|
| 523 |
"trial_params": null
|
checkpoint-47/training_args.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 5496
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:49a5fd350f76aacdefac1c174b863cb237ced8dddcf5626a48a21ab11428ac63
|
| 3 |
size 5496
|
checkpoint-94/adapter_config.json
CHANGED
|
@@ -32,23 +32,21 @@
|
|
| 32 |
"qalora_group_size": 16,
|
| 33 |
"r": 32,
|
| 34 |
"rank_pattern": {
|
| 35 |
-
"
|
| 36 |
-
"gate_proj": 32,
|
| 37 |
"k_proj": 32,
|
| 38 |
"o_proj": 32,
|
|
|
|
| 39 |
"q_proj": 32,
|
| 40 |
-
"up_proj": 32,
|
| 41 |
"v_proj": 32
|
| 42 |
},
|
| 43 |
"revision": null,
|
| 44 |
"target_modules": [
|
| 45 |
-
"o_proj",
|
| 46 |
-
"down_proj",
|
| 47 |
-
"v_proj",
|
| 48 |
-
"up_proj",
|
| 49 |
-
"q_proj",
|
| 50 |
"k_proj",
|
| 51 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
| 52 |
],
|
| 53 |
"target_parameters": null,
|
| 54 |
"task_type": "CAUSAL_LM",
|
|
|
|
| 32 |
"qalora_group_size": 16,
|
| 33 |
"r": 32,
|
| 34 |
"rank_pattern": {
|
| 35 |
+
"input_linear": 32,
|
|
|
|
| 36 |
"k_proj": 32,
|
| 37 |
"o_proj": 32,
|
| 38 |
+
"output_linear": 32,
|
| 39 |
"q_proj": 32,
|
|
|
|
| 40 |
"v_proj": 32
|
| 41 |
},
|
| 42 |
"revision": null,
|
| 43 |
"target_modules": [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
"k_proj",
|
| 45 |
+
"v_proj",
|
| 46 |
+
"output_linear",
|
| 47 |
+
"input_linear",
|
| 48 |
+
"o_proj",
|
| 49 |
+
"q_proj"
|
| 50 |
],
|
| 51 |
"target_parameters": null,
|
| 52 |
"task_type": "CAUSAL_LM",
|
checkpoint-94/adapter_model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c53817328b96754c14be89373a8eb12fa045594a449a585e99c570db7202904a
|
| 3 |
+
size 53261144
|
checkpoint-94/optimizer.pt
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:82b1627bdf9d94009fdfabf7f86edd4d1c37ec8cb9478ed6e8c1b72e9a68d008
|
| 3 |
+
size 106712578
|
checkpoint-94/rng_state_0.pth
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 15024
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:abac2db5d0310c6cdc771319af673fcea21b4e0db062931c35dac4117514fef5
|
| 3 |
size 15024
|
checkpoint-94/rng_state_1.pth
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 15024
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cfaef057d22d3b5da65a053256b1f394dacd89cbd6cf33d4925c56938100d677
|
| 3 |
size 15024
|
checkpoint-94/rng_state_2.pth
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 15024
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:74cb7993ff2c68e21555e72cc8972b98cdddbd83a84ede67fe547e5bff780110
|
| 3 |
size 15024
|
checkpoint-94/rng_state_3.pth
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 15024
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ba1d0fab2d7e106334859f1f2dacce0b331719900a9c0495e597387ad5d20d6c
|
| 3 |
size 15024
|
checkpoint-94/trainer_state.json
CHANGED
|
@@ -10,472 +10,472 @@
|
|
| 10 |
"is_world_process_zero": true,
|
| 11 |
"log_history": [
|
| 12 |
{
|
| 13 |
-
"entropy": 0.
|
| 14 |
"epoch": 0.02127659574468085,
|
| 15 |
-
"grad_norm":
|
| 16 |
"learning_rate": 0.0,
|
| 17 |
-
"loss": 11.
|
| 18 |
"mean_token_accuracy": 0.22714237496256828,
|
| 19 |
"num_tokens": 2486.0,
|
| 20 |
"step": 1
|
| 21 |
},
|
| 22 |
{
|
| 23 |
-
"entropy": 0.
|
| 24 |
"epoch": 0.0425531914893617,
|
| 25 |
-
"grad_norm":
|
| 26 |
"learning_rate": 4e-05,
|
| 27 |
-
"loss": 11.
|
| 28 |
"mean_token_accuracy": 0.2649671100080013,
|
| 29 |
"num_tokens": 4959.0,
|
| 30 |
"step": 2
|
| 31 |
},
|
| 32 |
{
|
| 33 |
-
"entropy": 1.
|
| 34 |
"epoch": 0.06382978723404255,
|
| 35 |
-
"grad_norm":
|
| 36 |
"learning_rate": 8e-05,
|
| 37 |
-
"loss": 9.
|
| 38 |
-
"mean_token_accuracy": 0.
|
| 39 |
"num_tokens": 7552.0,
|
| 40 |
"step": 3
|
| 41 |
},
|
| 42 |
{
|
| 43 |
-
"entropy": 1.
|
| 44 |
"epoch": 0.0851063829787234,
|
| 45 |
-
"grad_norm":
|
| 46 |
"learning_rate": 0.00012,
|
| 47 |
-
"loss": 6.
|
| 48 |
-
"mean_token_accuracy": 0.
|
| 49 |
"num_tokens": 10017.0,
|
| 50 |
"step": 4
|
| 51 |
},
|
| 52 |
{
|
| 53 |
-
"entropy": 1.
|
| 54 |
"epoch": 0.10638297872340426,
|
| 55 |
-
"grad_norm":
|
| 56 |
"learning_rate": 0.00016,
|
| 57 |
-
"loss": 5.
|
| 58 |
-
"mean_token_accuracy": 0.
|
| 59 |
"num_tokens": 12542.0,
|
| 60 |
"step": 5
|
| 61 |
},
|
| 62 |
{
|
| 63 |
-
"entropy": 0.
|
| 64 |
"epoch": 0.1276595744680851,
|
| 65 |
-
"grad_norm":
|
| 66 |
"learning_rate": 0.0002,
|
| 67 |
-
"loss":
|
| 68 |
-
"mean_token_accuracy": 0.
|
| 69 |
"num_tokens": 15108.0,
|
| 70 |
"step": 6
|
| 71 |
},
|
| 72 |
{
|
| 73 |
-
"entropy": 0.
|
| 74 |
"epoch": 0.14893617021276595,
|
| 75 |
-
"grad_norm": 8.
|
| 76 |
"learning_rate": 0.00019993770622619782,
|
| 77 |
-
"loss": 4.
|
| 78 |
-
"mean_token_accuracy": 0.
|
| 79 |
"num_tokens": 17715.0,
|
| 80 |
"step": 7
|
| 81 |
},
|
| 82 |
{
|
| 83 |
-
"entropy": 0.
|
| 84 |
"epoch": 0.1702127659574468,
|
| 85 |
-
"grad_norm": 7.
|
| 86 |
"learning_rate": 0.00019975090251507638,
|
| 87 |
-
"loss": 4.
|
| 88 |
-
"mean_token_accuracy": 0.
|
| 89 |
"num_tokens": 20143.0,
|
| 90 |
"step": 8
|
| 91 |
},
|
| 92 |
{
|
| 93 |
-
"entropy": 0.
|
| 94 |
"epoch": 0.19148936170212766,
|
| 95 |
-
"grad_norm": 4.
|
| 96 |
"learning_rate": 0.0001994398216007982,
|
| 97 |
-
"loss": 4.
|
| 98 |
-
"mean_token_accuracy": 0.
|
| 99 |
"num_tokens": 22656.0,
|
| 100 |
"step": 9
|
| 101 |
},
|
| 102 |
{
|
| 103 |
-
"entropy": 0.
|
| 104 |
"epoch": 0.2127659574468085,
|
| 105 |
-
"grad_norm":
|
| 106 |
"learning_rate": 0.00019900485105144543,
|
| 107 |
-
"loss": 4.
|
| 108 |
"mean_token_accuracy": 0.7753759473562241,
|
| 109 |
"num_tokens": 25094.0,
|
| 110 |
"step": 10
|
| 111 |
},
|
| 112 |
{
|
| 113 |
-
"entropy": 0.
|
| 114 |
"epoch": 0.23404255319148937,
|
| 115 |
-
"grad_norm": 3.
|
| 116 |
"learning_rate": 0.00019844653278615833,
|
| 117 |
-
"loss": 4.
|
| 118 |
-
"mean_token_accuracy": 0.
|
| 119 |
"num_tokens": 27456.0,
|
| 120 |
"step": 11
|
| 121 |
},
|
| 122 |
{
|
| 123 |
-
"entropy": 0.
|
| 124 |
"epoch": 0.2553191489361702,
|
| 125 |
-
"grad_norm":
|
| 126 |
"learning_rate": 0.00019776556239997146,
|
| 127 |
-
"loss": 4.
|
| 128 |
-
"mean_token_accuracy": 0.
|
| 129 |
"num_tokens": 29914.0,
|
| 130 |
"step": 12
|
| 131 |
},
|
| 132 |
{
|
| 133 |
-
"entropy": 0.
|
| 134 |
"epoch": 0.2765957446808511,
|
| 135 |
-
"grad_norm":
|
| 136 |
"learning_rate": 0.00019696278829718883,
|
| 137 |
-
"loss": 3.
|
| 138 |
-
"mean_token_accuracy": 0.
|
| 139 |
"num_tokens": 32448.0,
|
| 140 |
"step": 13
|
| 141 |
},
|
| 142 |
{
|
| 143 |
-
"entropy": 0.
|
| 144 |
"epoch": 0.2978723404255319,
|
| 145 |
-
"grad_norm":
|
| 146 |
"learning_rate": 0.00019603921063437793,
|
| 147 |
-
"loss": 4.
|
| 148 |
-
"mean_token_accuracy": 0.
|
| 149 |
"num_tokens": 34909.0,
|
| 150 |
"step": 14
|
| 151 |
},
|
| 152 |
{
|
| 153 |
-
"entropy": 0.
|
| 154 |
"epoch": 0.3191489361702128,
|
| 155 |
-
"grad_norm": 3.
|
| 156 |
"learning_rate": 0.0001949959800742991,
|
| 157 |
-
"loss": 4.
|
| 158 |
-
"mean_token_accuracy": 0.
|
| 159 |
"num_tokens": 37476.0,
|
| 160 |
"step": 15
|
| 161 |
},
|
| 162 |
{
|
| 163 |
-
"entropy": 0.
|
| 164 |
"epoch": 0.3404255319148936,
|
| 165 |
-
"grad_norm":
|
| 166 |
"learning_rate": 0.00019383439635232294,
|
| 167 |
-
"loss": 4.
|
| 168 |
-
"mean_token_accuracy": 0.
|
| 169 |
"num_tokens": 39881.0,
|
| 170 |
"step": 16
|
| 171 |
},
|
| 172 |
{
|
| 173 |
-
"entropy": 0.
|
| 174 |
"epoch": 0.3617021276595745,
|
| 175 |
-
"grad_norm":
|
| 176 |
"learning_rate": 0.00019255590665712214,
|
| 177 |
-
"loss": 4.
|
| 178 |
-
"mean_token_accuracy": 0.
|
| 179 |
"num_tokens": 42235.0,
|
| 180 |
"step": 17
|
| 181 |
},
|
| 182 |
{
|
| 183 |
-
"entropy": 0.
|
| 184 |
"epoch": 0.3829787234042553,
|
| 185 |
-
"grad_norm":
|
| 186 |
"learning_rate": 0.0001911621038276542,
|
| 187 |
-
"loss": 4.
|
| 188 |
-
"mean_token_accuracy": 0.
|
| 189 |
"num_tokens": 44687.0,
|
| 190 |
"step": 18
|
| 191 |
},
|
| 192 |
{
|
| 193 |
-
"entropy": 0.
|
| 194 |
"epoch": 0.40425531914893614,
|
| 195 |
-
"grad_norm":
|
| 196 |
"learning_rate": 0.00018965472436868286,
|
| 197 |
-
"loss": 4.
|
| 198 |
-
"mean_token_accuracy": 0.
|
| 199 |
"num_tokens": 47206.0,
|
| 200 |
"step": 19
|
| 201 |
},
|
| 202 |
{
|
| 203 |
-
"entropy": 0.
|
| 204 |
"epoch": 0.425531914893617,
|
| 205 |
-
"grad_norm":
|
| 206 |
"learning_rate": 0.00018803564628730915,
|
| 207 |
-
"loss": 4.
|
| 208 |
-
"mean_token_accuracy": 0.
|
| 209 |
"num_tokens": 49799.0,
|
| 210 |
"step": 20
|
| 211 |
},
|
| 212 |
{
|
| 213 |
-
"entropy": 0.
|
| 214 |
"epoch": 0.44680851063829785,
|
| 215 |
-
"grad_norm": 0.
|
| 216 |
"learning_rate": 0.00018630688675320842,
|
| 217 |
-
"loss": 4.
|
| 218 |
-
"mean_token_accuracy": 0.
|
| 219 |
"num_tokens": 52291.0,
|
| 220 |
"step": 21
|
| 221 |
},
|
| 222 |
{
|
| 223 |
-
"entropy": 0.
|
| 224 |
"epoch": 0.46808510638297873,
|
| 225 |
-
"grad_norm":
|
| 226 |
"learning_rate": 0.0001844705995854882,
|
| 227 |
-
"loss": 3.
|
| 228 |
-
"mean_token_accuracy": 0.
|
| 229 |
"num_tokens": 54812.0,
|
| 230 |
"step": 22
|
| 231 |
},
|
| 232 |
{
|
| 233 |
-
"entropy": 0.
|
| 234 |
"epoch": 0.48936170212765956,
|
| 235 |
-
"grad_norm": 1.
|
| 236 |
"learning_rate": 0.00018252907256929775,
|
| 237 |
-
"loss": 4.
|
| 238 |
-
"mean_token_accuracy": 0.
|
| 239 |
"num_tokens": 57280.0,
|
| 240 |
"step": 23
|
| 241 |
},
|
| 242 |
{
|
| 243 |
-
"entropy": 0.
|
| 244 |
"epoch": 0.5106382978723404,
|
| 245 |
-
"grad_norm":
|
| 246 |
"learning_rate": 0.00018048472460553257,
|
| 247 |
-
"loss": 4.
|
| 248 |
-
"mean_token_accuracy": 0.
|
| 249 |
"num_tokens": 59802.0,
|
| 250 |
"step": 24
|
| 251 |
},
|
| 252 |
{
|
| 253 |
-
"entropy": 0.
|
| 254 |
"epoch": 0.5319148936170213,
|
| 255 |
-
"grad_norm":
|
| 256 |
"learning_rate": 0.00017834010269718526,
|
| 257 |
-
"loss": 4.
|
| 258 |
-
"mean_token_accuracy": 0.
|
| 259 |
"num_tokens": 62271.0,
|
| 260 |
"step": 25
|
| 261 |
},
|
| 262 |
{
|
| 263 |
-
"entropy": 0.
|
| 264 |
"epoch": 0.5531914893617021,
|
| 265 |
-
"grad_norm": 0.
|
| 266 |
"learning_rate": 0.0001760978787760968,
|
| 267 |
-
"loss": 4.
|
| 268 |
-
"mean_token_accuracy": 0.
|
| 269 |
"num_tokens": 64751.0,
|
| 270 |
"step": 26
|
| 271 |
},
|
| 272 |
{
|
| 273 |
-
"entropy": 0.
|
| 274 |
"epoch": 0.574468085106383,
|
| 275 |
-
"grad_norm": 1.
|
| 276 |
"learning_rate": 0.00017376084637406222,
|
| 277 |
-
"loss": 4.
|
| 278 |
-
"mean_token_accuracy": 0.
|
| 279 |
"num_tokens": 67220.0,
|
| 280 |
"step": 27
|
| 281 |
},
|
| 282 |
{
|
| 283 |
-
"entropy": 0.
|
| 284 |
"epoch": 0.5957446808510638,
|
| 285 |
-
"grad_norm":
|
| 286 |
"learning_rate": 0.00017133191714243805,
|
| 287 |
-
"loss": 4.
|
| 288 |
-
"mean_token_accuracy": 0.
|
| 289 |
"num_tokens": 69678.0,
|
| 290 |
"step": 28
|
| 291 |
},
|
| 292 |
{
|
| 293 |
-
"entropy": 0.
|
| 294 |
"epoch": 0.6170212765957447,
|
| 295 |
-
"grad_norm": 1.
|
| 296 |
"learning_rate": 0.00016881411722458688,
|
| 297 |
-
"loss":
|
| 298 |
-
"mean_token_accuracy": 0.
|
| 299 |
"num_tokens": 72158.0,
|
| 300 |
"step": 29
|
| 301 |
},
|
| 302 |
{
|
| 303 |
-
"entropy": 0.
|
| 304 |
"epoch": 0.6382978723404256,
|
| 305 |
-
"grad_norm": 1.
|
| 306 |
"learning_rate": 0.00016621058348568007,
|
| 307 |
-
"loss": 4.
|
| 308 |
-
"mean_token_accuracy": 0.
|
| 309 |
"num_tokens": 74621.0,
|
| 310 |
"step": 30
|
| 311 |
},
|
| 312 |
{
|
| 313 |
-
"entropy": 0.
|
| 314 |
"epoch": 0.6595744680851063,
|
| 315 |
-
"grad_norm":
|
| 316 |
"learning_rate": 0.00016352455960455387,
|
| 317 |
-
"loss": 3.
|
| 318 |
-
"mean_token_accuracy": 0.
|
| 319 |
"num_tokens": 77122.0,
|
| 320 |
"step": 31
|
| 321 |
},
|
| 322 |
{
|
| 323 |
-
"entropy": 0.
|
| 324 |
"epoch": 0.6808510638297872,
|
| 325 |
-
"grad_norm": 0.
|
| 326 |
"learning_rate": 0.0001607593920324899,
|
| 327 |
-
"loss": 4.
|
| 328 |
-
"mean_token_accuracy": 0.
|
| 329 |
"num_tokens": 79658.0,
|
| 330 |
"step": 32
|
| 331 |
},
|
| 332 |
{
|
| 333 |
-
"entropy": 0.
|
| 334 |
"epoch": 0.7021276595744681,
|
| 335 |
-
"grad_norm":
|
| 336 |
"learning_rate": 0.00015791852582395334,
|
| 337 |
-
"loss": 4.
|
| 338 |
-
"mean_token_accuracy": 0.
|
| 339 |
"num_tokens": 82198.0,
|
| 340 |
"step": 33
|
| 341 |
},
|
| 342 |
{
|
| 343 |
-
"entropy": 0.
|
| 344 |
"epoch": 0.723404255319149,
|
| 345 |
-
"grad_norm":
|
| 346 |
"learning_rate": 0.00015500550034448413,
|
| 347 |
-
"loss": 4.
|
| 348 |
-
"mean_token_accuracy": 0.
|
| 349 |
"num_tokens": 84670.0,
|
| 350 |
"step": 34
|
| 351 |
},
|
| 352 |
{
|
| 353 |
-
"entropy": 0.
|
| 354 |
"epoch": 0.7446808510638298,
|
| 355 |
-
"grad_norm":
|
| 356 |
"learning_rate": 0.0001520239448610882,
|
| 357 |
-
"loss": 4.
|
| 358 |
-
"mean_token_accuracy": 0.
|
| 359 |
"num_tokens": 87292.0,
|
| 360 |
"step": 35
|
| 361 |
},
|
| 362 |
{
|
| 363 |
-
"entropy": 0.
|
| 364 |
"epoch": 0.7659574468085106,
|
| 365 |
-
"grad_norm": 0.
|
| 366 |
"learning_rate": 0.00014897757402062284,
|
| 367 |
-
"loss": 4.
|
| 368 |
-
"mean_token_accuracy": 0.
|
| 369 |
"num_tokens": 89830.0,
|
| 370 |
"step": 36
|
| 371 |
},
|
| 372 |
{
|
| 373 |
-
"entropy": 0.
|
| 374 |
"epoch": 0.7872340425531915,
|
| 375 |
-
"grad_norm": 0.
|
| 376 |
"learning_rate": 0.00014587018322180905,
|
| 377 |
-
"loss": 4.
|
| 378 |
-
"mean_token_accuracy": 0.
|
| 379 |
"num_tokens": 92344.0,
|
| 380 |
"step": 37
|
| 381 |
},
|
| 382 |
{
|
| 383 |
-
"entropy": 0.
|
| 384 |
"epoch": 0.8085106382978723,
|
| 385 |
-
"grad_norm": 1.
|
| 386 |
"learning_rate": 0.0001427056438866376,
|
| 387 |
-
"loss": 4.
|
| 388 |
-
"mean_token_accuracy": 0.
|
| 389 |
"num_tokens": 94826.0,
|
| 390 |
"step": 38
|
| 391 |
},
|
| 392 |
{
|
| 393 |
-
"entropy": 0.
|
| 394 |
"epoch": 0.8297872340425532,
|
| 395 |
-
"grad_norm":
|
| 396 |
"learning_rate": 0.00013948789863705912,
|
| 397 |
-
"loss": 4.
|
| 398 |
-
"mean_token_accuracy": 0.
|
| 399 |
"num_tokens": 97290.0,
|
| 400 |
"step": 39
|
| 401 |
},
|
| 402 |
{
|
| 403 |
-
"entropy": 0.
|
| 404 |
"epoch": 0.851063829787234,
|
| 405 |
-
"grad_norm": 0.
|
| 406 |
"learning_rate": 0.00013622095638296826,
|
| 407 |
-
"loss": 4.
|
| 408 |
-
"mean_token_accuracy": 0.
|
| 409 |
"num_tokens": 99776.0,
|
| 410 |
"step": 40
|
| 411 |
},
|
| 412 |
{
|
| 413 |
-
"entropy": 0.
|
| 414 |
"epoch": 0.8723404255319149,
|
| 415 |
-
"grad_norm": 0.
|
| 416 |
"learning_rate": 0.000132908887327601,
|
| 417 |
-
"loss": 3.
|
| 418 |
-
"mean_token_accuracy": 0.
|
| 419 |
"num_tokens": 102278.0,
|
| 420 |
"step": 41
|
| 421 |
},
|
| 422 |
{
|
| 423 |
-
"entropy": 0.
|
| 424 |
"epoch": 0.8936170212765957,
|
| 425 |
-
"grad_norm": 1.
|
| 426 |
"learning_rate": 0.00012955581789656843,
|
| 427 |
-
"loss": 4.
|
| 428 |
-
"mean_token_accuracy": 0.
|
| 429 |
"num_tokens": 104764.0,
|
| 430 |
"step": 42
|
| 431 |
},
|
| 432 |
{
|
| 433 |
-
"entropy": 0.
|
| 434 |
"epoch": 0.9148936170212766,
|
| 435 |
-
"grad_norm": 0.
|
| 436 |
"learning_rate": 0.0001261659255968441,
|
| 437 |
-
"loss": 4.
|
| 438 |
-
"mean_token_accuracy": 0.
|
| 439 |
"num_tokens": 107201.0,
|
| 440 |
"step": 43
|
| 441 |
},
|
| 442 |
{
|
| 443 |
-
"entropy": 0.
|
| 444 |
"epoch": 0.9361702127659575,
|
| 445 |
-
"grad_norm": 0.
|
| 446 |
"learning_rate": 0.00012274343381211066,
|
| 447 |
-
"loss": 4.
|
| 448 |
-
"mean_token_accuracy": 0.
|
| 449 |
"num_tokens": 109660.0,
|
| 450 |
"step": 44
|
| 451 |
},
|
| 452 |
{
|
| 453 |
-
"entropy": 0.
|
| 454 |
"epoch": 0.9574468085106383,
|
| 455 |
-
"grad_norm": 0.
|
| 456 |
"learning_rate": 0.00011929260654094969,
|
| 457 |
-
"loss": 4.
|
| 458 |
-
"mean_token_accuracy": 0.
|
| 459 |
"num_tokens": 112117.0,
|
| 460 |
"step": 45
|
| 461 |
},
|
| 462 |
{
|
| 463 |
-
"entropy": 0.
|
| 464 |
"epoch": 0.9787234042553191,
|
| 465 |
-
"grad_norm":
|
| 466 |
"learning_rate": 0.0001158177430844304,
|
| 467 |
-
"loss": 4.
|
| 468 |
-
"mean_token_accuracy": 0.
|
| 469 |
"num_tokens": 114595.0,
|
| 470 |
"step": 46
|
| 471 |
},
|
| 472 |
{
|
| 473 |
-
"entropy": 0.
|
| 474 |
"epoch": 1.0,
|
| 475 |
-
"grad_norm":
|
| 476 |
"learning_rate": 0.00011232317268971585,
|
| 477 |
-
"loss": 4.
|
| 478 |
-
"mean_token_accuracy": 0.
|
| 479 |
"num_tokens": 117080.0,
|
| 480 |
"step": 47
|
| 481 |
},
|
|
@@ -485,477 +485,477 @@
|
|
| 485 |
"eval_loss": NaN,
|
| 486 |
"eval_mean_token_accuracy": 0.0,
|
| 487 |
"eval_num_tokens": 117080.0,
|
| 488 |
-
"eval_runtime":
|
| 489 |
-
"eval_samples_per_second":
|
| 490 |
-
"eval_steps_per_second":
|
| 491 |
"step": 47
|
| 492 |
},
|
| 493 |
{
|
| 494 |
-
"entropy": 0.
|
| 495 |
"epoch": 1.0212765957446808,
|
| 496 |
-
"grad_norm": 0.
|
| 497 |
"learning_rate": 0.00010881324915636019,
|
| 498 |
-
"loss": 4.
|
| 499 |
-
"mean_token_accuracy": 0.
|
| 500 |
"num_tokens": 119621.0,
|
| 501 |
"step": 48
|
| 502 |
},
|
| 503 |
{
|
| 504 |
-
"entropy": 0.
|
| 505 |
"epoch": 1.0425531914893618,
|
| 506 |
-
"grad_norm":
|
| 507 |
"learning_rate": 0.00010529234541201631,
|
| 508 |
-
"loss": 4.
|
| 509 |
-
"mean_token_accuracy": 0.
|
| 510 |
"num_tokens": 122130.0,
|
| 511 |
"step": 49
|
| 512 |
},
|
| 513 |
{
|
| 514 |
-
"entropy": 0.
|
| 515 |
"epoch": 1.0638297872340425,
|
| 516 |
-
"grad_norm":
|
| 517 |
"learning_rate": 0.00010176484806431288,
|
| 518 |
-
"loss": 3.
|
| 519 |
-
"mean_token_accuracy": 0.
|
| 520 |
"num_tokens": 124637.0,
|
| 521 |
"step": 50
|
| 522 |
},
|
| 523 |
{
|
| 524 |
-
"entropy": 0.
|
| 525 |
"epoch": 1.0851063829787233,
|
| 526 |
-
"grad_norm": 0.
|
| 527 |
"learning_rate": 9.823515193568715e-05,
|
| 528 |
-
"loss": 4.
|
| 529 |
-
"mean_token_accuracy": 0.
|
| 530 |
"num_tokens": 127112.0,
|
| 531 |
"step": 51
|
| 532 |
},
|
| 533 |
{
|
| 534 |
-
"entropy": 0.
|
| 535 |
"epoch": 1.1063829787234043,
|
| 536 |
-
"grad_norm":
|
| 537 |
"learning_rate": 9.470765458798368e-05,
|
| 538 |
-
"loss": 4.
|
| 539 |
-
"mean_token_accuracy": 0.
|
| 540 |
"num_tokens": 129587.0,
|
| 541 |
"step": 52
|
| 542 |
},
|
| 543 |
{
|
| 544 |
-
"entropy": 0.
|
| 545 |
"epoch": 1.127659574468085,
|
| 546 |
-
"grad_norm":
|
| 547 |
"learning_rate": 9.118675084363986e-05,
|
| 548 |
-
"loss": 4.
|
| 549 |
-
"mean_token_accuracy": 0.
|
| 550 |
"num_tokens": 132070.0,
|
| 551 |
"step": 53
|
| 552 |
},
|
| 553 |
{
|
| 554 |
-
"entropy": 0.
|
| 555 |
"epoch": 1.148936170212766,
|
| 556 |
-
"grad_norm": 0.
|
| 557 |
"learning_rate": 8.767682731028415e-05,
|
| 558 |
-
"loss": 4.
|
| 559 |
-
"mean_token_accuracy": 0.
|
| 560 |
"num_tokens": 134579.0,
|
| 561 |
"step": 54
|
| 562 |
},
|
| 563 |
{
|
| 564 |
-
"entropy": 0.
|
| 565 |
"epoch": 1.1702127659574468,
|
| 566 |
-
"grad_norm": 0.
|
| 567 |
"learning_rate": 8.418225691556962e-05,
|
| 568 |
-
"loss": 4.
|
| 569 |
"mean_token_accuracy": 0.8960863649845123,
|
| 570 |
"num_tokens": 136943.0,
|
| 571 |
"step": 55
|
| 572 |
},
|
| 573 |
{
|
| 574 |
-
"entropy": 0.
|
| 575 |
"epoch": 1.1914893617021276,
|
| 576 |
-
"grad_norm": 0.
|
| 577 |
"learning_rate": 8.070739345905032e-05,
|
| 578 |
-
"loss": 4.
|
| 579 |
-
"mean_token_accuracy": 0.
|
| 580 |
"num_tokens": 139492.0,
|
| 581 |
"step": 56
|
| 582 |
},
|
| 583 |
{
|
| 584 |
-
"entropy": 0.
|
| 585 |
"epoch": 1.2127659574468086,
|
| 586 |
-
"grad_norm": 0.
|
| 587 |
"learning_rate": 7.725656618788937e-05,
|
| 588 |
-
"loss": 4.
|
| 589 |
-
"mean_token_accuracy": 0.
|
| 590 |
"num_tokens": 141944.0,
|
| 591 |
"step": 57
|
| 592 |
},
|
| 593 |
{
|
| 594 |
-
"entropy": 0.
|
| 595 |
"epoch": 1.2340425531914894,
|
| 596 |
-
"grad_norm": 0.
|
| 597 |
"learning_rate": 7.383407440315596e-05,
|
| 598 |
-
"loss": 4.
|
| 599 |
-
"mean_token_accuracy": 0.
|
| 600 |
"num_tokens": 144392.0,
|
| 601 |
"step": 58
|
| 602 |
},
|
| 603 |
{
|
| 604 |
-
"entropy": 0.
|
| 605 |
"epoch": 1.2553191489361701,
|
| 606 |
-
"grad_norm": 0.
|
| 607 |
"learning_rate": 7.04441821034316e-05,
|
| 608 |
-
"loss": 3.
|
| 609 |
"mean_token_accuracy": 0.899132177233696,
|
| 610 |
"num_tokens": 146822.0,
|
| 611 |
"step": 59
|
| 612 |
},
|
| 613 |
{
|
| 614 |
-
"entropy": 0.
|
| 615 |
"epoch": 1.2765957446808511,
|
| 616 |
-
"grad_norm": 0.
|
| 617 |
"learning_rate": 6.7091112672399e-05,
|
| 618 |
-
"loss": 4.
|
| 619 |
-
"mean_token_accuracy": 0.
|
| 620 |
"num_tokens": 149381.0,
|
| 621 |
"step": 60
|
| 622 |
},
|
| 623 |
{
|
| 624 |
-
"entropy": 0.
|
| 625 |
"epoch": 1.297872340425532,
|
| 626 |
-
"grad_norm":
|
| 627 |
"learning_rate": 6.377904361703178e-05,
|
| 628 |
-
"loss": 4.
|
| 629 |
-
"mean_token_accuracy": 0.
|
| 630 |
"num_tokens": 151872.0,
|
| 631 |
"step": 61
|
| 632 |
},
|
| 633 |
{
|
| 634 |
-
"entropy": 0.
|
| 635 |
"epoch": 1.3191489361702127,
|
| 636 |
-
"grad_norm": 0.
|
| 637 |
"learning_rate": 6.051210136294089e-05,
|
| 638 |
-
"loss": 3.
|
| 639 |
"mean_token_accuracy": 0.8986529260873795,
|
| 640 |
"num_tokens": 154366.0,
|
| 641 |
"step": 62
|
| 642 |
},
|
| 643 |
{
|
| 644 |
-
"entropy": 0.
|
| 645 |
"epoch": 1.3404255319148937,
|
| 646 |
-
"grad_norm": 0.
|
| 647 |
"learning_rate": 5.729435611336239e-05,
|
| 648 |
-
"loss": 4.
|
| 649 |
"mean_token_accuracy": 0.8914495259523392,
|
| 650 |
"num_tokens": 156920.0,
|
| 651 |
"step": 63
|
| 652 |
},
|
| 653 |
{
|
| 654 |
-
"entropy": 0.
|
| 655 |
"epoch": 1.3617021276595744,
|
| 656 |
-
"grad_norm": 0.
|
| 657 |
"learning_rate": 5.4129816778190936e-05,
|
| 658 |
-
"loss": 3.
|
| 659 |
-
"mean_token_accuracy": 0.
|
| 660 |
"num_tokens": 159260.0,
|
| 661 |
"step": 64
|
| 662 |
},
|
| 663 |
{
|
| 664 |
-
"entropy": 0.
|
| 665 |
"epoch": 1.3829787234042552,
|
| 666 |
-
"grad_norm": 0.
|
| 667 |
"learning_rate": 5.102242597937717e-05,
|
| 668 |
-
"loss": 4.
|
| 669 |
"mean_token_accuracy": 0.8973371386528015,
|
| 670 |
"num_tokens": 161698.0,
|
| 671 |
"step": 65
|
| 672 |
},
|
| 673 |
{
|
| 674 |
-
"entropy": 0.
|
| 675 |
"epoch": 1.4042553191489362,
|
| 676 |
-
"grad_norm": 0.
|
| 677 |
"learning_rate": 4.797605513891179e-05,
|
| 678 |
-
"loss": 4.
|
| 679 |
-
"mean_token_accuracy": 0.
|
| 680 |
"num_tokens": 164193.0,
|
| 681 |
"step": 66
|
| 682 |
},
|
| 683 |
{
|
| 684 |
-
"entropy": 0.
|
| 685 |
"epoch": 1.425531914893617,
|
| 686 |
-
"grad_norm": 0.
|
| 687 |
"learning_rate": 4.4994499655515865e-05,
|
| 688 |
-
"loss": 4.
|
| 689 |
-
"mean_token_accuracy": 0.
|
| 690 |
"num_tokens": 166683.0,
|
| 691 |
"step": 67
|
| 692 |
},
|
| 693 |
{
|
| 694 |
-
"entropy": 0.
|
| 695 |
"epoch": 1.4468085106382977,
|
| 696 |
-
"grad_norm": 0.
|
| 697 |
"learning_rate": 4.2081474176046646e-05,
|
| 698 |
-
"loss": 4.
|
| 699 |
"mean_token_accuracy": 0.8957811146974564,
|
| 700 |
"num_tokens": 169151.0,
|
| 701 |
"step": 68
|
| 702 |
},
|
| 703 |
{
|
| 704 |
-
"entropy": 0.
|
| 705 |
"epoch": 1.4680851063829787,
|
| 706 |
-
"grad_norm":
|
| 707 |
"learning_rate": 3.924060796751012e-05,
|
| 708 |
-
"loss": 4.
|
| 709 |
-
"mean_token_accuracy": 0.
|
| 710 |
"num_tokens": 171681.0,
|
| 711 |
"step": 69
|
| 712 |
},
|
| 713 |
{
|
| 714 |
-
"entropy": 0.
|
| 715 |
"epoch": 1.4893617021276595,
|
| 716 |
-
"grad_norm": 0.
|
| 717 |
"learning_rate": 3.647544039544615e-05,
|
| 718 |
-
"loss": 4.
|
| 719 |
"mean_token_accuracy": 0.8979416936635971,
|
| 720 |
"num_tokens": 174203.0,
|
| 721 |
"step": 70
|
| 722 |
},
|
| 723 |
{
|
| 724 |
-
"entropy": 0.
|
| 725 |
"epoch": 1.5106382978723403,
|
| 726 |
-
"grad_norm": 0.
|
| 727 |
"learning_rate": 3.378941651431996e-05,
|
| 728 |
-
"loss":
|
| 729 |
"mean_token_accuracy": 0.898457407951355,
|
| 730 |
"num_tokens": 176621.0,
|
| 731 |
"step": 71
|
| 732 |
},
|
| 733 |
{
|
| 734 |
-
"entropy": 0.
|
| 735 |
"epoch": 1.5319148936170213,
|
| 736 |
-
"grad_norm": 0.
|
| 737 |
"learning_rate": 3.118588277541312e-05,
|
| 738 |
-
"loss": 4.
|
| 739 |
-
"mean_token_accuracy": 0.
|
| 740 |
"num_tokens": 179126.0,
|
| 741 |
"step": 72
|
| 742 |
},
|
| 743 |
{
|
| 744 |
-
"entropy": 0.
|
| 745 |
"epoch": 1.5531914893617023,
|
| 746 |
-
"grad_norm": 0.
|
| 747 |
"learning_rate": 2.8668082857562005e-05,
|
| 748 |
-
"loss": 4.
|
| 749 |
-
"mean_token_accuracy": 0.
|
| 750 |
"num_tokens": 181650.0,
|
| 751 |
"step": 73
|
| 752 |
},
|
| 753 |
{
|
| 754 |
-
"entropy": 0.
|
| 755 |
"epoch": 1.574468085106383,
|
| 756 |
-
"grad_norm": 0.
|
| 757 |
"learning_rate": 2.6239153625937784e-05,
|
| 758 |
-
"loss": 4.
|
| 759 |
"mean_token_accuracy": 0.8973006755113602,
|
| 760 |
"num_tokens": 184077.0,
|
| 761 |
"step": 74
|
| 762 |
},
|
| 763 |
{
|
| 764 |
-
"entropy": 0.
|
| 765 |
"epoch": 1.5957446808510638,
|
| 766 |
-
"grad_norm": 0.
|
| 767 |
"learning_rate": 2.390212122390323e-05,
|
| 768 |
-
"loss":
|
| 769 |
"mean_token_accuracy": 0.8992939442396164,
|
| 770 |
"num_tokens": 186549.0,
|
| 771 |
"step": 75
|
| 772 |
},
|
| 773 |
{
|
| 774 |
-
"entropy": 0.
|
| 775 |
"epoch": 1.6170212765957448,
|
| 776 |
-
"grad_norm": 0.
|
| 777 |
"learning_rate": 2.1659897302814747e-05,
|
| 778 |
-
"loss": 4.
|
| 779 |
"mean_token_accuracy": 0.8967273831367493,
|
| 780 |
"num_tokens": 189001.0,
|
| 781 |
"step": 76
|
| 782 |
},
|
| 783 |
{
|
| 784 |
-
"entropy": 0.
|
| 785 |
"epoch": 1.6382978723404256,
|
| 786 |
-
"grad_norm": 0.
|
| 787 |
"learning_rate": 1.9515275394467446e-05,
|
| 788 |
-
"loss": 3.
|
| 789 |
"mean_token_accuracy": 0.9024099707603455,
|
| 790 |
"num_tokens": 191502.0,
|
| 791 |
"step": 77
|
| 792 |
},
|
| 793 |
{
|
| 794 |
-
"entropy": 0.
|
| 795 |
"epoch": 1.6595744680851063,
|
| 796 |
-
"grad_norm": 0.
|
| 797 |
"learning_rate": 1.7470927430702277e-05,
|
| 798 |
-
"loss": 4.
|
| 799 |
"mean_token_accuracy": 0.8992336541414261,
|
| 800 |
"num_tokens": 194063.0,
|
| 801 |
"step": 78
|
| 802 |
},
|
| 803 |
{
|
| 804 |
-
"entropy": 0.
|
| 805 |
"epoch": 1.6808510638297873,
|
| 806 |
-
"grad_norm": 0.
|
| 807 |
"learning_rate": 1.5529400414511806e-05,
|
| 808 |
-
"loss": 3.
|
| 809 |
-
"mean_token_accuracy": 0.
|
| 810 |
"num_tokens": 196634.0,
|
| 811 |
"step": 79
|
| 812 |
},
|
| 813 |
{
|
| 814 |
-
"entropy": 0.
|
| 815 |
"epoch": 1.702127659574468,
|
| 816 |
-
"grad_norm": 0.
|
| 817 |
"learning_rate": 1.3693113246791589e-05,
|
| 818 |
-
"loss": 4.
|
| 819 |
"mean_token_accuracy": 0.8888326436281204,
|
| 820 |
"num_tokens": 199099.0,
|
| 821 |
"step": 80
|
| 822 |
},
|
| 823 |
{
|
| 824 |
-
"entropy": 0.
|
| 825 |
"epoch": 1.7234042553191489,
|
| 826 |
-
"grad_norm": 0.
|
| 827 |
"learning_rate": 1.196435371269089e-05,
|
| 828 |
-
"loss": 4.
|
| 829 |
"mean_token_accuracy": 0.8973006755113602,
|
| 830 |
"num_tokens": 201577.0,
|
| 831 |
"step": 81
|
| 832 |
},
|
| 833 |
{
|
| 834 |
-
"entropy": 0.
|
| 835 |
"epoch": 1.7446808510638299,
|
| 836 |
-
"grad_norm": 0.
|
| 837 |
"learning_rate": 1.0345275631317163e-05,
|
| 838 |
-
"loss": 4.
|
| 839 |
-
"mean_token_accuracy": 0.
|
| 840 |
"num_tokens": 204137.0,
|
| 841 |
"step": 82
|
| 842 |
},
|
| 843 |
{
|
| 844 |
-
"entropy": 0.
|
| 845 |
"epoch": 1.7659574468085106,
|
| 846 |
-
"grad_norm": 0.
|
| 847 |
"learning_rate": 8.837896172345827e-06,
|
| 848 |
-
"loss": 4.
|
| 849 |
"mean_token_accuracy": 0.8954477906227112,
|
| 850 |
"num_tokens": 206717.0,
|
| 851 |
"step": 83
|
| 852 |
},
|
| 853 |
{
|
| 854 |
-
"entropy": 0.
|
| 855 |
"epoch": 1.7872340425531914,
|
| 856 |
-
"grad_norm": 0.
|
| 857 |
"learning_rate": 7.4440933428779e-06,
|
| 858 |
-
"loss": 3.
|
| 859 |
-
"mean_token_accuracy": 0.
|
| 860 |
"num_tokens": 209169.0,
|
| 861 |
"step": 84
|
| 862 |
},
|
| 863 |
{
|
| 864 |
-
"entropy": 0.
|
| 865 |
"epoch": 1.8085106382978724,
|
| 866 |
-
"grad_norm": 0.
|
| 867 |
"learning_rate": 6.165603647677054e-06,
|
| 868 |
-
"loss": 3.
|
| 869 |
"mean_token_accuracy": 0.8967323154211044,
|
| 870 |
"num_tokens": 211565.0,
|
| 871 |
"step": 85
|
| 872 |
},
|
| 873 |
{
|
| 874 |
-
"entropy": 0.
|
| 875 |
"epoch": 1.8297872340425532,
|
| 876 |
-
"grad_norm": 0.
|
| 877 |
"learning_rate": 5.00401992570092e-06,
|
| 878 |
-
"loss": 4.
|
| 879 |
"mean_token_accuracy": 0.89537513256073,
|
| 880 |
"num_tokens": 214053.0,
|
| 881 |
"step": 86
|
| 882 |
},
|
| 883 |
{
|
| 884 |
-
"entropy": 0.
|
| 885 |
"epoch": 1.851063829787234,
|
| 886 |
-
"grad_norm": 0.
|
| 887 |
"learning_rate": 3.960789365622075e-06,
|
| 888 |
-
"loss": 4.
|
| 889 |
"mean_token_accuracy": 0.8933143615722656,
|
| 890 |
"num_tokens": 216498.0,
|
| 891 |
"step": 87
|
| 892 |
},
|
| 893 |
{
|
| 894 |
-
"entropy": 0.
|
| 895 |
"epoch": 1.872340425531915,
|
| 896 |
-
"grad_norm": 0.
|
| 897 |
"learning_rate": 3.0372117028111825e-06,
|
| 898 |
-
"loss": 4.
|
| 899 |
-
"mean_token_accuracy": 0.
|
| 900 |
"num_tokens": 218982.0,
|
| 901 |
"step": 88
|
| 902 |
},
|
| 903 |
{
|
| 904 |
-
"entropy": 0.
|
| 905 |
"epoch": 1.8936170212765957,
|
| 906 |
-
"grad_norm": 0.
|
| 907 |
"learning_rate": 2.2344376000285604e-06,
|
| 908 |
-
"loss": 4.
|
| 909 |
-
"mean_token_accuracy": 0.
|
| 910 |
"num_tokens": 221444.0,
|
| 911 |
"step": 89
|
| 912 |
},
|
| 913 |
{
|
| 914 |
-
"entropy": 0.
|
| 915 |
"epoch": 1.9148936170212765,
|
| 916 |
-
"grad_norm": 0.
|
| 917 |
"learning_rate": 1.553467213841664e-06,
|
| 918 |
-
"loss": 4.
|
| 919 |
-
"mean_token_accuracy": 0.
|
| 920 |
"num_tokens": 223969.0,
|
| 921 |
"step": 90
|
| 922 |
},
|
| 923 |
{
|
| 924 |
-
"entropy": 0.
|
| 925 |
"epoch": 1.9361702127659575,
|
| 926 |
-
"grad_norm": 0.
|
| 927 |
"learning_rate": 9.951489485545695e-07,
|
| 928 |
-
"loss": 4.
|
| 929 |
"mean_token_accuracy": 0.8986529260873795,
|
| 930 |
"num_tokens": 226520.0,
|
| 931 |
"step": 91
|
| 932 |
},
|
| 933 |
{
|
| 934 |
-
"entropy": 0.
|
| 935 |
"epoch": 1.9574468085106385,
|
| 936 |
-
"grad_norm": 0.
|
| 937 |
"learning_rate": 5.60178399201805e-07,
|
| 938 |
-
"loss": 4.
|
| 939 |
-
"mean_token_accuracy": 0.
|
| 940 |
"num_tokens": 229047.0,
|
| 941 |
"step": 92
|
| 942 |
},
|
| 943 |
{
|
| 944 |
-
"entropy": 0.
|
| 945 |
"epoch": 1.978723404255319,
|
| 946 |
-
"grad_norm": 0.
|
| 947 |
"learning_rate": 2.490974849236216e-07,
|
| 948 |
-
"loss": 4.
|
| 949 |
"mean_token_accuracy": 0.8986529260873795,
|
| 950 |
"num_tokens": 231567.0,
|
| 951 |
"step": 93
|
| 952 |
},
|
| 953 |
{
|
| 954 |
-
"entropy": 0.
|
| 955 |
"epoch": 2.0,
|
| 956 |
-
"grad_norm": 0.
|
| 957 |
"learning_rate": 6.229377380218005e-08,
|
| 958 |
-
"loss": 4.
|
| 959 |
"mean_token_accuracy": 0.894871786236763,
|
| 960 |
"num_tokens": 234138.0,
|
| 961 |
"step": 94
|
|
@@ -966,9 +966,9 @@
|
|
| 966 |
"eval_loss": NaN,
|
| 967 |
"eval_mean_token_accuracy": 0.0,
|
| 968 |
"eval_num_tokens": 234138.0,
|
| 969 |
-
"eval_runtime":
|
| 970 |
-
"eval_samples_per_second":
|
| 971 |
-
"eval_steps_per_second":
|
| 972 |
"step": 94
|
| 973 |
}
|
| 974 |
],
|
|
@@ -998,7 +998,7 @@
|
|
| 998 |
"attributes": {}
|
| 999 |
}
|
| 1000 |
},
|
| 1001 |
-
"total_flos":
|
| 1002 |
"train_batch_size": 2,
|
| 1003 |
"trial_name": null,
|
| 1004 |
"trial_params": null
|
|
|
|
| 10 |
"is_world_process_zero": true,
|
| 11 |
"log_history": [
|
| 12 |
{
|
| 13 |
+
"entropy": 0.8770920187234879,
|
| 14 |
"epoch": 0.02127659574468085,
|
| 15 |
+
"grad_norm": 101.38615417480469,
|
| 16 |
"learning_rate": 0.0,
|
| 17 |
+
"loss": 11.496590614318848,
|
| 18 |
"mean_token_accuracy": 0.22714237496256828,
|
| 19 |
"num_tokens": 2486.0,
|
| 20 |
"step": 1
|
| 21 |
},
|
| 22 |
{
|
| 23 |
+
"entropy": 0.9114853590726852,
|
| 24 |
"epoch": 0.0425531914893617,
|
| 25 |
+
"grad_norm": 96.85296630859375,
|
| 26 |
"learning_rate": 4e-05,
|
| 27 |
+
"loss": 11.215909004211426,
|
| 28 |
"mean_token_accuracy": 0.2649671100080013,
|
| 29 |
"num_tokens": 4959.0,
|
| 30 |
"step": 2
|
| 31 |
},
|
| 32 |
{
|
| 33 |
+
"entropy": 1.2038442194461823,
|
| 34 |
"epoch": 0.06382978723404255,
|
| 35 |
+
"grad_norm": 73.84027862548828,
|
| 36 |
"learning_rate": 8e-05,
|
| 37 |
+
"loss": 9.273573875427246,
|
| 38 |
+
"mean_token_accuracy": 0.37812498956918716,
|
| 39 |
"num_tokens": 7552.0,
|
| 40 |
"step": 3
|
| 41 |
},
|
| 42 |
{
|
| 43 |
+
"entropy": 1.0524671226739883,
|
| 44 |
"epoch": 0.0851063829787234,
|
| 45 |
+
"grad_norm": 30.00477409362793,
|
| 46 |
"learning_rate": 0.00012,
|
| 47 |
+
"loss": 6.997811317443848,
|
| 48 |
+
"mean_token_accuracy": 0.5748837292194366,
|
| 49 |
"num_tokens": 10017.0,
|
| 50 |
"step": 4
|
| 51 |
},
|
| 52 |
{
|
| 53 |
+
"entropy": 1.0943913161754608,
|
| 54 |
"epoch": 0.10638297872340426,
|
| 55 |
+
"grad_norm": 29.77185821533203,
|
| 56 |
"learning_rate": 0.00016,
|
| 57 |
+
"loss": 5.874476432800293,
|
| 58 |
+
"mean_token_accuracy": 0.6206140369176865,
|
| 59 |
"num_tokens": 12542.0,
|
| 60 |
"step": 5
|
| 61 |
},
|
| 62 |
{
|
| 63 |
+
"entropy": 0.690106213092804,
|
| 64 |
"epoch": 0.1276595744680851,
|
| 65 |
+
"grad_norm": 28.456193923950195,
|
| 66 |
"learning_rate": 0.0002,
|
| 67 |
+
"loss": 4.93742036819458,
|
| 68 |
+
"mean_token_accuracy": 0.7391025722026825,
|
| 69 |
"num_tokens": 15108.0,
|
| 70 |
"step": 6
|
| 71 |
},
|
| 72 |
{
|
| 73 |
+
"entropy": 0.42824630439281464,
|
| 74 |
"epoch": 0.14893617021276595,
|
| 75 |
+
"grad_norm": 8.46117877960205,
|
| 76 |
"learning_rate": 0.00019993770622619782,
|
| 77 |
+
"loss": 4.776185512542725,
|
| 78 |
+
"mean_token_accuracy": 0.7670790255069733,
|
| 79 |
"num_tokens": 17715.0,
|
| 80 |
"step": 7
|
| 81 |
},
|
| 82 |
{
|
| 83 |
+
"entropy": 0.6275453418493271,
|
| 84 |
"epoch": 0.1702127659574468,
|
| 85 |
+
"grad_norm": 7.040255069732666,
|
| 86 |
"learning_rate": 0.00019975090251507638,
|
| 87 |
+
"loss": 4.601991653442383,
|
| 88 |
+
"mean_token_accuracy": 0.7641165554523468,
|
| 89 |
"num_tokens": 20143.0,
|
| 90 |
"step": 8
|
| 91 |
},
|
| 92 |
{
|
| 93 |
+
"entropy": 0.49182429164648056,
|
| 94 |
"epoch": 0.19148936170212766,
|
| 95 |
+
"grad_norm": 4.624846458435059,
|
| 96 |
"learning_rate": 0.0001994398216007982,
|
| 97 |
+
"loss": 4.511226654052734,
|
| 98 |
+
"mean_token_accuracy": 0.7724626064300537,
|
| 99 |
"num_tokens": 22656.0,
|
| 100 |
"step": 9
|
| 101 |
},
|
| 102 |
{
|
| 103 |
+
"entropy": 0.626158207654953,
|
| 104 |
"epoch": 0.2127659574468085,
|
| 105 |
+
"grad_norm": 7.813827037811279,
|
| 106 |
"learning_rate": 0.00019900485105144543,
|
| 107 |
+
"loss": 4.358890533447266,
|
| 108 |
"mean_token_accuracy": 0.7753759473562241,
|
| 109 |
"num_tokens": 25094.0,
|
| 110 |
"step": 10
|
| 111 |
},
|
| 112 |
{
|
| 113 |
+
"entropy": 0.5334508866071701,
|
| 114 |
"epoch": 0.23404255319148937,
|
| 115 |
+
"grad_norm": 3.6953277587890625,
|
| 116 |
"learning_rate": 0.00019844653278615833,
|
| 117 |
+
"loss": 4.273573875427246,
|
| 118 |
+
"mean_token_accuracy": 0.7838225364685059,
|
| 119 |
"num_tokens": 27456.0,
|
| 120 |
"step": 11
|
| 121 |
},
|
| 122 |
{
|
| 123 |
+
"entropy": 0.43513786792755127,
|
| 124 |
"epoch": 0.2553191489361702,
|
| 125 |
+
"grad_norm": 2.8964409828186035,
|
| 126 |
"learning_rate": 0.00019776556239997146,
|
| 127 |
+
"loss": 4.085248947143555,
|
| 128 |
+
"mean_token_accuracy": 0.8868782967329025,
|
| 129 |
"num_tokens": 29914.0,
|
| 130 |
"step": 12
|
| 131 |
},
|
| 132 |
{
|
| 133 |
+
"entropy": 0.3346208333969116,
|
| 134 |
"epoch": 0.2765957446808511,
|
| 135 |
+
"grad_norm": 5.369524955749512,
|
| 136 |
"learning_rate": 0.00019696278829718883,
|
| 137 |
+
"loss": 3.968517303466797,
|
| 138 |
+
"mean_token_accuracy": 0.8908246159553528,
|
| 139 |
"num_tokens": 32448.0,
|
| 140 |
"step": 13
|
| 141 |
},
|
| 142 |
{
|
| 143 |
+
"entropy": 0.33365894854068756,
|
| 144 |
"epoch": 0.2978723404255319,
|
| 145 |
+
"grad_norm": 2.550203800201416,
|
| 146 |
"learning_rate": 0.00019603921063437793,
|
| 147 |
+
"loss": 4.0511908531188965,
|
| 148 |
+
"mean_token_accuracy": 0.8805366605520248,
|
| 149 |
"num_tokens": 34909.0,
|
| 150 |
"step": 14
|
| 151 |
},
|
| 152 |
{
|
| 153 |
+
"entropy": 0.25230497866868973,
|
| 154 |
"epoch": 0.3191489361702128,
|
| 155 |
+
"grad_norm": 3.365182876586914,
|
| 156 |
"learning_rate": 0.0001949959800742991,
|
| 157 |
+
"loss": 4.221365928649902,
|
| 158 |
+
"mean_token_accuracy": 0.8763548880815506,
|
| 159 |
"num_tokens": 37476.0,
|
| 160 |
"step": 15
|
| 161 |
},
|
| 162 |
{
|
| 163 |
+
"entropy": 0.21353815868496895,
|
| 164 |
"epoch": 0.3404255319148936,
|
| 165 |
+
"grad_norm": 1.1460461616516113,
|
| 166 |
"learning_rate": 0.00019383439635232294,
|
| 167 |
+
"loss": 4.106394290924072,
|
| 168 |
+
"mean_token_accuracy": 0.8868418335914612,
|
| 169 |
"num_tokens": 39881.0,
|
| 170 |
"step": 16
|
| 171 |
},
|
| 172 |
{
|
| 173 |
+
"entropy": 0.21475103124976158,
|
| 174 |
"epoch": 0.3617021276595745,
|
| 175 |
+
"grad_norm": 3.043959617614746,
|
| 176 |
"learning_rate": 0.00019255590665712214,
|
| 177 |
+
"loss": 4.265631675720215,
|
| 178 |
+
"mean_token_accuracy": 0.8690433949232101,
|
| 179 |
"num_tokens": 42235.0,
|
| 180 |
"step": 17
|
| 181 |
},
|
| 182 |
{
|
| 183 |
+
"entropy": 0.1718740463256836,
|
| 184 |
"epoch": 0.3829787234042553,
|
| 185 |
+
"grad_norm": 0.8078291416168213,
|
| 186 |
"learning_rate": 0.0001911621038276542,
|
| 187 |
+
"loss": 4.106135368347168,
|
| 188 |
+
"mean_token_accuracy": 0.892671525478363,
|
| 189 |
"num_tokens": 44687.0,
|
| 190 |
"step": 18
|
| 191 |
},
|
| 192 |
{
|
| 193 |
+
"entropy": 0.16231479868292809,
|
| 194 |
"epoch": 0.40425531914893614,
|
| 195 |
+
"grad_norm": 0.9561502933502197,
|
| 196 |
"learning_rate": 0.00018965472436868286,
|
| 197 |
+
"loss": 4.120131015777588,
|
| 198 |
+
"mean_token_accuracy": 0.8869824111461639,
|
| 199 |
"num_tokens": 47206.0,
|
| 200 |
"step": 19
|
| 201 |
},
|
| 202 |
{
|
| 203 |
+
"entropy": 0.14364850148558617,
|
| 204 |
"epoch": 0.425531914893617,
|
| 205 |
+
"grad_norm": 0.9734947681427002,
|
| 206 |
"learning_rate": 0.00018803564628730915,
|
| 207 |
+
"loss": 4.03128719329834,
|
| 208 |
+
"mean_token_accuracy": 0.8906020969152451,
|
| 209 |
"num_tokens": 49799.0,
|
| 210 |
"step": 20
|
| 211 |
},
|
| 212 |
{
|
| 213 |
+
"entropy": 0.13312280178070068,
|
| 214 |
"epoch": 0.44680851063829785,
|
| 215 |
+
"grad_norm": 0.4489222764968872,
|
| 216 |
"learning_rate": 0.00018630688675320842,
|
| 217 |
+
"loss": 4.058135032653809,
|
| 218 |
+
"mean_token_accuracy": 0.8986841887235641,
|
| 219 |
"num_tokens": 52291.0,
|
| 220 |
"step": 21
|
| 221 |
},
|
| 222 |
{
|
| 223 |
+
"entropy": 0.13586510717868805,
|
| 224 |
"epoch": 0.46808510638297873,
|
| 225 |
+
"grad_norm": 0.7964894771575928,
|
| 226 |
"learning_rate": 0.0001844705995854882,
|
| 227 |
+
"loss": 3.965346574783325,
|
| 228 |
+
"mean_token_accuracy": 0.8940518647432327,
|
| 229 |
"num_tokens": 54812.0,
|
| 230 |
"step": 22
|
| 231 |
},
|
| 232 |
{
|
| 233 |
+
"entropy": 0.15179748088121414,
|
| 234 |
"epoch": 0.48936170212765956,
|
| 235 |
+
"grad_norm": 1.6409692764282227,
|
| 236 |
"learning_rate": 0.00018252907256929775,
|
| 237 |
+
"loss": 4.181431293487549,
|
| 238 |
+
"mean_token_accuracy": 0.8783541172742844,
|
| 239 |
"num_tokens": 57280.0,
|
| 240 |
"step": 23
|
| 241 |
},
|
| 242 |
{
|
| 243 |
+
"entropy": 0.11831228621304035,
|
| 244 |
"epoch": 0.5106382978723404,
|
| 245 |
+
"grad_norm": 0.7683380842208862,
|
| 246 |
"learning_rate": 0.00018048472460553257,
|
| 247 |
+
"loss": 4.24875545501709,
|
| 248 |
+
"mean_token_accuracy": 0.8903311938047409,
|
| 249 |
"num_tokens": 59802.0,
|
| 250 |
"step": 24
|
| 251 |
},
|
| 252 |
{
|
| 253 |
+
"entropy": 0.15002421662211418,
|
| 254 |
"epoch": 0.5319148936170213,
|
| 255 |
+
"grad_norm": 2.176997661590576,
|
| 256 |
"learning_rate": 0.00017834010269718526,
|
| 257 |
+
"loss": 4.15623664855957,
|
| 258 |
+
"mean_token_accuracy": 0.8820056915283203,
|
| 259 |
"num_tokens": 62271.0,
|
| 260 |
"step": 25
|
| 261 |
},
|
| 262 |
{
|
| 263 |
+
"entropy": 0.11383292451500893,
|
| 264 |
"epoch": 0.5531914893617021,
|
| 265 |
+
"grad_norm": 0.5305500030517578,
|
| 266 |
"learning_rate": 0.0001760978787760968,
|
| 267 |
+
"loss": 4.076779365539551,
|
| 268 |
+
"mean_token_accuracy": 0.8941320031881332,
|
| 269 |
"num_tokens": 64751.0,
|
| 270 |
"step": 26
|
| 271 |
},
|
| 272 |
{
|
| 273 |
+
"entropy": 0.13319513201713562,
|
| 274 |
"epoch": 0.574468085106383,
|
| 275 |
+
"grad_norm": 1.0374587774276733,
|
| 276 |
"learning_rate": 0.00017376084637406222,
|
| 277 |
+
"loss": 4.014706611633301,
|
| 278 |
+
"mean_token_accuracy": 0.8837339729070663,
|
| 279 |
"num_tokens": 67220.0,
|
| 280 |
"step": 27
|
| 281 |
},
|
| 282 |
{
|
| 283 |
+
"entropy": 0.13686015084385872,
|
| 284 |
"epoch": 0.5957446808510638,
|
| 285 |
+
"grad_norm": 1.387152075767517,
|
| 286 |
"learning_rate": 0.00017133191714243805,
|
| 287 |
+
"loss": 4.015310764312744,
|
| 288 |
+
"mean_token_accuracy": 0.8779295533895493,
|
| 289 |
"num_tokens": 69678.0,
|
| 290 |
"step": 28
|
| 291 |
},
|
| 292 |
{
|
| 293 |
+
"entropy": 0.13596300408244133,
|
| 294 |
"epoch": 0.6170212765957447,
|
| 295 |
+
"grad_norm": 1.2698324918746948,
|
| 296 |
"learning_rate": 0.00016881411722458688,
|
| 297 |
+
"loss": 3.992821455001831,
|
| 298 |
+
"mean_token_accuracy": 0.8992939442396164,
|
| 299 |
"num_tokens": 72158.0,
|
| 300 |
"step": 29
|
| 301 |
},
|
| 302 |
{
|
| 303 |
+
"entropy": 0.13812873139977455,
|
| 304 |
"epoch": 0.6382978723404256,
|
| 305 |
+
"grad_norm": 1.9082021713256836,
|
| 306 |
"learning_rate": 0.00016621058348568007,
|
| 307 |
+
"loss": 4.059752464294434,
|
| 308 |
+
"mean_token_accuracy": 0.886225238442421,
|
| 309 |
"num_tokens": 74621.0,
|
| 310 |
"step": 30
|
| 311 |
},
|
| 312 |
{
|
| 313 |
+
"entropy": 0.1471228487789631,
|
| 314 |
"epoch": 0.6595744680851063,
|
| 315 |
+
"grad_norm": 1.0790090560913086,
|
| 316 |
"learning_rate": 0.00016352455960455387,
|
| 317 |
+
"loss": 3.956774950027466,
|
| 318 |
+
"mean_token_accuracy": 0.8888719379901886,
|
| 319 |
"num_tokens": 77122.0,
|
| 320 |
"step": 31
|
| 321 |
},
|
| 322 |
{
|
| 323 |
+
"entropy": 0.13649508357048035,
|
| 324 |
"epoch": 0.6808510638297872,
|
| 325 |
+
"grad_norm": 0.8638296127319336,
|
| 326 |
"learning_rate": 0.0001607593920324899,
|
| 327 |
+
"loss": 4.1457977294921875,
|
| 328 |
+
"mean_token_accuracy": 0.8863866329193115,
|
| 329 |
"num_tokens": 79658.0,
|
| 330 |
"step": 32
|
| 331 |
},
|
| 332 |
{
|
| 333 |
+
"entropy": 0.13422205485403538,
|
| 334 |
"epoch": 0.7021276595744681,
|
| 335 |
+
"grad_norm": 0.8206593990325928,
|
| 336 |
"learning_rate": 0.00015791852582395334,
|
| 337 |
+
"loss": 4.104636192321777,
|
| 338 |
+
"mean_token_accuracy": 0.893946647644043,
|
| 339 |
"num_tokens": 82198.0,
|
| 340 |
"step": 33
|
| 341 |
},
|
| 342 |
{
|
| 343 |
+
"entropy": 0.13717253133654594,
|
| 344 |
"epoch": 0.723404255319149,
|
| 345 |
+
"grad_norm": 0.43719571828842163,
|
| 346 |
"learning_rate": 0.00015500550034448413,
|
| 347 |
+
"loss": 4.031332015991211,
|
| 348 |
+
"mean_token_accuracy": 0.894197016954422,
|
| 349 |
"num_tokens": 84670.0,
|
| 350 |
"step": 34
|
| 351 |
},
|
| 352 |
{
|
| 353 |
+
"entropy": 0.1137513667345047,
|
| 354 |
"epoch": 0.7446808510638298,
|
| 355 |
+
"grad_norm": 1.8441417217254639,
|
| 356 |
"learning_rate": 0.0001520239448610882,
|
| 357 |
+
"loss": 4.112149715423584,
|
| 358 |
+
"mean_token_accuracy": 0.8909876793622971,
|
| 359 |
"num_tokens": 87292.0,
|
| 360 |
"step": 35
|
| 361 |
},
|
| 362 |
{
|
| 363 |
+
"entropy": 0.11223667673766613,
|
| 364 |
"epoch": 0.7659574468085106,
|
| 365 |
+
"grad_norm": 0.4776930809020996,
|
| 366 |
"learning_rate": 0.00014897757402062284,
|
| 367 |
+
"loss": 4.026741027832031,
|
| 368 |
+
"mean_token_accuracy": 0.8924113065004349,
|
| 369 |
"num_tokens": 89830.0,
|
| 370 |
"step": 36
|
| 371 |
},
|
| 372 |
{
|
| 373 |
+
"entropy": 0.12275257520377636,
|
| 374 |
"epoch": 0.7872340425531915,
|
| 375 |
+
"grad_norm": 0.9828954935073853,
|
| 376 |
"learning_rate": 0.00014587018322180905,
|
| 377 |
+
"loss": 4.183655738830566,
|
| 378 |
+
"mean_token_accuracy": 0.8827805668115616,
|
| 379 |
"num_tokens": 92344.0,
|
| 380 |
"step": 37
|
| 381 |
},
|
| 382 |
{
|
| 383 |
+
"entropy": 0.12380701676011086,
|
| 384 |
"epoch": 0.8085106382978723,
|
| 385 |
+
"grad_norm": 1.3710100650787354,
|
| 386 |
"learning_rate": 0.0001427056438866376,
|
| 387 |
+
"loss": 4.003378868103027,
|
| 388 |
+
"mean_token_accuracy": 0.8812988549470901,
|
| 389 |
"num_tokens": 94826.0,
|
| 390 |
"step": 38
|
| 391 |
},
|
| 392 |
{
|
| 393 |
+
"entropy": 0.10968485288321972,
|
| 394 |
"epoch": 0.8297872340425532,
|
| 395 |
+
"grad_norm": 0.37869715690612793,
|
| 396 |
"learning_rate": 0.00013948789863705912,
|
| 397 |
+
"loss": 4.050682067871094,
|
| 398 |
+
"mean_token_accuracy": 0.8941126763820648,
|
| 399 |
"num_tokens": 97290.0,
|
| 400 |
"step": 39
|
| 401 |
},
|
| 402 |
{
|
| 403 |
+
"entropy": 0.12006617523729801,
|
| 404 |
"epoch": 0.851063829787234,
|
| 405 |
+
"grad_norm": 0.5866818428039551,
|
| 406 |
"learning_rate": 0.00013622095638296826,
|
| 407 |
+
"loss": 4.113466262817383,
|
| 408 |
+
"mean_token_accuracy": 0.8894326388835907,
|
| 409 |
"num_tokens": 99776.0,
|
| 410 |
"step": 40
|
| 411 |
},
|
| 412 |
{
|
| 413 |
+
"entropy": 0.09959963150322437,
|
| 414 |
"epoch": 0.8723404255319149,
|
| 415 |
+
"grad_norm": 0.4211389422416687,
|
| 416 |
"learning_rate": 0.000132908887327601,
|
| 417 |
+
"loss": 3.8911352157592773,
|
| 418 |
+
"mean_token_accuracy": 0.8987201750278473,
|
| 419 |
"num_tokens": 102278.0,
|
| 420 |
"step": 41
|
| 421 |
},
|
| 422 |
{
|
| 423 |
+
"entropy": 0.10989912413060665,
|
| 424 |
"epoch": 0.8936170212765957,
|
| 425 |
+
"grad_norm": 1.014770746231079,
|
| 426 |
"learning_rate": 0.00012955581789656843,
|
| 427 |
+
"loss": 4.067371845245361,
|
| 428 |
+
"mean_token_accuracy": 0.8916666656732559,
|
| 429 |
"num_tokens": 104764.0,
|
| 430 |
"step": 42
|
| 431 |
},
|
| 432 |
{
|
| 433 |
+
"entropy": 0.11506957560777664,
|
| 434 |
"epoch": 0.9148936170212766,
|
| 435 |
+
"grad_norm": 0.4580586552619934,
|
| 436 |
"learning_rate": 0.0001261659255968441,
|
| 437 |
+
"loss": 4.101069927215576,
|
| 438 |
+
"mean_token_accuracy": 0.8936023861169815,
|
| 439 |
"num_tokens": 107201.0,
|
| 440 |
"step": 43
|
| 441 |
},
|
| 442 |
{
|
| 443 |
+
"entropy": 0.10838168673217297,
|
| 444 |
"epoch": 0.9361702127659575,
|
| 445 |
+
"grad_norm": 0.4166942536830902,
|
| 446 |
"learning_rate": 0.00012274343381211066,
|
| 447 |
+
"loss": 4.025703430175781,
|
| 448 |
+
"mean_token_accuracy": 0.8947224318981171,
|
| 449 |
"num_tokens": 109660.0,
|
| 450 |
"step": 44
|
| 451 |
},
|
| 452 |
{
|
| 453 |
+
"entropy": 0.09614014439284801,
|
| 454 |
"epoch": 0.9574468085106383,
|
| 455 |
+
"grad_norm": 0.9769757390022278,
|
| 456 |
"learning_rate": 0.00011929260654094969,
|
| 457 |
+
"loss": 4.121439456939697,
|
| 458 |
+
"mean_token_accuracy": 0.8903171271085739,
|
| 459 |
"num_tokens": 112117.0,
|
| 460 |
"step": 45
|
| 461 |
},
|
| 462 |
{
|
| 463 |
+
"entropy": 0.11138966307044029,
|
| 464 |
"epoch": 0.9787234042553191,
|
| 465 |
+
"grad_norm": 1.5290015935897827,
|
| 466 |
"learning_rate": 0.0001158177430844304,
|
| 467 |
+
"loss": 4.022660732269287,
|
| 468 |
+
"mean_token_accuracy": 0.8867548704147339,
|
| 469 |
"num_tokens": 114595.0,
|
| 470 |
"step": 46
|
| 471 |
},
|
| 472 |
{
|
| 473 |
+
"entropy": 0.10535211116075516,
|
| 474 |
"epoch": 1.0,
|
| 475 |
+
"grad_norm": 0.6933005452156067,
|
| 476 |
"learning_rate": 0.00011232317268971585,
|
| 477 |
+
"loss": 4.150263786315918,
|
| 478 |
+
"mean_token_accuracy": 0.8926616609096527,
|
| 479 |
"num_tokens": 117080.0,
|
| 480 |
"step": 47
|
| 481 |
},
|
|
|
|
| 485 |
"eval_loss": NaN,
|
| 486 |
"eval_mean_token_accuracy": 0.0,
|
| 487 |
"eval_num_tokens": 117080.0,
|
| 488 |
+
"eval_runtime": 14.1972,
|
| 489 |
+
"eval_samples_per_second": 21.131,
|
| 490 |
+
"eval_steps_per_second": 5.283,
|
| 491 |
"step": 47
|
| 492 |
},
|
| 493 |
{
|
| 494 |
+
"entropy": 0.10801766626536846,
|
| 495 |
"epoch": 1.0212765957446808,
|
| 496 |
+
"grad_norm": 0.7822345495223999,
|
| 497 |
"learning_rate": 0.00010881324915636019,
|
| 498 |
+
"loss": 4.09091854095459,
|
| 499 |
+
"mean_token_accuracy": 0.8906879872083664,
|
| 500 |
"num_tokens": 119621.0,
|
| 501 |
"step": 48
|
| 502 |
},
|
| 503 |
{
|
| 504 |
+
"entropy": 0.09913330711424351,
|
| 505 |
"epoch": 1.0425531914893618,
|
| 506 |
+
"grad_norm": 0.39496442675590515,
|
| 507 |
"learning_rate": 0.00010529234541201631,
|
| 508 |
+
"loss": 4.025051593780518,
|
| 509 |
+
"mean_token_accuracy": 0.8955279290676117,
|
| 510 |
"num_tokens": 122130.0,
|
| 511 |
"step": 49
|
| 512 |
},
|
| 513 |
{
|
| 514 |
+
"entropy": 0.1028544194996357,
|
| 515 |
"epoch": 1.0638297872340425,
|
| 516 |
+
"grad_norm": 0.6361362338066101,
|
| 517 |
"learning_rate": 0.00010176484806431288,
|
| 518 |
+
"loss": 3.9412522315979004,
|
| 519 |
+
"mean_token_accuracy": 0.8919207155704498,
|
| 520 |
"num_tokens": 124637.0,
|
| 521 |
"step": 50
|
| 522 |
},
|
| 523 |
{
|
| 524 |
+
"entropy": 0.11368882842361927,
|
| 525 |
"epoch": 1.0851063829787233,
|
| 526 |
+
"grad_norm": 0.31298503279685974,
|
| 527 |
"learning_rate": 9.823515193568715e-05,
|
| 528 |
+
"loss": 4.047340393066406,
|
| 529 |
+
"mean_token_accuracy": 0.8940476626157761,
|
| 530 |
"num_tokens": 127112.0,
|
| 531 |
"step": 51
|
| 532 |
},
|
| 533 |
{
|
| 534 |
+
"entropy": 0.10808366723358631,
|
| 535 |
"epoch": 1.1063829787234043,
|
| 536 |
+
"grad_norm": 0.49920883774757385,
|
| 537 |
"learning_rate": 9.470765458798368e-05,
|
| 538 |
+
"loss": 4.001613616943359,
|
| 539 |
+
"mean_token_accuracy": 0.889927327632904,
|
| 540 |
"num_tokens": 129587.0,
|
| 541 |
"step": 52
|
| 542 |
},
|
| 543 |
{
|
| 544 |
+
"entropy": 0.11089801043272018,
|
| 545 |
"epoch": 1.127659574468085,
|
| 546 |
+
"grad_norm": 0.46408575773239136,
|
| 547 |
"learning_rate": 9.118675084363986e-05,
|
| 548 |
+
"loss": 4.0368852615356445,
|
| 549 |
+
"mean_token_accuracy": 0.8947365581989288,
|
| 550 |
"num_tokens": 132070.0,
|
| 551 |
"step": 53
|
| 552 |
},
|
| 553 |
{
|
| 554 |
+
"entropy": 0.10656954161822796,
|
| 555 |
"epoch": 1.148936170212766,
|
| 556 |
+
"grad_norm": 0.3796578049659729,
|
| 557 |
"learning_rate": 8.767682731028415e-05,
|
| 558 |
+
"loss": 4.020212173461914,
|
| 559 |
+
"mean_token_accuracy": 0.8955279290676117,
|
| 560 |
"num_tokens": 134579.0,
|
| 561 |
"step": 54
|
| 562 |
},
|
| 563 |
{
|
| 564 |
+
"entropy": 0.11924762278795242,
|
| 565 |
"epoch": 1.1702127659574468,
|
| 566 |
+
"grad_norm": 0.21246585249900818,
|
| 567 |
"learning_rate": 8.418225691556962e-05,
|
| 568 |
+
"loss": 4.0544514656066895,
|
| 569 |
"mean_token_accuracy": 0.8960863649845123,
|
| 570 |
"num_tokens": 136943.0,
|
| 571 |
"step": 55
|
| 572 |
},
|
| 573 |
{
|
| 574 |
+
"entropy": 0.11127430945634842,
|
| 575 |
"epoch": 1.1914893617021276,
|
| 576 |
+
"grad_norm": 0.3929970860481262,
|
| 577 |
"learning_rate": 8.070739345905032e-05,
|
| 578 |
+
"loss": 4.095489025115967,
|
| 579 |
+
"mean_token_accuracy": 0.8973319381475449,
|
| 580 |
"num_tokens": 139492.0,
|
| 581 |
"step": 56
|
| 582 |
},
|
| 583 |
{
|
| 584 |
+
"entropy": 0.11025936901569366,
|
| 585 |
"epoch": 1.2127659574468086,
|
| 586 |
+
"grad_norm": 0.5039997696876526,
|
| 587 |
"learning_rate": 7.725656618788937e-05,
|
| 588 |
+
"loss": 4.091797828674316,
|
| 589 |
+
"mean_token_accuracy": 0.8902327716350555,
|
| 590 |
"num_tokens": 141944.0,
|
| 591 |
"step": 57
|
| 592 |
},
|
| 593 |
{
|
| 594 |
+
"entropy": 0.1125901136547327,
|
| 595 |
"epoch": 1.2340425531914894,
|
| 596 |
+
"grad_norm": 0.23206305503845215,
|
| 597 |
"learning_rate": 7.383407440315596e-05,
|
| 598 |
+
"loss": 4.056682586669922,
|
| 599 |
+
"mean_token_accuracy": 0.8979178667068481,
|
| 600 |
"num_tokens": 144392.0,
|
| 601 |
"step": 58
|
| 602 |
},
|
| 603 |
{
|
| 604 |
+
"entropy": 0.10212262719869614,
|
| 605 |
"epoch": 1.2553191489361701,
|
| 606 |
+
"grad_norm": 0.05287244915962219,
|
| 607 |
"learning_rate": 7.04441821034316e-05,
|
| 608 |
+
"loss": 3.9536325931549072,
|
| 609 |
"mean_token_accuracy": 0.899132177233696,
|
| 610 |
"num_tokens": 146822.0,
|
| 611 |
"step": 59
|
| 612 |
},
|
| 613 |
{
|
| 614 |
+
"entropy": 0.10311507619917393,
|
| 615 |
"epoch": 1.2765957446808511,
|
| 616 |
+
"grad_norm": 0.22314538061618805,
|
| 617 |
"learning_rate": 6.7091112672399e-05,
|
| 618 |
+
"loss": 4.06229829788208,
|
| 619 |
+
"mean_token_accuracy": 0.894688680768013,
|
| 620 |
"num_tokens": 149381.0,
|
| 621 |
"step": 60
|
| 622 |
},
|
| 623 |
{
|
| 624 |
+
"entropy": 0.11741508357226849,
|
| 625 |
"epoch": 1.297872340425532,
|
| 626 |
+
"grad_norm": 0.8379692435264587,
|
| 627 |
"learning_rate": 6.377904361703178e-05,
|
| 628 |
+
"loss": 4.129307270050049,
|
| 629 |
+
"mean_token_accuracy": 0.8864650130271912,
|
| 630 |
"num_tokens": 151872.0,
|
| 631 |
"step": 61
|
| 632 |
},
|
| 633 |
{
|
| 634 |
+
"entropy": 0.10069144517183304,
|
| 635 |
"epoch": 1.3191489361702127,
|
| 636 |
+
"grad_norm": 0.07896701246500015,
|
| 637 |
"learning_rate": 6.051210136294089e-05,
|
| 638 |
+
"loss": 3.9954659938812256,
|
| 639 |
"mean_token_accuracy": 0.8986529260873795,
|
| 640 |
"num_tokens": 154366.0,
|
| 641 |
"step": 62
|
| 642 |
},
|
| 643 |
{
|
| 644 |
+
"entropy": 0.10588889196515083,
|
| 645 |
"epoch": 1.3404255319148937,
|
| 646 |
+
"grad_norm": 0.37503722310066223,
|
| 647 |
"learning_rate": 5.729435611336239e-05,
|
| 648 |
+
"loss": 4.065610885620117,
|
| 649 |
"mean_token_accuracy": 0.8914495259523392,
|
| 650 |
"num_tokens": 156920.0,
|
| 651 |
"step": 63
|
| 652 |
},
|
| 653 |
{
|
| 654 |
+
"entropy": 0.10409239679574966,
|
| 655 |
"epoch": 1.3617021276595744,
|
| 656 |
+
"grad_norm": 0.33657321333885193,
|
| 657 |
"learning_rate": 5.4129816778190936e-05,
|
| 658 |
+
"loss": 3.9452602863311768,
|
| 659 |
+
"mean_token_accuracy": 0.8961538225412369,
|
| 660 |
"num_tokens": 159260.0,
|
| 661 |
"step": 64
|
| 662 |
},
|
| 663 |
{
|
| 664 |
+
"entropy": 0.10675412602722645,
|
| 665 |
"epoch": 1.3829787234042552,
|
| 666 |
+
"grad_norm": 0.23680685460567474,
|
| 667 |
"learning_rate": 5.102242597937717e-05,
|
| 668 |
+
"loss": 4.065974235534668,
|
| 669 |
"mean_token_accuracy": 0.8973371386528015,
|
| 670 |
"num_tokens": 161698.0,
|
| 671 |
"step": 65
|
| 672 |
},
|
| 673 |
{
|
| 674 |
+
"entropy": 0.11763200350105762,
|
| 675 |
"epoch": 1.4042553191489362,
|
| 676 |
+
"grad_norm": 0.48635369539260864,
|
| 677 |
"learning_rate": 4.797605513891179e-05,
|
| 678 |
+
"loss": 4.164796829223633,
|
| 679 |
+
"mean_token_accuracy": 0.8921221196651459,
|
| 680 |
"num_tokens": 164193.0,
|
| 681 |
"step": 66
|
| 682 |
},
|
| 683 |
{
|
| 684 |
+
"entropy": 0.09798314236104488,
|
| 685 |
"epoch": 1.425531914893617,
|
| 686 |
+
"grad_norm": 0.14462092518806458,
|
| 687 |
"learning_rate": 4.4994499655515865e-05,
|
| 688 |
+
"loss": 4.042727947235107,
|
| 689 |
+
"mean_token_accuracy": 0.8979178667068481,
|
| 690 |
"num_tokens": 166683.0,
|
| 691 |
"step": 67
|
| 692 |
},
|
| 693 |
{
|
| 694 |
+
"entropy": 0.10395899415016174,
|
| 695 |
"epoch": 1.4468085106382977,
|
| 696 |
+
"grad_norm": 0.06169198080897331,
|
| 697 |
"learning_rate": 4.2081474176046646e-05,
|
| 698 |
+
"loss": 4.123526573181152,
|
| 699 |
"mean_token_accuracy": 0.8957811146974564,
|
| 700 |
"num_tokens": 169151.0,
|
| 701 |
"step": 68
|
| 702 |
},
|
| 703 |
{
|
| 704 |
+
"entropy": 0.10421585291624069,
|
| 705 |
"epoch": 1.4680851063829787,
|
| 706 |
+
"grad_norm": 1.1794296503067017,
|
| 707 |
"learning_rate": 3.924060796751012e-05,
|
| 708 |
+
"loss": 4.157026767730713,
|
| 709 |
+
"mean_token_accuracy": 0.888762429356575,
|
| 710 |
"num_tokens": 171681.0,
|
| 711 |
"step": 69
|
| 712 |
},
|
| 713 |
{
|
| 714 |
+
"entropy": 0.09568466432392597,
|
| 715 |
"epoch": 1.4893617021276595,
|
| 716 |
+
"grad_norm": 0.02028118632733822,
|
| 717 |
"learning_rate": 3.647544039544615e-05,
|
| 718 |
+
"loss": 4.053896427154541,
|
| 719 |
"mean_token_accuracy": 0.8979416936635971,
|
| 720 |
"num_tokens": 174203.0,
|
| 721 |
"step": 70
|
| 722 |
},
|
| 723 |
{
|
| 724 |
+
"entropy": 0.10582420416176319,
|
| 725 |
"epoch": 1.5106382978723403,
|
| 726 |
+
"grad_norm": 0.1698542982339859,
|
| 727 |
"learning_rate": 3.378941651431996e-05,
|
| 728 |
+
"loss": 3.990485191345215,
|
| 729 |
"mean_token_accuracy": 0.898457407951355,
|
| 730 |
"num_tokens": 176621.0,
|
| 731 |
"step": 71
|
| 732 |
},
|
| 733 |
{
|
| 734 |
+
"entropy": 0.1072782352566719,
|
| 735 |
"epoch": 1.5319148936170213,
|
| 736 |
+
"grad_norm": 0.6851707100868225,
|
| 737 |
"learning_rate": 3.118588277541312e-05,
|
| 738 |
+
"loss": 4.162285327911377,
|
| 739 |
+
"mean_token_accuracy": 0.8921699970960617,
|
| 740 |
"num_tokens": 179126.0,
|
| 741 |
"step": 72
|
| 742 |
},
|
| 743 |
{
|
| 744 |
+
"entropy": 0.10387748293578625,
|
| 745 |
"epoch": 1.5531914893617023,
|
| 746 |
+
"grad_norm": 0.37178531289100647,
|
| 747 |
"learning_rate": 2.8668082857562005e-05,
|
| 748 |
+
"loss": 4.084682464599609,
|
| 749 |
+
"mean_token_accuracy": 0.8933728933334351,
|
| 750 |
"num_tokens": 181650.0,
|
| 751 |
"step": 73
|
| 752 |
},
|
| 753 |
{
|
| 754 |
+
"entropy": 0.10093368589878082,
|
| 755 |
"epoch": 1.574468085106383,
|
| 756 |
+
"grad_norm": 0.03769727796316147,
|
| 757 |
"learning_rate": 2.6239153625937784e-05,
|
| 758 |
+
"loss": 4.045993804931641,
|
| 759 |
"mean_token_accuracy": 0.8973006755113602,
|
| 760 |
"num_tokens": 184077.0,
|
| 761 |
"step": 74
|
| 762 |
},
|
| 763 |
{
|
| 764 |
+
"entropy": 0.09933018498122692,
|
| 765 |
"epoch": 1.5957446808510638,
|
| 766 |
+
"grad_norm": 0.06748200207948685,
|
| 767 |
"learning_rate": 2.390212122390323e-05,
|
| 768 |
+
"loss": 3.9992191791534424,
|
| 769 |
"mean_token_accuracy": 0.8992939442396164,
|
| 770 |
"num_tokens": 186549.0,
|
| 771 |
"step": 75
|
| 772 |
},
|
| 773 |
{
|
| 774 |
+
"entropy": 0.10636681690812111,
|
| 775 |
"epoch": 1.6170212765957448,
|
| 776 |
+
"grad_norm": 0.21794308722019196,
|
| 777 |
"learning_rate": 2.1659897302814747e-05,
|
| 778 |
+
"loss": 4.072402000427246,
|
| 779 |
"mean_token_accuracy": 0.8967273831367493,
|
| 780 |
"num_tokens": 189001.0,
|
| 781 |
"step": 76
|
| 782 |
},
|
| 783 |
{
|
| 784 |
+
"entropy": 0.09489450231194496,
|
| 785 |
"epoch": 1.6382978723404256,
|
| 786 |
+
"grad_norm": 0.20672070980072021,
|
| 787 |
"learning_rate": 1.9515275394467446e-05,
|
| 788 |
+
"loss": 3.8761157989501953,
|
| 789 |
"mean_token_accuracy": 0.9024099707603455,
|
| 790 |
"num_tokens": 191502.0,
|
| 791 |
"step": 77
|
| 792 |
},
|
| 793 |
{
|
| 794 |
+
"entropy": 0.09246066771447659,
|
| 795 |
"epoch": 1.6595744680851063,
|
| 796 |
+
"grad_norm": 0.2982085943222046,
|
| 797 |
"learning_rate": 1.7470927430702277e-05,
|
| 798 |
+
"loss": 4.011519432067871,
|
| 799 |
"mean_token_accuracy": 0.8992336541414261,
|
| 800 |
"num_tokens": 194063.0,
|
| 801 |
"step": 78
|
| 802 |
},
|
| 803 |
{
|
| 804 |
+
"entropy": 0.09505276940762997,
|
| 805 |
"epoch": 1.6808510638297873,
|
| 806 |
+
"grad_norm": 0.41892215609550476,
|
| 807 |
"learning_rate": 1.5529400414511806e-05,
|
| 808 |
+
"loss": 3.942739725112915,
|
| 809 |
+
"mean_token_accuracy": 0.8950906693935394,
|
| 810 |
"num_tokens": 196634.0,
|
| 811 |
"step": 79
|
| 812 |
},
|
| 813 |
{
|
| 814 |
+
"entropy": 0.10412091203033924,
|
| 815 |
"epoch": 1.702127659574468,
|
| 816 |
+
"grad_norm": 0.6482428312301636,
|
| 817 |
"learning_rate": 1.3693113246791589e-05,
|
| 818 |
+
"loss": 4.158843517303467,
|
| 819 |
"mean_token_accuracy": 0.8888326436281204,
|
| 820 |
"num_tokens": 199099.0,
|
| 821 |
"step": 80
|
| 822 |
},
|
| 823 |
{
|
| 824 |
+
"entropy": 0.09425530955195427,
|
| 825 |
"epoch": 1.7234042553191489,
|
| 826 |
+
"grad_norm": 0.07691552489995956,
|
| 827 |
"learning_rate": 1.196435371269089e-05,
|
| 828 |
+
"loss": 4.058327674865723,
|
| 829 |
"mean_token_accuracy": 0.8973006755113602,
|
| 830 |
"num_tokens": 201577.0,
|
| 831 |
"step": 81
|
| 832 |
},
|
| 833 |
{
|
| 834 |
+
"entropy": 0.10262792184948921,
|
| 835 |
"epoch": 1.7446808510638299,
|
| 836 |
+
"grad_norm": 0.8844386339187622,
|
| 837 |
"learning_rate": 1.0345275631317163e-05,
|
| 838 |
+
"loss": 4.1612653732299805,
|
| 839 |
+
"mean_token_accuracy": 0.8891943842172623,
|
| 840 |
"num_tokens": 204137.0,
|
| 841 |
"step": 82
|
| 842 |
},
|
| 843 |
{
|
| 844 |
+
"entropy": 0.09942430071532726,
|
| 845 |
"epoch": 1.7659574468085106,
|
| 846 |
+
"grad_norm": 0.3644232749938965,
|
| 847 |
"learning_rate": 8.837896172345827e-06,
|
| 848 |
+
"loss": 4.026100158691406,
|
| 849 |
"mean_token_accuracy": 0.8954477906227112,
|
| 850 |
"num_tokens": 206717.0,
|
| 851 |
"step": 83
|
| 852 |
},
|
| 853 |
{
|
| 854 |
+
"entropy": 0.0988146997988224,
|
| 855 |
"epoch": 1.7872340425531914,
|
| 856 |
+
"grad_norm": 0.2477438896894455,
|
| 857 |
"learning_rate": 7.4440933428779e-06,
|
| 858 |
+
"loss": 3.8571834564208984,
|
| 859 |
+
"mean_token_accuracy": 0.9018292427062988,
|
| 860 |
"num_tokens": 209169.0,
|
| 861 |
"step": 84
|
| 862 |
},
|
| 863 |
{
|
| 864 |
+
"entropy": 0.10586683638393879,
|
| 865 |
"epoch": 1.8085106382978724,
|
| 866 |
+
"grad_norm": 0.26259544491767883,
|
| 867 |
"learning_rate": 6.165603647677054e-06,
|
| 868 |
+
"loss": 3.961254358291626,
|
| 869 |
"mean_token_accuracy": 0.8967323154211044,
|
| 870 |
"num_tokens": 211565.0,
|
| 871 |
"step": 85
|
| 872 |
},
|
| 873 |
{
|
| 874 |
+
"entropy": 0.10182979516685009,
|
| 875 |
"epoch": 1.8297872340425532,
|
| 876 |
+
"grad_norm": 0.1101575642824173,
|
| 877 |
"learning_rate": 5.00401992570092e-06,
|
| 878 |
+
"loss": 4.137490272521973,
|
| 879 |
"mean_token_accuracy": 0.89537513256073,
|
| 880 |
"num_tokens": 214053.0,
|
| 881 |
"step": 86
|
| 882 |
},
|
| 883 |
{
|
| 884 |
+
"entropy": 0.10845262557268143,
|
| 885 |
"epoch": 1.851063829787234,
|
| 886 |
+
"grad_norm": 0.048552438616752625,
|
| 887 |
"learning_rate": 3.960789365622075e-06,
|
| 888 |
+
"loss": 4.191901206970215,
|
| 889 |
"mean_token_accuracy": 0.8933143615722656,
|
| 890 |
"num_tokens": 216498.0,
|
| 891 |
"step": 87
|
| 892 |
},
|
| 893 |
{
|
| 894 |
+
"entropy": 0.10030228458344936,
|
| 895 |
"epoch": 1.872340425531915,
|
| 896 |
+
"grad_norm": 0.3250134289264679,
|
| 897 |
"learning_rate": 3.0372117028111825e-06,
|
| 898 |
+
"loss": 4.097182750701904,
|
| 899 |
+
"mean_token_accuracy": 0.8939535617828369,
|
| 900 |
"num_tokens": 218982.0,
|
| 901 |
"step": 88
|
| 902 |
},
|
| 903 |
{
|
| 904 |
+
"entropy": 0.11286174692213535,
|
| 905 |
"epoch": 1.8936170212765957,
|
| 906 |
+
"grad_norm": 0.7210190892219543,
|
| 907 |
"learning_rate": 2.2344376000285604e-06,
|
| 908 |
+
"loss": 4.022359848022461,
|
| 909 |
+
"mean_token_accuracy": 0.8914642333984375,
|
| 910 |
"num_tokens": 221444.0,
|
| 911 |
"step": 89
|
| 912 |
},
|
| 913 |
{
|
| 914 |
+
"entropy": 0.10275478102266788,
|
| 915 |
"epoch": 1.9148936170212765,
|
| 916 |
+
"grad_norm": 0.3212966322898865,
|
| 917 |
"learning_rate": 1.553467213841664e-06,
|
| 918 |
+
"loss": 4.045522689819336,
|
| 919 |
+
"mean_token_accuracy": 0.8947365581989288,
|
| 920 |
"num_tokens": 223969.0,
|
| 921 |
"step": 90
|
| 922 |
},
|
| 923 |
{
|
| 924 |
+
"entropy": 0.10150141455233097,
|
| 925 |
"epoch": 1.9361702127659575,
|
| 926 |
+
"grad_norm": 0.23617830872535706,
|
| 927 |
"learning_rate": 9.951489485545695e-07,
|
| 928 |
+
"loss": 4.035382270812988,
|
| 929 |
"mean_token_accuracy": 0.8986529260873795,
|
| 930 |
"num_tokens": 226520.0,
|
| 931 |
"step": 91
|
| 932 |
},
|
| 933 |
{
|
| 934 |
+
"entropy": 0.10262680239975452,
|
| 935 |
"epoch": 1.9574468085106385,
|
| 936 |
+
"grad_norm": 0.4545777440071106,
|
| 937 |
"learning_rate": 5.60178399201805e-07,
|
| 938 |
+
"loss": 4.09911584854126,
|
| 939 |
+
"mean_token_accuracy": 0.8873096108436584,
|
| 940 |
"num_tokens": 229047.0,
|
| 941 |
"step": 92
|
| 942 |
},
|
| 943 |
{
|
| 944 |
+
"entropy": 0.09875928983092308,
|
| 945 |
"epoch": 1.978723404255319,
|
| 946 |
+
"grad_norm": 0.07097365707159042,
|
| 947 |
"learning_rate": 2.490974849236216e-07,
|
| 948 |
+
"loss": 4.016970157623291,
|
| 949 |
"mean_token_accuracy": 0.8986529260873795,
|
| 950 |
"num_tokens": 231567.0,
|
| 951 |
"step": 93
|
| 952 |
},
|
| 953 |
{
|
| 954 |
+
"entropy": 0.09762230329215527,
|
| 955 |
"epoch": 2.0,
|
| 956 |
+
"grad_norm": 0.3958527445793152,
|
| 957 |
"learning_rate": 6.229377380218005e-08,
|
| 958 |
+
"loss": 4.0623064041137695,
|
| 959 |
"mean_token_accuracy": 0.894871786236763,
|
| 960 |
"num_tokens": 234138.0,
|
| 961 |
"step": 94
|
|
|
|
| 966 |
"eval_loss": NaN,
|
| 967 |
"eval_mean_token_accuracy": 0.0,
|
| 968 |
"eval_num_tokens": 234138.0,
|
| 969 |
+
"eval_runtime": 13.8638,
|
| 970 |
+
"eval_samples_per_second": 21.639,
|
| 971 |
+
"eval_steps_per_second": 5.41,
|
| 972 |
"step": 94
|
| 973 |
}
|
| 974 |
],
|
|
|
|
| 998 |
"attributes": {}
|
| 999 |
}
|
| 1000 |
},
|
| 1001 |
+
"total_flos": 392624361701376.0,
|
| 1002 |
"train_batch_size": 2,
|
| 1003 |
"trial_name": null,
|
| 1004 |
"trial_params": null
|
checkpoint-94/training_args.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 5496
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:49a5fd350f76aacdefac1c174b863cb237ced8dddcf5626a48a21ab11428ac63
|
| 3 |
size 5496
|
predictions.jsonl
CHANGED
|
@@ -60,7 +60,7 @@
|
|
| 60 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nFELIXROOT adds a shortcut file to the startup folder for persistence.\n</cti>"}], "ground_truth": "T1547.001", "generated_content": "T1547.001"}
|
| 61 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nEmotet has used a self-extracting RAR file to deliver modules to victims. Emotet has also extracted embedded executables from files using hard-coded buffer offsets.\n</cti>"}], "ground_truth": "T1140", "generated_content": "T1140"}
|
| 62 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nAPT37's Freenki malware lists running processes using the Microsoft Windows API.\n</cti>"}], "ground_truth": "T1057", "generated_content": "T1057"}
|
| 63 |
-
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nINC Ransomware can use the Microsoft Win32 Restart Manager to kill processes with a specific handle or that are accessing resources it wants to encrypt.\n</cti>"}], "ground_truth": "T1057", "generated_content": "
|
| 64 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nHAFNIUM has used `tasklist` to enumerate processes.\n</cti>"}], "ground_truth": "T1057", "generated_content": "T1057"}
|
| 65 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nOne persistence mechanism used by CozyCar is to set itself to be executed at system startup by adding a Registry value under one of the following Registry keys: <br><code>HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Run\\</code> <br><code>HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Run\\</code> <br><code>HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer\\Run</code> <br><code>HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer\\Run</code>\n</cti>"}], "ground_truth": "T1547.001", "generated_content": "T1547.001"}
|
| 66 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nCORESHELL downloads another dropper from its C2 server.\n</cti>"}], "ground_truth": "T1105", "generated_content": "T1105"}
|
|
@@ -126,7 +126,7 @@
|
|
| 126 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nCosmicDuke can use HTTP or HTTPS for command and control to hard-coded C2 servers.\n</cti>"}], "ground_truth": "T1071.001", "generated_content": "T1071.001"}
|
| 127 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nCardinal RAT can download and execute additional payloads.\n</cti>"}], "ground_truth": "T1105", "generated_content": "T1105"}
|
| 128 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nDaggerfly utilizes victim machine operating system information to create custom User Agent strings for subsequent command and control communication.\n</cti>"}], "ground_truth": "T1082", "generated_content": "T1082"}
|
| 129 |
-
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nThe IceApple Server Variable Dumper module iterates over all server variables present for the current request and returns them to the adversary.\n</cti>"}], "ground_truth": "T1082", "generated_content": "
|
| 130 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nChChes collects the victim hostname, window resolution, and Microsoft Windows version.\n</cti>"}], "ground_truth": "T1082", "generated_content": "T1082"}
|
| 131 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nIPsec Helper connects to command and control servers via HTTP POST requests based on parameters hard-coded into the malware.\n</cti>"}], "ground_truth": "T1071.001", "generated_content": "T1071.001"}
|
| 132 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nDaserf uses HTTP for C2.\n</cti>"}], "ground_truth": "T1071.001", "generated_content": "T1071.001"}
|
|
@@ -141,7 +141,7 @@
|
|
| 141 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nAppleJeus has collected the victim host information after infection.\n</cti>"}], "ground_truth": "T1082", "generated_content": "T1082"}
|
| 142 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nFIN8 has used HTTPS for command and control.\n</cti>"}], "ground_truth": "T1071.001", "generated_content": "T1071.001"}
|
| 143 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nFIN7 has downloaded additional malware to execute on the victim's machine, including by using a PowerShell script to launch shellcode that retrieves an additional payload.\n</cti>"}], "ground_truth": "T1105", "generated_content": "T1059.003"}
|
| 144 |
-
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nDEADEYE can run `cmd /c copy /y /b C:\\Users\\public\\syslog_6-*.dat C:\\Users\\public\\syslog.dll` to combine separated sections of code into a single DLL prior to execution.\n</cti>"}], "ground_truth": "T1059.003", "generated_content": "
|
| 145 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nAPT41 used <code>cmd.exe /c</code> to execute commands on remote machines. APT41 used a batch file to install persistence for the Cobalt Strike BEACON loader.\n</cti>"}], "ground_truth": "T1059.003", "generated_content": "T1059.003"}
|
| 146 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nKV Botnet Activity removes on-disk copies of tools and other artifacts after it the primary botnet payload has been loaded into memory on the victim device.\n</cti>"}], "ground_truth": "T1070.004", "generated_content": "T1070.004"}
|
| 147 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nBrute Ratel C4 can enumerate all processes and locate specific process IDs .\n</cti>"}], "ground_truth": "T1057", "generated_content": "T1057"}
|
|
@@ -176,7 +176,7 @@
|
|
| 176 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nExplosive has used HTTP for communication.\n</cti>"}], "ground_truth": "T1071.001", "generated_content": "T1071.001"}
|
| 177 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nTurla has used shellcode to download Meterpreter after compromising a victim.\n</cti>"}], "ground_truth": "T1105", "generated_content": "T1105"}
|
| 178 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nCardinal RAT can execute commands.\n</cti>"}], "ground_truth": "T1059.003", "generated_content": "T1059.003"}
|
| 179 |
-
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nDragonfly has used batch scripts to enumerate network information, including information about trusts, zones, and the domain.\n</cti>"}], "ground_truth": "T1016", "generated_content": "
|
| 180 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nWinter Vivern delivered exploit payloads via base64-encoded payloads in malicious email messages.\n</cti>"}], "ground_truth": "T1140", "generated_content": "T1140"}
|
| 181 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nBundlore has used <code>openssl</code> to decrypt AES encrypted payload data. Bundlore has also used base64 and RC4 with a hardcoded key to deobfuscate data.\n</cti>"}], "ground_truth": "T1140", "generated_content": "T1140"}
|
| 182 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nRocke has deleted files on infected machines.\n</cti>"}], "ground_truth": "T1070.004", "generated_content": "T1070.004"}
|
|
@@ -244,7 +244,7 @@
|
|
| 244 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nMoonstone Sleet has gathered information on victim systems.\n</cti>"}], "ground_truth": "T1082", "generated_content": "T1082"}
|
| 245 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nAPT3 places scripts in the startup folder for persistence.\n</cti>"}], "ground_truth": "T1547.001", "generated_content": "T1547.001"}
|
| 246 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nDUSTTRAP can execute commands via `cmd.exe`.\n</cti>"}], "ground_truth": "T1059.003", "generated_content": "T1059.003"}
|
| 247 |
-
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nGravityRAT collects the MAC address, computer name, and CPU information.\n</cti>"}], "ground_truth": "T1082", "generated_content": "
|
| 248 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nGazer communicates with its C2 servers over HTTP.\n</cti>"}], "ground_truth": "T1071.001", "generated_content": "T1071.001"}
|
| 249 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nEarth Lusca has used certutil to decode a string into a cabinet file.\n</cti>"}], "ground_truth": "T1140", "generated_content": "T1140"}
|
| 250 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nGamaredon Group tools can delete files used during an operation.\n</cti>"}], "ground_truth": "T1070.004", "generated_content": "T1070.004"}
|
|
@@ -280,7 +280,7 @@
|
|
| 280 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nAria-body has used HTTP in C2 communications.\n</cti>"}], "ground_truth": "T1071.001", "generated_content": "T1071.001"}
|
| 281 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nCrimson has the ability to delete files from a compromised host.\n</cti>"}], "ground_truth": "T1070.004", "generated_content": "T1070.004"}
|
| 282 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nVarious implementations of CHOPSTICK communicate with C2 over HTTP.\n</cti>"}], "ground_truth": "T1071.001", "generated_content": "T1071.001"}
|
| 283 |
-
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nDuring its initial execution, BACKSPACE extracts operating system information from the infected host.\n</cti>"}], "ground_truth": "T1082", "generated_content": "
|
| 284 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nOne variant of CloudDuke uses HTTP and HTTPS for C2.\n</cti>"}], "ground_truth": "T1071.001", "generated_content": "T1071.001"}
|
| 285 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nDownPaper uses the command line.\n</cti>"}], "ground_truth": "T1059.003", "generated_content": "T1059.003"}
|
| 286 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nBackdoor.Oldrea collects information about running processes.\n</cti>"}], "ground_truth": "T1057", "generated_content": "T1057"}
|
|
|
|
| 60 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nFELIXROOT adds a shortcut file to the startup folder for persistence.\n</cti>"}], "ground_truth": "T1547.001", "generated_content": "T1547.001"}
|
| 61 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nEmotet has used a self-extracting RAR file to deliver modules to victims. Emotet has also extracted embedded executables from files using hard-coded buffer offsets.\n</cti>"}], "ground_truth": "T1140", "generated_content": "T1140"}
|
| 62 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nAPT37's Freenki malware lists running processes using the Microsoft Windows API.\n</cti>"}], "ground_truth": "T1057", "generated_content": "T1057"}
|
| 63 |
+
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nINC Ransomware can use the Microsoft Win32 Restart Manager to kill processes with a specific handle or that are accessing resources it wants to encrypt.\n</cti>"}], "ground_truth": "T1057", "generated_content": "T1059.003"}
|
| 64 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nHAFNIUM has used `tasklist` to enumerate processes.\n</cti>"}], "ground_truth": "T1057", "generated_content": "T1057"}
|
| 65 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nOne persistence mechanism used by CozyCar is to set itself to be executed at system startup by adding a Registry value under one of the following Registry keys: <br><code>HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Run\\</code> <br><code>HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Run\\</code> <br><code>HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer\\Run</code> <br><code>HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer\\Run</code>\n</cti>"}], "ground_truth": "T1547.001", "generated_content": "T1547.001"}
|
| 66 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nCORESHELL downloads another dropper from its C2 server.\n</cti>"}], "ground_truth": "T1105", "generated_content": "T1105"}
|
|
|
|
| 126 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nCosmicDuke can use HTTP or HTTPS for command and control to hard-coded C2 servers.\n</cti>"}], "ground_truth": "T1071.001", "generated_content": "T1071.001"}
|
| 127 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nCardinal RAT can download and execute additional payloads.\n</cti>"}], "ground_truth": "T1105", "generated_content": "T1105"}
|
| 128 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nDaggerfly utilizes victim machine operating system information to create custom User Agent strings for subsequent command and control communication.\n</cti>"}], "ground_truth": "T1082", "generated_content": "T1082"}
|
| 129 |
+
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nThe IceApple Server Variable Dumper module iterates over all server variables present for the current request and returns them to the adversary.\n</cti>"}], "ground_truth": "T1082", "generated_content": "T1082"}
|
| 130 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nChChes collects the victim hostname, window resolution, and Microsoft Windows version.\n</cti>"}], "ground_truth": "T1082", "generated_content": "T1082"}
|
| 131 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nIPsec Helper connects to command and control servers via HTTP POST requests based on parameters hard-coded into the malware.\n</cti>"}], "ground_truth": "T1071.001", "generated_content": "T1071.001"}
|
| 132 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nDaserf uses HTTP for C2.\n</cti>"}], "ground_truth": "T1071.001", "generated_content": "T1071.001"}
|
|
|
|
| 141 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nAppleJeus has collected the victim host information after infection.\n</cti>"}], "ground_truth": "T1082", "generated_content": "T1082"}
|
| 142 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nFIN8 has used HTTPS for command and control.\n</cti>"}], "ground_truth": "T1071.001", "generated_content": "T1071.001"}
|
| 143 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nFIN7 has downloaded additional malware to execute on the victim's machine, including by using a PowerShell script to launch shellcode that retrieves an additional payload.\n</cti>"}], "ground_truth": "T1105", "generated_content": "T1059.003"}
|
| 144 |
+
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nDEADEYE can run `cmd /c copy /y /b C:\\Users\\public\\syslog_6-*.dat C:\\Users\\public\\syslog.dll` to combine separated sections of code into a single DLL prior to execution.\n</cti>"}], "ground_truth": "T1059.003", "generated_content": "T1059.003"}
|
| 145 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nAPT41 used <code>cmd.exe /c</code> to execute commands on remote machines. APT41 used a batch file to install persistence for the Cobalt Strike BEACON loader.\n</cti>"}], "ground_truth": "T1059.003", "generated_content": "T1059.003"}
|
| 146 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nKV Botnet Activity removes on-disk copies of tools and other artifacts after it the primary botnet payload has been loaded into memory on the victim device.\n</cti>"}], "ground_truth": "T1070.004", "generated_content": "T1070.004"}
|
| 147 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nBrute Ratel C4 can enumerate all processes and locate specific process IDs .\n</cti>"}], "ground_truth": "T1057", "generated_content": "T1057"}
|
|
|
|
| 176 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nExplosive has used HTTP for communication.\n</cti>"}], "ground_truth": "T1071.001", "generated_content": "T1071.001"}
|
| 177 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nTurla has used shellcode to download Meterpreter after compromising a victim.\n</cti>"}], "ground_truth": "T1105", "generated_content": "T1105"}
|
| 178 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nCardinal RAT can execute commands.\n</cti>"}], "ground_truth": "T1059.003", "generated_content": "T1059.003"}
|
| 179 |
+
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nDragonfly has used batch scripts to enumerate network information, including information about trusts, zones, and the domain.\n</cti>"}], "ground_truth": "T1016", "generated_content": "T1082"}
|
| 180 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nWinter Vivern delivered exploit payloads via base64-encoded payloads in malicious email messages.\n</cti>"}], "ground_truth": "T1140", "generated_content": "T1140"}
|
| 181 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nBundlore has used <code>openssl</code> to decrypt AES encrypted payload data. Bundlore has also used base64 and RC4 with a hardcoded key to deobfuscate data.\n</cti>"}], "ground_truth": "T1140", "generated_content": "T1140"}
|
| 182 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nRocke has deleted files on infected machines.\n</cti>"}], "ground_truth": "T1070.004", "generated_content": "T1070.004"}
|
|
|
|
| 244 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nMoonstone Sleet has gathered information on victim systems.\n</cti>"}], "ground_truth": "T1082", "generated_content": "T1082"}
|
| 245 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nAPT3 places scripts in the startup folder for persistence.\n</cti>"}], "ground_truth": "T1547.001", "generated_content": "T1547.001"}
|
| 246 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nDUSTTRAP can execute commands via `cmd.exe`.\n</cti>"}], "ground_truth": "T1059.003", "generated_content": "T1059.003"}
|
| 247 |
+
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nGravityRAT collects the MAC address, computer name, and CPU information.\n</cti>"}], "ground_truth": "T1082", "generated_content": "T1016"}
|
| 248 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nGazer communicates with its C2 servers over HTTP.\n</cti>"}], "ground_truth": "T1071.001", "generated_content": "T1071.001"}
|
| 249 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nEarth Lusca has used certutil to decode a string into a cabinet file.\n</cti>"}], "ground_truth": "T1140", "generated_content": "T1140"}
|
| 250 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nGamaredon Group tools can delete files used during an operation.\n</cti>"}], "ground_truth": "T1070.004", "generated_content": "T1070.004"}
|
|
|
|
| 280 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nAria-body has used HTTP in C2 communications.\n</cti>"}], "ground_truth": "T1071.001", "generated_content": "T1071.001"}
|
| 281 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nCrimson has the ability to delete files from a compromised host.\n</cti>"}], "ground_truth": "T1070.004", "generated_content": "T1070.004"}
|
| 282 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nVarious implementations of CHOPSTICK communicate with C2 over HTTP.\n</cti>"}], "ground_truth": "T1071.001", "generated_content": "T1071.001"}
|
| 283 |
+
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nDuring its initial execution, BACKSPACE extracts operating system information from the infected host.\n</cti>"}], "ground_truth": "T1082", "generated_content": "T1083"}
|
| 284 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nOne variant of CloudDuke uses HTTP and HTTPS for C2.\n</cti>"}], "ground_truth": "T1071.001", "generated_content": "T1071.001"}
|
| 285 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nDownPaper uses the command line.\n</cti>"}], "ground_truth": "T1059.003", "generated_content": "T1059.003"}
|
| 286 |
{"messages": [{"role": "user", "content": "What ATT&CK technique does the following CTI procedure sentence describe?\n\n<cti>\nBackdoor.Oldrea collects information about running processes.\n</cti>"}], "ground_truth": "T1057", "generated_content": "T1057"}
|
training_args.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 5496
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:49a5fd350f76aacdefac1c174b863cb237ced8dddcf5626a48a21ab11428ac63
|
| 3 |
size 5496
|