Instructions to use roonbug/xghe5pi0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use roonbug/xghe5pi0 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="roonbug/xghe5pi0") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForImageTextToText processor = AutoProcessor.from_pretrained("roonbug/xghe5pi0") model = AutoModelForImageTextToText.from_pretrained("roonbug/xghe5pi0") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use roonbug/xghe5pi0 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "roonbug/xghe5pi0" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "roonbug/xghe5pi0", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/roonbug/xghe5pi0
- SGLang
How to use roonbug/xghe5pi0 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 "roonbug/xghe5pi0" \ --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": "roonbug/xghe5pi0", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'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 "roonbug/xghe5pi0" \ --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": "roonbug/xghe5pi0", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Docker Model Runner
How to use roonbug/xghe5pi0 with Docker Model Runner:
docker model run hf.co/roonbug/xghe5pi0
Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- checkpoint-1000/added_tokens.json +3 -0
- checkpoint-1000/chat_template.jinja +47 -0
- checkpoint-1000/config.json +110 -0
- checkpoint-1000/generation_config.json +13 -0
- checkpoint-1000/model-00001-of-00005.safetensors +3 -0
- checkpoint-1000/model-00002-of-00005.safetensors +3 -0
- checkpoint-1000/model-00003-of-00005.safetensors +3 -0
- checkpoint-1000/model-00004-of-00005.safetensors +3 -0
- checkpoint-1000/model-00005-of-00005.safetensors +3 -0
- checkpoint-1000/model.safetensors.index.json +0 -0
- checkpoint-1000/optimizer.pt +3 -0
- checkpoint-1000/rng_state.pth +3 -0
- checkpoint-1000/scheduler.pt +3 -0
- checkpoint-1000/special_tokens_map.json +33 -0
- checkpoint-1000/tokenizer.json +3 -0
- checkpoint-1000/tokenizer.model +3 -0
- checkpoint-1000/tokenizer_config.json +0 -0
- checkpoint-1000/trainer_state.json +1254 -0
- checkpoint-1000/training_args.bin +3 -0
.gitattributes
CHANGED
|
@@ -34,3 +34,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
checkpoint-500/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
checkpoint-500/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
checkpoint-1000/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
checkpoint-1000/added_tokens.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"<image_soft_token>": 262144
|
| 3 |
+
}
|
checkpoint-1000/chat_template.jinja
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{{ bos_token }}
|
| 2 |
+
{%- if messages[0]['role'] == 'system' -%}
|
| 3 |
+
{%- if messages[0]['content'] is string -%}
|
| 4 |
+
{%- set first_user_prefix = messages[0]['content'] + '
|
| 5 |
+
|
| 6 |
+
' -%}
|
| 7 |
+
{%- else -%}
|
| 8 |
+
{%- set first_user_prefix = messages[0]['content'][0]['text'] + '
|
| 9 |
+
|
| 10 |
+
' -%}
|
| 11 |
+
{%- endif -%}
|
| 12 |
+
{%- set loop_messages = messages[1:] -%}
|
| 13 |
+
{%- else -%}
|
| 14 |
+
{%- set first_user_prefix = "" -%}
|
| 15 |
+
{%- set loop_messages = messages -%}
|
| 16 |
+
{%- endif -%}
|
| 17 |
+
{%- for message in loop_messages -%}
|
| 18 |
+
{%- if (message['role'] == 'user') != (loop.index0 % 2 == 0) -%}
|
| 19 |
+
{{ raise_exception("Conversation roles must alternate user/assistant/user/assistant/...") }}
|
| 20 |
+
{%- endif -%}
|
| 21 |
+
{%- if (message['role'] == 'assistant') -%}
|
| 22 |
+
{%- set role = "model" -%}
|
| 23 |
+
{%- else -%}
|
| 24 |
+
{%- set role = message['role'] -%}
|
| 25 |
+
{%- endif -%}
|
| 26 |
+
{{ '<start_of_turn>' + role + '
|
| 27 |
+
' + (first_user_prefix if loop.first else "") }}
|
| 28 |
+
{%- if message['content'] is string -%}
|
| 29 |
+
{{ message['content'] | trim }}
|
| 30 |
+
{%- elif message['content'] is iterable -%}
|
| 31 |
+
{%- for item in message['content'] -%}
|
| 32 |
+
{%- if item['type'] == 'image' -%}
|
| 33 |
+
{{ '<start_of_image>' }}
|
| 34 |
+
{%- elif item['type'] == 'text' -%}
|
| 35 |
+
{{ item['text'] | trim }}
|
| 36 |
+
{%- endif -%}
|
| 37 |
+
{%- endfor -%}
|
| 38 |
+
{%- else -%}
|
| 39 |
+
{{ raise_exception("Invalid content type") }}
|
| 40 |
+
{%- endif -%}
|
| 41 |
+
{{ '<end_of_turn>
|
| 42 |
+
' }}
|
| 43 |
+
{%- endfor -%}
|
| 44 |
+
{%- if add_generation_prompt -%}
|
| 45 |
+
{{'<start_of_turn>model
|
| 46 |
+
'}}
|
| 47 |
+
{%- endif -%}
|
checkpoint-1000/config.json
ADDED
|
@@ -0,0 +1,110 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"Gemma3ForConditionalGeneration"
|
| 4 |
+
],
|
| 5 |
+
"boi_token_index": 255999,
|
| 6 |
+
"bos_token_id": 2,
|
| 7 |
+
"dtype": "bfloat16",
|
| 8 |
+
"eoi_token_index": 256000,
|
| 9 |
+
"eos_token_id": 1,
|
| 10 |
+
"image_token_index": 262144,
|
| 11 |
+
"initializer_range": 0.02,
|
| 12 |
+
"mm_tokens_per_image": 256,
|
| 13 |
+
"model_type": "gemma3",
|
| 14 |
+
"pad_token_id": 0,
|
| 15 |
+
"text_config": {
|
| 16 |
+
"_sliding_window_pattern": 6,
|
| 17 |
+
"attention_bias": false,
|
| 18 |
+
"attention_dropout": 0.0,
|
| 19 |
+
"attn_logit_softcapping": null,
|
| 20 |
+
"dtype": "bfloat16",
|
| 21 |
+
"final_logit_softcapping": null,
|
| 22 |
+
"head_dim": 256,
|
| 23 |
+
"hidden_activation": "gelu_pytorch_tanh",
|
| 24 |
+
"hidden_size": 3840,
|
| 25 |
+
"initializer_range": 0.02,
|
| 26 |
+
"intermediate_size": 15360,
|
| 27 |
+
"layer_types": [
|
| 28 |
+
"sliding_attention",
|
| 29 |
+
"sliding_attention",
|
| 30 |
+
"sliding_attention",
|
| 31 |
+
"sliding_attention",
|
| 32 |
+
"sliding_attention",
|
| 33 |
+
"full_attention",
|
| 34 |
+
"sliding_attention",
|
| 35 |
+
"sliding_attention",
|
| 36 |
+
"sliding_attention",
|
| 37 |
+
"sliding_attention",
|
| 38 |
+
"sliding_attention",
|
| 39 |
+
"full_attention",
|
| 40 |
+
"sliding_attention",
|
| 41 |
+
"sliding_attention",
|
| 42 |
+
"sliding_attention",
|
| 43 |
+
"sliding_attention",
|
| 44 |
+
"sliding_attention",
|
| 45 |
+
"full_attention",
|
| 46 |
+
"sliding_attention",
|
| 47 |
+
"sliding_attention",
|
| 48 |
+
"sliding_attention",
|
| 49 |
+
"sliding_attention",
|
| 50 |
+
"sliding_attention",
|
| 51 |
+
"full_attention",
|
| 52 |
+
"sliding_attention",
|
| 53 |
+
"sliding_attention",
|
| 54 |
+
"sliding_attention",
|
| 55 |
+
"sliding_attention",
|
| 56 |
+
"sliding_attention",
|
| 57 |
+
"full_attention",
|
| 58 |
+
"sliding_attention",
|
| 59 |
+
"sliding_attention",
|
| 60 |
+
"sliding_attention",
|
| 61 |
+
"sliding_attention",
|
| 62 |
+
"sliding_attention",
|
| 63 |
+
"full_attention",
|
| 64 |
+
"sliding_attention",
|
| 65 |
+
"sliding_attention",
|
| 66 |
+
"sliding_attention",
|
| 67 |
+
"sliding_attention",
|
| 68 |
+
"sliding_attention",
|
| 69 |
+
"full_attention",
|
| 70 |
+
"sliding_attention",
|
| 71 |
+
"sliding_attention",
|
| 72 |
+
"sliding_attention",
|
| 73 |
+
"sliding_attention",
|
| 74 |
+
"sliding_attention",
|
| 75 |
+
"full_attention"
|
| 76 |
+
],
|
| 77 |
+
"max_position_embeddings": 131072,
|
| 78 |
+
"model_type": "gemma3_text",
|
| 79 |
+
"num_attention_heads": 16,
|
| 80 |
+
"num_hidden_layers": 48,
|
| 81 |
+
"num_key_value_heads": 8,
|
| 82 |
+
"query_pre_attn_scalar": 256,
|
| 83 |
+
"rms_norm_eps": 1e-06,
|
| 84 |
+
"rope_local_base_freq": 10000.0,
|
| 85 |
+
"rope_scaling": {
|
| 86 |
+
"factor": 8.0,
|
| 87 |
+
"rope_type": "linear"
|
| 88 |
+
},
|
| 89 |
+
"rope_theta": 1000000.0,
|
| 90 |
+
"sliding_window": 1024,
|
| 91 |
+
"use_cache": true,
|
| 92 |
+
"vocab_size": 262208
|
| 93 |
+
},
|
| 94 |
+
"transformers_version": "4.56.1",
|
| 95 |
+
"vision_config": {
|
| 96 |
+
"attention_dropout": 0.0,
|
| 97 |
+
"dtype": "bfloat16",
|
| 98 |
+
"hidden_act": "gelu_pytorch_tanh",
|
| 99 |
+
"hidden_size": 1152,
|
| 100 |
+
"image_size": 896,
|
| 101 |
+
"intermediate_size": 4304,
|
| 102 |
+
"layer_norm_eps": 1e-06,
|
| 103 |
+
"model_type": "siglip_vision_model",
|
| 104 |
+
"num_attention_heads": 16,
|
| 105 |
+
"num_channels": 3,
|
| 106 |
+
"num_hidden_layers": 27,
|
| 107 |
+
"patch_size": 14,
|
| 108 |
+
"vision_use_head": false
|
| 109 |
+
}
|
| 110 |
+
}
|
checkpoint-1000/generation_config.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token_id": 2,
|
| 3 |
+
"do_sample": true,
|
| 4 |
+
"eos_token_id": [
|
| 5 |
+
1,
|
| 6 |
+
1,
|
| 7 |
+
106
|
| 8 |
+
],
|
| 9 |
+
"pad_token_id": 0,
|
| 10 |
+
"top_k": 64,
|
| 11 |
+
"top_p": 0.95,
|
| 12 |
+
"transformers_version": "4.56.1"
|
| 13 |
+
}
|
checkpoint-1000/model-00001-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4847447e92599833e8dbaa3067cd201c3bb5c052efa91f11ba891e43234f7832
|
| 3 |
+
size 4979902192
|
checkpoint-1000/model-00002-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:891bd54eed03cba9ee1e705533a02a8217fcc29f356e4a1f53e5fd0d178883ad
|
| 3 |
+
size 4931296592
|
checkpoint-1000/model-00003-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:78972a746c62d88055a7aaee472b082b407338db6f9ab7bcf2d3eed4dc82a296
|
| 3 |
+
size 4931296656
|
checkpoint-1000/model-00004-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d20884cf2adc6d062f77c5dc22d171746b0e785c8f2885c1a9361199f7e4728a
|
| 3 |
+
size 4931296656
|
checkpoint-1000/model-00005-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4bae7817e46100d353b97234224fe3f076403b1981bbd4fe223bbfdd7cc23417
|
| 3 |
+
size 4601000928
|
checkpoint-1000/model.safetensors.index.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-1000/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:64c0dca26ea69580df919707a3091c16d22776341b114351b7f124e24479df8f
|
| 3 |
+
size 14573116445
|
checkpoint-1000/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:acd74ad34e3c5060506b53a8a3fafbfb35d44065ee496b2abf3a0b9a3b93ba09
|
| 3 |
+
size 14645
|
checkpoint-1000/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6078e52773a379f026b8fbbbc5546ab7ed9418d05b713f8aff2a4f3c7e12f108
|
| 3 |
+
size 1465
|
checkpoint-1000/special_tokens_map.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"boi_token": "<start_of_image>",
|
| 3 |
+
"bos_token": {
|
| 4 |
+
"content": "<bos>",
|
| 5 |
+
"lstrip": false,
|
| 6 |
+
"normalized": false,
|
| 7 |
+
"rstrip": false,
|
| 8 |
+
"single_word": false
|
| 9 |
+
},
|
| 10 |
+
"eoi_token": "<end_of_image>",
|
| 11 |
+
"eos_token": {
|
| 12 |
+
"content": "<eos>",
|
| 13 |
+
"lstrip": false,
|
| 14 |
+
"normalized": false,
|
| 15 |
+
"rstrip": false,
|
| 16 |
+
"single_word": false
|
| 17 |
+
},
|
| 18 |
+
"image_token": "<image_soft_token>",
|
| 19 |
+
"pad_token": {
|
| 20 |
+
"content": "<pad>",
|
| 21 |
+
"lstrip": false,
|
| 22 |
+
"normalized": false,
|
| 23 |
+
"rstrip": false,
|
| 24 |
+
"single_word": false
|
| 25 |
+
},
|
| 26 |
+
"unk_token": {
|
| 27 |
+
"content": "<unk>",
|
| 28 |
+
"lstrip": false,
|
| 29 |
+
"normalized": false,
|
| 30 |
+
"rstrip": false,
|
| 31 |
+
"single_word": false
|
| 32 |
+
}
|
| 33 |
+
}
|
checkpoint-1000/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4667f2089529e8e7657cfb6d1c19910ae71ff5f28aa7ab2ff2763330affad795
|
| 3 |
+
size 33384568
|
checkpoint-1000/tokenizer.model
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1299c11d7cf632ef3b4e11937501358ada021bbdf7c47638d13c0ee982f2e79c
|
| 3 |
+
size 4689074
|
checkpoint-1000/tokenizer_config.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-1000/trainer_state.json
ADDED
|
@@ -0,0 +1,1254 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.4,
|
| 6 |
+
"eval_steps": 100,
|
| 7 |
+
"global_step": 1000,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"entropy": 0.40615240833722055,
|
| 14 |
+
"epoch": 0.004,
|
| 15 |
+
"grad_norm": 255.0,
|
| 16 |
+
"learning_rate": 1.8e-07,
|
| 17 |
+
"loss": 17.6434,
|
| 18 |
+
"mean_token_accuracy": 0.7695769021287561,
|
| 19 |
+
"num_tokens": 72542.0,
|
| 20 |
+
"step": 10
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"entropy": 0.3965892889536917,
|
| 24 |
+
"epoch": 0.008,
|
| 25 |
+
"grad_norm": 334.0,
|
| 26 |
+
"learning_rate": 3.8e-07,
|
| 27 |
+
"loss": 17.7492,
|
| 28 |
+
"mean_token_accuracy": 0.7730019390583038,
|
| 29 |
+
"num_tokens": 138146.0,
|
| 30 |
+
"step": 20
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"entropy": 0.3902019609231502,
|
| 34 |
+
"epoch": 0.012,
|
| 35 |
+
"grad_norm": 276.0,
|
| 36 |
+
"learning_rate": 5.800000000000001e-07,
|
| 37 |
+
"loss": 16.933,
|
| 38 |
+
"mean_token_accuracy": 0.7769877038896084,
|
| 39 |
+
"num_tokens": 208409.0,
|
| 40 |
+
"step": 30
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"entropy": 0.40995794120244683,
|
| 44 |
+
"epoch": 0.016,
|
| 45 |
+
"grad_norm": 199.0,
|
| 46 |
+
"learning_rate": 7.8e-07,
|
| 47 |
+
"loss": 16.9985,
|
| 48 |
+
"mean_token_accuracy": 0.7748937096446753,
|
| 49 |
+
"num_tokens": 280941.0,
|
| 50 |
+
"step": 40
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"entropy": 0.42301482539623975,
|
| 54 |
+
"epoch": 0.02,
|
| 55 |
+
"grad_norm": 340.0,
|
| 56 |
+
"learning_rate": 9.800000000000001e-07,
|
| 57 |
+
"loss": 17.2256,
|
| 58 |
+
"mean_token_accuracy": 0.7713327277451754,
|
| 59 |
+
"num_tokens": 349731.0,
|
| 60 |
+
"step": 50
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"entropy": 0.46000946732237935,
|
| 64 |
+
"epoch": 0.024,
|
| 65 |
+
"grad_norm": 280.0,
|
| 66 |
+
"learning_rate": 1.1800000000000001e-06,
|
| 67 |
+
"loss": 17.6526,
|
| 68 |
+
"mean_token_accuracy": 0.764429247379303,
|
| 69 |
+
"num_tokens": 419127.0,
|
| 70 |
+
"step": 60
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"entropy": 0.43395038205198944,
|
| 74 |
+
"epoch": 0.028,
|
| 75 |
+
"grad_norm": 238.0,
|
| 76 |
+
"learning_rate": 1.3800000000000001e-06,
|
| 77 |
+
"loss": 16.1299,
|
| 78 |
+
"mean_token_accuracy": 0.7780056711286306,
|
| 79 |
+
"num_tokens": 489016.0,
|
| 80 |
+
"step": 70
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"entropy": 0.4683163737878203,
|
| 84 |
+
"epoch": 0.032,
|
| 85 |
+
"grad_norm": 178.0,
|
| 86 |
+
"learning_rate": 1.5800000000000001e-06,
|
| 87 |
+
"loss": 15.4388,
|
| 88 |
+
"mean_token_accuracy": 0.7803558874875307,
|
| 89 |
+
"num_tokens": 558056.0,
|
| 90 |
+
"step": 80
|
| 91 |
+
},
|
| 92 |
+
{
|
| 93 |
+
"entropy": 0.5069354984909296,
|
| 94 |
+
"epoch": 0.036,
|
| 95 |
+
"grad_norm": 248.0,
|
| 96 |
+
"learning_rate": 1.7800000000000001e-06,
|
| 97 |
+
"loss": 15.403,
|
| 98 |
+
"mean_token_accuracy": 0.7772221932187676,
|
| 99 |
+
"num_tokens": 627804.0,
|
| 100 |
+
"step": 90
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"entropy": 0.54353212909773,
|
| 104 |
+
"epoch": 0.04,
|
| 105 |
+
"grad_norm": 168.0,
|
| 106 |
+
"learning_rate": 1.98e-06,
|
| 107 |
+
"loss": 14.7499,
|
| 108 |
+
"mean_token_accuracy": 0.7799132943153382,
|
| 109 |
+
"num_tokens": 697556.0,
|
| 110 |
+
"step": 100
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"epoch": 0.04,
|
| 114 |
+
"eval_chemistry_entropy": 0.40587379191815853,
|
| 115 |
+
"eval_chemistry_loss": 0.787173867225647,
|
| 116 |
+
"eval_chemistry_mean_token_accuracy": 0.8101002821922302,
|
| 117 |
+
"eval_chemistry_num_tokens": 697556.0,
|
| 118 |
+
"eval_chemistry_runtime": 54.0871,
|
| 119 |
+
"eval_chemistry_samples_per_second": 9.244,
|
| 120 |
+
"eval_chemistry_steps_per_second": 9.244,
|
| 121 |
+
"step": 100
|
| 122 |
+
},
|
| 123 |
+
{
|
| 124 |
+
"epoch": 0.04,
|
| 125 |
+
"eval_math_entropy": 0.5863081520199775,
|
| 126 |
+
"eval_math_loss": 0.9441913962364197,
|
| 127 |
+
"eval_math_mean_token_accuracy": 0.7719187951087951,
|
| 128 |
+
"eval_math_num_tokens": 697556.0,
|
| 129 |
+
"eval_math_runtime": 55.9061,
|
| 130 |
+
"eval_math_samples_per_second": 8.944,
|
| 131 |
+
"eval_math_steps_per_second": 8.944,
|
| 132 |
+
"step": 100
|
| 133 |
+
},
|
| 134 |
+
{
|
| 135 |
+
"entropy": 0.5997343350201845,
|
| 136 |
+
"epoch": 0.044,
|
| 137 |
+
"grad_norm": 169.0,
|
| 138 |
+
"learning_rate": 2.1800000000000003e-06,
|
| 139 |
+
"loss": 14.888,
|
| 140 |
+
"mean_token_accuracy": 0.7764014065265655,
|
| 141 |
+
"num_tokens": 765262.0,
|
| 142 |
+
"step": 110
|
| 143 |
+
},
|
| 144 |
+
{
|
| 145 |
+
"entropy": 0.6096270757727325,
|
| 146 |
+
"epoch": 0.048,
|
| 147 |
+
"grad_norm": 116.0,
|
| 148 |
+
"learning_rate": 2.38e-06,
|
| 149 |
+
"loss": 13.5066,
|
| 150 |
+
"mean_token_accuracy": 0.7883317556232214,
|
| 151 |
+
"num_tokens": 836753.0,
|
| 152 |
+
"step": 120
|
| 153 |
+
},
|
| 154 |
+
{
|
| 155 |
+
"entropy": 0.6704345874488353,
|
| 156 |
+
"epoch": 0.052,
|
| 157 |
+
"grad_norm": 137.0,
|
| 158 |
+
"learning_rate": 2.5800000000000003e-06,
|
| 159 |
+
"loss": 13.7751,
|
| 160 |
+
"mean_token_accuracy": 0.7803409658372402,
|
| 161 |
+
"num_tokens": 909947.0,
|
| 162 |
+
"step": 130
|
| 163 |
+
},
|
| 164 |
+
{
|
| 165 |
+
"entropy": 0.7165370973758399,
|
| 166 |
+
"epoch": 0.056,
|
| 167 |
+
"grad_norm": 100.5,
|
| 168 |
+
"learning_rate": 2.7800000000000005e-06,
|
| 169 |
+
"loss": 13.8237,
|
| 170 |
+
"mean_token_accuracy": 0.7797280913218856,
|
| 171 |
+
"num_tokens": 981959.0,
|
| 172 |
+
"step": 140
|
| 173 |
+
},
|
| 174 |
+
{
|
| 175 |
+
"entropy": 0.7298246519640088,
|
| 176 |
+
"epoch": 0.06,
|
| 177 |
+
"grad_norm": 103.0,
|
| 178 |
+
"learning_rate": 2.9800000000000003e-06,
|
| 179 |
+
"loss": 13.2219,
|
| 180 |
+
"mean_token_accuracy": 0.7851537428796291,
|
| 181 |
+
"num_tokens": 1053624.0,
|
| 182 |
+
"step": 150
|
| 183 |
+
},
|
| 184 |
+
{
|
| 185 |
+
"entropy": 0.7729588491842151,
|
| 186 |
+
"epoch": 0.064,
|
| 187 |
+
"grad_norm": 88.0,
|
| 188 |
+
"learning_rate": 3.1800000000000005e-06,
|
| 189 |
+
"loss": 13.4792,
|
| 190 |
+
"mean_token_accuracy": 0.7815716501325369,
|
| 191 |
+
"num_tokens": 1126446.0,
|
| 192 |
+
"step": 160
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"entropy": 0.7438578702509403,
|
| 196 |
+
"epoch": 0.068,
|
| 197 |
+
"grad_norm": 448.0,
|
| 198 |
+
"learning_rate": 3.3800000000000007e-06,
|
| 199 |
+
"loss": 12.8028,
|
| 200 |
+
"mean_token_accuracy": 0.7896847818046808,
|
| 201 |
+
"num_tokens": 1196286.0,
|
| 202 |
+
"step": 170
|
| 203 |
+
},
|
| 204 |
+
{
|
| 205 |
+
"entropy": 0.7233589397743344,
|
| 206 |
+
"epoch": 0.072,
|
| 207 |
+
"grad_norm": 69.5,
|
| 208 |
+
"learning_rate": 3.58e-06,
|
| 209 |
+
"loss": 12.5001,
|
| 210 |
+
"mean_token_accuracy": 0.7914219040423631,
|
| 211 |
+
"num_tokens": 1273905.0,
|
| 212 |
+
"step": 180
|
| 213 |
+
},
|
| 214 |
+
{
|
| 215 |
+
"entropy": 0.745759145822376,
|
| 216 |
+
"epoch": 0.076,
|
| 217 |
+
"grad_norm": 64.5,
|
| 218 |
+
"learning_rate": 3.7800000000000002e-06,
|
| 219 |
+
"loss": 12.783,
|
| 220 |
+
"mean_token_accuracy": 0.7839695058763028,
|
| 221 |
+
"num_tokens": 1346454.0,
|
| 222 |
+
"step": 190
|
| 223 |
+
},
|
| 224 |
+
{
|
| 225 |
+
"entropy": 0.7534141565673054,
|
| 226 |
+
"epoch": 0.08,
|
| 227 |
+
"grad_norm": 81.0,
|
| 228 |
+
"learning_rate": 3.980000000000001e-06,
|
| 229 |
+
"loss": 12.5955,
|
| 230 |
+
"mean_token_accuracy": 0.7919603064656258,
|
| 231 |
+
"num_tokens": 1413596.0,
|
| 232 |
+
"step": 200
|
| 233 |
+
},
|
| 234 |
+
{
|
| 235 |
+
"epoch": 0.08,
|
| 236 |
+
"eval_chemistry_entropy": 0.5783105248510838,
|
| 237 |
+
"eval_chemistry_loss": 0.6815671324729919,
|
| 238 |
+
"eval_chemistry_mean_token_accuracy": 0.8137290213108063,
|
| 239 |
+
"eval_chemistry_num_tokens": 1413596.0,
|
| 240 |
+
"eval_chemistry_runtime": 54.2654,
|
| 241 |
+
"eval_chemistry_samples_per_second": 9.214,
|
| 242 |
+
"eval_chemistry_steps_per_second": 9.214,
|
| 243 |
+
"step": 200
|
| 244 |
+
},
|
| 245 |
+
{
|
| 246 |
+
"epoch": 0.08,
|
| 247 |
+
"eval_math_entropy": 0.7573327482938766,
|
| 248 |
+
"eval_math_loss": 0.7936341762542725,
|
| 249 |
+
"eval_math_mean_token_accuracy": 0.7876009732484818,
|
| 250 |
+
"eval_math_num_tokens": 1413596.0,
|
| 251 |
+
"eval_math_runtime": 55.9908,
|
| 252 |
+
"eval_math_samples_per_second": 8.93,
|
| 253 |
+
"eval_math_steps_per_second": 8.93,
|
| 254 |
+
"step": 200
|
| 255 |
+
},
|
| 256 |
+
{
|
| 257 |
+
"entropy": 0.6914544056169689,
|
| 258 |
+
"epoch": 0.084,
|
| 259 |
+
"grad_norm": 64.0,
|
| 260 |
+
"learning_rate": 4.18e-06,
|
| 261 |
+
"loss": 11.6084,
|
| 262 |
+
"mean_token_accuracy": 0.8023380789905786,
|
| 263 |
+
"num_tokens": 1485147.0,
|
| 264 |
+
"step": 210
|
| 265 |
+
},
|
| 266 |
+
{
|
| 267 |
+
"entropy": 0.7164348528720439,
|
| 268 |
+
"epoch": 0.088,
|
| 269 |
+
"grad_norm": 59.5,
|
| 270 |
+
"learning_rate": 4.38e-06,
|
| 271 |
+
"loss": 11.9002,
|
| 272 |
+
"mean_token_accuracy": 0.7977396491914988,
|
| 273 |
+
"num_tokens": 1559450.0,
|
| 274 |
+
"step": 220
|
| 275 |
+
},
|
| 276 |
+
{
|
| 277 |
+
"entropy": 0.7300810461863876,
|
| 278 |
+
"epoch": 0.092,
|
| 279 |
+
"grad_norm": 60.5,
|
| 280 |
+
"learning_rate": 4.58e-06,
|
| 281 |
+
"loss": 11.9903,
|
| 282 |
+
"mean_token_accuracy": 0.796798275783658,
|
| 283 |
+
"num_tokens": 1631535.0,
|
| 284 |
+
"step": 230
|
| 285 |
+
},
|
| 286 |
+
{
|
| 287 |
+
"entropy": 0.7203218000009656,
|
| 288 |
+
"epoch": 0.096,
|
| 289 |
+
"grad_norm": 61.5,
|
| 290 |
+
"learning_rate": 4.78e-06,
|
| 291 |
+
"loss": 11.71,
|
| 292 |
+
"mean_token_accuracy": 0.7997211128473282,
|
| 293 |
+
"num_tokens": 1701193.0,
|
| 294 |
+
"step": 240
|
| 295 |
+
},
|
| 296 |
+
{
|
| 297 |
+
"entropy": 0.7253720635548234,
|
| 298 |
+
"epoch": 0.1,
|
| 299 |
+
"grad_norm": 55.75,
|
| 300 |
+
"learning_rate": 4.980000000000001e-06,
|
| 301 |
+
"loss": 11.7979,
|
| 302 |
+
"mean_token_accuracy": 0.7965766046196222,
|
| 303 |
+
"num_tokens": 1773596.0,
|
| 304 |
+
"step": 250
|
| 305 |
+
},
|
| 306 |
+
{
|
| 307 |
+
"entropy": 0.7394886416383087,
|
| 308 |
+
"epoch": 0.104,
|
| 309 |
+
"grad_norm": 54.25,
|
| 310 |
+
"learning_rate": 5.18e-06,
|
| 311 |
+
"loss": 12.2261,
|
| 312 |
+
"mean_token_accuracy": 0.7902322862297296,
|
| 313 |
+
"num_tokens": 1840165.0,
|
| 314 |
+
"step": 260
|
| 315 |
+
},
|
| 316 |
+
{
|
| 317 |
+
"entropy": 0.7491293519735336,
|
| 318 |
+
"epoch": 0.108,
|
| 319 |
+
"grad_norm": 115.5,
|
| 320 |
+
"learning_rate": 5.380000000000001e-06,
|
| 321 |
+
"loss": 12.1736,
|
| 322 |
+
"mean_token_accuracy": 0.7910951185971499,
|
| 323 |
+
"num_tokens": 1908149.0,
|
| 324 |
+
"step": 270
|
| 325 |
+
},
|
| 326 |
+
{
|
| 327 |
+
"entropy": 0.7066912613809109,
|
| 328 |
+
"epoch": 0.112,
|
| 329 |
+
"grad_norm": 63.0,
|
| 330 |
+
"learning_rate": 5.580000000000001e-06,
|
| 331 |
+
"loss": 11.3088,
|
| 332 |
+
"mean_token_accuracy": 0.8060384418815374,
|
| 333 |
+
"num_tokens": 1979232.0,
|
| 334 |
+
"step": 280
|
| 335 |
+
},
|
| 336 |
+
{
|
| 337 |
+
"entropy": 0.7260928615927696,
|
| 338 |
+
"epoch": 0.116,
|
| 339 |
+
"grad_norm": 45.0,
|
| 340 |
+
"learning_rate": 5.78e-06,
|
| 341 |
+
"loss": 11.7944,
|
| 342 |
+
"mean_token_accuracy": 0.7980801545083522,
|
| 343 |
+
"num_tokens": 2052039.0,
|
| 344 |
+
"step": 290
|
| 345 |
+
},
|
| 346 |
+
{
|
| 347 |
+
"entropy": 0.7076106617227197,
|
| 348 |
+
"epoch": 0.12,
|
| 349 |
+
"grad_norm": 55.0,
|
| 350 |
+
"learning_rate": 5.98e-06,
|
| 351 |
+
"loss": 11.6468,
|
| 352 |
+
"mean_token_accuracy": 0.8010890077799558,
|
| 353 |
+
"num_tokens": 2125815.0,
|
| 354 |
+
"step": 300
|
| 355 |
+
},
|
| 356 |
+
{
|
| 357 |
+
"epoch": 0.12,
|
| 358 |
+
"eval_chemistry_entropy": 0.6047877628803253,
|
| 359 |
+
"eval_chemistry_loss": 0.6664053797721863,
|
| 360 |
+
"eval_chemistry_mean_token_accuracy": 0.8136081092357635,
|
| 361 |
+
"eval_chemistry_num_tokens": 2125815.0,
|
| 362 |
+
"eval_chemistry_runtime": 54.0763,
|
| 363 |
+
"eval_chemistry_samples_per_second": 9.246,
|
| 364 |
+
"eval_chemistry_steps_per_second": 9.246,
|
| 365 |
+
"step": 300
|
| 366 |
+
},
|
| 367 |
+
{
|
| 368 |
+
"epoch": 0.12,
|
| 369 |
+
"eval_math_entropy": 0.7215209539234638,
|
| 370 |
+
"eval_math_loss": 0.7359998822212219,
|
| 371 |
+
"eval_math_mean_token_accuracy": 0.7973045570850372,
|
| 372 |
+
"eval_math_num_tokens": 2125815.0,
|
| 373 |
+
"eval_math_runtime": 55.9216,
|
| 374 |
+
"eval_math_samples_per_second": 8.941,
|
| 375 |
+
"eval_math_steps_per_second": 8.941,
|
| 376 |
+
"step": 300
|
| 377 |
+
},
|
| 378 |
+
{
|
| 379 |
+
"entropy": 0.716811947338283,
|
| 380 |
+
"epoch": 0.124,
|
| 381 |
+
"grad_norm": 58.75,
|
| 382 |
+
"learning_rate": 6.18e-06,
|
| 383 |
+
"loss": 11.674,
|
| 384 |
+
"mean_token_accuracy": 0.7994389187544584,
|
| 385 |
+
"num_tokens": 2201991.0,
|
| 386 |
+
"step": 310
|
| 387 |
+
},
|
| 388 |
+
{
|
| 389 |
+
"entropy": 0.702051258739084,
|
| 390 |
+
"epoch": 0.128,
|
| 391 |
+
"grad_norm": 50.25,
|
| 392 |
+
"learning_rate": 6.380000000000001e-06,
|
| 393 |
+
"loss": 11.26,
|
| 394 |
+
"mean_token_accuracy": 0.8070401795208454,
|
| 395 |
+
"num_tokens": 2274177.0,
|
| 396 |
+
"step": 320
|
| 397 |
+
},
|
| 398 |
+
{
|
| 399 |
+
"entropy": 0.7048663217574358,
|
| 400 |
+
"epoch": 0.132,
|
| 401 |
+
"grad_norm": 48.0,
|
| 402 |
+
"learning_rate": 6.5800000000000005e-06,
|
| 403 |
+
"loss": 11.3615,
|
| 404 |
+
"mean_token_accuracy": 0.8019439272582531,
|
| 405 |
+
"num_tokens": 2342173.0,
|
| 406 |
+
"step": 330
|
| 407 |
+
},
|
| 408 |
+
{
|
| 409 |
+
"entropy": 0.6837939724326134,
|
| 410 |
+
"epoch": 0.136,
|
| 411 |
+
"grad_norm": 55.5,
|
| 412 |
+
"learning_rate": 6.780000000000001e-06,
|
| 413 |
+
"loss": 11.0291,
|
| 414 |
+
"mean_token_accuracy": 0.8044715665280819,
|
| 415 |
+
"num_tokens": 2412435.0,
|
| 416 |
+
"step": 340
|
| 417 |
+
},
|
| 418 |
+
{
|
| 419 |
+
"entropy": 0.7035049640573561,
|
| 420 |
+
"epoch": 0.14,
|
| 421 |
+
"grad_norm": 52.25,
|
| 422 |
+
"learning_rate": 6.98e-06,
|
| 423 |
+
"loss": 11.5752,
|
| 424 |
+
"mean_token_accuracy": 0.7999796941876411,
|
| 425 |
+
"num_tokens": 2481105.0,
|
| 426 |
+
"step": 350
|
| 427 |
+
},
|
| 428 |
+
{
|
| 429 |
+
"entropy": 0.6804045747034252,
|
| 430 |
+
"epoch": 0.144,
|
| 431 |
+
"grad_norm": 47.75,
|
| 432 |
+
"learning_rate": 7.180000000000001e-06,
|
| 433 |
+
"loss": 10.8378,
|
| 434 |
+
"mean_token_accuracy": 0.8108949448913336,
|
| 435 |
+
"num_tokens": 2548445.0,
|
| 436 |
+
"step": 360
|
| 437 |
+
},
|
| 438 |
+
{
|
| 439 |
+
"entropy": 0.6590544011443853,
|
| 440 |
+
"epoch": 0.148,
|
| 441 |
+
"grad_norm": 43.0,
|
| 442 |
+
"learning_rate": 7.3800000000000005e-06,
|
| 443 |
+
"loss": 10.5149,
|
| 444 |
+
"mean_token_accuracy": 0.8155259877443314,
|
| 445 |
+
"num_tokens": 2621364.0,
|
| 446 |
+
"step": 370
|
| 447 |
+
},
|
| 448 |
+
{
|
| 449 |
+
"entropy": 0.6717178193852306,
|
| 450 |
+
"epoch": 0.152,
|
| 451 |
+
"grad_norm": 60.5,
|
| 452 |
+
"learning_rate": 7.58e-06,
|
| 453 |
+
"loss": 10.8081,
|
| 454 |
+
"mean_token_accuracy": 0.8107277728617192,
|
| 455 |
+
"num_tokens": 2686462.0,
|
| 456 |
+
"step": 380
|
| 457 |
+
},
|
| 458 |
+
{
|
| 459 |
+
"entropy": 0.6481600757688284,
|
| 460 |
+
"epoch": 0.156,
|
| 461 |
+
"grad_norm": 48.0,
|
| 462 |
+
"learning_rate": 7.78e-06,
|
| 463 |
+
"loss": 10.6698,
|
| 464 |
+
"mean_token_accuracy": 0.8106721647083759,
|
| 465 |
+
"num_tokens": 2754241.0,
|
| 466 |
+
"step": 390
|
| 467 |
+
},
|
| 468 |
+
{
|
| 469 |
+
"entropy": 0.7008802507072687,
|
| 470 |
+
"epoch": 0.16,
|
| 471 |
+
"grad_norm": 62.0,
|
| 472 |
+
"learning_rate": 7.980000000000002e-06,
|
| 473 |
+
"loss": 11.3348,
|
| 474 |
+
"mean_token_accuracy": 0.802883006259799,
|
| 475 |
+
"num_tokens": 2824418.0,
|
| 476 |
+
"step": 400
|
| 477 |
+
},
|
| 478 |
+
{
|
| 479 |
+
"epoch": 0.16,
|
| 480 |
+
"eval_chemistry_entropy": 0.6197386468052865,
|
| 481 |
+
"eval_chemistry_loss": 0.6651880145072937,
|
| 482 |
+
"eval_chemistry_mean_token_accuracy": 0.8126706712245941,
|
| 483 |
+
"eval_chemistry_num_tokens": 2824418.0,
|
| 484 |
+
"eval_chemistry_runtime": 54.0137,
|
| 485 |
+
"eval_chemistry_samples_per_second": 9.257,
|
| 486 |
+
"eval_chemistry_steps_per_second": 9.257,
|
| 487 |
+
"step": 400
|
| 488 |
+
},
|
| 489 |
+
{
|
| 490 |
+
"epoch": 0.16,
|
| 491 |
+
"eval_math_entropy": 0.7064790060222149,
|
| 492 |
+
"eval_math_loss": 0.702800989151001,
|
| 493 |
+
"eval_math_mean_token_accuracy": 0.8039963529109955,
|
| 494 |
+
"eval_math_num_tokens": 2824418.0,
|
| 495 |
+
"eval_math_runtime": 55.8372,
|
| 496 |
+
"eval_math_samples_per_second": 8.955,
|
| 497 |
+
"eval_math_steps_per_second": 8.955,
|
| 498 |
+
"step": 400
|
| 499 |
+
},
|
| 500 |
+
{
|
| 501 |
+
"entropy": 0.7051302054896951,
|
| 502 |
+
"epoch": 0.164,
|
| 503 |
+
"grad_norm": 53.25,
|
| 504 |
+
"learning_rate": 8.18e-06,
|
| 505 |
+
"loss": 11.361,
|
| 506 |
+
"mean_token_accuracy": 0.8027527991682291,
|
| 507 |
+
"num_tokens": 2895667.0,
|
| 508 |
+
"step": 410
|
| 509 |
+
},
|
| 510 |
+
{
|
| 511 |
+
"entropy": 0.6781568734906613,
|
| 512 |
+
"epoch": 0.168,
|
| 513 |
+
"grad_norm": 41.0,
|
| 514 |
+
"learning_rate": 8.380000000000001e-06,
|
| 515 |
+
"loss": 11.1069,
|
| 516 |
+
"mean_token_accuracy": 0.8051798522472382,
|
| 517 |
+
"num_tokens": 2966031.0,
|
| 518 |
+
"step": 420
|
| 519 |
+
},
|
| 520 |
+
{
|
| 521 |
+
"entropy": 0.669656771980226,
|
| 522 |
+
"epoch": 0.172,
|
| 523 |
+
"grad_norm": 46.75,
|
| 524 |
+
"learning_rate": 8.580000000000001e-06,
|
| 525 |
+
"loss": 10.669,
|
| 526 |
+
"mean_token_accuracy": 0.8124278139322996,
|
| 527 |
+
"num_tokens": 3039780.0,
|
| 528 |
+
"step": 430
|
| 529 |
+
},
|
| 530 |
+
{
|
| 531 |
+
"entropy": 0.6730968474410475,
|
| 532 |
+
"epoch": 0.176,
|
| 533 |
+
"grad_norm": 48.0,
|
| 534 |
+
"learning_rate": 8.78e-06,
|
| 535 |
+
"loss": 10.9171,
|
| 536 |
+
"mean_token_accuracy": 0.8071481816470623,
|
| 537 |
+
"num_tokens": 3110313.0,
|
| 538 |
+
"step": 440
|
| 539 |
+
},
|
| 540 |
+
{
|
| 541 |
+
"entropy": 0.6608755425550044,
|
| 542 |
+
"epoch": 0.18,
|
| 543 |
+
"grad_norm": 47.5,
|
| 544 |
+
"learning_rate": 8.98e-06,
|
| 545 |
+
"loss": 10.8028,
|
| 546 |
+
"mean_token_accuracy": 0.8110857963562011,
|
| 547 |
+
"num_tokens": 3179963.0,
|
| 548 |
+
"step": 450
|
| 549 |
+
},
|
| 550 |
+
{
|
| 551 |
+
"entropy": 0.6951628234237432,
|
| 552 |
+
"epoch": 0.184,
|
| 553 |
+
"grad_norm": 43.5,
|
| 554 |
+
"learning_rate": 9.180000000000002e-06,
|
| 555 |
+
"loss": 11.097,
|
| 556 |
+
"mean_token_accuracy": 0.8053878784179688,
|
| 557 |
+
"num_tokens": 3251139.0,
|
| 558 |
+
"step": 460
|
| 559 |
+
},
|
| 560 |
+
{
|
| 561 |
+
"entropy": 0.6642801096662879,
|
| 562 |
+
"epoch": 0.188,
|
| 563 |
+
"grad_norm": 49.25,
|
| 564 |
+
"learning_rate": 9.38e-06,
|
| 565 |
+
"loss": 10.6878,
|
| 566 |
+
"mean_token_accuracy": 0.8112512346357107,
|
| 567 |
+
"num_tokens": 3323519.0,
|
| 568 |
+
"step": 470
|
| 569 |
+
},
|
| 570 |
+
{
|
| 571 |
+
"entropy": 0.658032058365643,
|
| 572 |
+
"epoch": 0.192,
|
| 573 |
+
"grad_norm": 49.5,
|
| 574 |
+
"learning_rate": 9.58e-06,
|
| 575 |
+
"loss": 10.6202,
|
| 576 |
+
"mean_token_accuracy": 0.8127347908914089,
|
| 577 |
+
"num_tokens": 3394170.0,
|
| 578 |
+
"step": 480
|
| 579 |
+
},
|
| 580 |
+
{
|
| 581 |
+
"entropy": 0.6513477127999068,
|
| 582 |
+
"epoch": 0.196,
|
| 583 |
+
"grad_norm": 51.5,
|
| 584 |
+
"learning_rate": 9.780000000000001e-06,
|
| 585 |
+
"loss": 10.5983,
|
| 586 |
+
"mean_token_accuracy": 0.8158927127718926,
|
| 587 |
+
"num_tokens": 3465341.0,
|
| 588 |
+
"step": 490
|
| 589 |
+
},
|
| 590 |
+
{
|
| 591 |
+
"entropy": 0.7007277802564204,
|
| 592 |
+
"epoch": 0.2,
|
| 593 |
+
"grad_norm": 45.0,
|
| 594 |
+
"learning_rate": 9.980000000000001e-06,
|
| 595 |
+
"loss": 11.1959,
|
| 596 |
+
"mean_token_accuracy": 0.8035019136965275,
|
| 597 |
+
"num_tokens": 3533571.0,
|
| 598 |
+
"step": 500
|
| 599 |
+
},
|
| 600 |
+
{
|
| 601 |
+
"epoch": 0.2,
|
| 602 |
+
"eval_chemistry_entropy": 0.6269507716894149,
|
| 603 |
+
"eval_chemistry_loss": 0.6651133298873901,
|
| 604 |
+
"eval_chemistry_mean_token_accuracy": 0.8129660848379135,
|
| 605 |
+
"eval_chemistry_num_tokens": 3533571.0,
|
| 606 |
+
"eval_chemistry_runtime": 53.9735,
|
| 607 |
+
"eval_chemistry_samples_per_second": 9.264,
|
| 608 |
+
"eval_chemistry_steps_per_second": 9.264,
|
| 609 |
+
"step": 500
|
| 610 |
+
},
|
| 611 |
+
{
|
| 612 |
+
"epoch": 0.2,
|
| 613 |
+
"eval_math_entropy": 0.6837767160832882,
|
| 614 |
+
"eval_math_loss": 0.682838499546051,
|
| 615 |
+
"eval_math_mean_token_accuracy": 0.8080879813432693,
|
| 616 |
+
"eval_math_num_tokens": 3533571.0,
|
| 617 |
+
"eval_math_runtime": 55.9164,
|
| 618 |
+
"eval_math_samples_per_second": 8.942,
|
| 619 |
+
"eval_math_steps_per_second": 8.942,
|
| 620 |
+
"step": 500
|
| 621 |
+
},
|
| 622 |
+
{
|
| 623 |
+
"entropy": 0.6865575925447047,
|
| 624 |
+
"epoch": 0.204,
|
| 625 |
+
"grad_norm": 48.75,
|
| 626 |
+
"learning_rate": 1.018e-05,
|
| 627 |
+
"loss": 11.0861,
|
| 628 |
+
"mean_token_accuracy": 0.8060325808823109,
|
| 629 |
+
"num_tokens": 3602983.0,
|
| 630 |
+
"step": 510
|
| 631 |
+
},
|
| 632 |
+
{
|
| 633 |
+
"entropy": 0.658450176846236,
|
| 634 |
+
"epoch": 0.208,
|
| 635 |
+
"grad_norm": 49.0,
|
| 636 |
+
"learning_rate": 1.038e-05,
|
| 637 |
+
"loss": 10.6366,
|
| 638 |
+
"mean_token_accuracy": 0.8118435345590115,
|
| 639 |
+
"num_tokens": 3673600.0,
|
| 640 |
+
"step": 520
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"entropy": 0.6979701479896903,
|
| 644 |
+
"epoch": 0.212,
|
| 645 |
+
"grad_norm": 54.5,
|
| 646 |
+
"learning_rate": 1.0580000000000002e-05,
|
| 647 |
+
"loss": 11.2165,
|
| 648 |
+
"mean_token_accuracy": 0.8044058471918106,
|
| 649 |
+
"num_tokens": 3743641.0,
|
| 650 |
+
"step": 530
|
| 651 |
+
},
|
| 652 |
+
{
|
| 653 |
+
"entropy": 0.6361962419003249,
|
| 654 |
+
"epoch": 0.216,
|
| 655 |
+
"grad_norm": 50.25,
|
| 656 |
+
"learning_rate": 1.0780000000000002e-05,
|
| 657 |
+
"loss": 10.3346,
|
| 658 |
+
"mean_token_accuracy": 0.817437007650733,
|
| 659 |
+
"num_tokens": 3817397.0,
|
| 660 |
+
"step": 540
|
| 661 |
+
},
|
| 662 |
+
{
|
| 663 |
+
"entropy": 0.6625658424571157,
|
| 664 |
+
"epoch": 0.22,
|
| 665 |
+
"grad_norm": 56.75,
|
| 666 |
+
"learning_rate": 1.0980000000000002e-05,
|
| 667 |
+
"loss": 10.6586,
|
| 668 |
+
"mean_token_accuracy": 0.8117894344031811,
|
| 669 |
+
"num_tokens": 3886866.0,
|
| 670 |
+
"step": 550
|
| 671 |
+
},
|
| 672 |
+
{
|
| 673 |
+
"entropy": 0.6935065235942602,
|
| 674 |
+
"epoch": 0.224,
|
| 675 |
+
"grad_norm": 49.25,
|
| 676 |
+
"learning_rate": 1.1180000000000001e-05,
|
| 677 |
+
"loss": 11.1172,
|
| 678 |
+
"mean_token_accuracy": 0.8039925239980221,
|
| 679 |
+
"num_tokens": 3953732.0,
|
| 680 |
+
"step": 560
|
| 681 |
+
},
|
| 682 |
+
{
|
| 683 |
+
"entropy": 0.6686032420024276,
|
| 684 |
+
"epoch": 0.228,
|
| 685 |
+
"grad_norm": 49.0,
|
| 686 |
+
"learning_rate": 1.138e-05,
|
| 687 |
+
"loss": 10.8693,
|
| 688 |
+
"mean_token_accuracy": 0.8076109483838081,
|
| 689 |
+
"num_tokens": 4025795.0,
|
| 690 |
+
"step": 570
|
| 691 |
+
},
|
| 692 |
+
{
|
| 693 |
+
"entropy": 0.6402695474214852,
|
| 694 |
+
"epoch": 0.232,
|
| 695 |
+
"grad_norm": 48.0,
|
| 696 |
+
"learning_rate": 1.1580000000000001e-05,
|
| 697 |
+
"loss": 10.3597,
|
| 698 |
+
"mean_token_accuracy": 0.8167435925453901,
|
| 699 |
+
"num_tokens": 4098989.0,
|
| 700 |
+
"step": 580
|
| 701 |
+
},
|
| 702 |
+
{
|
| 703 |
+
"entropy": 0.658338391315192,
|
| 704 |
+
"epoch": 0.236,
|
| 705 |
+
"grad_norm": 44.75,
|
| 706 |
+
"learning_rate": 1.178e-05,
|
| 707 |
+
"loss": 10.5357,
|
| 708 |
+
"mean_token_accuracy": 0.8130462419241666,
|
| 709 |
+
"num_tokens": 4170878.0,
|
| 710 |
+
"step": 590
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"entropy": 0.6290927086956799,
|
| 714 |
+
"epoch": 0.24,
|
| 715 |
+
"grad_norm": 47.0,
|
| 716 |
+
"learning_rate": 1.198e-05,
|
| 717 |
+
"loss": 10.0972,
|
| 718 |
+
"mean_token_accuracy": 0.8207072768360376,
|
| 719 |
+
"num_tokens": 4243655.0,
|
| 720 |
+
"step": 600
|
| 721 |
+
},
|
| 722 |
+
{
|
| 723 |
+
"epoch": 0.24,
|
| 724 |
+
"eval_chemistry_entropy": 0.6155065232515335,
|
| 725 |
+
"eval_chemistry_loss": 0.6671720147132874,
|
| 726 |
+
"eval_chemistry_mean_token_accuracy": 0.8120917826890945,
|
| 727 |
+
"eval_chemistry_num_tokens": 4243655.0,
|
| 728 |
+
"eval_chemistry_runtime": 55.2706,
|
| 729 |
+
"eval_chemistry_samples_per_second": 9.046,
|
| 730 |
+
"eval_chemistry_steps_per_second": 9.046,
|
| 731 |
+
"step": 600
|
| 732 |
+
},
|
| 733 |
+
{
|
| 734 |
+
"epoch": 0.24,
|
| 735 |
+
"eval_math_entropy": 0.6502774241566658,
|
| 736 |
+
"eval_math_loss": 0.6693575382232666,
|
| 737 |
+
"eval_math_mean_token_accuracy": 0.811131351351738,
|
| 738 |
+
"eval_math_num_tokens": 4243655.0,
|
| 739 |
+
"eval_math_runtime": 56.5379,
|
| 740 |
+
"eval_math_samples_per_second": 8.844,
|
| 741 |
+
"eval_math_steps_per_second": 8.844,
|
| 742 |
+
"step": 600
|
| 743 |
+
},
|
| 744 |
+
{
|
| 745 |
+
"entropy": 0.6233567481860518,
|
| 746 |
+
"epoch": 0.244,
|
| 747 |
+
"grad_norm": 45.0,
|
| 748 |
+
"learning_rate": 1.218e-05,
|
| 749 |
+
"loss": 10.0801,
|
| 750 |
+
"mean_token_accuracy": 0.8203211557120085,
|
| 751 |
+
"num_tokens": 4317321.0,
|
| 752 |
+
"step": 610
|
| 753 |
+
},
|
| 754 |
+
{
|
| 755 |
+
"entropy": 0.6291251040063799,
|
| 756 |
+
"epoch": 0.248,
|
| 757 |
+
"grad_norm": 46.0,
|
| 758 |
+
"learning_rate": 1.2380000000000002e-05,
|
| 759 |
+
"loss": 10.2183,
|
| 760 |
+
"mean_token_accuracy": 0.8186882007867098,
|
| 761 |
+
"num_tokens": 4387651.0,
|
| 762 |
+
"step": 620
|
| 763 |
+
},
|
| 764 |
+
{
|
| 765 |
+
"entropy": 0.6594036752358079,
|
| 766 |
+
"epoch": 0.252,
|
| 767 |
+
"grad_norm": 49.25,
|
| 768 |
+
"learning_rate": 1.2580000000000002e-05,
|
| 769 |
+
"loss": 10.4409,
|
| 770 |
+
"mean_token_accuracy": 0.8153050262480974,
|
| 771 |
+
"num_tokens": 4461909.0,
|
| 772 |
+
"step": 630
|
| 773 |
+
},
|
| 774 |
+
{
|
| 775 |
+
"entropy": 0.6203309029340744,
|
| 776 |
+
"epoch": 0.256,
|
| 777 |
+
"grad_norm": 53.5,
|
| 778 |
+
"learning_rate": 1.2780000000000001e-05,
|
| 779 |
+
"loss": 10.0772,
|
| 780 |
+
"mean_token_accuracy": 0.8196093909442425,
|
| 781 |
+
"num_tokens": 4531471.0,
|
| 782 |
+
"step": 640
|
| 783 |
+
},
|
| 784 |
+
{
|
| 785 |
+
"entropy": 0.6356428602710367,
|
| 786 |
+
"epoch": 0.26,
|
| 787 |
+
"grad_norm": 47.25,
|
| 788 |
+
"learning_rate": 1.2980000000000001e-05,
|
| 789 |
+
"loss": 10.3692,
|
| 790 |
+
"mean_token_accuracy": 0.8188248563557863,
|
| 791 |
+
"num_tokens": 4600757.0,
|
| 792 |
+
"step": 650
|
| 793 |
+
},
|
| 794 |
+
{
|
| 795 |
+
"entropy": 0.6554200569167733,
|
| 796 |
+
"epoch": 0.264,
|
| 797 |
+
"grad_norm": 51.25,
|
| 798 |
+
"learning_rate": 1.3180000000000001e-05,
|
| 799 |
+
"loss": 10.5725,
|
| 800 |
+
"mean_token_accuracy": 0.8128338485956192,
|
| 801 |
+
"num_tokens": 4669389.0,
|
| 802 |
+
"step": 660
|
| 803 |
+
},
|
| 804 |
+
{
|
| 805 |
+
"entropy": 0.6745208881795406,
|
| 806 |
+
"epoch": 0.268,
|
| 807 |
+
"grad_norm": 50.0,
|
| 808 |
+
"learning_rate": 1.3380000000000002e-05,
|
| 809 |
+
"loss": 10.8355,
|
| 810 |
+
"mean_token_accuracy": 0.810622700676322,
|
| 811 |
+
"num_tokens": 4740492.0,
|
| 812 |
+
"step": 670
|
| 813 |
+
},
|
| 814 |
+
{
|
| 815 |
+
"entropy": 0.6350632888264954,
|
| 816 |
+
"epoch": 0.272,
|
| 817 |
+
"grad_norm": 47.0,
|
| 818 |
+
"learning_rate": 1.3580000000000002e-05,
|
| 819 |
+
"loss": 10.2504,
|
| 820 |
+
"mean_token_accuracy": 0.8196976982057095,
|
| 821 |
+
"num_tokens": 4810284.0,
|
| 822 |
+
"step": 680
|
| 823 |
+
},
|
| 824 |
+
{
|
| 825 |
+
"entropy": 0.6301803855225444,
|
| 826 |
+
"epoch": 0.276,
|
| 827 |
+
"grad_norm": 39.25,
|
| 828 |
+
"learning_rate": 1.378e-05,
|
| 829 |
+
"loss": 10.137,
|
| 830 |
+
"mean_token_accuracy": 0.818551366403699,
|
| 831 |
+
"num_tokens": 4885701.0,
|
| 832 |
+
"step": 690
|
| 833 |
+
},
|
| 834 |
+
{
|
| 835 |
+
"entropy": 0.6497578569687903,
|
| 836 |
+
"epoch": 0.28,
|
| 837 |
+
"grad_norm": 53.75,
|
| 838 |
+
"learning_rate": 1.398e-05,
|
| 839 |
+
"loss": 10.4748,
|
| 840 |
+
"mean_token_accuracy": 0.8124409653246403,
|
| 841 |
+
"num_tokens": 4955375.0,
|
| 842 |
+
"step": 700
|
| 843 |
+
},
|
| 844 |
+
{
|
| 845 |
+
"epoch": 0.28,
|
| 846 |
+
"eval_chemistry_entropy": 0.6421024734973908,
|
| 847 |
+
"eval_chemistry_loss": 0.667654275894165,
|
| 848 |
+
"eval_chemistry_mean_token_accuracy": 0.8122305541038514,
|
| 849 |
+
"eval_chemistry_num_tokens": 4955375.0,
|
| 850 |
+
"eval_chemistry_runtime": 53.9764,
|
| 851 |
+
"eval_chemistry_samples_per_second": 9.263,
|
| 852 |
+
"eval_chemistry_steps_per_second": 9.263,
|
| 853 |
+
"step": 700
|
| 854 |
+
},
|
| 855 |
+
{
|
| 856 |
+
"epoch": 0.28,
|
| 857 |
+
"eval_math_entropy": 0.6617435732483864,
|
| 858 |
+
"eval_math_loss": 0.6636469960212708,
|
| 859 |
+
"eval_math_mean_token_accuracy": 0.8122635103464126,
|
| 860 |
+
"eval_math_num_tokens": 4955375.0,
|
| 861 |
+
"eval_math_runtime": 55.7584,
|
| 862 |
+
"eval_math_samples_per_second": 8.967,
|
| 863 |
+
"eval_math_steps_per_second": 8.967,
|
| 864 |
+
"step": 700
|
| 865 |
+
},
|
| 866 |
+
{
|
| 867 |
+
"entropy": 0.6361791557632387,
|
| 868 |
+
"epoch": 0.284,
|
| 869 |
+
"grad_norm": 43.5,
|
| 870 |
+
"learning_rate": 1.418e-05,
|
| 871 |
+
"loss": 10.2547,
|
| 872 |
+
"mean_token_accuracy": 0.8184681631624698,
|
| 873 |
+
"num_tokens": 5025638.0,
|
| 874 |
+
"step": 710
|
| 875 |
+
},
|
| 876 |
+
{
|
| 877 |
+
"entropy": 0.6017223164439202,
|
| 878 |
+
"epoch": 0.288,
|
| 879 |
+
"grad_norm": 57.75,
|
| 880 |
+
"learning_rate": 1.4380000000000001e-05,
|
| 881 |
+
"loss": 9.6742,
|
| 882 |
+
"mean_token_accuracy": 0.8257420264184475,
|
| 883 |
+
"num_tokens": 5095104.0,
|
| 884 |
+
"step": 720
|
| 885 |
+
},
|
| 886 |
+
{
|
| 887 |
+
"entropy": 0.6285218503326178,
|
| 888 |
+
"epoch": 0.292,
|
| 889 |
+
"grad_norm": 45.75,
|
| 890 |
+
"learning_rate": 1.4580000000000001e-05,
|
| 891 |
+
"loss": 10.1673,
|
| 892 |
+
"mean_token_accuracy": 0.8185360498726368,
|
| 893 |
+
"num_tokens": 5167049.0,
|
| 894 |
+
"step": 730
|
| 895 |
+
},
|
| 896 |
+
{
|
| 897 |
+
"entropy": 0.6593165175989271,
|
| 898 |
+
"epoch": 0.296,
|
| 899 |
+
"grad_norm": 47.0,
|
| 900 |
+
"learning_rate": 1.478e-05,
|
| 901 |
+
"loss": 10.6594,
|
| 902 |
+
"mean_token_accuracy": 0.8107825342565775,
|
| 903 |
+
"num_tokens": 5240988.0,
|
| 904 |
+
"step": 740
|
| 905 |
+
},
|
| 906 |
+
{
|
| 907 |
+
"entropy": 0.6415156803093851,
|
| 908 |
+
"epoch": 0.3,
|
| 909 |
+
"grad_norm": 47.0,
|
| 910 |
+
"learning_rate": 1.498e-05,
|
| 911 |
+
"loss": 10.2668,
|
| 912 |
+
"mean_token_accuracy": 0.8173366483300925,
|
| 913 |
+
"num_tokens": 5312258.0,
|
| 914 |
+
"step": 750
|
| 915 |
+
},
|
| 916 |
+
{
|
| 917 |
+
"entropy": 0.6658093611709773,
|
| 918 |
+
"epoch": 0.304,
|
| 919 |
+
"grad_norm": 47.5,
|
| 920 |
+
"learning_rate": 1.5180000000000002e-05,
|
| 921 |
+
"loss": 10.7581,
|
| 922 |
+
"mean_token_accuracy": 0.8066589564085007,
|
| 923 |
+
"num_tokens": 5383732.0,
|
| 924 |
+
"step": 760
|
| 925 |
+
},
|
| 926 |
+
{
|
| 927 |
+
"entropy": 0.6711018362082541,
|
| 928 |
+
"epoch": 0.308,
|
| 929 |
+
"grad_norm": 48.75,
|
| 930 |
+
"learning_rate": 1.5380000000000002e-05,
|
| 931 |
+
"loss": 10.8042,
|
| 932 |
+
"mean_token_accuracy": 0.8097654834389687,
|
| 933 |
+
"num_tokens": 5456650.0,
|
| 934 |
+
"step": 770
|
| 935 |
+
},
|
| 936 |
+
{
|
| 937 |
+
"entropy": 0.6446251068264246,
|
| 938 |
+
"epoch": 0.312,
|
| 939 |
+
"grad_norm": 46.25,
|
| 940 |
+
"learning_rate": 1.5580000000000003e-05,
|
| 941 |
+
"loss": 10.3229,
|
| 942 |
+
"mean_token_accuracy": 0.8142865747213364,
|
| 943 |
+
"num_tokens": 5530666.0,
|
| 944 |
+
"step": 780
|
| 945 |
+
},
|
| 946 |
+
{
|
| 947 |
+
"entropy": 0.6051024467684328,
|
| 948 |
+
"epoch": 0.316,
|
| 949 |
+
"grad_norm": 49.5,
|
| 950 |
+
"learning_rate": 1.578e-05,
|
| 951 |
+
"loss": 9.8268,
|
| 952 |
+
"mean_token_accuracy": 0.8232330553233623,
|
| 953 |
+
"num_tokens": 5605269.0,
|
| 954 |
+
"step": 790
|
| 955 |
+
},
|
| 956 |
+
{
|
| 957 |
+
"entropy": 0.5965368082746864,
|
| 958 |
+
"epoch": 0.32,
|
| 959 |
+
"grad_norm": 54.75,
|
| 960 |
+
"learning_rate": 1.5980000000000003e-05,
|
| 961 |
+
"loss": 9.6507,
|
| 962 |
+
"mean_token_accuracy": 0.8276361111551523,
|
| 963 |
+
"num_tokens": 5676334.0,
|
| 964 |
+
"step": 800
|
| 965 |
+
},
|
| 966 |
+
{
|
| 967 |
+
"epoch": 0.32,
|
| 968 |
+
"eval_chemistry_entropy": 0.652762301415205,
|
| 969 |
+
"eval_chemistry_loss": 0.6736706495285034,
|
| 970 |
+
"eval_chemistry_mean_token_accuracy": 0.8105895760059356,
|
| 971 |
+
"eval_chemistry_num_tokens": 5676334.0,
|
| 972 |
+
"eval_chemistry_runtime": 54.1527,
|
| 973 |
+
"eval_chemistry_samples_per_second": 9.233,
|
| 974 |
+
"eval_chemistry_steps_per_second": 9.233,
|
| 975 |
+
"step": 800
|
| 976 |
+
},
|
| 977 |
+
{
|
| 978 |
+
"epoch": 0.32,
|
| 979 |
+
"eval_math_entropy": 0.6557648414075374,
|
| 980 |
+
"eval_math_loss": 0.6591339111328125,
|
| 981 |
+
"eval_math_mean_token_accuracy": 0.8122332338094711,
|
| 982 |
+
"eval_math_num_tokens": 5676334.0,
|
| 983 |
+
"eval_math_runtime": 56.6894,
|
| 984 |
+
"eval_math_samples_per_second": 8.82,
|
| 985 |
+
"eval_math_steps_per_second": 8.82,
|
| 986 |
+
"step": 800
|
| 987 |
+
},
|
| 988 |
+
{
|
| 989 |
+
"entropy": 0.6387809926643968,
|
| 990 |
+
"epoch": 0.324,
|
| 991 |
+
"grad_norm": 51.25,
|
| 992 |
+
"learning_rate": 1.618e-05,
|
| 993 |
+
"loss": 10.3903,
|
| 994 |
+
"mean_token_accuracy": 0.8165412645787,
|
| 995 |
+
"num_tokens": 5747779.0,
|
| 996 |
+
"step": 810
|
| 997 |
+
},
|
| 998 |
+
{
|
| 999 |
+
"entropy": 0.6585037951357663,
|
| 1000 |
+
"epoch": 0.328,
|
| 1001 |
+
"grad_norm": 48.25,
|
| 1002 |
+
"learning_rate": 1.638e-05,
|
| 1003 |
+
"loss": 10.4673,
|
| 1004 |
+
"mean_token_accuracy": 0.8138647183775902,
|
| 1005 |
+
"num_tokens": 5816488.0,
|
| 1006 |
+
"step": 820
|
| 1007 |
+
},
|
| 1008 |
+
{
|
| 1009 |
+
"entropy": 0.6571912650018931,
|
| 1010 |
+
"epoch": 0.332,
|
| 1011 |
+
"grad_norm": 49.75,
|
| 1012 |
+
"learning_rate": 1.658e-05,
|
| 1013 |
+
"loss": 10.5769,
|
| 1014 |
+
"mean_token_accuracy": 0.812447015941143,
|
| 1015 |
+
"num_tokens": 5887180.0,
|
| 1016 |
+
"step": 830
|
| 1017 |
+
},
|
| 1018 |
+
{
|
| 1019 |
+
"entropy": 0.6646488612517715,
|
| 1020 |
+
"epoch": 0.336,
|
| 1021 |
+
"grad_norm": 44.5,
|
| 1022 |
+
"learning_rate": 1.6780000000000002e-05,
|
| 1023 |
+
"loss": 10.8156,
|
| 1024 |
+
"mean_token_accuracy": 0.8087732318788767,
|
| 1025 |
+
"num_tokens": 5958480.0,
|
| 1026 |
+
"step": 840
|
| 1027 |
+
},
|
| 1028 |
+
{
|
| 1029 |
+
"entropy": 0.6073424321599304,
|
| 1030 |
+
"epoch": 0.34,
|
| 1031 |
+
"grad_norm": 47.5,
|
| 1032 |
+
"learning_rate": 1.698e-05,
|
| 1033 |
+
"loss": 9.7128,
|
| 1034 |
+
"mean_token_accuracy": 0.8271788094192744,
|
| 1035 |
+
"num_tokens": 6031020.0,
|
| 1036 |
+
"step": 850
|
| 1037 |
+
},
|
| 1038 |
+
{
|
| 1039 |
+
"entropy": 0.6620601391419768,
|
| 1040 |
+
"epoch": 0.344,
|
| 1041 |
+
"grad_norm": 46.5,
|
| 1042 |
+
"learning_rate": 1.718e-05,
|
| 1043 |
+
"loss": 10.6639,
|
| 1044 |
+
"mean_token_accuracy": 0.8097412213683128,
|
| 1045 |
+
"num_tokens": 6102081.0,
|
| 1046 |
+
"step": 860
|
| 1047 |
+
},
|
| 1048 |
+
{
|
| 1049 |
+
"entropy": 0.656591746211052,
|
| 1050 |
+
"epoch": 0.348,
|
| 1051 |
+
"grad_norm": 41.75,
|
| 1052 |
+
"learning_rate": 1.7380000000000003e-05,
|
| 1053 |
+
"loss": 10.5612,
|
| 1054 |
+
"mean_token_accuracy": 0.8128813318908215,
|
| 1055 |
+
"num_tokens": 6172871.0,
|
| 1056 |
+
"step": 870
|
| 1057 |
+
},
|
| 1058 |
+
{
|
| 1059 |
+
"entropy": 0.6083563419058919,
|
| 1060 |
+
"epoch": 0.352,
|
| 1061 |
+
"grad_norm": 43.75,
|
| 1062 |
+
"learning_rate": 1.758e-05,
|
| 1063 |
+
"loss": 9.9206,
|
| 1064 |
+
"mean_token_accuracy": 0.8219428963959217,
|
| 1065 |
+
"num_tokens": 6242161.0,
|
| 1066 |
+
"step": 880
|
| 1067 |
+
},
|
| 1068 |
+
{
|
| 1069 |
+
"entropy": 0.6747210225090384,
|
| 1070 |
+
"epoch": 0.356,
|
| 1071 |
+
"grad_norm": 46.75,
|
| 1072 |
+
"learning_rate": 1.7780000000000003e-05,
|
| 1073 |
+
"loss": 10.6887,
|
| 1074 |
+
"mean_token_accuracy": 0.8089296150952577,
|
| 1075 |
+
"num_tokens": 6312187.0,
|
| 1076 |
+
"step": 890
|
| 1077 |
+
},
|
| 1078 |
+
{
|
| 1079 |
+
"entropy": 0.6297760805115103,
|
| 1080 |
+
"epoch": 0.36,
|
| 1081 |
+
"grad_norm": 46.5,
|
| 1082 |
+
"learning_rate": 1.798e-05,
|
| 1083 |
+
"loss": 10.2931,
|
| 1084 |
+
"mean_token_accuracy": 0.8156627554446458,
|
| 1085 |
+
"num_tokens": 6377327.0,
|
| 1086 |
+
"step": 900
|
| 1087 |
+
},
|
| 1088 |
+
{
|
| 1089 |
+
"epoch": 0.36,
|
| 1090 |
+
"eval_chemistry_entropy": 0.6516558772921562,
|
| 1091 |
+
"eval_chemistry_loss": 0.6783114075660706,
|
| 1092 |
+
"eval_chemistry_mean_token_accuracy": 0.8099269119501114,
|
| 1093 |
+
"eval_chemistry_num_tokens": 6377327.0,
|
| 1094 |
+
"eval_chemistry_runtime": 54.0329,
|
| 1095 |
+
"eval_chemistry_samples_per_second": 9.254,
|
| 1096 |
+
"eval_chemistry_steps_per_second": 9.254,
|
| 1097 |
+
"step": 900
|
| 1098 |
+
},
|
| 1099 |
+
{
|
| 1100 |
+
"epoch": 0.36,
|
| 1101 |
+
"eval_math_entropy": 0.6468739511370659,
|
| 1102 |
+
"eval_math_loss": 0.6565048694610596,
|
| 1103 |
+
"eval_math_mean_token_accuracy": 0.8127901997566224,
|
| 1104 |
+
"eval_math_num_tokens": 6377327.0,
|
| 1105 |
+
"eval_math_runtime": 55.8379,
|
| 1106 |
+
"eval_math_samples_per_second": 8.954,
|
| 1107 |
+
"eval_math_steps_per_second": 8.954,
|
| 1108 |
+
"step": 900
|
| 1109 |
+
},
|
| 1110 |
+
{
|
| 1111 |
+
"entropy": 0.6443535090424121,
|
| 1112 |
+
"epoch": 0.364,
|
| 1113 |
+
"grad_norm": 54.5,
|
| 1114 |
+
"learning_rate": 1.8180000000000002e-05,
|
| 1115 |
+
"loss": 10.2172,
|
| 1116 |
+
"mean_token_accuracy": 0.8161850411444902,
|
| 1117 |
+
"num_tokens": 6453254.0,
|
| 1118 |
+
"step": 910
|
| 1119 |
+
},
|
| 1120 |
+
{
|
| 1121 |
+
"entropy": 0.6192579029127956,
|
| 1122 |
+
"epoch": 0.368,
|
| 1123 |
+
"grad_norm": 47.75,
|
| 1124 |
+
"learning_rate": 1.8380000000000004e-05,
|
| 1125 |
+
"loss": 10.0628,
|
| 1126 |
+
"mean_token_accuracy": 0.8202301610261202,
|
| 1127 |
+
"num_tokens": 6523679.0,
|
| 1128 |
+
"step": 920
|
| 1129 |
+
},
|
| 1130 |
+
{
|
| 1131 |
+
"entropy": 0.6301083014346659,
|
| 1132 |
+
"epoch": 0.372,
|
| 1133 |
+
"grad_norm": 43.75,
|
| 1134 |
+
"learning_rate": 1.858e-05,
|
| 1135 |
+
"loss": 10.0879,
|
| 1136 |
+
"mean_token_accuracy": 0.8176717050373554,
|
| 1137 |
+
"num_tokens": 6594651.0,
|
| 1138 |
+
"step": 930
|
| 1139 |
+
},
|
| 1140 |
+
{
|
| 1141 |
+
"entropy": 0.6354097174480557,
|
| 1142 |
+
"epoch": 0.376,
|
| 1143 |
+
"grad_norm": 42.75,
|
| 1144 |
+
"learning_rate": 1.878e-05,
|
| 1145 |
+
"loss": 10.2508,
|
| 1146 |
+
"mean_token_accuracy": 0.8171609565615654,
|
| 1147 |
+
"num_tokens": 6669278.0,
|
| 1148 |
+
"step": 940
|
| 1149 |
+
},
|
| 1150 |
+
{
|
| 1151 |
+
"entropy": 0.617029273416847,
|
| 1152 |
+
"epoch": 0.38,
|
| 1153 |
+
"grad_norm": 46.5,
|
| 1154 |
+
"learning_rate": 1.898e-05,
|
| 1155 |
+
"loss": 9.9656,
|
| 1156 |
+
"mean_token_accuracy": 0.8214268207550048,
|
| 1157 |
+
"num_tokens": 6740491.0,
|
| 1158 |
+
"step": 950
|
| 1159 |
+
},
|
| 1160 |
+
{
|
| 1161 |
+
"entropy": 0.5976504179649055,
|
| 1162 |
+
"epoch": 0.384,
|
| 1163 |
+
"grad_norm": 39.5,
|
| 1164 |
+
"learning_rate": 1.918e-05,
|
| 1165 |
+
"loss": 9.6342,
|
| 1166 |
+
"mean_token_accuracy": 0.8249731820076704,
|
| 1167 |
+
"num_tokens": 6810978.0,
|
| 1168 |
+
"step": 960
|
| 1169 |
+
},
|
| 1170 |
+
{
|
| 1171 |
+
"entropy": 0.6468582183122635,
|
| 1172 |
+
"epoch": 0.388,
|
| 1173 |
+
"grad_norm": 45.0,
|
| 1174 |
+
"learning_rate": 1.938e-05,
|
| 1175 |
+
"loss": 10.3407,
|
| 1176 |
+
"mean_token_accuracy": 0.8165425896644593,
|
| 1177 |
+
"num_tokens": 6882077.0,
|
| 1178 |
+
"step": 970
|
| 1179 |
+
},
|
| 1180 |
+
{
|
| 1181 |
+
"entropy": 0.6440666496753693,
|
| 1182 |
+
"epoch": 0.392,
|
| 1183 |
+
"grad_norm": 44.75,
|
| 1184 |
+
"learning_rate": 1.9580000000000002e-05,
|
| 1185 |
+
"loss": 10.4922,
|
| 1186 |
+
"mean_token_accuracy": 0.8133824530988931,
|
| 1187 |
+
"num_tokens": 6953929.0,
|
| 1188 |
+
"step": 980
|
| 1189 |
+
},
|
| 1190 |
+
{
|
| 1191 |
+
"entropy": 0.697864510025829,
|
| 1192 |
+
"epoch": 0.396,
|
| 1193 |
+
"grad_norm": 51.5,
|
| 1194 |
+
"learning_rate": 1.978e-05,
|
| 1195 |
+
"loss": 11.1089,
|
| 1196 |
+
"mean_token_accuracy": 0.8045640021562577,
|
| 1197 |
+
"num_tokens": 7023835.0,
|
| 1198 |
+
"step": 990
|
| 1199 |
+
},
|
| 1200 |
+
{
|
| 1201 |
+
"entropy": 0.6845004385337233,
|
| 1202 |
+
"epoch": 0.4,
|
| 1203 |
+
"grad_norm": 43.0,
|
| 1204 |
+
"learning_rate": 1.9980000000000002e-05,
|
| 1205 |
+
"loss": 11.0312,
|
| 1206 |
+
"mean_token_accuracy": 0.8040390104055405,
|
| 1207 |
+
"num_tokens": 7096903.0,
|
| 1208 |
+
"step": 1000
|
| 1209 |
+
},
|
| 1210 |
+
{
|
| 1211 |
+
"epoch": 0.4,
|
| 1212 |
+
"eval_chemistry_entropy": 0.6533585796952248,
|
| 1213 |
+
"eval_chemistry_loss": 0.6839205026626587,
|
| 1214 |
+
"eval_chemistry_mean_token_accuracy": 0.8083831743001938,
|
| 1215 |
+
"eval_chemistry_num_tokens": 7096903.0,
|
| 1216 |
+
"eval_chemistry_runtime": 54.0723,
|
| 1217 |
+
"eval_chemistry_samples_per_second": 9.247,
|
| 1218 |
+
"eval_chemistry_steps_per_second": 9.247,
|
| 1219 |
+
"step": 1000
|
| 1220 |
+
},
|
| 1221 |
+
{
|
| 1222 |
+
"epoch": 0.4,
|
| 1223 |
+
"eval_math_entropy": 0.6458776640295982,
|
| 1224 |
+
"eval_math_loss": 0.654421865940094,
|
| 1225 |
+
"eval_math_mean_token_accuracy": 0.8129620677232743,
|
| 1226 |
+
"eval_math_num_tokens": 7096903.0,
|
| 1227 |
+
"eval_math_runtime": 56.7066,
|
| 1228 |
+
"eval_math_samples_per_second": 8.817,
|
| 1229 |
+
"eval_math_steps_per_second": 8.817,
|
| 1230 |
+
"step": 1000
|
| 1231 |
+
}
|
| 1232 |
+
],
|
| 1233 |
+
"logging_steps": 10,
|
| 1234 |
+
"max_steps": 10000,
|
| 1235 |
+
"num_input_tokens_seen": 0,
|
| 1236 |
+
"num_train_epochs": 4,
|
| 1237 |
+
"save_steps": 500,
|
| 1238 |
+
"stateful_callbacks": {
|
| 1239 |
+
"TrainerControl": {
|
| 1240 |
+
"args": {
|
| 1241 |
+
"should_epoch_stop": false,
|
| 1242 |
+
"should_evaluate": false,
|
| 1243 |
+
"should_log": false,
|
| 1244 |
+
"should_save": true,
|
| 1245 |
+
"should_training_stop": false
|
| 1246 |
+
},
|
| 1247 |
+
"attributes": {}
|
| 1248 |
+
}
|
| 1249 |
+
},
|
| 1250 |
+
"total_flos": 4.7587833384015814e+17,
|
| 1251 |
+
"train_batch_size": 1,
|
| 1252 |
+
"trial_name": null,
|
| 1253 |
+
"trial_params": null
|
| 1254 |
+
}
|
checkpoint-1000/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ae0f3429d8696cb1878e817a96382f41cecdd27680b7b12605e2981c8f94e164
|
| 3 |
+
size 6481
|