Instructions to use roonbug/b5e92jps with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use roonbug/b5e92jps with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="roonbug/b5e92jps") 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/b5e92jps") model = AutoModelForImageTextToText.from_pretrained("roonbug/b5e92jps") 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/b5e92jps with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "roonbug/b5e92jps" # 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/b5e92jps", "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/b5e92jps
- SGLang
How to use roonbug/b5e92jps 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/b5e92jps" \ --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/b5e92jps", "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/b5e92jps" \ --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/b5e92jps", "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/b5e92jps with Docker Model Runner:
docker model run hf.co/roonbug/b5e92jps
Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- checkpoint-500/added_tokens.json +3 -0
- checkpoint-500/chat_template.jinja +47 -0
- checkpoint-500/config.json +110 -0
- checkpoint-500/generation_config.json +13 -0
- checkpoint-500/model-00001-of-00005.safetensors +3 -0
- checkpoint-500/model-00002-of-00005.safetensors +3 -0
- checkpoint-500/model-00003-of-00005.safetensors +3 -0
- checkpoint-500/model-00004-of-00005.safetensors +3 -0
- checkpoint-500/model-00005-of-00005.safetensors +3 -0
- checkpoint-500/model.safetensors.index.json +0 -0
- checkpoint-500/optimizer.pt +3 -0
- checkpoint-500/rng_state.pth +3 -0
- checkpoint-500/scheduler.pt +3 -0
- checkpoint-500/special_tokens_map.json +33 -0
- checkpoint-500/tokenizer.json +3 -0
- checkpoint-500/tokenizer.model +3 -0
- checkpoint-500/tokenizer_config.json +0 -0
- checkpoint-500/trainer_state.json +754 -0
- checkpoint-500/training_args.bin +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip 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
|
|
|
|
|
|
| 33 |
*.zip 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
|
checkpoint-500/added_tokens.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"<image_soft_token>": 262144
|
| 3 |
+
}
|
checkpoint-500/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-500/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-500/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-500/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-500/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-500/model-00003-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:797be1d5febe5f157baa576743fc6a2974c55982ac5eb7354909963d33647035
|
| 3 |
+
size 4931296656
|
checkpoint-500/model-00004-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d37900b71893ef07dd64964a0b6ac649bc069922d0033fd748f249a6c55acf21
|
| 3 |
+
size 4931296656
|
checkpoint-500/model-00005-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f050c074704794833ffdf6ebe051067a08c909a2acca599f4f80aae20ce2d8ab
|
| 3 |
+
size 4601000928
|
checkpoint-500/model.safetensors.index.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-500/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:68a6b1dcbacbec428e191b64ec06d582e83a4256a18144b192d9e8196d4a5741
|
| 3 |
+
size 14573116445
|
checkpoint-500/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fde986f97ecc270a34049538e5bcb495edbc4e7f5914a76b3cad083de287dc73
|
| 3 |
+
size 14645
|
checkpoint-500/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:63481e620bd287eefb582d20daf306c54c7268088fea6f19af8100945c7e3e7e
|
| 3 |
+
size 1465
|
checkpoint-500/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-500/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4667f2089529e8e7657cfb6d1c19910ae71ff5f28aa7ab2ff2763330affad795
|
| 3 |
+
size 33384568
|
checkpoint-500/tokenizer.model
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1299c11d7cf632ef3b4e11937501358ada021bbdf7c47638d13c0ee982f2e79c
|
| 3 |
+
size 4689074
|
checkpoint-500/tokenizer_config.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-500/trainer_state.json
ADDED
|
@@ -0,0 +1,754 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.22255605630668224,
|
| 6 |
+
"eval_steps": 100,
|
| 7 |
+
"global_step": 500,
|
| 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.7622424783185124,
|
| 14 |
+
"epoch": 0.004451121126133645,
|
| 15 |
+
"grad_norm": 1888.0,
|
| 16 |
+
"learning_rate": 1.8e-07,
|
| 17 |
+
"loss": 36.8185,
|
| 18 |
+
"mean_token_accuracy": 0.6663544788956642,
|
| 19 |
+
"num_tokens": 63133.0,
|
| 20 |
+
"step": 10
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"entropy": 0.8160548411309719,
|
| 24 |
+
"epoch": 0.00890224225226729,
|
| 25 |
+
"grad_norm": 1728.0,
|
| 26 |
+
"learning_rate": 3.8e-07,
|
| 27 |
+
"loss": 36.6381,
|
| 28 |
+
"mean_token_accuracy": 0.649208546616137,
|
| 29 |
+
"num_tokens": 128968.0,
|
| 30 |
+
"step": 20
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"entropy": 0.8332255953922868,
|
| 34 |
+
"epoch": 0.013353363378400934,
|
| 35 |
+
"grad_norm": 948.0,
|
| 36 |
+
"learning_rate": 5.800000000000001e-07,
|
| 37 |
+
"loss": 34.7797,
|
| 38 |
+
"mean_token_accuracy": 0.6578839531168341,
|
| 39 |
+
"num_tokens": 193314.0,
|
| 40 |
+
"step": 30
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"entropy": 0.9456521481275558,
|
| 44 |
+
"epoch": 0.01780448450453458,
|
| 45 |
+
"grad_norm": 716.0,
|
| 46 |
+
"learning_rate": 7.8e-07,
|
| 47 |
+
"loss": 34.1076,
|
| 48 |
+
"mean_token_accuracy": 0.6613732609897852,
|
| 49 |
+
"num_tokens": 257189.0,
|
| 50 |
+
"step": 40
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"entropy": 0.9749895730987191,
|
| 54 |
+
"epoch": 0.022255605630668224,
|
| 55 |
+
"grad_norm": 660.0,
|
| 56 |
+
"learning_rate": 9.800000000000001e-07,
|
| 57 |
+
"loss": 29.937,
|
| 58 |
+
"mean_token_accuracy": 0.6729008939117194,
|
| 59 |
+
"num_tokens": 324224.0,
|
| 60 |
+
"step": 50
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"entropy": 1.0305172327905894,
|
| 64 |
+
"epoch": 0.026706726756801868,
|
| 65 |
+
"grad_norm": 492.0,
|
| 66 |
+
"learning_rate": 1.1800000000000001e-06,
|
| 67 |
+
"loss": 28.3561,
|
| 68 |
+
"mean_token_accuracy": 0.680633837915957,
|
| 69 |
+
"num_tokens": 394654.0,
|
| 70 |
+
"step": 60
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"entropy": 1.0123192116618156,
|
| 74 |
+
"epoch": 0.031157847882935515,
|
| 75 |
+
"grad_norm": 404.0,
|
| 76 |
+
"learning_rate": 1.3800000000000001e-06,
|
| 77 |
+
"loss": 26.0449,
|
| 78 |
+
"mean_token_accuracy": 0.6903208963572979,
|
| 79 |
+
"num_tokens": 461658.0,
|
| 80 |
+
"step": 70
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"entropy": 1.024911842495203,
|
| 84 |
+
"epoch": 0.03560896900906916,
|
| 85 |
+
"grad_norm": 250.0,
|
| 86 |
+
"learning_rate": 1.5800000000000001e-06,
|
| 87 |
+
"loss": 23.6986,
|
| 88 |
+
"mean_token_accuracy": 0.6996766375377774,
|
| 89 |
+
"num_tokens": 528285.0,
|
| 90 |
+
"step": 80
|
| 91 |
+
},
|
| 92 |
+
{
|
| 93 |
+
"entropy": 1.0939506959170102,
|
| 94 |
+
"epoch": 0.04006009013520281,
|
| 95 |
+
"grad_norm": 227.0,
|
| 96 |
+
"learning_rate": 1.7800000000000001e-06,
|
| 97 |
+
"loss": 23.2949,
|
| 98 |
+
"mean_token_accuracy": 0.6969541085883975,
|
| 99 |
+
"num_tokens": 595336.0,
|
| 100 |
+
"step": 90
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"entropy": 1.0676697574555873,
|
| 104 |
+
"epoch": 0.04451121126133645,
|
| 105 |
+
"grad_norm": 278.0,
|
| 106 |
+
"learning_rate": 1.98e-06,
|
| 107 |
+
"loss": 21.5533,
|
| 108 |
+
"mean_token_accuracy": 0.7063678905367852,
|
| 109 |
+
"num_tokens": 663126.0,
|
| 110 |
+
"step": 100
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"epoch": 0.04451121126133645,
|
| 114 |
+
"eval_biology_entropy": 1.5063953498601914,
|
| 115 |
+
"eval_biology_loss": 1.9373619556427002,
|
| 116 |
+
"eval_biology_mean_token_accuracy": 0.6030384682416916,
|
| 117 |
+
"eval_biology_num_tokens": 663126.0,
|
| 118 |
+
"eval_biology_runtime": 37.2317,
|
| 119 |
+
"eval_biology_samples_per_second": 13.429,
|
| 120 |
+
"eval_biology_steps_per_second": 13.429,
|
| 121 |
+
"step": 100
|
| 122 |
+
},
|
| 123 |
+
{
|
| 124 |
+
"epoch": 0.04451121126133645,
|
| 125 |
+
"eval_chemistry_entropy": 1.0538504299521447,
|
| 126 |
+
"eval_chemistry_loss": 1.2949438095092773,
|
| 127 |
+
"eval_chemistry_mean_token_accuracy": 0.7114702309370041,
|
| 128 |
+
"eval_chemistry_num_tokens": 663126.0,
|
| 129 |
+
"eval_chemistry_runtime": 41.1049,
|
| 130 |
+
"eval_chemistry_samples_per_second": 12.164,
|
| 131 |
+
"eval_chemistry_steps_per_second": 12.164,
|
| 132 |
+
"step": 100
|
| 133 |
+
},
|
| 134 |
+
{
|
| 135 |
+
"epoch": 0.04451121126133645,
|
| 136 |
+
"eval_math_entropy": 0.8524410739541054,
|
| 137 |
+
"eval_math_loss": 1.2029013633728027,
|
| 138 |
+
"eval_math_mean_token_accuracy": 0.7322385207414627,
|
| 139 |
+
"eval_math_num_tokens": 663126.0,
|
| 140 |
+
"eval_math_runtime": 41.5152,
|
| 141 |
+
"eval_math_samples_per_second": 12.044,
|
| 142 |
+
"eval_math_steps_per_second": 12.044,
|
| 143 |
+
"step": 100
|
| 144 |
+
},
|
| 145 |
+
{
|
| 146 |
+
"epoch": 0.04451121126133645,
|
| 147 |
+
"eval_physics_entropy": 0.9442882173061371,
|
| 148 |
+
"eval_physics_loss": 1.1572656631469727,
|
| 149 |
+
"eval_physics_mean_token_accuracy": 0.7343679416179657,
|
| 150 |
+
"eval_physics_num_tokens": 663126.0,
|
| 151 |
+
"eval_physics_runtime": 45.8024,
|
| 152 |
+
"eval_physics_samples_per_second": 10.916,
|
| 153 |
+
"eval_physics_steps_per_second": 10.916,
|
| 154 |
+
"step": 100
|
| 155 |
+
},
|
| 156 |
+
{
|
| 157 |
+
"entropy": 1.0567705381661654,
|
| 158 |
+
"epoch": 0.048962332387470095,
|
| 159 |
+
"grad_norm": 202.0,
|
| 160 |
+
"learning_rate": 2.1800000000000003e-06,
|
| 161 |
+
"loss": 20.0858,
|
| 162 |
+
"mean_token_accuracy": 0.7180810730904341,
|
| 163 |
+
"num_tokens": 731060.0,
|
| 164 |
+
"step": 110
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"entropy": 1.0101547280326486,
|
| 168 |
+
"epoch": 0.053413453513603736,
|
| 169 |
+
"grad_norm": 202.0,
|
| 170 |
+
"learning_rate": 2.38e-06,
|
| 171 |
+
"loss": 18.8763,
|
| 172 |
+
"mean_token_accuracy": 0.7310481067746878,
|
| 173 |
+
"num_tokens": 801635.0,
|
| 174 |
+
"step": 120
|
| 175 |
+
},
|
| 176 |
+
{
|
| 177 |
+
"entropy": 1.0049639470875262,
|
| 178 |
+
"epoch": 0.05786457463973738,
|
| 179 |
+
"grad_norm": 154.0,
|
| 180 |
+
"learning_rate": 2.5800000000000003e-06,
|
| 181 |
+
"loss": 19.1729,
|
| 182 |
+
"mean_token_accuracy": 0.7293503576889634,
|
| 183 |
+
"num_tokens": 867260.0,
|
| 184 |
+
"step": 130
|
| 185 |
+
},
|
| 186 |
+
{
|
| 187 |
+
"entropy": 1.0176106113940477,
|
| 188 |
+
"epoch": 0.06231569576587103,
|
| 189 |
+
"grad_norm": 144.0,
|
| 190 |
+
"learning_rate": 2.7800000000000005e-06,
|
| 191 |
+
"loss": 18.97,
|
| 192 |
+
"mean_token_accuracy": 0.7298020845279097,
|
| 193 |
+
"num_tokens": 931344.0,
|
| 194 |
+
"step": 140
|
| 195 |
+
},
|
| 196 |
+
{
|
| 197 |
+
"entropy": 1.0698495015501976,
|
| 198 |
+
"epoch": 0.06676681689200467,
|
| 199 |
+
"grad_norm": 169.0,
|
| 200 |
+
"learning_rate": 2.9800000000000003e-06,
|
| 201 |
+
"loss": 17.4943,
|
| 202 |
+
"mean_token_accuracy": 0.7370716020464897,
|
| 203 |
+
"num_tokens": 993586.0,
|
| 204 |
+
"step": 150
|
| 205 |
+
},
|
| 206 |
+
{
|
| 207 |
+
"entropy": 1.0634983357042074,
|
| 208 |
+
"epoch": 0.07121793801813832,
|
| 209 |
+
"grad_norm": 123.0,
|
| 210 |
+
"learning_rate": 3.1800000000000005e-06,
|
| 211 |
+
"loss": 16.9373,
|
| 212 |
+
"mean_token_accuracy": 0.7367568526417017,
|
| 213 |
+
"num_tokens": 1060812.0,
|
| 214 |
+
"step": 160
|
| 215 |
+
},
|
| 216 |
+
{
|
| 217 |
+
"entropy": 1.0108168195933103,
|
| 218 |
+
"epoch": 0.07566905914427197,
|
| 219 |
+
"grad_norm": 125.0,
|
| 220 |
+
"learning_rate": 3.3800000000000007e-06,
|
| 221 |
+
"loss": 15.569,
|
| 222 |
+
"mean_token_accuracy": 0.7519758876413107,
|
| 223 |
+
"num_tokens": 1131832.0,
|
| 224 |
+
"step": 170
|
| 225 |
+
},
|
| 226 |
+
{
|
| 227 |
+
"entropy": 0.9829567475244403,
|
| 228 |
+
"epoch": 0.08012018027040561,
|
| 229 |
+
"grad_norm": 99.0,
|
| 230 |
+
"learning_rate": 3.58e-06,
|
| 231 |
+
"loss": 15.2082,
|
| 232 |
+
"mean_token_accuracy": 0.7475447814911604,
|
| 233 |
+
"num_tokens": 1200650.0,
|
| 234 |
+
"step": 180
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"entropy": 0.9538513226434588,
|
| 238 |
+
"epoch": 0.08457130139653925,
|
| 239 |
+
"grad_norm": 119.0,
|
| 240 |
+
"learning_rate": 3.7800000000000002e-06,
|
| 241 |
+
"loss": 15.0014,
|
| 242 |
+
"mean_token_accuracy": 0.7515964422374963,
|
| 243 |
+
"num_tokens": 1265107.0,
|
| 244 |
+
"step": 190
|
| 245 |
+
},
|
| 246 |
+
{
|
| 247 |
+
"entropy": 0.9125228714197874,
|
| 248 |
+
"epoch": 0.0890224225226729,
|
| 249 |
+
"grad_norm": 117.0,
|
| 250 |
+
"learning_rate": 3.980000000000001e-06,
|
| 251 |
+
"loss": 14.4833,
|
| 252 |
+
"mean_token_accuracy": 0.7538308618590236,
|
| 253 |
+
"num_tokens": 1327380.0,
|
| 254 |
+
"step": 200
|
| 255 |
+
},
|
| 256 |
+
{
|
| 257 |
+
"epoch": 0.0890224225226729,
|
| 258 |
+
"eval_biology_entropy": 1.280277446448803,
|
| 259 |
+
"eval_biology_loss": 1.453066349029541,
|
| 260 |
+
"eval_biology_mean_token_accuracy": 0.6518876985907555,
|
| 261 |
+
"eval_biology_num_tokens": 1327380.0,
|
| 262 |
+
"eval_biology_runtime": 36.821,
|
| 263 |
+
"eval_biology_samples_per_second": 13.579,
|
| 264 |
+
"eval_biology_steps_per_second": 13.579,
|
| 265 |
+
"step": 200
|
| 266 |
+
},
|
| 267 |
+
{
|
| 268 |
+
"epoch": 0.0890224225226729,
|
| 269 |
+
"eval_chemistry_entropy": 0.8954760466217995,
|
| 270 |
+
"eval_chemistry_loss": 0.9106767177581787,
|
| 271 |
+
"eval_chemistry_mean_token_accuracy": 0.7551076735854149,
|
| 272 |
+
"eval_chemistry_num_tokens": 1327380.0,
|
| 273 |
+
"eval_chemistry_runtime": 40.4689,
|
| 274 |
+
"eval_chemistry_samples_per_second": 12.355,
|
| 275 |
+
"eval_chemistry_steps_per_second": 12.355,
|
| 276 |
+
"step": 200
|
| 277 |
+
},
|
| 278 |
+
{
|
| 279 |
+
"epoch": 0.0890224225226729,
|
| 280 |
+
"eval_math_entropy": 0.7658050524294376,
|
| 281 |
+
"eval_math_loss": 0.9040815234184265,
|
| 282 |
+
"eval_math_mean_token_accuracy": 0.7642563463449478,
|
| 283 |
+
"eval_math_num_tokens": 1327380.0,
|
| 284 |
+
"eval_math_runtime": 41.4556,
|
| 285 |
+
"eval_math_samples_per_second": 12.061,
|
| 286 |
+
"eval_math_steps_per_second": 12.061,
|
| 287 |
+
"step": 200
|
| 288 |
+
},
|
| 289 |
+
{
|
| 290 |
+
"epoch": 0.0890224225226729,
|
| 291 |
+
"eval_physics_entropy": 0.8174435417056084,
|
| 292 |
+
"eval_physics_loss": 0.8484614491462708,
|
| 293 |
+
"eval_physics_mean_token_accuracy": 0.7708570960760116,
|
| 294 |
+
"eval_physics_num_tokens": 1327380.0,
|
| 295 |
+
"eval_physics_runtime": 45.875,
|
| 296 |
+
"eval_physics_samples_per_second": 10.899,
|
| 297 |
+
"eval_physics_steps_per_second": 10.899,
|
| 298 |
+
"step": 200
|
| 299 |
+
},
|
| 300 |
+
{
|
| 301 |
+
"entropy": 0.9408239619806409,
|
| 302 |
+
"epoch": 0.09347354364880654,
|
| 303 |
+
"grad_norm": 126.5,
|
| 304 |
+
"learning_rate": 4.18e-06,
|
| 305 |
+
"loss": 15.2387,
|
| 306 |
+
"mean_token_accuracy": 0.7457781180739402,
|
| 307 |
+
"num_tokens": 1393379.0,
|
| 308 |
+
"step": 210
|
| 309 |
+
},
|
| 310 |
+
{
|
| 311 |
+
"entropy": 0.8950148992240429,
|
| 312 |
+
"epoch": 0.09792466477494019,
|
| 313 |
+
"grad_norm": 95.0,
|
| 314 |
+
"learning_rate": 4.38e-06,
|
| 315 |
+
"loss": 14.2337,
|
| 316 |
+
"mean_token_accuracy": 0.7587446294724941,
|
| 317 |
+
"num_tokens": 1460130.0,
|
| 318 |
+
"step": 220
|
| 319 |
+
},
|
| 320 |
+
{
|
| 321 |
+
"entropy": 0.859116705879569,
|
| 322 |
+
"epoch": 0.10237578590107384,
|
| 323 |
+
"grad_norm": 94.0,
|
| 324 |
+
"learning_rate": 4.58e-06,
|
| 325 |
+
"loss": 13.7082,
|
| 326 |
+
"mean_token_accuracy": 0.76347241923213,
|
| 327 |
+
"num_tokens": 1529183.0,
|
| 328 |
+
"step": 230
|
| 329 |
+
},
|
| 330 |
+
{
|
| 331 |
+
"entropy": 0.8980951353907585,
|
| 332 |
+
"epoch": 0.10682690702720747,
|
| 333 |
+
"grad_norm": 118.5,
|
| 334 |
+
"learning_rate": 4.78e-06,
|
| 335 |
+
"loss": 14.5897,
|
| 336 |
+
"mean_token_accuracy": 0.7553087200969457,
|
| 337 |
+
"num_tokens": 1597405.0,
|
| 338 |
+
"step": 240
|
| 339 |
+
},
|
| 340 |
+
{
|
| 341 |
+
"entropy": 0.9019628280773759,
|
| 342 |
+
"epoch": 0.11127802815334112,
|
| 343 |
+
"grad_norm": 98.5,
|
| 344 |
+
"learning_rate": 4.980000000000001e-06,
|
| 345 |
+
"loss": 14.5049,
|
| 346 |
+
"mean_token_accuracy": 0.7539074700325727,
|
| 347 |
+
"num_tokens": 1661767.0,
|
| 348 |
+
"step": 250
|
| 349 |
+
},
|
| 350 |
+
{
|
| 351 |
+
"entropy": 0.9095736019313335,
|
| 352 |
+
"epoch": 0.11572914927947477,
|
| 353 |
+
"grad_norm": 80.0,
|
| 354 |
+
"learning_rate": 5.18e-06,
|
| 355 |
+
"loss": 14.553,
|
| 356 |
+
"mean_token_accuracy": 0.7567780796438456,
|
| 357 |
+
"num_tokens": 1728207.0,
|
| 358 |
+
"step": 260
|
| 359 |
+
},
|
| 360 |
+
{
|
| 361 |
+
"entropy": 0.855735239200294,
|
| 362 |
+
"epoch": 0.12018027040560841,
|
| 363 |
+
"grad_norm": 99.0,
|
| 364 |
+
"learning_rate": 5.380000000000001e-06,
|
| 365 |
+
"loss": 13.731,
|
| 366 |
+
"mean_token_accuracy": 0.7652106903493404,
|
| 367 |
+
"num_tokens": 1796055.0,
|
| 368 |
+
"step": 270
|
| 369 |
+
},
|
| 370 |
+
{
|
| 371 |
+
"entropy": 0.830021676234901,
|
| 372 |
+
"epoch": 0.12463139153174206,
|
| 373 |
+
"grad_norm": 97.5,
|
| 374 |
+
"learning_rate": 5.580000000000001e-06,
|
| 375 |
+
"loss": 13.2554,
|
| 376 |
+
"mean_token_accuracy": 0.7721017152070999,
|
| 377 |
+
"num_tokens": 1859684.0,
|
| 378 |
+
"step": 280
|
| 379 |
+
},
|
| 380 |
+
{
|
| 381 |
+
"entropy": 0.8921441739425063,
|
| 382 |
+
"epoch": 0.1290825126578757,
|
| 383 |
+
"grad_norm": 106.5,
|
| 384 |
+
"learning_rate": 5.78e-06,
|
| 385 |
+
"loss": 14.4012,
|
| 386 |
+
"mean_token_accuracy": 0.7561684042215348,
|
| 387 |
+
"num_tokens": 1921704.0,
|
| 388 |
+
"step": 290
|
| 389 |
+
},
|
| 390 |
+
{
|
| 391 |
+
"entropy": 0.8731818461790681,
|
| 392 |
+
"epoch": 0.13353363378400934,
|
| 393 |
+
"grad_norm": 87.5,
|
| 394 |
+
"learning_rate": 5.98e-06,
|
| 395 |
+
"loss": 13.9502,
|
| 396 |
+
"mean_token_accuracy": 0.7628704030066729,
|
| 397 |
+
"num_tokens": 1985766.0,
|
| 398 |
+
"step": 300
|
| 399 |
+
},
|
| 400 |
+
{
|
| 401 |
+
"epoch": 0.13353363378400934,
|
| 402 |
+
"eval_biology_entropy": 1.2637426958680154,
|
| 403 |
+
"eval_biology_loss": 1.3796980381011963,
|
| 404 |
+
"eval_biology_mean_token_accuracy": 0.6648430502414704,
|
| 405 |
+
"eval_biology_num_tokens": 1985766.0,
|
| 406 |
+
"eval_biology_runtime": 37.0397,
|
| 407 |
+
"eval_biology_samples_per_second": 13.499,
|
| 408 |
+
"eval_biology_steps_per_second": 13.499,
|
| 409 |
+
"step": 300
|
| 410 |
+
},
|
| 411 |
+
{
|
| 412 |
+
"epoch": 0.13353363378400934,
|
| 413 |
+
"eval_chemistry_entropy": 0.8489444836974144,
|
| 414 |
+
"eval_chemistry_loss": 0.8385273814201355,
|
| 415 |
+
"eval_chemistry_mean_token_accuracy": 0.7699487572312355,
|
| 416 |
+
"eval_chemistry_num_tokens": 1985766.0,
|
| 417 |
+
"eval_chemistry_runtime": 40.8665,
|
| 418 |
+
"eval_chemistry_samples_per_second": 12.235,
|
| 419 |
+
"eval_chemistry_steps_per_second": 12.235,
|
| 420 |
+
"step": 300
|
| 421 |
+
},
|
| 422 |
+
{
|
| 423 |
+
"epoch": 0.13353363378400934,
|
| 424 |
+
"eval_math_entropy": 0.7357360773980618,
|
| 425 |
+
"eval_math_loss": 0.8767910599708557,
|
| 426 |
+
"eval_math_mean_token_accuracy": 0.7708948514461518,
|
| 427 |
+
"eval_math_num_tokens": 1985766.0,
|
| 428 |
+
"eval_math_runtime": 41.8192,
|
| 429 |
+
"eval_math_samples_per_second": 11.956,
|
| 430 |
+
"eval_math_steps_per_second": 11.956,
|
| 431 |
+
"step": 300
|
| 432 |
+
},
|
| 433 |
+
{
|
| 434 |
+
"epoch": 0.13353363378400934,
|
| 435 |
+
"eval_physics_entropy": 0.7905060887336731,
|
| 436 |
+
"eval_physics_loss": 0.7890318632125854,
|
| 437 |
+
"eval_physics_mean_token_accuracy": 0.7825853993296623,
|
| 438 |
+
"eval_physics_num_tokens": 1985766.0,
|
| 439 |
+
"eval_physics_runtime": 46.1418,
|
| 440 |
+
"eval_physics_samples_per_second": 10.836,
|
| 441 |
+
"eval_physics_steps_per_second": 10.836,
|
| 442 |
+
"step": 300
|
| 443 |
+
},
|
| 444 |
+
{
|
| 445 |
+
"entropy": 0.8452363438904286,
|
| 446 |
+
"epoch": 0.137984754910143,
|
| 447 |
+
"grad_norm": 96.0,
|
| 448 |
+
"learning_rate": 6.18e-06,
|
| 449 |
+
"loss": 13.634,
|
| 450 |
+
"mean_token_accuracy": 0.7645608998835087,
|
| 451 |
+
"num_tokens": 2049041.0,
|
| 452 |
+
"step": 310
|
| 453 |
+
},
|
| 454 |
+
{
|
| 455 |
+
"entropy": 0.8076417898759246,
|
| 456 |
+
"epoch": 0.14243587603627664,
|
| 457 |
+
"grad_norm": 80.5,
|
| 458 |
+
"learning_rate": 6.380000000000001e-06,
|
| 459 |
+
"loss": 12.8943,
|
| 460 |
+
"mean_token_accuracy": 0.7760006580501795,
|
| 461 |
+
"num_tokens": 2118068.0,
|
| 462 |
+
"step": 320
|
| 463 |
+
},
|
| 464 |
+
{
|
| 465 |
+
"entropy": 0.8085115062072873,
|
| 466 |
+
"epoch": 0.14688699716241027,
|
| 467 |
+
"grad_norm": 106.5,
|
| 468 |
+
"learning_rate": 6.5800000000000005e-06,
|
| 469 |
+
"loss": 12.7928,
|
| 470 |
+
"mean_token_accuracy": 0.7790838234126568,
|
| 471 |
+
"num_tokens": 2186387.0,
|
| 472 |
+
"step": 330
|
| 473 |
+
},
|
| 474 |
+
{
|
| 475 |
+
"entropy": 0.824213713593781,
|
| 476 |
+
"epoch": 0.15133811828854393,
|
| 477 |
+
"grad_norm": 82.5,
|
| 478 |
+
"learning_rate": 6.780000000000001e-06,
|
| 479 |
+
"loss": 13.389,
|
| 480 |
+
"mean_token_accuracy": 0.7689453203231096,
|
| 481 |
+
"num_tokens": 2252650.0,
|
| 482 |
+
"step": 340
|
| 483 |
+
},
|
| 484 |
+
{
|
| 485 |
+
"entropy": 0.797634300775826,
|
| 486 |
+
"epoch": 0.15578923941467757,
|
| 487 |
+
"grad_norm": 85.5,
|
| 488 |
+
"learning_rate": 6.98e-06,
|
| 489 |
+
"loss": 12.8088,
|
| 490 |
+
"mean_token_accuracy": 0.7797435287386179,
|
| 491 |
+
"num_tokens": 2320358.0,
|
| 492 |
+
"step": 350
|
| 493 |
+
},
|
| 494 |
+
{
|
| 495 |
+
"entropy": 0.7920836627483367,
|
| 496 |
+
"epoch": 0.16024036054081123,
|
| 497 |
+
"grad_norm": 88.0,
|
| 498 |
+
"learning_rate": 7.180000000000001e-06,
|
| 499 |
+
"loss": 12.6336,
|
| 500 |
+
"mean_token_accuracy": 0.7806293956935406,
|
| 501 |
+
"num_tokens": 2388824.0,
|
| 502 |
+
"step": 360
|
| 503 |
+
},
|
| 504 |
+
{
|
| 505 |
+
"entropy": 0.7749077206477523,
|
| 506 |
+
"epoch": 0.16469148166694486,
|
| 507 |
+
"grad_norm": 80.5,
|
| 508 |
+
"learning_rate": 7.3800000000000005e-06,
|
| 509 |
+
"loss": 12.3995,
|
| 510 |
+
"mean_token_accuracy": 0.7864189695566892,
|
| 511 |
+
"num_tokens": 2456144.0,
|
| 512 |
+
"step": 370
|
| 513 |
+
},
|
| 514 |
+
{
|
| 515 |
+
"entropy": 0.8578483302146196,
|
| 516 |
+
"epoch": 0.1691426027930785,
|
| 517 |
+
"grad_norm": 81.0,
|
| 518 |
+
"learning_rate": 7.58e-06,
|
| 519 |
+
"loss": 13.8496,
|
| 520 |
+
"mean_token_accuracy": 0.7662820883095265,
|
| 521 |
+
"num_tokens": 2515325.0,
|
| 522 |
+
"step": 380
|
| 523 |
+
},
|
| 524 |
+
{
|
| 525 |
+
"entropy": 0.7971056224778295,
|
| 526 |
+
"epoch": 0.17359372391921216,
|
| 527 |
+
"grad_norm": 68.0,
|
| 528 |
+
"learning_rate": 7.78e-06,
|
| 529 |
+
"loss": 12.6922,
|
| 530 |
+
"mean_token_accuracy": 0.7778837148100137,
|
| 531 |
+
"num_tokens": 2580490.0,
|
| 532 |
+
"step": 390
|
| 533 |
+
},
|
| 534 |
+
{
|
| 535 |
+
"entropy": 0.7984419580549001,
|
| 536 |
+
"epoch": 0.1780448450453458,
|
| 537 |
+
"grad_norm": 70.5,
|
| 538 |
+
"learning_rate": 7.980000000000002e-06,
|
| 539 |
+
"loss": 12.8255,
|
| 540 |
+
"mean_token_accuracy": 0.7773921977728605,
|
| 541 |
+
"num_tokens": 2644330.0,
|
| 542 |
+
"step": 400
|
| 543 |
+
},
|
| 544 |
+
{
|
| 545 |
+
"epoch": 0.1780448450453458,
|
| 546 |
+
"eval_biology_entropy": 1.2305693982243537,
|
| 547 |
+
"eval_biology_loss": 1.3490314483642578,
|
| 548 |
+
"eval_biology_mean_token_accuracy": 0.6716532117724419,
|
| 549 |
+
"eval_biology_num_tokens": 2644330.0,
|
| 550 |
+
"eval_biology_runtime": 36.6001,
|
| 551 |
+
"eval_biology_samples_per_second": 13.661,
|
| 552 |
+
"eval_biology_steps_per_second": 13.661,
|
| 553 |
+
"step": 400
|
| 554 |
+
},
|
| 555 |
+
{
|
| 556 |
+
"epoch": 0.1780448450453458,
|
| 557 |
+
"eval_chemistry_entropy": 0.7882854393720626,
|
| 558 |
+
"eval_chemistry_loss": 0.7991188764572144,
|
| 559 |
+
"eval_chemistry_mean_token_accuracy": 0.778610565006733,
|
| 560 |
+
"eval_chemistry_num_tokens": 2644330.0,
|
| 561 |
+
"eval_chemistry_runtime": 40.3843,
|
| 562 |
+
"eval_chemistry_samples_per_second": 12.381,
|
| 563 |
+
"eval_chemistry_steps_per_second": 12.381,
|
| 564 |
+
"step": 400
|
| 565 |
+
},
|
| 566 |
+
{
|
| 567 |
+
"epoch": 0.1780448450453458,
|
| 568 |
+
"eval_math_entropy": 0.6974474709928036,
|
| 569 |
+
"eval_math_loss": 0.8647986054420471,
|
| 570 |
+
"eval_math_mean_token_accuracy": 0.7742947788238526,
|
| 571 |
+
"eval_math_num_tokens": 2644330.0,
|
| 572 |
+
"eval_math_runtime": 41.8502,
|
| 573 |
+
"eval_math_samples_per_second": 11.947,
|
| 574 |
+
"eval_math_steps_per_second": 11.947,
|
| 575 |
+
"step": 400
|
| 576 |
+
},
|
| 577 |
+
{
|
| 578 |
+
"epoch": 0.1780448450453458,
|
| 579 |
+
"eval_physics_entropy": 0.740912606716156,
|
| 580 |
+
"eval_physics_loss": 0.7630434632301331,
|
| 581 |
+
"eval_physics_mean_token_accuracy": 0.7882855938673019,
|
| 582 |
+
"eval_physics_num_tokens": 2644330.0,
|
| 583 |
+
"eval_physics_runtime": 46.1492,
|
| 584 |
+
"eval_physics_samples_per_second": 10.834,
|
| 585 |
+
"eval_physics_steps_per_second": 10.834,
|
| 586 |
+
"step": 400
|
| 587 |
+
},
|
| 588 |
+
{
|
| 589 |
+
"entropy": 0.7443430663086474,
|
| 590 |
+
"epoch": 0.18249596617147945,
|
| 591 |
+
"grad_norm": 72.5,
|
| 592 |
+
"learning_rate": 8.18e-06,
|
| 593 |
+
"loss": 11.7994,
|
| 594 |
+
"mean_token_accuracy": 0.7938185524195432,
|
| 595 |
+
"num_tokens": 2713234.0,
|
| 596 |
+
"step": 410
|
| 597 |
+
},
|
| 598 |
+
{
|
| 599 |
+
"entropy": 0.7856309018097818,
|
| 600 |
+
"epoch": 0.18694708729761308,
|
| 601 |
+
"grad_norm": 78.0,
|
| 602 |
+
"learning_rate": 8.380000000000001e-06,
|
| 603 |
+
"loss": 12.9567,
|
| 604 |
+
"mean_token_accuracy": 0.7781453486531973,
|
| 605 |
+
"num_tokens": 2783261.0,
|
| 606 |
+
"step": 420
|
| 607 |
+
},
|
| 608 |
+
{
|
| 609 |
+
"entropy": 0.799421458132565,
|
| 610 |
+
"epoch": 0.19139820842374672,
|
| 611 |
+
"grad_norm": 61.25,
|
| 612 |
+
"learning_rate": 8.580000000000001e-06,
|
| 613 |
+
"loss": 12.6392,
|
| 614 |
+
"mean_token_accuracy": 0.7806750666350126,
|
| 615 |
+
"num_tokens": 2850170.0,
|
| 616 |
+
"step": 430
|
| 617 |
+
},
|
| 618 |
+
{
|
| 619 |
+
"entropy": 0.7786322007887065,
|
| 620 |
+
"epoch": 0.19584932954988038,
|
| 621 |
+
"grad_norm": 80.5,
|
| 622 |
+
"learning_rate": 8.78e-06,
|
| 623 |
+
"loss": 12.4988,
|
| 624 |
+
"mean_token_accuracy": 0.7827117882668972,
|
| 625 |
+
"num_tokens": 2913700.0,
|
| 626 |
+
"step": 440
|
| 627 |
+
},
|
| 628 |
+
{
|
| 629 |
+
"entropy": 0.763565490860492,
|
| 630 |
+
"epoch": 0.200300450676014,
|
| 631 |
+
"grad_norm": 81.0,
|
| 632 |
+
"learning_rate": 8.98e-06,
|
| 633 |
+
"loss": 12.4779,
|
| 634 |
+
"mean_token_accuracy": 0.7831043265759945,
|
| 635 |
+
"num_tokens": 2981212.0,
|
| 636 |
+
"step": 450
|
| 637 |
+
},
|
| 638 |
+
{
|
| 639 |
+
"entropy": 0.7708647299557925,
|
| 640 |
+
"epoch": 0.20475157180214767,
|
| 641 |
+
"grad_norm": 85.0,
|
| 642 |
+
"learning_rate": 9.180000000000002e-06,
|
| 643 |
+
"loss": 12.1503,
|
| 644 |
+
"mean_token_accuracy": 0.7912418570369482,
|
| 645 |
+
"num_tokens": 3048973.0,
|
| 646 |
+
"step": 460
|
| 647 |
+
},
|
| 648 |
+
{
|
| 649 |
+
"entropy": 0.769937212113291,
|
| 650 |
+
"epoch": 0.2092026929282813,
|
| 651 |
+
"grad_norm": 62.0,
|
| 652 |
+
"learning_rate": 9.38e-06,
|
| 653 |
+
"loss": 12.6137,
|
| 654 |
+
"mean_token_accuracy": 0.7829986553639173,
|
| 655 |
+
"num_tokens": 3117033.0,
|
| 656 |
+
"step": 470
|
| 657 |
+
},
|
| 658 |
+
{
|
| 659 |
+
"entropy": 0.7863288868218661,
|
| 660 |
+
"epoch": 0.21365381405441494,
|
| 661 |
+
"grad_norm": 74.5,
|
| 662 |
+
"learning_rate": 9.58e-06,
|
| 663 |
+
"loss": 12.3857,
|
| 664 |
+
"mean_token_accuracy": 0.7842021461576223,
|
| 665 |
+
"num_tokens": 3185255.0,
|
| 666 |
+
"step": 480
|
| 667 |
+
},
|
| 668 |
+
{
|
| 669 |
+
"entropy": 0.7699232887476682,
|
| 670 |
+
"epoch": 0.2181049351805486,
|
| 671 |
+
"grad_norm": 74.5,
|
| 672 |
+
"learning_rate": 9.780000000000001e-06,
|
| 673 |
+
"loss": 12.4166,
|
| 674 |
+
"mean_token_accuracy": 0.7846909243613481,
|
| 675 |
+
"num_tokens": 3253121.0,
|
| 676 |
+
"step": 490
|
| 677 |
+
},
|
| 678 |
+
{
|
| 679 |
+
"entropy": 0.7251296367496252,
|
| 680 |
+
"epoch": 0.22255605630668224,
|
| 681 |
+
"grad_norm": 75.0,
|
| 682 |
+
"learning_rate": 9.980000000000001e-06,
|
| 683 |
+
"loss": 11.4498,
|
| 684 |
+
"mean_token_accuracy": 0.7972834445536137,
|
| 685 |
+
"num_tokens": 3322823.0,
|
| 686 |
+
"step": 500
|
| 687 |
+
},
|
| 688 |
+
{
|
| 689 |
+
"epoch": 0.22255605630668224,
|
| 690 |
+
"eval_biology_entropy": 1.1898637573719024,
|
| 691 |
+
"eval_biology_loss": 1.338150978088379,
|
| 692 |
+
"eval_biology_mean_token_accuracy": 0.6746688461303711,
|
| 693 |
+
"eval_biology_num_tokens": 3322823.0,
|
| 694 |
+
"eval_biology_runtime": 37.4484,
|
| 695 |
+
"eval_biology_samples_per_second": 13.352,
|
| 696 |
+
"eval_biology_steps_per_second": 13.352,
|
| 697 |
+
"step": 500
|
| 698 |
+
},
|
| 699 |
+
{
|
| 700 |
+
"epoch": 0.22255605630668224,
|
| 701 |
+
"eval_chemistry_entropy": 0.7506220785379409,
|
| 702 |
+
"eval_chemistry_loss": 0.7758934497833252,
|
| 703 |
+
"eval_chemistry_mean_token_accuracy": 0.7828538768291473,
|
| 704 |
+
"eval_chemistry_num_tokens": 3322823.0,
|
| 705 |
+
"eval_chemistry_runtime": 40.7375,
|
| 706 |
+
"eval_chemistry_samples_per_second": 12.274,
|
| 707 |
+
"eval_chemistry_steps_per_second": 12.274,
|
| 708 |
+
"step": 500
|
| 709 |
+
},
|
| 710 |
+
{
|
| 711 |
+
"epoch": 0.22255605630668224,
|
| 712 |
+
"eval_math_entropy": 0.6889803909361363,
|
| 713 |
+
"eval_math_loss": 0.8622512817382812,
|
| 714 |
+
"eval_math_mean_token_accuracy": 0.7754237843751908,
|
| 715 |
+
"eval_math_num_tokens": 3322823.0,
|
| 716 |
+
"eval_math_runtime": 41.9238,
|
| 717 |
+
"eval_math_samples_per_second": 11.926,
|
| 718 |
+
"eval_math_steps_per_second": 11.926,
|
| 719 |
+
"step": 500
|
| 720 |
+
},
|
| 721 |
+
{
|
| 722 |
+
"epoch": 0.22255605630668224,
|
| 723 |
+
"eval_physics_entropy": 0.7242196025848389,
|
| 724 |
+
"eval_physics_loss": 0.7506964802742004,
|
| 725 |
+
"eval_physics_mean_token_accuracy": 0.7921671935915947,
|
| 726 |
+
"eval_physics_num_tokens": 3322823.0,
|
| 727 |
+
"eval_physics_runtime": 45.9692,
|
| 728 |
+
"eval_physics_samples_per_second": 10.877,
|
| 729 |
+
"eval_physics_steps_per_second": 10.877,
|
| 730 |
+
"step": 500
|
| 731 |
+
}
|
| 732 |
+
],
|
| 733 |
+
"logging_steps": 10,
|
| 734 |
+
"max_steps": 10000,
|
| 735 |
+
"num_input_tokens_seen": 0,
|
| 736 |
+
"num_train_epochs": 5,
|
| 737 |
+
"save_steps": 500,
|
| 738 |
+
"stateful_callbacks": {
|
| 739 |
+
"TrainerControl": {
|
| 740 |
+
"args": {
|
| 741 |
+
"should_epoch_stop": false,
|
| 742 |
+
"should_evaluate": false,
|
| 743 |
+
"should_log": false,
|
| 744 |
+
"should_save": true,
|
| 745 |
+
"should_training_stop": false
|
| 746 |
+
},
|
| 747 |
+
"attributes": {}
|
| 748 |
+
}
|
| 749 |
+
},
|
| 750 |
+
"total_flos": 2.2280979081801686e+17,
|
| 751 |
+
"train_batch_size": 1,
|
| 752 |
+
"trial_name": null,
|
| 753 |
+
"trial_params": null
|
| 754 |
+
}
|
checkpoint-500/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d5c309713d43008ffebf2b6192655dbdf8042a7ab75047241cf165dbf24ad3b0
|
| 3 |
+
size 6481
|