Instructions to use roonbug/64a5wv2p with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use roonbug/64a5wv2p with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="roonbug/64a5wv2p") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("roonbug/64a5wv2p") model = AutoModelForCausalLM.from_pretrained("roonbug/64a5wv2p") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.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(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use roonbug/64a5wv2p with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "roonbug/64a5wv2p" # 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/64a5wv2p", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/roonbug/64a5wv2p
- SGLang
How to use roonbug/64a5wv2p 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/64a5wv2p" \ --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/64a5wv2p", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "roonbug/64a5wv2p" \ --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/64a5wv2p", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use roonbug/64a5wv2p with Docker Model Runner:
docker model run hf.co/roonbug/64a5wv2p
Upload folder using huggingface_hub
Browse files- checkpoint-1000/chat_template.jinja +9 -0
- checkpoint-1000/config.json +27 -0
- checkpoint-1000/generation_config.json +9 -0
- checkpoint-1000/merges.txt +0 -0
- checkpoint-1000/model-00001-of-00003.safetensors +3 -0
- checkpoint-1000/model-00002-of-00003.safetensors +3 -0
- checkpoint-1000/model-00003-of-00003.safetensors +3 -0
- checkpoint-1000/model.safetensors.index.json +363 -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 +30 -0
- checkpoint-1000/tokenizer.json +0 -0
- checkpoint-1000/tokenizer_config.json +189 -0
- checkpoint-1000/trainer_state.json +1474 -0
- checkpoint-1000/training_args.bin +3 -0
- checkpoint-1000/vocab.json +0 -0
checkpoint-1000/chat_template.jinja
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{{ bos_token }}{% for message in messages %}{% if message['role'] == 'system' %}{{ '<|system|>
|
| 2 |
+
' + message['content'] + '
|
| 3 |
+
' }}{% elif message['role'] == 'user' %}{{ '<|user|>
|
| 4 |
+
' + message['content'] + '
|
| 5 |
+
' }}{% elif message['role'] == 'assistant' %}{% if not loop.last %}{{ '<|assistant|>
|
| 6 |
+
' + message['content'] + eos_token + '
|
| 7 |
+
' }}{% else %}{{ '<|assistant|>
|
| 8 |
+
' + message['content'] + eos_token }}{% endif %}{% endif %}{% if loop.last and add_generation_prompt %}{{ '<|assistant|>
|
| 9 |
+
' }}{% endif %}{% endfor %}
|
checkpoint-1000/config.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"Olmo2ForCausalLM"
|
| 4 |
+
],
|
| 5 |
+
"attention_bias": false,
|
| 6 |
+
"attention_dropout": 0.0,
|
| 7 |
+
"bos_token_id": 100257,
|
| 8 |
+
"dtype": "bfloat16",
|
| 9 |
+
"eos_token_id": 100257,
|
| 10 |
+
"hidden_act": "silu",
|
| 11 |
+
"hidden_size": 4096,
|
| 12 |
+
"initializer_range": 0.02,
|
| 13 |
+
"intermediate_size": 11008,
|
| 14 |
+
"max_position_embeddings": 4096,
|
| 15 |
+
"model_type": "olmo2",
|
| 16 |
+
"num_attention_heads": 32,
|
| 17 |
+
"num_hidden_layers": 32,
|
| 18 |
+
"num_key_value_heads": 32,
|
| 19 |
+
"pad_token_id": 100277,
|
| 20 |
+
"rms_norm_eps": 1e-06,
|
| 21 |
+
"rope_scaling": null,
|
| 22 |
+
"rope_theta": 500000,
|
| 23 |
+
"tie_word_embeddings": false,
|
| 24 |
+
"transformers_version": "4.56.1",
|
| 25 |
+
"use_cache": false,
|
| 26 |
+
"vocab_size": 100352
|
| 27 |
+
}
|
checkpoint-1000/generation_config.json
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_from_model_config": true,
|
| 3 |
+
"bos_token_id": 100257,
|
| 4 |
+
"eos_token_id": [
|
| 5 |
+
100257
|
| 6 |
+
],
|
| 7 |
+
"pad_token_id": 100277,
|
| 8 |
+
"transformers_version": "4.56.1"
|
| 9 |
+
}
|
checkpoint-1000/merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-1000/model-00001-of-00003.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:05ae91e1171f1f1753b23df3a5a6740d89da377932b33a1661bb7485d6ec530e
|
| 3 |
+
size 4970591184
|
checkpoint-1000/model-00002-of-00003.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0d41b81fe0d7e4c1d673a77beded5ee77080e39d6a6940b523e82f61eaa1dcbd
|
| 3 |
+
size 4981161496
|
checkpoint-1000/model-00003-of-00003.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:66448f6324b6e5dca7ef3623185f2f94dc402e34f8862c196a850e0e8119ed05
|
| 3 |
+
size 4645523448
|
checkpoint-1000/model.safetensors.index.json
ADDED
|
@@ -0,0 +1,363 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_parameters": 7298617344,
|
| 4 |
+
"total_size": 14597234688
|
| 5 |
+
},
|
| 6 |
+
"weight_map": {
|
| 7 |
+
"lm_head.weight": "model-00003-of-00003.safetensors",
|
| 8 |
+
"model.embed_tokens.weight": "model-00001-of-00003.safetensors",
|
| 9 |
+
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 10 |
+
"model.layers.0.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 11 |
+
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 12 |
+
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 13 |
+
"model.layers.0.post_feedforward_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 14 |
+
"model.layers.0.self_attn.k_norm.weight": "model-00001-of-00003.safetensors",
|
| 15 |
+
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 16 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 17 |
+
"model.layers.0.self_attn.q_norm.weight": "model-00001-of-00003.safetensors",
|
| 18 |
+
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 19 |
+
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 20 |
+
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 21 |
+
"model.layers.1.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 22 |
+
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 23 |
+
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 24 |
+
"model.layers.1.post_feedforward_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 25 |
+
"model.layers.1.self_attn.k_norm.weight": "model-00001-of-00003.safetensors",
|
| 26 |
+
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 27 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 28 |
+
"model.layers.1.self_attn.q_norm.weight": "model-00001-of-00003.safetensors",
|
| 29 |
+
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 30 |
+
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 31 |
+
"model.layers.10.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 32 |
+
"model.layers.10.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 33 |
+
"model.layers.10.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 34 |
+
"model.layers.10.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 35 |
+
"model.layers.10.post_feedforward_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 36 |
+
"model.layers.10.self_attn.k_norm.weight": "model-00002-of-00003.safetensors",
|
| 37 |
+
"model.layers.10.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 38 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 39 |
+
"model.layers.10.self_attn.q_norm.weight": "model-00002-of-00003.safetensors",
|
| 40 |
+
"model.layers.10.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 41 |
+
"model.layers.10.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 42 |
+
"model.layers.11.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 43 |
+
"model.layers.11.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 44 |
+
"model.layers.11.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 45 |
+
"model.layers.11.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 46 |
+
"model.layers.11.post_feedforward_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 47 |
+
"model.layers.11.self_attn.k_norm.weight": "model-00002-of-00003.safetensors",
|
| 48 |
+
"model.layers.11.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 49 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 50 |
+
"model.layers.11.self_attn.q_norm.weight": "model-00002-of-00003.safetensors",
|
| 51 |
+
"model.layers.11.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 52 |
+
"model.layers.11.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 53 |
+
"model.layers.12.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 54 |
+
"model.layers.12.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 55 |
+
"model.layers.12.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 56 |
+
"model.layers.12.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 57 |
+
"model.layers.12.post_feedforward_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 58 |
+
"model.layers.12.self_attn.k_norm.weight": "model-00002-of-00003.safetensors",
|
| 59 |
+
"model.layers.12.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 60 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 61 |
+
"model.layers.12.self_attn.q_norm.weight": "model-00002-of-00003.safetensors",
|
| 62 |
+
"model.layers.12.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 63 |
+
"model.layers.12.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 64 |
+
"model.layers.13.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 65 |
+
"model.layers.13.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 66 |
+
"model.layers.13.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 67 |
+
"model.layers.13.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 68 |
+
"model.layers.13.post_feedforward_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 69 |
+
"model.layers.13.self_attn.k_norm.weight": "model-00002-of-00003.safetensors",
|
| 70 |
+
"model.layers.13.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 71 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 72 |
+
"model.layers.13.self_attn.q_norm.weight": "model-00002-of-00003.safetensors",
|
| 73 |
+
"model.layers.13.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 74 |
+
"model.layers.13.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 75 |
+
"model.layers.14.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 76 |
+
"model.layers.14.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 77 |
+
"model.layers.14.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 78 |
+
"model.layers.14.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 79 |
+
"model.layers.14.post_feedforward_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 80 |
+
"model.layers.14.self_attn.k_norm.weight": "model-00002-of-00003.safetensors",
|
| 81 |
+
"model.layers.14.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 82 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 83 |
+
"model.layers.14.self_attn.q_norm.weight": "model-00002-of-00003.safetensors",
|
| 84 |
+
"model.layers.14.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 85 |
+
"model.layers.14.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 86 |
+
"model.layers.15.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 87 |
+
"model.layers.15.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 88 |
+
"model.layers.15.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 89 |
+
"model.layers.15.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 90 |
+
"model.layers.15.post_feedforward_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 91 |
+
"model.layers.15.self_attn.k_norm.weight": "model-00002-of-00003.safetensors",
|
| 92 |
+
"model.layers.15.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 93 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 94 |
+
"model.layers.15.self_attn.q_norm.weight": "model-00002-of-00003.safetensors",
|
| 95 |
+
"model.layers.15.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 96 |
+
"model.layers.15.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 97 |
+
"model.layers.16.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 98 |
+
"model.layers.16.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 99 |
+
"model.layers.16.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 100 |
+
"model.layers.16.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 101 |
+
"model.layers.16.post_feedforward_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 102 |
+
"model.layers.16.self_attn.k_norm.weight": "model-00002-of-00003.safetensors",
|
| 103 |
+
"model.layers.16.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 104 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 105 |
+
"model.layers.16.self_attn.q_norm.weight": "model-00002-of-00003.safetensors",
|
| 106 |
+
"model.layers.16.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 107 |
+
"model.layers.16.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 108 |
+
"model.layers.17.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 109 |
+
"model.layers.17.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 110 |
+
"model.layers.17.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 111 |
+
"model.layers.17.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 112 |
+
"model.layers.17.post_feedforward_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 113 |
+
"model.layers.17.self_attn.k_norm.weight": "model-00002-of-00003.safetensors",
|
| 114 |
+
"model.layers.17.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 115 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 116 |
+
"model.layers.17.self_attn.q_norm.weight": "model-00002-of-00003.safetensors",
|
| 117 |
+
"model.layers.17.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 118 |
+
"model.layers.17.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 119 |
+
"model.layers.18.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 120 |
+
"model.layers.18.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 121 |
+
"model.layers.18.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 122 |
+
"model.layers.18.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 123 |
+
"model.layers.18.post_feedforward_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 124 |
+
"model.layers.18.self_attn.k_norm.weight": "model-00002-of-00003.safetensors",
|
| 125 |
+
"model.layers.18.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 126 |
+
"model.layers.18.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 127 |
+
"model.layers.18.self_attn.q_norm.weight": "model-00002-of-00003.safetensors",
|
| 128 |
+
"model.layers.18.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 129 |
+
"model.layers.18.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 130 |
+
"model.layers.19.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 131 |
+
"model.layers.19.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 132 |
+
"model.layers.19.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 133 |
+
"model.layers.19.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 134 |
+
"model.layers.19.post_feedforward_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 135 |
+
"model.layers.19.self_attn.k_norm.weight": "model-00002-of-00003.safetensors",
|
| 136 |
+
"model.layers.19.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 137 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 138 |
+
"model.layers.19.self_attn.q_norm.weight": "model-00002-of-00003.safetensors",
|
| 139 |
+
"model.layers.19.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 140 |
+
"model.layers.19.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 141 |
+
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 142 |
+
"model.layers.2.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 143 |
+
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 144 |
+
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 145 |
+
"model.layers.2.post_feedforward_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 146 |
+
"model.layers.2.self_attn.k_norm.weight": "model-00001-of-00003.safetensors",
|
| 147 |
+
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 148 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 149 |
+
"model.layers.2.self_attn.q_norm.weight": "model-00001-of-00003.safetensors",
|
| 150 |
+
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 151 |
+
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 152 |
+
"model.layers.20.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 153 |
+
"model.layers.20.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 154 |
+
"model.layers.20.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 155 |
+
"model.layers.20.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 156 |
+
"model.layers.20.post_feedforward_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 157 |
+
"model.layers.20.self_attn.k_norm.weight": "model-00002-of-00003.safetensors",
|
| 158 |
+
"model.layers.20.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 159 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 160 |
+
"model.layers.20.self_attn.q_norm.weight": "model-00002-of-00003.safetensors",
|
| 161 |
+
"model.layers.20.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 162 |
+
"model.layers.20.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 163 |
+
"model.layers.21.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
| 164 |
+
"model.layers.21.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 165 |
+
"model.layers.21.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
| 166 |
+
"model.layers.21.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 167 |
+
"model.layers.21.post_feedforward_layernorm.weight": "model-00002-of-00003.safetensors",
|
| 168 |
+
"model.layers.21.self_attn.k_norm.weight": "model-00002-of-00003.safetensors",
|
| 169 |
+
"model.layers.21.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 170 |
+
"model.layers.21.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 171 |
+
"model.layers.21.self_attn.q_norm.weight": "model-00002-of-00003.safetensors",
|
| 172 |
+
"model.layers.21.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 173 |
+
"model.layers.21.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 174 |
+
"model.layers.22.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
| 175 |
+
"model.layers.22.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
| 176 |
+
"model.layers.22.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
| 177 |
+
"model.layers.22.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 178 |
+
"model.layers.22.post_feedforward_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 179 |
+
"model.layers.22.self_attn.k_norm.weight": "model-00002-of-00003.safetensors",
|
| 180 |
+
"model.layers.22.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
| 181 |
+
"model.layers.22.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
| 182 |
+
"model.layers.22.self_attn.q_norm.weight": "model-00002-of-00003.safetensors",
|
| 183 |
+
"model.layers.22.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
| 184 |
+
"model.layers.22.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
| 185 |
+
"model.layers.23.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
| 186 |
+
"model.layers.23.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
| 187 |
+
"model.layers.23.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
| 188 |
+
"model.layers.23.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 189 |
+
"model.layers.23.post_feedforward_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 190 |
+
"model.layers.23.self_attn.k_norm.weight": "model-00003-of-00003.safetensors",
|
| 191 |
+
"model.layers.23.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
| 192 |
+
"model.layers.23.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
| 193 |
+
"model.layers.23.self_attn.q_norm.weight": "model-00003-of-00003.safetensors",
|
| 194 |
+
"model.layers.23.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
| 195 |
+
"model.layers.23.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
| 196 |
+
"model.layers.24.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
| 197 |
+
"model.layers.24.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
| 198 |
+
"model.layers.24.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
| 199 |
+
"model.layers.24.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 200 |
+
"model.layers.24.post_feedforward_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 201 |
+
"model.layers.24.self_attn.k_norm.weight": "model-00003-of-00003.safetensors",
|
| 202 |
+
"model.layers.24.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
| 203 |
+
"model.layers.24.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
| 204 |
+
"model.layers.24.self_attn.q_norm.weight": "model-00003-of-00003.safetensors",
|
| 205 |
+
"model.layers.24.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
| 206 |
+
"model.layers.24.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
| 207 |
+
"model.layers.25.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
| 208 |
+
"model.layers.25.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
| 209 |
+
"model.layers.25.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
| 210 |
+
"model.layers.25.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 211 |
+
"model.layers.25.post_feedforward_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 212 |
+
"model.layers.25.self_attn.k_norm.weight": "model-00003-of-00003.safetensors",
|
| 213 |
+
"model.layers.25.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
| 214 |
+
"model.layers.25.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
| 215 |
+
"model.layers.25.self_attn.q_norm.weight": "model-00003-of-00003.safetensors",
|
| 216 |
+
"model.layers.25.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
| 217 |
+
"model.layers.25.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
| 218 |
+
"model.layers.26.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
| 219 |
+
"model.layers.26.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
| 220 |
+
"model.layers.26.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
| 221 |
+
"model.layers.26.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 222 |
+
"model.layers.26.post_feedforward_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 223 |
+
"model.layers.26.self_attn.k_norm.weight": "model-00003-of-00003.safetensors",
|
| 224 |
+
"model.layers.26.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
| 225 |
+
"model.layers.26.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
| 226 |
+
"model.layers.26.self_attn.q_norm.weight": "model-00003-of-00003.safetensors",
|
| 227 |
+
"model.layers.26.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
| 228 |
+
"model.layers.26.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
| 229 |
+
"model.layers.27.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
| 230 |
+
"model.layers.27.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
| 231 |
+
"model.layers.27.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
| 232 |
+
"model.layers.27.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 233 |
+
"model.layers.27.post_feedforward_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 234 |
+
"model.layers.27.self_attn.k_norm.weight": "model-00003-of-00003.safetensors",
|
| 235 |
+
"model.layers.27.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
| 236 |
+
"model.layers.27.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
| 237 |
+
"model.layers.27.self_attn.q_norm.weight": "model-00003-of-00003.safetensors",
|
| 238 |
+
"model.layers.27.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
| 239 |
+
"model.layers.27.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
| 240 |
+
"model.layers.28.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
| 241 |
+
"model.layers.28.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
| 242 |
+
"model.layers.28.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
| 243 |
+
"model.layers.28.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 244 |
+
"model.layers.28.post_feedforward_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 245 |
+
"model.layers.28.self_attn.k_norm.weight": "model-00003-of-00003.safetensors",
|
| 246 |
+
"model.layers.28.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
| 247 |
+
"model.layers.28.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
| 248 |
+
"model.layers.28.self_attn.q_norm.weight": "model-00003-of-00003.safetensors",
|
| 249 |
+
"model.layers.28.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
| 250 |
+
"model.layers.28.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
| 251 |
+
"model.layers.29.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
| 252 |
+
"model.layers.29.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
| 253 |
+
"model.layers.29.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
| 254 |
+
"model.layers.29.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 255 |
+
"model.layers.29.post_feedforward_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 256 |
+
"model.layers.29.self_attn.k_norm.weight": "model-00003-of-00003.safetensors",
|
| 257 |
+
"model.layers.29.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
| 258 |
+
"model.layers.29.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
| 259 |
+
"model.layers.29.self_attn.q_norm.weight": "model-00003-of-00003.safetensors",
|
| 260 |
+
"model.layers.29.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
| 261 |
+
"model.layers.29.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
| 262 |
+
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 263 |
+
"model.layers.3.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 264 |
+
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 265 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 266 |
+
"model.layers.3.post_feedforward_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 267 |
+
"model.layers.3.self_attn.k_norm.weight": "model-00001-of-00003.safetensors",
|
| 268 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 269 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 270 |
+
"model.layers.3.self_attn.q_norm.weight": "model-00001-of-00003.safetensors",
|
| 271 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 272 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 273 |
+
"model.layers.30.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
| 274 |
+
"model.layers.30.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
| 275 |
+
"model.layers.30.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
| 276 |
+
"model.layers.30.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 277 |
+
"model.layers.30.post_feedforward_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 278 |
+
"model.layers.30.self_attn.k_norm.weight": "model-00003-of-00003.safetensors",
|
| 279 |
+
"model.layers.30.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
| 280 |
+
"model.layers.30.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
| 281 |
+
"model.layers.30.self_attn.q_norm.weight": "model-00003-of-00003.safetensors",
|
| 282 |
+
"model.layers.30.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
| 283 |
+
"model.layers.30.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
| 284 |
+
"model.layers.31.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
| 285 |
+
"model.layers.31.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
| 286 |
+
"model.layers.31.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
| 287 |
+
"model.layers.31.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 288 |
+
"model.layers.31.post_feedforward_layernorm.weight": "model-00003-of-00003.safetensors",
|
| 289 |
+
"model.layers.31.self_attn.k_norm.weight": "model-00003-of-00003.safetensors",
|
| 290 |
+
"model.layers.31.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
| 291 |
+
"model.layers.31.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
| 292 |
+
"model.layers.31.self_attn.q_norm.weight": "model-00003-of-00003.safetensors",
|
| 293 |
+
"model.layers.31.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
| 294 |
+
"model.layers.31.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
| 295 |
+
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 296 |
+
"model.layers.4.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 297 |
+
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 298 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 299 |
+
"model.layers.4.post_feedforward_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 300 |
+
"model.layers.4.self_attn.k_norm.weight": "model-00001-of-00003.safetensors",
|
| 301 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 302 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 303 |
+
"model.layers.4.self_attn.q_norm.weight": "model-00001-of-00003.safetensors",
|
| 304 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 305 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 306 |
+
"model.layers.5.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 307 |
+
"model.layers.5.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 308 |
+
"model.layers.5.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 309 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 310 |
+
"model.layers.5.post_feedforward_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 311 |
+
"model.layers.5.self_attn.k_norm.weight": "model-00001-of-00003.safetensors",
|
| 312 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 313 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 314 |
+
"model.layers.5.self_attn.q_norm.weight": "model-00001-of-00003.safetensors",
|
| 315 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 316 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 317 |
+
"model.layers.6.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 318 |
+
"model.layers.6.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 319 |
+
"model.layers.6.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 320 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 321 |
+
"model.layers.6.post_feedforward_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 322 |
+
"model.layers.6.self_attn.k_norm.weight": "model-00001-of-00003.safetensors",
|
| 323 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 324 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 325 |
+
"model.layers.6.self_attn.q_norm.weight": "model-00001-of-00003.safetensors",
|
| 326 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 327 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 328 |
+
"model.layers.7.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 329 |
+
"model.layers.7.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 330 |
+
"model.layers.7.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 331 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 332 |
+
"model.layers.7.post_feedforward_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 333 |
+
"model.layers.7.self_attn.k_norm.weight": "model-00001-of-00003.safetensors",
|
| 334 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 335 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 336 |
+
"model.layers.7.self_attn.q_norm.weight": "model-00001-of-00003.safetensors",
|
| 337 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 338 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 339 |
+
"model.layers.8.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 340 |
+
"model.layers.8.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 341 |
+
"model.layers.8.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 342 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 343 |
+
"model.layers.8.post_feedforward_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 344 |
+
"model.layers.8.self_attn.k_norm.weight": "model-00001-of-00003.safetensors",
|
| 345 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 346 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 347 |
+
"model.layers.8.self_attn.q_norm.weight": "model-00001-of-00003.safetensors",
|
| 348 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 349 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 350 |
+
"model.layers.9.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
| 351 |
+
"model.layers.9.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
| 352 |
+
"model.layers.9.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
| 353 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 354 |
+
"model.layers.9.post_feedforward_layernorm.weight": "model-00001-of-00003.safetensors",
|
| 355 |
+
"model.layers.9.self_attn.k_norm.weight": "model-00001-of-00003.safetensors",
|
| 356 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
| 357 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
| 358 |
+
"model.layers.9.self_attn.q_norm.weight": "model-00001-of-00003.safetensors",
|
| 359 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
| 360 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
| 361 |
+
"model.norm.weight": "model-00003-of-00003.safetensors"
|
| 362 |
+
}
|
| 363 |
+
}
|
checkpoint-1000/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7e831a92af07981d35b9c2c3681d1a979275ca6f41306b6f1551c72613d87619
|
| 3 |
+
size 3263319914
|
checkpoint-1000/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bdf49fbe089c54734b0cb49eebe2b139e2eb7e2ba668acc6d856b30fcc0384d7
|
| 3 |
+
size 14645
|
checkpoint-1000/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f23267b381a42784999e08fdda207042bbe3b9bc2b38cecbe7bd208dc572c4ab
|
| 3 |
+
size 1465
|
checkpoint-1000/special_tokens_map.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<|endoftext|>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": false,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"eos_token": {
|
| 10 |
+
"content": "<|endoftext|>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"pad_token": {
|
| 17 |
+
"content": "<|pad|>",
|
| 18 |
+
"lstrip": false,
|
| 19 |
+
"normalized": false,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"single_word": false
|
| 22 |
+
},
|
| 23 |
+
"unk_token": {
|
| 24 |
+
"content": "<|endoftext|>",
|
| 25 |
+
"lstrip": false,
|
| 26 |
+
"normalized": false,
|
| 27 |
+
"rstrip": false,
|
| 28 |
+
"single_word": false
|
| 29 |
+
}
|
| 30 |
+
}
|
checkpoint-1000/tokenizer.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-1000/tokenizer_config.json
ADDED
|
@@ -0,0 +1,189 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"added_tokens_decoder": {
|
| 4 |
+
"100256": {
|
| 5 |
+
"content": "<|extra_id_0|>",
|
| 6 |
+
"lstrip": false,
|
| 7 |
+
"normalized": false,
|
| 8 |
+
"rstrip": false,
|
| 9 |
+
"single_word": false,
|
| 10 |
+
"special": false
|
| 11 |
+
},
|
| 12 |
+
"100257": {
|
| 13 |
+
"content": "<|endoftext|>",
|
| 14 |
+
"lstrip": false,
|
| 15 |
+
"normalized": false,
|
| 16 |
+
"rstrip": false,
|
| 17 |
+
"single_word": false,
|
| 18 |
+
"special": true
|
| 19 |
+
},
|
| 20 |
+
"100258": {
|
| 21 |
+
"content": "<|fim_prefix|>",
|
| 22 |
+
"lstrip": false,
|
| 23 |
+
"normalized": false,
|
| 24 |
+
"rstrip": false,
|
| 25 |
+
"single_word": false,
|
| 26 |
+
"special": true
|
| 27 |
+
},
|
| 28 |
+
"100259": {
|
| 29 |
+
"content": "<|fim_middle|>",
|
| 30 |
+
"lstrip": false,
|
| 31 |
+
"normalized": false,
|
| 32 |
+
"rstrip": false,
|
| 33 |
+
"single_word": false,
|
| 34 |
+
"special": true
|
| 35 |
+
},
|
| 36 |
+
"100260": {
|
| 37 |
+
"content": "<|fim_suffix|>",
|
| 38 |
+
"lstrip": false,
|
| 39 |
+
"normalized": false,
|
| 40 |
+
"rstrip": false,
|
| 41 |
+
"single_word": false,
|
| 42 |
+
"special": true
|
| 43 |
+
},
|
| 44 |
+
"100261": {
|
| 45 |
+
"content": "|||PHONE_NUMBER|||",
|
| 46 |
+
"lstrip": false,
|
| 47 |
+
"normalized": false,
|
| 48 |
+
"rstrip": false,
|
| 49 |
+
"single_word": false,
|
| 50 |
+
"special": false
|
| 51 |
+
},
|
| 52 |
+
"100262": {
|
| 53 |
+
"content": "|||EMAIL_ADDRESS|||",
|
| 54 |
+
"lstrip": false,
|
| 55 |
+
"normalized": false,
|
| 56 |
+
"rstrip": false,
|
| 57 |
+
"single_word": false,
|
| 58 |
+
"special": false
|
| 59 |
+
},
|
| 60 |
+
"100263": {
|
| 61 |
+
"content": "|||IP_ADDRESS|||",
|
| 62 |
+
"lstrip": false,
|
| 63 |
+
"normalized": false,
|
| 64 |
+
"rstrip": false,
|
| 65 |
+
"single_word": false,
|
| 66 |
+
"special": false
|
| 67 |
+
},
|
| 68 |
+
"100264": {
|
| 69 |
+
"content": "<|im_start|>",
|
| 70 |
+
"lstrip": false,
|
| 71 |
+
"normalized": false,
|
| 72 |
+
"rstrip": false,
|
| 73 |
+
"single_word": false,
|
| 74 |
+
"special": true
|
| 75 |
+
},
|
| 76 |
+
"100265": {
|
| 77 |
+
"content": "<|im_end|>",
|
| 78 |
+
"lstrip": false,
|
| 79 |
+
"normalized": false,
|
| 80 |
+
"rstrip": false,
|
| 81 |
+
"single_word": false,
|
| 82 |
+
"special": true
|
| 83 |
+
},
|
| 84 |
+
"100266": {
|
| 85 |
+
"content": "<|extra_id_1|>",
|
| 86 |
+
"lstrip": false,
|
| 87 |
+
"normalized": false,
|
| 88 |
+
"rstrip": false,
|
| 89 |
+
"single_word": false,
|
| 90 |
+
"special": false
|
| 91 |
+
},
|
| 92 |
+
"100267": {
|
| 93 |
+
"content": "<|extra_id_2|>",
|
| 94 |
+
"lstrip": false,
|
| 95 |
+
"normalized": false,
|
| 96 |
+
"rstrip": false,
|
| 97 |
+
"single_word": false,
|
| 98 |
+
"special": false
|
| 99 |
+
},
|
| 100 |
+
"100268": {
|
| 101 |
+
"content": "<|extra_id_3|>",
|
| 102 |
+
"lstrip": false,
|
| 103 |
+
"normalized": false,
|
| 104 |
+
"rstrip": false,
|
| 105 |
+
"single_word": false,
|
| 106 |
+
"special": false
|
| 107 |
+
},
|
| 108 |
+
"100269": {
|
| 109 |
+
"content": "<|extra_id_4|>",
|
| 110 |
+
"lstrip": false,
|
| 111 |
+
"normalized": false,
|
| 112 |
+
"rstrip": false,
|
| 113 |
+
"single_word": false,
|
| 114 |
+
"special": false
|
| 115 |
+
},
|
| 116 |
+
"100270": {
|
| 117 |
+
"content": "<|extra_id_5|>",
|
| 118 |
+
"lstrip": false,
|
| 119 |
+
"normalized": false,
|
| 120 |
+
"rstrip": false,
|
| 121 |
+
"single_word": false,
|
| 122 |
+
"special": false
|
| 123 |
+
},
|
| 124 |
+
"100271": {
|
| 125 |
+
"content": "<|extra_id_6|>",
|
| 126 |
+
"lstrip": false,
|
| 127 |
+
"normalized": false,
|
| 128 |
+
"rstrip": false,
|
| 129 |
+
"single_word": false,
|
| 130 |
+
"special": false
|
| 131 |
+
},
|
| 132 |
+
"100272": {
|
| 133 |
+
"content": "<|extra_id_7|>",
|
| 134 |
+
"lstrip": false,
|
| 135 |
+
"normalized": false,
|
| 136 |
+
"rstrip": false,
|
| 137 |
+
"single_word": false,
|
| 138 |
+
"special": false
|
| 139 |
+
},
|
| 140 |
+
"100273": {
|
| 141 |
+
"content": "<|extra_id_8|>",
|
| 142 |
+
"lstrip": false,
|
| 143 |
+
"normalized": false,
|
| 144 |
+
"rstrip": false,
|
| 145 |
+
"single_word": false,
|
| 146 |
+
"special": false
|
| 147 |
+
},
|
| 148 |
+
"100274": {
|
| 149 |
+
"content": "<|extra_id_9|>",
|
| 150 |
+
"lstrip": false,
|
| 151 |
+
"normalized": false,
|
| 152 |
+
"rstrip": false,
|
| 153 |
+
"single_word": false,
|
| 154 |
+
"special": false
|
| 155 |
+
},
|
| 156 |
+
"100275": {
|
| 157 |
+
"content": "<|extra_id_10|>",
|
| 158 |
+
"lstrip": false,
|
| 159 |
+
"normalized": false,
|
| 160 |
+
"rstrip": false,
|
| 161 |
+
"single_word": false,
|
| 162 |
+
"special": false
|
| 163 |
+
},
|
| 164 |
+
"100276": {
|
| 165 |
+
"content": "<|endofprompt|>",
|
| 166 |
+
"lstrip": false,
|
| 167 |
+
"normalized": false,
|
| 168 |
+
"rstrip": false,
|
| 169 |
+
"single_word": false,
|
| 170 |
+
"special": true
|
| 171 |
+
},
|
| 172 |
+
"100277": {
|
| 173 |
+
"content": "<|pad|>",
|
| 174 |
+
"lstrip": false,
|
| 175 |
+
"normalized": false,
|
| 176 |
+
"rstrip": false,
|
| 177 |
+
"single_word": false,
|
| 178 |
+
"special": true
|
| 179 |
+
}
|
| 180 |
+
},
|
| 181 |
+
"bos_token": "<|endoftext|>",
|
| 182 |
+
"clean_up_tokenization_spaces": false,
|
| 183 |
+
"eos_token": "<|endoftext|>",
|
| 184 |
+
"extra_special_tokens": {},
|
| 185 |
+
"model_max_length": 1000000000000000019884624838656,
|
| 186 |
+
"pad_token": "<|pad|>",
|
| 187 |
+
"tokenizer_class": "GPT2Tokenizer",
|
| 188 |
+
"unk_token": "<|endoftext|>"
|
| 189 |
+
}
|
checkpoint-1000/trainer_state.json
ADDED
|
@@ -0,0 +1,1474 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.8,
|
| 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.6430254079401493,
|
| 14 |
+
"epoch": 0.008,
|
| 15 |
+
"grad_norm": 4.53125,
|
| 16 |
+
"learning_rate": 6.000000000000001e-07,
|
| 17 |
+
"loss": 1.8435,
|
| 18 |
+
"mean_token_accuracy": 0.6683766476809978,
|
| 19 |
+
"num_tokens": 133939.0,
|
| 20 |
+
"step": 10
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"entropy": 0.6358832061290741,
|
| 24 |
+
"epoch": 0.016,
|
| 25 |
+
"grad_norm": 4.3125,
|
| 26 |
+
"learning_rate": 1.2666666666666669e-06,
|
| 27 |
+
"loss": 1.8392,
|
| 28 |
+
"mean_token_accuracy": 0.6651193369179964,
|
| 29 |
+
"num_tokens": 273600.0,
|
| 30 |
+
"step": 20
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"entropy": 0.6754261270165444,
|
| 34 |
+
"epoch": 0.024,
|
| 35 |
+
"grad_norm": 4.9375,
|
| 36 |
+
"learning_rate": 1.9333333333333336e-06,
|
| 37 |
+
"loss": 1.9101,
|
| 38 |
+
"mean_token_accuracy": 0.6521823685616255,
|
| 39 |
+
"num_tokens": 408034.0,
|
| 40 |
+
"step": 30
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"entropy": 0.6558344909921289,
|
| 44 |
+
"epoch": 0.032,
|
| 45 |
+
"grad_norm": 4.28125,
|
| 46 |
+
"learning_rate": 2.6e-06,
|
| 47 |
+
"loss": 1.8472,
|
| 48 |
+
"mean_token_accuracy": 0.6629668604582548,
|
| 49 |
+
"num_tokens": 542836.0,
|
| 50 |
+
"step": 40
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"entropy": 0.6494104014709592,
|
| 54 |
+
"epoch": 0.04,
|
| 55 |
+
"grad_norm": 3.8125,
|
| 56 |
+
"learning_rate": 3.266666666666667e-06,
|
| 57 |
+
"loss": 1.8027,
|
| 58 |
+
"mean_token_accuracy": 0.6676773574203253,
|
| 59 |
+
"num_tokens": 678419.0,
|
| 60 |
+
"step": 50
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"entropy": 0.662838158942759,
|
| 64 |
+
"epoch": 0.048,
|
| 65 |
+
"grad_norm": 4.03125,
|
| 66 |
+
"learning_rate": 3.9333333333333335e-06,
|
| 67 |
+
"loss": 1.8213,
|
| 68 |
+
"mean_token_accuracy": 0.6647731238976121,
|
| 69 |
+
"num_tokens": 813510.0,
|
| 70 |
+
"step": 60
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"entropy": 0.6506876813247799,
|
| 74 |
+
"epoch": 0.056,
|
| 75 |
+
"grad_norm": 3.71875,
|
| 76 |
+
"learning_rate": 4.600000000000001e-06,
|
| 77 |
+
"loss": 1.7955,
|
| 78 |
+
"mean_token_accuracy": 0.6665123915299773,
|
| 79 |
+
"num_tokens": 954682.0,
|
| 80 |
+
"step": 70
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"entropy": 0.6252049600705505,
|
| 84 |
+
"epoch": 0.064,
|
| 85 |
+
"grad_norm": 3.65625,
|
| 86 |
+
"learning_rate": 5.2666666666666665e-06,
|
| 87 |
+
"loss": 1.7861,
|
| 88 |
+
"mean_token_accuracy": 0.6728611093014478,
|
| 89 |
+
"num_tokens": 1096071.0,
|
| 90 |
+
"step": 80
|
| 91 |
+
},
|
| 92 |
+
{
|
| 93 |
+
"entropy": 0.6236795110628008,
|
| 94 |
+
"epoch": 0.072,
|
| 95 |
+
"grad_norm": 3.171875,
|
| 96 |
+
"learning_rate": 5.933333333333335e-06,
|
| 97 |
+
"loss": 1.6458,
|
| 98 |
+
"mean_token_accuracy": 0.6831523377448321,
|
| 99 |
+
"num_tokens": 1239910.0,
|
| 100 |
+
"step": 90
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"entropy": 0.6565364092588425,
|
| 104 |
+
"epoch": 0.08,
|
| 105 |
+
"grad_norm": 3.125,
|
| 106 |
+
"learning_rate": 6.600000000000001e-06,
|
| 107 |
+
"loss": 1.6948,
|
| 108 |
+
"mean_token_accuracy": 0.6728412076830864,
|
| 109 |
+
"num_tokens": 1376045.0,
|
| 110 |
+
"step": 100
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"epoch": 0.08,
|
| 114 |
+
"eval_biology_entropy": 1.821127786874771,
|
| 115 |
+
"eval_biology_loss": 4.8697123527526855,
|
| 116 |
+
"eval_biology_mean_token_accuracy": 0.3407035154700279,
|
| 117 |
+
"eval_biology_num_tokens": 1376045.0,
|
| 118 |
+
"eval_biology_runtime": 26.9612,
|
| 119 |
+
"eval_biology_samples_per_second": 18.545,
|
| 120 |
+
"eval_biology_steps_per_second": 9.273,
|
| 121 |
+
"step": 100
|
| 122 |
+
},
|
| 123 |
+
{
|
| 124 |
+
"epoch": 0.08,
|
| 125 |
+
"eval_chemistry_entropy": 1.1214371861219405,
|
| 126 |
+
"eval_chemistry_loss": 2.9583740234375,
|
| 127 |
+
"eval_chemistry_mean_token_accuracy": 0.5230503298044205,
|
| 128 |
+
"eval_chemistry_num_tokens": 1376045.0,
|
| 129 |
+
"eval_chemistry_runtime": 34.4743,
|
| 130 |
+
"eval_chemistry_samples_per_second": 14.504,
|
| 131 |
+
"eval_chemistry_steps_per_second": 7.252,
|
| 132 |
+
"step": 100
|
| 133 |
+
},
|
| 134 |
+
{
|
| 135 |
+
"epoch": 0.08,
|
| 136 |
+
"eval_math_entropy": 0.6455623766183853,
|
| 137 |
+
"eval_math_loss": 1.6610009670257568,
|
| 138 |
+
"eval_math_mean_token_accuracy": 0.6816041300296783,
|
| 139 |
+
"eval_math_num_tokens": 1376045.0,
|
| 140 |
+
"eval_math_runtime": 34.9863,
|
| 141 |
+
"eval_math_samples_per_second": 14.291,
|
| 142 |
+
"eval_math_steps_per_second": 7.146,
|
| 143 |
+
"step": 100
|
| 144 |
+
},
|
| 145 |
+
{
|
| 146 |
+
"epoch": 0.08,
|
| 147 |
+
"eval_physics_entropy": 0.8894976880550385,
|
| 148 |
+
"eval_physics_loss": 2.340852975845337,
|
| 149 |
+
"eval_physics_mean_token_accuracy": 0.5970065190792083,
|
| 150 |
+
"eval_physics_num_tokens": 1376045.0,
|
| 151 |
+
"eval_physics_runtime": 40.5871,
|
| 152 |
+
"eval_physics_samples_per_second": 12.319,
|
| 153 |
+
"eval_physics_steps_per_second": 6.16,
|
| 154 |
+
"step": 100
|
| 155 |
+
},
|
| 156 |
+
{
|
| 157 |
+
"entropy": 0.6108825646340847,
|
| 158 |
+
"epoch": 0.088,
|
| 159 |
+
"grad_norm": 3.0625,
|
| 160 |
+
"learning_rate": 7.266666666666668e-06,
|
| 161 |
+
"loss": 1.534,
|
| 162 |
+
"mean_token_accuracy": 0.6979989364743233,
|
| 163 |
+
"num_tokens": 1518257.0,
|
| 164 |
+
"step": 110
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"entropy": 0.6626681972295045,
|
| 168 |
+
"epoch": 0.096,
|
| 169 |
+
"grad_norm": 3.0,
|
| 170 |
+
"learning_rate": 7.933333333333334e-06,
|
| 171 |
+
"loss": 1.4858,
|
| 172 |
+
"mean_token_accuracy": 0.6921830836683511,
|
| 173 |
+
"num_tokens": 1656215.0,
|
| 174 |
+
"step": 120
|
| 175 |
+
},
|
| 176 |
+
{
|
| 177 |
+
"entropy": 0.6807309044525027,
|
| 178 |
+
"epoch": 0.104,
|
| 179 |
+
"grad_norm": 2.4375,
|
| 180 |
+
"learning_rate": 8.6e-06,
|
| 181 |
+
"loss": 1.3897,
|
| 182 |
+
"mean_token_accuracy": 0.7023331839591265,
|
| 183 |
+
"num_tokens": 1791507.0,
|
| 184 |
+
"step": 130
|
| 185 |
+
},
|
| 186 |
+
{
|
| 187 |
+
"entropy": 0.7359636599197984,
|
| 188 |
+
"epoch": 0.112,
|
| 189 |
+
"grad_norm": 1.9765625,
|
| 190 |
+
"learning_rate": 9.266666666666667e-06,
|
| 191 |
+
"loss": 1.3356,
|
| 192 |
+
"mean_token_accuracy": 0.7036307867616415,
|
| 193 |
+
"num_tokens": 1928153.0,
|
| 194 |
+
"step": 140
|
| 195 |
+
},
|
| 196 |
+
{
|
| 197 |
+
"entropy": 0.8070579996332526,
|
| 198 |
+
"epoch": 0.12,
|
| 199 |
+
"grad_norm": 1.7265625,
|
| 200 |
+
"learning_rate": 9.933333333333334e-06,
|
| 201 |
+
"loss": 1.2682,
|
| 202 |
+
"mean_token_accuracy": 0.712115453183651,
|
| 203 |
+
"num_tokens": 2071008.0,
|
| 204 |
+
"step": 150
|
| 205 |
+
},
|
| 206 |
+
{
|
| 207 |
+
"entropy": 0.874446533434093,
|
| 208 |
+
"epoch": 0.128,
|
| 209 |
+
"grad_norm": 1.2734375,
|
| 210 |
+
"learning_rate": 1.0600000000000002e-05,
|
| 211 |
+
"loss": 1.1443,
|
| 212 |
+
"mean_token_accuracy": 0.7246435590088367,
|
| 213 |
+
"num_tokens": 2216042.0,
|
| 214 |
+
"step": 160
|
| 215 |
+
},
|
| 216 |
+
{
|
| 217 |
+
"entropy": 0.9639016635715961,
|
| 218 |
+
"epoch": 0.136,
|
| 219 |
+
"grad_norm": 1.125,
|
| 220 |
+
"learning_rate": 1.1266666666666668e-05,
|
| 221 |
+
"loss": 1.1005,
|
| 222 |
+
"mean_token_accuracy": 0.730505557358265,
|
| 223 |
+
"num_tokens": 2350589.0,
|
| 224 |
+
"step": 170
|
| 225 |
+
},
|
| 226 |
+
{
|
| 227 |
+
"entropy": 1.0533128878101707,
|
| 228 |
+
"epoch": 0.144,
|
| 229 |
+
"grad_norm": 0.90234375,
|
| 230 |
+
"learning_rate": 1.1933333333333335e-05,
|
| 231 |
+
"loss": 1.0494,
|
| 232 |
+
"mean_token_accuracy": 0.7364416709169745,
|
| 233 |
+
"num_tokens": 2483116.0,
|
| 234 |
+
"step": 180
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"entropy": 1.0085792429745197,
|
| 238 |
+
"epoch": 0.152,
|
| 239 |
+
"grad_norm": 0.96484375,
|
| 240 |
+
"learning_rate": 1.2600000000000001e-05,
|
| 241 |
+
"loss": 0.9875,
|
| 242 |
+
"mean_token_accuracy": 0.749194710329175,
|
| 243 |
+
"num_tokens": 2617958.0,
|
| 244 |
+
"step": 190
|
| 245 |
+
},
|
| 246 |
+
{
|
| 247 |
+
"entropy": 1.000020370259881,
|
| 248 |
+
"epoch": 0.16,
|
| 249 |
+
"grad_norm": 0.90234375,
|
| 250 |
+
"learning_rate": 1.3266666666666668e-05,
|
| 251 |
+
"loss": 0.9952,
|
| 252 |
+
"mean_token_accuracy": 0.7486346989870072,
|
| 253 |
+
"num_tokens": 2752258.0,
|
| 254 |
+
"step": 200
|
| 255 |
+
},
|
| 256 |
+
{
|
| 257 |
+
"epoch": 0.16,
|
| 258 |
+
"eval_biology_entropy": 3.2312401638031005,
|
| 259 |
+
"eval_biology_loss": 3.4984476566314697,
|
| 260 |
+
"eval_biology_mean_token_accuracy": 0.4106140378713608,
|
| 261 |
+
"eval_biology_num_tokens": 2752258.0,
|
| 262 |
+
"eval_biology_runtime": 26.9494,
|
| 263 |
+
"eval_biology_samples_per_second": 18.553,
|
| 264 |
+
"eval_biology_steps_per_second": 9.277,
|
| 265 |
+
"step": 200
|
| 266 |
+
},
|
| 267 |
+
{
|
| 268 |
+
"epoch": 0.16,
|
| 269 |
+
"eval_chemistry_entropy": 1.9263038992881776,
|
| 270 |
+
"eval_chemistry_loss": 1.9608160257339478,
|
| 271 |
+
"eval_chemistry_mean_token_accuracy": 0.5982974277734756,
|
| 272 |
+
"eval_chemistry_num_tokens": 2752258.0,
|
| 273 |
+
"eval_chemistry_runtime": 34.4173,
|
| 274 |
+
"eval_chemistry_samples_per_second": 14.528,
|
| 275 |
+
"eval_chemistry_steps_per_second": 7.264,
|
| 276 |
+
"step": 200
|
| 277 |
+
},
|
| 278 |
+
{
|
| 279 |
+
"epoch": 0.16,
|
| 280 |
+
"eval_math_entropy": 1.0257348996400832,
|
| 281 |
+
"eval_math_loss": 1.029754638671875,
|
| 282 |
+
"eval_math_mean_token_accuracy": 0.7436505243778229,
|
| 283 |
+
"eval_math_num_tokens": 2752258.0,
|
| 284 |
+
"eval_math_runtime": 34.9579,
|
| 285 |
+
"eval_math_samples_per_second": 14.303,
|
| 286 |
+
"eval_math_steps_per_second": 7.151,
|
| 287 |
+
"step": 200
|
| 288 |
+
},
|
| 289 |
+
{
|
| 290 |
+
"epoch": 0.16,
|
| 291 |
+
"eval_physics_entropy": 1.5005105144977569,
|
| 292 |
+
"eval_physics_loss": 1.5203113555908203,
|
| 293 |
+
"eval_physics_mean_token_accuracy": 0.6669992462396622,
|
| 294 |
+
"eval_physics_num_tokens": 2752258.0,
|
| 295 |
+
"eval_physics_runtime": 40.5453,
|
| 296 |
+
"eval_physics_samples_per_second": 12.332,
|
| 297 |
+
"eval_physics_steps_per_second": 6.166,
|
| 298 |
+
"step": 200
|
| 299 |
+
},
|
| 300 |
+
{
|
| 301 |
+
"entropy": 1.0170325668528677,
|
| 302 |
+
"epoch": 0.168,
|
| 303 |
+
"grad_norm": 0.80859375,
|
| 304 |
+
"learning_rate": 1.3933333333333334e-05,
|
| 305 |
+
"loss": 1.0032,
|
| 306 |
+
"mean_token_accuracy": 0.7469347029924392,
|
| 307 |
+
"num_tokens": 2889249.0,
|
| 308 |
+
"step": 210
|
| 309 |
+
},
|
| 310 |
+
{
|
| 311 |
+
"entropy": 0.9709451261907815,
|
| 312 |
+
"epoch": 0.176,
|
| 313 |
+
"grad_norm": 0.7734375,
|
| 314 |
+
"learning_rate": 1.46e-05,
|
| 315 |
+
"loss": 0.9299,
|
| 316 |
+
"mean_token_accuracy": 0.7556545663625002,
|
| 317 |
+
"num_tokens": 3030305.0,
|
| 318 |
+
"step": 220
|
| 319 |
+
},
|
| 320 |
+
{
|
| 321 |
+
"entropy": 1.0022083457559348,
|
| 322 |
+
"epoch": 0.184,
|
| 323 |
+
"grad_norm": 0.90234375,
|
| 324 |
+
"learning_rate": 1.5266666666666667e-05,
|
| 325 |
+
"loss": 0.9815,
|
| 326 |
+
"mean_token_accuracy": 0.7520246226340532,
|
| 327 |
+
"num_tokens": 3167096.0,
|
| 328 |
+
"step": 230
|
| 329 |
+
},
|
| 330 |
+
{
|
| 331 |
+
"entropy": 0.9930278725922108,
|
| 332 |
+
"epoch": 0.192,
|
| 333 |
+
"grad_norm": 0.85546875,
|
| 334 |
+
"learning_rate": 1.5933333333333336e-05,
|
| 335 |
+
"loss": 0.9637,
|
| 336 |
+
"mean_token_accuracy": 0.7547307416796685,
|
| 337 |
+
"num_tokens": 3306293.0,
|
| 338 |
+
"step": 240
|
| 339 |
+
},
|
| 340 |
+
{
|
| 341 |
+
"entropy": 0.9768950846046209,
|
| 342 |
+
"epoch": 0.2,
|
| 343 |
+
"grad_norm": 0.7734375,
|
| 344 |
+
"learning_rate": 1.66e-05,
|
| 345 |
+
"loss": 0.9373,
|
| 346 |
+
"mean_token_accuracy": 0.7594478782266378,
|
| 347 |
+
"num_tokens": 3441895.0,
|
| 348 |
+
"step": 250
|
| 349 |
+
},
|
| 350 |
+
{
|
| 351 |
+
"entropy": 0.9833385257050395,
|
| 352 |
+
"epoch": 0.208,
|
| 353 |
+
"grad_norm": 0.8359375,
|
| 354 |
+
"learning_rate": 1.726666666666667e-05,
|
| 355 |
+
"loss": 0.9384,
|
| 356 |
+
"mean_token_accuracy": 0.7573206882923842,
|
| 357 |
+
"num_tokens": 3578349.0,
|
| 358 |
+
"step": 260
|
| 359 |
+
},
|
| 360 |
+
{
|
| 361 |
+
"entropy": 0.9361576547846198,
|
| 362 |
+
"epoch": 0.216,
|
| 363 |
+
"grad_norm": 0.74609375,
|
| 364 |
+
"learning_rate": 1.7933333333333333e-05,
|
| 365 |
+
"loss": 0.9004,
|
| 366 |
+
"mean_token_accuracy": 0.7651511203497648,
|
| 367 |
+
"num_tokens": 3718484.0,
|
| 368 |
+
"step": 270
|
| 369 |
+
},
|
| 370 |
+
{
|
| 371 |
+
"entropy": 0.9637048680335283,
|
| 372 |
+
"epoch": 0.224,
|
| 373 |
+
"grad_norm": 0.9140625,
|
| 374 |
+
"learning_rate": 1.86e-05,
|
| 375 |
+
"loss": 0.9349,
|
| 376 |
+
"mean_token_accuracy": 0.7605184197425843,
|
| 377 |
+
"num_tokens": 3851369.0,
|
| 378 |
+
"step": 280
|
| 379 |
+
},
|
| 380 |
+
{
|
| 381 |
+
"entropy": 0.9367688067257405,
|
| 382 |
+
"epoch": 0.232,
|
| 383 |
+
"grad_norm": 0.74609375,
|
| 384 |
+
"learning_rate": 1.926666666666667e-05,
|
| 385 |
+
"loss": 0.8962,
|
| 386 |
+
"mean_token_accuracy": 0.7659803122282028,
|
| 387 |
+
"num_tokens": 3992977.0,
|
| 388 |
+
"step": 290
|
| 389 |
+
},
|
| 390 |
+
{
|
| 391 |
+
"entropy": 0.9229113388806581,
|
| 392 |
+
"epoch": 0.24,
|
| 393 |
+
"grad_norm": 0.7890625,
|
| 394 |
+
"learning_rate": 1.9933333333333334e-05,
|
| 395 |
+
"loss": 0.9024,
|
| 396 |
+
"mean_token_accuracy": 0.77176120467484,
|
| 397 |
+
"num_tokens": 4133723.0,
|
| 398 |
+
"step": 300
|
| 399 |
+
},
|
| 400 |
+
{
|
| 401 |
+
"epoch": 0.24,
|
| 402 |
+
"eval_biology_entropy": 3.018038348674774,
|
| 403 |
+
"eval_biology_loss": 3.2969858646392822,
|
| 404 |
+
"eval_biology_mean_token_accuracy": 0.43762873542308806,
|
| 405 |
+
"eval_biology_num_tokens": 4133723.0,
|
| 406 |
+
"eval_biology_runtime": 27.1593,
|
| 407 |
+
"eval_biology_samples_per_second": 18.41,
|
| 408 |
+
"eval_biology_steps_per_second": 9.205,
|
| 409 |
+
"step": 300
|
| 410 |
+
},
|
| 411 |
+
{
|
| 412 |
+
"epoch": 0.24,
|
| 413 |
+
"eval_chemistry_entropy": 1.778470279932022,
|
| 414 |
+
"eval_chemistry_loss": 1.8064701557159424,
|
| 415 |
+
"eval_chemistry_mean_token_accuracy": 0.6220316555500031,
|
| 416 |
+
"eval_chemistry_num_tokens": 4133723.0,
|
| 417 |
+
"eval_chemistry_runtime": 34.6422,
|
| 418 |
+
"eval_chemistry_samples_per_second": 14.433,
|
| 419 |
+
"eval_chemistry_steps_per_second": 7.217,
|
| 420 |
+
"step": 300
|
| 421 |
+
},
|
| 422 |
+
{
|
| 423 |
+
"epoch": 0.24,
|
| 424 |
+
"eval_math_entropy": 0.9541566734313964,
|
| 425 |
+
"eval_math_loss": 0.9326547980308533,
|
| 426 |
+
"eval_math_mean_token_accuracy": 0.7629979259967804,
|
| 427 |
+
"eval_math_num_tokens": 4133723.0,
|
| 428 |
+
"eval_math_runtime": 35.1904,
|
| 429 |
+
"eval_math_samples_per_second": 14.208,
|
| 430 |
+
"eval_math_steps_per_second": 7.104,
|
| 431 |
+
"step": 300
|
| 432 |
+
},
|
| 433 |
+
{
|
| 434 |
+
"epoch": 0.24,
|
| 435 |
+
"eval_physics_entropy": 1.387200428724289,
|
| 436 |
+
"eval_physics_loss": 1.3932181596755981,
|
| 437 |
+
"eval_physics_mean_token_accuracy": 0.6886798795461655,
|
| 438 |
+
"eval_physics_num_tokens": 4133723.0,
|
| 439 |
+
"eval_physics_runtime": 40.7999,
|
| 440 |
+
"eval_physics_samples_per_second": 12.255,
|
| 441 |
+
"eval_physics_steps_per_second": 6.127,
|
| 442 |
+
"step": 300
|
| 443 |
+
},
|
| 444 |
+
{
|
| 445 |
+
"entropy": 0.9078424336388707,
|
| 446 |
+
"epoch": 0.248,
|
| 447 |
+
"grad_norm": 0.75,
|
| 448 |
+
"learning_rate": 1.9933333333333334e-05,
|
| 449 |
+
"loss": 0.8542,
|
| 450 |
+
"mean_token_accuracy": 0.7745326109230518,
|
| 451 |
+
"num_tokens": 4273949.0,
|
| 452 |
+
"step": 310
|
| 453 |
+
},
|
| 454 |
+
{
|
| 455 |
+
"entropy": 0.9262684918940067,
|
| 456 |
+
"epoch": 0.256,
|
| 457 |
+
"grad_norm": 0.84765625,
|
| 458 |
+
"learning_rate": 1.985925925925926e-05,
|
| 459 |
+
"loss": 0.8761,
|
| 460 |
+
"mean_token_accuracy": 0.7701829686760903,
|
| 461 |
+
"num_tokens": 4414102.0,
|
| 462 |
+
"step": 320
|
| 463 |
+
},
|
| 464 |
+
{
|
| 465 |
+
"entropy": 0.9303955681622028,
|
| 466 |
+
"epoch": 0.264,
|
| 467 |
+
"grad_norm": 0.78515625,
|
| 468 |
+
"learning_rate": 1.9785185185185187e-05,
|
| 469 |
+
"loss": 0.8765,
|
| 470 |
+
"mean_token_accuracy": 0.7714239094406367,
|
| 471 |
+
"num_tokens": 4548402.0,
|
| 472 |
+
"step": 330
|
| 473 |
+
},
|
| 474 |
+
{
|
| 475 |
+
"entropy": 0.9207985673099757,
|
| 476 |
+
"epoch": 0.272,
|
| 477 |
+
"grad_norm": 0.7109375,
|
| 478 |
+
"learning_rate": 1.971111111111111e-05,
|
| 479 |
+
"loss": 0.8728,
|
| 480 |
+
"mean_token_accuracy": 0.7721738632768392,
|
| 481 |
+
"num_tokens": 4685739.0,
|
| 482 |
+
"step": 340
|
| 483 |
+
},
|
| 484 |
+
{
|
| 485 |
+
"entropy": 0.9172879874706268,
|
| 486 |
+
"epoch": 0.28,
|
| 487 |
+
"grad_norm": 0.80078125,
|
| 488 |
+
"learning_rate": 1.963703703703704e-05,
|
| 489 |
+
"loss": 0.869,
|
| 490 |
+
"mean_token_accuracy": 0.7719811659306288,
|
| 491 |
+
"num_tokens": 4827264.0,
|
| 492 |
+
"step": 350
|
| 493 |
+
},
|
| 494 |
+
{
|
| 495 |
+
"entropy": 0.8906141923740506,
|
| 496 |
+
"epoch": 0.288,
|
| 497 |
+
"grad_norm": 0.76171875,
|
| 498 |
+
"learning_rate": 1.9562962962962964e-05,
|
| 499 |
+
"loss": 0.8676,
|
| 500 |
+
"mean_token_accuracy": 0.779513431340456,
|
| 501 |
+
"num_tokens": 4963900.0,
|
| 502 |
+
"step": 360
|
| 503 |
+
},
|
| 504 |
+
{
|
| 505 |
+
"entropy": 0.9126916229724884,
|
| 506 |
+
"epoch": 0.296,
|
| 507 |
+
"grad_norm": 0.671875,
|
| 508 |
+
"learning_rate": 1.948888888888889e-05,
|
| 509 |
+
"loss": 0.8727,
|
| 510 |
+
"mean_token_accuracy": 0.7722058985382318,
|
| 511 |
+
"num_tokens": 5106308.0,
|
| 512 |
+
"step": 370
|
| 513 |
+
},
|
| 514 |
+
{
|
| 515 |
+
"entropy": 0.9109785668551922,
|
| 516 |
+
"epoch": 0.304,
|
| 517 |
+
"grad_norm": 0.76171875,
|
| 518 |
+
"learning_rate": 1.9414814814814817e-05,
|
| 519 |
+
"loss": 0.8562,
|
| 520 |
+
"mean_token_accuracy": 0.7752636637538671,
|
| 521 |
+
"num_tokens": 5246290.0,
|
| 522 |
+
"step": 380
|
| 523 |
+
},
|
| 524 |
+
{
|
| 525 |
+
"entropy": 0.9183575309813022,
|
| 526 |
+
"epoch": 0.312,
|
| 527 |
+
"grad_norm": 0.71875,
|
| 528 |
+
"learning_rate": 1.9340740740740743e-05,
|
| 529 |
+
"loss": 0.8621,
|
| 530 |
+
"mean_token_accuracy": 0.7713671930134296,
|
| 531 |
+
"num_tokens": 5389824.0,
|
| 532 |
+
"step": 390
|
| 533 |
+
},
|
| 534 |
+
{
|
| 535 |
+
"entropy": 0.8591190708801151,
|
| 536 |
+
"epoch": 0.32,
|
| 537 |
+
"grad_norm": 0.82421875,
|
| 538 |
+
"learning_rate": 1.926666666666667e-05,
|
| 539 |
+
"loss": 0.8065,
|
| 540 |
+
"mean_token_accuracy": 0.7856244947761297,
|
| 541 |
+
"num_tokens": 5531902.0,
|
| 542 |
+
"step": 400
|
| 543 |
+
},
|
| 544 |
+
{
|
| 545 |
+
"epoch": 0.32,
|
| 546 |
+
"eval_biology_entropy": 2.974372909069061,
|
| 547 |
+
"eval_biology_loss": 3.2137467861175537,
|
| 548 |
+
"eval_biology_mean_token_accuracy": 0.44984077060222627,
|
| 549 |
+
"eval_biology_num_tokens": 5531902.0,
|
| 550 |
+
"eval_biology_runtime": 26.9787,
|
| 551 |
+
"eval_biology_samples_per_second": 18.533,
|
| 552 |
+
"eval_biology_steps_per_second": 9.267,
|
| 553 |
+
"step": 400
|
| 554 |
+
},
|
| 555 |
+
{
|
| 556 |
+
"epoch": 0.32,
|
| 557 |
+
"eval_chemistry_entropy": 1.7318408770561218,
|
| 558 |
+
"eval_chemistry_loss": 1.746923804283142,
|
| 559 |
+
"eval_chemistry_mean_token_accuracy": 0.632696654677391,
|
| 560 |
+
"eval_chemistry_num_tokens": 5531902.0,
|
| 561 |
+
"eval_chemistry_runtime": 34.5046,
|
| 562 |
+
"eval_chemistry_samples_per_second": 14.491,
|
| 563 |
+
"eval_chemistry_steps_per_second": 7.245,
|
| 564 |
+
"step": 400
|
| 565 |
+
},
|
| 566 |
+
{
|
| 567 |
+
"epoch": 0.32,
|
| 568 |
+
"eval_math_entropy": 0.9170646283626557,
|
| 569 |
+
"eval_math_loss": 0.8942311406135559,
|
| 570 |
+
"eval_math_mean_token_accuracy": 0.7709064717292786,
|
| 571 |
+
"eval_math_num_tokens": 5531902.0,
|
| 572 |
+
"eval_math_runtime": 35.0734,
|
| 573 |
+
"eval_math_samples_per_second": 14.256,
|
| 574 |
+
"eval_math_steps_per_second": 7.128,
|
| 575 |
+
"step": 400
|
| 576 |
+
},
|
| 577 |
+
{
|
| 578 |
+
"epoch": 0.32,
|
| 579 |
+
"eval_physics_entropy": 1.349606383562088,
|
| 580 |
+
"eval_physics_loss": 1.343300223350525,
|
| 581 |
+
"eval_physics_mean_token_accuracy": 0.6978710038661957,
|
| 582 |
+
"eval_physics_num_tokens": 5531902.0,
|
| 583 |
+
"eval_physics_runtime": 40.7692,
|
| 584 |
+
"eval_physics_samples_per_second": 12.264,
|
| 585 |
+
"eval_physics_steps_per_second": 6.132,
|
| 586 |
+
"step": 400
|
| 587 |
+
},
|
| 588 |
+
{
|
| 589 |
+
"entropy": 0.9086290217936039,
|
| 590 |
+
"epoch": 0.328,
|
| 591 |
+
"grad_norm": 0.796875,
|
| 592 |
+
"learning_rate": 1.9192592592592593e-05,
|
| 593 |
+
"loss": 0.847,
|
| 594 |
+
"mean_token_accuracy": 0.7745547294616699,
|
| 595 |
+
"num_tokens": 5669047.0,
|
| 596 |
+
"step": 410
|
| 597 |
+
},
|
| 598 |
+
{
|
| 599 |
+
"entropy": 0.9156009530648589,
|
| 600 |
+
"epoch": 0.336,
|
| 601 |
+
"grad_norm": 0.7578125,
|
| 602 |
+
"learning_rate": 1.911851851851852e-05,
|
| 603 |
+
"loss": 0.8769,
|
| 604 |
+
"mean_token_accuracy": 0.7692474499344826,
|
| 605 |
+
"num_tokens": 5806889.0,
|
| 606 |
+
"step": 420
|
| 607 |
+
},
|
| 608 |
+
{
|
| 609 |
+
"entropy": 0.8934111742302775,
|
| 610 |
+
"epoch": 0.344,
|
| 611 |
+
"grad_norm": 0.67578125,
|
| 612 |
+
"learning_rate": 1.9044444444444446e-05,
|
| 613 |
+
"loss": 0.8462,
|
| 614 |
+
"mean_token_accuracy": 0.7796071924269199,
|
| 615 |
+
"num_tokens": 5947019.0,
|
| 616 |
+
"step": 430
|
| 617 |
+
},
|
| 618 |
+
{
|
| 619 |
+
"entropy": 0.8856402298435568,
|
| 620 |
+
"epoch": 0.352,
|
| 621 |
+
"grad_norm": 0.7578125,
|
| 622 |
+
"learning_rate": 1.8970370370370372e-05,
|
| 623 |
+
"loss": 0.8362,
|
| 624 |
+
"mean_token_accuracy": 0.7777645040303469,
|
| 625 |
+
"num_tokens": 6083443.0,
|
| 626 |
+
"step": 440
|
| 627 |
+
},
|
| 628 |
+
{
|
| 629 |
+
"entropy": 0.8964365001767873,
|
| 630 |
+
"epoch": 0.36,
|
| 631 |
+
"grad_norm": 0.7109375,
|
| 632 |
+
"learning_rate": 1.8896296296296295e-05,
|
| 633 |
+
"loss": 0.8406,
|
| 634 |
+
"mean_token_accuracy": 0.776063571870327,
|
| 635 |
+
"num_tokens": 6215195.0,
|
| 636 |
+
"step": 450
|
| 637 |
+
},
|
| 638 |
+
{
|
| 639 |
+
"entropy": 0.8810398764908314,
|
| 640 |
+
"epoch": 0.368,
|
| 641 |
+
"grad_norm": 0.69921875,
|
| 642 |
+
"learning_rate": 1.8822222222222225e-05,
|
| 643 |
+
"loss": 0.8247,
|
| 644 |
+
"mean_token_accuracy": 0.7789717759937048,
|
| 645 |
+
"num_tokens": 6357305.0,
|
| 646 |
+
"step": 460
|
| 647 |
+
},
|
| 648 |
+
{
|
| 649 |
+
"entropy": 0.8900227572768926,
|
| 650 |
+
"epoch": 0.376,
|
| 651 |
+
"grad_norm": 0.6875,
|
| 652 |
+
"learning_rate": 1.874814814814815e-05,
|
| 653 |
+
"loss": 0.8424,
|
| 654 |
+
"mean_token_accuracy": 0.7792754102498293,
|
| 655 |
+
"num_tokens": 6498815.0,
|
| 656 |
+
"step": 470
|
| 657 |
+
},
|
| 658 |
+
{
|
| 659 |
+
"entropy": 0.8727197473868727,
|
| 660 |
+
"epoch": 0.384,
|
| 661 |
+
"grad_norm": 0.68359375,
|
| 662 |
+
"learning_rate": 1.8674074074074075e-05,
|
| 663 |
+
"loss": 0.8209,
|
| 664 |
+
"mean_token_accuracy": 0.7820516306906938,
|
| 665 |
+
"num_tokens": 6635429.0,
|
| 666 |
+
"step": 480
|
| 667 |
+
},
|
| 668 |
+
{
|
| 669 |
+
"entropy": 0.8815433232113719,
|
| 670 |
+
"epoch": 0.392,
|
| 671 |
+
"grad_norm": 0.73828125,
|
| 672 |
+
"learning_rate": 1.86e-05,
|
| 673 |
+
"loss": 0.8274,
|
| 674 |
+
"mean_token_accuracy": 0.7792554065585137,
|
| 675 |
+
"num_tokens": 6774408.0,
|
| 676 |
+
"step": 490
|
| 677 |
+
},
|
| 678 |
+
{
|
| 679 |
+
"entropy": 0.9402453400194645,
|
| 680 |
+
"epoch": 0.4,
|
| 681 |
+
"grad_norm": 0.78515625,
|
| 682 |
+
"learning_rate": 1.8525925925925928e-05,
|
| 683 |
+
"loss": 0.9268,
|
| 684 |
+
"mean_token_accuracy": 0.7666260946542025,
|
| 685 |
+
"num_tokens": 6914489.0,
|
| 686 |
+
"step": 500
|
| 687 |
+
},
|
| 688 |
+
{
|
| 689 |
+
"epoch": 0.4,
|
| 690 |
+
"eval_biology_entropy": 2.984537806510925,
|
| 691 |
+
"eval_biology_loss": 3.180291175842285,
|
| 692 |
+
"eval_biology_mean_token_accuracy": 0.4551255764961243,
|
| 693 |
+
"eval_biology_num_tokens": 6914489.0,
|
| 694 |
+
"eval_biology_runtime": 26.9382,
|
| 695 |
+
"eval_biology_samples_per_second": 18.561,
|
| 696 |
+
"eval_biology_steps_per_second": 9.281,
|
| 697 |
+
"step": 500
|
| 698 |
+
},
|
| 699 |
+
{
|
| 700 |
+
"epoch": 0.4,
|
| 701 |
+
"eval_chemistry_entropy": 1.735370470046997,
|
| 702 |
+
"eval_chemistry_loss": 1.7186591625213623,
|
| 703 |
+
"eval_chemistry_mean_token_accuracy": 0.6382190730571747,
|
| 704 |
+
"eval_chemistry_num_tokens": 6914489.0,
|
| 705 |
+
"eval_chemistry_runtime": 34.4276,
|
| 706 |
+
"eval_chemistry_samples_per_second": 14.523,
|
| 707 |
+
"eval_chemistry_steps_per_second": 7.262,
|
| 708 |
+
"step": 500
|
| 709 |
+
},
|
| 710 |
+
{
|
| 711 |
+
"epoch": 0.4,
|
| 712 |
+
"eval_math_entropy": 0.9168894953727722,
|
| 713 |
+
"eval_math_loss": 0.8749539852142334,
|
| 714 |
+
"eval_math_mean_token_accuracy": 0.7746825203895569,
|
| 715 |
+
"eval_math_num_tokens": 6914489.0,
|
| 716 |
+
"eval_math_runtime": 34.9026,
|
| 717 |
+
"eval_math_samples_per_second": 14.326,
|
| 718 |
+
"eval_math_steps_per_second": 7.163,
|
| 719 |
+
"step": 500
|
| 720 |
+
},
|
| 721 |
+
{
|
| 722 |
+
"epoch": 0.4,
|
| 723 |
+
"eval_physics_entropy": 1.34889164853096,
|
| 724 |
+
"eval_physics_loss": 1.3155016899108887,
|
| 725 |
+
"eval_physics_mean_token_accuracy": 0.7029694278240204,
|
| 726 |
+
"eval_physics_num_tokens": 6914489.0,
|
| 727 |
+
"eval_physics_runtime": 40.5298,
|
| 728 |
+
"eval_physics_samples_per_second": 12.337,
|
| 729 |
+
"eval_physics_steps_per_second": 6.168,
|
| 730 |
+
"step": 500
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"entropy": 0.8826847270131111,
|
| 734 |
+
"epoch": 0.408,
|
| 735 |
+
"grad_norm": 0.6328125,
|
| 736 |
+
"learning_rate": 1.8451851851851855e-05,
|
| 737 |
+
"loss": 0.8191,
|
| 738 |
+
"mean_token_accuracy": 0.7815356869250536,
|
| 739 |
+
"num_tokens": 7053065.0,
|
| 740 |
+
"step": 510
|
| 741 |
+
},
|
| 742 |
+
{
|
| 743 |
+
"entropy": 0.888327713869512,
|
| 744 |
+
"epoch": 0.416,
|
| 745 |
+
"grad_norm": 0.67578125,
|
| 746 |
+
"learning_rate": 1.8377777777777778e-05,
|
| 747 |
+
"loss": 0.8458,
|
| 748 |
+
"mean_token_accuracy": 0.7794966764748097,
|
| 749 |
+
"num_tokens": 7187783.0,
|
| 750 |
+
"step": 520
|
| 751 |
+
},
|
| 752 |
+
{
|
| 753 |
+
"entropy": 0.8952456833794713,
|
| 754 |
+
"epoch": 0.424,
|
| 755 |
+
"grad_norm": 0.66015625,
|
| 756 |
+
"learning_rate": 1.8303703703703704e-05,
|
| 757 |
+
"loss": 0.8535,
|
| 758 |
+
"mean_token_accuracy": 0.7754339158535004,
|
| 759 |
+
"num_tokens": 7320375.0,
|
| 760 |
+
"step": 530
|
| 761 |
+
},
|
| 762 |
+
{
|
| 763 |
+
"entropy": 0.8508788656443358,
|
| 764 |
+
"epoch": 0.432,
|
| 765 |
+
"grad_norm": 0.65625,
|
| 766 |
+
"learning_rate": 1.822962962962963e-05,
|
| 767 |
+
"loss": 0.7973,
|
| 768 |
+
"mean_token_accuracy": 0.7881547212600708,
|
| 769 |
+
"num_tokens": 7454401.0,
|
| 770 |
+
"step": 540
|
| 771 |
+
},
|
| 772 |
+
{
|
| 773 |
+
"entropy": 0.8842971453443169,
|
| 774 |
+
"epoch": 0.44,
|
| 775 |
+
"grad_norm": 0.71484375,
|
| 776 |
+
"learning_rate": 1.8155555555555557e-05,
|
| 777 |
+
"loss": 0.8373,
|
| 778 |
+
"mean_token_accuracy": 0.7774394288659096,
|
| 779 |
+
"num_tokens": 7593764.0,
|
| 780 |
+
"step": 550
|
| 781 |
+
},
|
| 782 |
+
{
|
| 783 |
+
"entropy": 0.8545080715790391,
|
| 784 |
+
"epoch": 0.448,
|
| 785 |
+
"grad_norm": 0.75,
|
| 786 |
+
"learning_rate": 1.8081481481481484e-05,
|
| 787 |
+
"loss": 0.8067,
|
| 788 |
+
"mean_token_accuracy": 0.7855051398277283,
|
| 789 |
+
"num_tokens": 7732710.0,
|
| 790 |
+
"step": 560
|
| 791 |
+
},
|
| 792 |
+
{
|
| 793 |
+
"entropy": 0.8548783052712678,
|
| 794 |
+
"epoch": 0.456,
|
| 795 |
+
"grad_norm": 0.70703125,
|
| 796 |
+
"learning_rate": 1.800740740740741e-05,
|
| 797 |
+
"loss": 0.8214,
|
| 798 |
+
"mean_token_accuracy": 0.7835484184324741,
|
| 799 |
+
"num_tokens": 7873721.0,
|
| 800 |
+
"step": 570
|
| 801 |
+
},
|
| 802 |
+
{
|
| 803 |
+
"entropy": 0.8870714059099555,
|
| 804 |
+
"epoch": 0.464,
|
| 805 |
+
"grad_norm": 0.5859375,
|
| 806 |
+
"learning_rate": 1.7933333333333333e-05,
|
| 807 |
+
"loss": 0.8303,
|
| 808 |
+
"mean_token_accuracy": 0.7804129023104907,
|
| 809 |
+
"num_tokens": 8012478.0,
|
| 810 |
+
"step": 580
|
| 811 |
+
},
|
| 812 |
+
{
|
| 813 |
+
"entropy": 0.8966930942609906,
|
| 814 |
+
"epoch": 0.472,
|
| 815 |
+
"grad_norm": 0.64453125,
|
| 816 |
+
"learning_rate": 1.785925925925926e-05,
|
| 817 |
+
"loss": 0.8442,
|
| 818 |
+
"mean_token_accuracy": 0.7768670186400414,
|
| 819 |
+
"num_tokens": 8153429.0,
|
| 820 |
+
"step": 590
|
| 821 |
+
},
|
| 822 |
+
{
|
| 823 |
+
"entropy": 0.8990984376519918,
|
| 824 |
+
"epoch": 0.48,
|
| 825 |
+
"grad_norm": 0.7265625,
|
| 826 |
+
"learning_rate": 1.7785185185185186e-05,
|
| 827 |
+
"loss": 0.8363,
|
| 828 |
+
"mean_token_accuracy": 0.7791902955621481,
|
| 829 |
+
"num_tokens": 8288086.0,
|
| 830 |
+
"step": 600
|
| 831 |
+
},
|
| 832 |
+
{
|
| 833 |
+
"epoch": 0.48,
|
| 834 |
+
"eval_biology_entropy": 3.026648554325104,
|
| 835 |
+
"eval_biology_loss": 3.1774065494537354,
|
| 836 |
+
"eval_biology_mean_token_accuracy": 0.45753026235103605,
|
| 837 |
+
"eval_biology_num_tokens": 8288086.0,
|
| 838 |
+
"eval_biology_runtime": 26.9914,
|
| 839 |
+
"eval_biology_samples_per_second": 18.524,
|
| 840 |
+
"eval_biology_steps_per_second": 9.262,
|
| 841 |
+
"step": 600
|
| 842 |
+
},
|
| 843 |
+
{
|
| 844 |
+
"epoch": 0.48,
|
| 845 |
+
"eval_chemistry_entropy": 1.7211642112731933,
|
| 846 |
+
"eval_chemistry_loss": 1.7037526369094849,
|
| 847 |
+
"eval_chemistry_mean_token_accuracy": 0.6409431176185608,
|
| 848 |
+
"eval_chemistry_num_tokens": 8288086.0,
|
| 849 |
+
"eval_chemistry_runtime": 34.4519,
|
| 850 |
+
"eval_chemistry_samples_per_second": 14.513,
|
| 851 |
+
"eval_chemistry_steps_per_second": 7.256,
|
| 852 |
+
"step": 600
|
| 853 |
+
},
|
| 854 |
+
{
|
| 855 |
+
"epoch": 0.48,
|
| 856 |
+
"eval_math_entropy": 0.8927879617214203,
|
| 857 |
+
"eval_math_loss": 0.863281786441803,
|
| 858 |
+
"eval_math_mean_token_accuracy": 0.7770743372440339,
|
| 859 |
+
"eval_math_num_tokens": 8288086.0,
|
| 860 |
+
"eval_math_runtime": 34.9704,
|
| 861 |
+
"eval_math_samples_per_second": 14.298,
|
| 862 |
+
"eval_math_steps_per_second": 7.149,
|
| 863 |
+
"step": 600
|
| 864 |
+
},
|
| 865 |
+
{
|
| 866 |
+
"epoch": 0.48,
|
| 867 |
+
"eval_physics_entropy": 1.3300827517509461,
|
| 868 |
+
"eval_physics_loss": 1.3015602827072144,
|
| 869 |
+
"eval_physics_mean_token_accuracy": 0.7059740360975265,
|
| 870 |
+
"eval_physics_num_tokens": 8288086.0,
|
| 871 |
+
"eval_physics_runtime": 40.5426,
|
| 872 |
+
"eval_physics_samples_per_second": 12.333,
|
| 873 |
+
"eval_physics_steps_per_second": 6.166,
|
| 874 |
+
"step": 600
|
| 875 |
+
},
|
| 876 |
+
{
|
| 877 |
+
"entropy": 0.8605974804610014,
|
| 878 |
+
"epoch": 0.488,
|
| 879 |
+
"grad_norm": 0.65234375,
|
| 880 |
+
"learning_rate": 1.7711111111111113e-05,
|
| 881 |
+
"loss": 0.8123,
|
| 882 |
+
"mean_token_accuracy": 0.7824984133243561,
|
| 883 |
+
"num_tokens": 8424958.0,
|
| 884 |
+
"step": 610
|
| 885 |
+
},
|
| 886 |
+
{
|
| 887 |
+
"entropy": 0.8556231519207358,
|
| 888 |
+
"epoch": 0.496,
|
| 889 |
+
"grad_norm": 0.73828125,
|
| 890 |
+
"learning_rate": 1.763703703703704e-05,
|
| 891 |
+
"loss": 0.8073,
|
| 892 |
+
"mean_token_accuracy": 0.7834980070590973,
|
| 893 |
+
"num_tokens": 8562656.0,
|
| 894 |
+
"step": 620
|
| 895 |
+
},
|
| 896 |
+
{
|
| 897 |
+
"entropy": 0.8707238981500268,
|
| 898 |
+
"epoch": 0.504,
|
| 899 |
+
"grad_norm": 0.63671875,
|
| 900 |
+
"learning_rate": 1.7562962962962962e-05,
|
| 901 |
+
"loss": 0.8323,
|
| 902 |
+
"mean_token_accuracy": 0.7818343795835971,
|
| 903 |
+
"num_tokens": 8706097.0,
|
| 904 |
+
"step": 630
|
| 905 |
+
},
|
| 906 |
+
{
|
| 907 |
+
"entropy": 0.8535389142110944,
|
| 908 |
+
"epoch": 0.512,
|
| 909 |
+
"grad_norm": 0.6953125,
|
| 910 |
+
"learning_rate": 1.7488888888888892e-05,
|
| 911 |
+
"loss": 0.7829,
|
| 912 |
+
"mean_token_accuracy": 0.7894029818475247,
|
| 913 |
+
"num_tokens": 8844762.0,
|
| 914 |
+
"step": 640
|
| 915 |
+
},
|
| 916 |
+
{
|
| 917 |
+
"entropy": 0.8502879558131099,
|
| 918 |
+
"epoch": 0.52,
|
| 919 |
+
"grad_norm": 0.73828125,
|
| 920 |
+
"learning_rate": 1.7414814814814815e-05,
|
| 921 |
+
"loss": 0.8016,
|
| 922 |
+
"mean_token_accuracy": 0.789192034304142,
|
| 923 |
+
"num_tokens": 8983268.0,
|
| 924 |
+
"step": 650
|
| 925 |
+
},
|
| 926 |
+
{
|
| 927 |
+
"entropy": 0.841147867590189,
|
| 928 |
+
"epoch": 0.528,
|
| 929 |
+
"grad_norm": 0.76171875,
|
| 930 |
+
"learning_rate": 1.7340740740740742e-05,
|
| 931 |
+
"loss": 0.7936,
|
| 932 |
+
"mean_token_accuracy": 0.7880374405533075,
|
| 933 |
+
"num_tokens": 9132725.0,
|
| 934 |
+
"step": 660
|
| 935 |
+
},
|
| 936 |
+
{
|
| 937 |
+
"entropy": 0.8636940447613597,
|
| 938 |
+
"epoch": 0.536,
|
| 939 |
+
"grad_norm": 0.796875,
|
| 940 |
+
"learning_rate": 1.726666666666667e-05,
|
| 941 |
+
"loss": 0.841,
|
| 942 |
+
"mean_token_accuracy": 0.7832605082541704,
|
| 943 |
+
"num_tokens": 9271490.0,
|
| 944 |
+
"step": 670
|
| 945 |
+
},
|
| 946 |
+
{
|
| 947 |
+
"entropy": 0.8671527728438377,
|
| 948 |
+
"epoch": 0.544,
|
| 949 |
+
"grad_norm": 0.78125,
|
| 950 |
+
"learning_rate": 1.7192592592592595e-05,
|
| 951 |
+
"loss": 0.8081,
|
| 952 |
+
"mean_token_accuracy": 0.7864414434880018,
|
| 953 |
+
"num_tokens": 9412327.0,
|
| 954 |
+
"step": 680
|
| 955 |
+
},
|
| 956 |
+
{
|
| 957 |
+
"entropy": 0.9130071861669421,
|
| 958 |
+
"epoch": 0.552,
|
| 959 |
+
"grad_norm": 0.85546875,
|
| 960 |
+
"learning_rate": 1.711851851851852e-05,
|
| 961 |
+
"loss": 0.8653,
|
| 962 |
+
"mean_token_accuracy": 0.7723087813705206,
|
| 963 |
+
"num_tokens": 9541196.0,
|
| 964 |
+
"step": 690
|
| 965 |
+
},
|
| 966 |
+
{
|
| 967 |
+
"entropy": 0.8585997836664319,
|
| 968 |
+
"epoch": 0.56,
|
| 969 |
+
"grad_norm": 0.7265625,
|
| 970 |
+
"learning_rate": 1.7044444444444445e-05,
|
| 971 |
+
"loss": 0.794,
|
| 972 |
+
"mean_token_accuracy": 0.7848813243210315,
|
| 973 |
+
"num_tokens": 9676595.0,
|
| 974 |
+
"step": 700
|
| 975 |
+
},
|
| 976 |
+
{
|
| 977 |
+
"epoch": 0.56,
|
| 978 |
+
"eval_biology_entropy": 2.9588126630783083,
|
| 979 |
+
"eval_biology_loss": 3.134213447570801,
|
| 980 |
+
"eval_biology_mean_token_accuracy": 0.46100987315177916,
|
| 981 |
+
"eval_biology_num_tokens": 9676595.0,
|
| 982 |
+
"eval_biology_runtime": 27.0044,
|
| 983 |
+
"eval_biology_samples_per_second": 18.516,
|
| 984 |
+
"eval_biology_steps_per_second": 9.258,
|
| 985 |
+
"step": 700
|
| 986 |
+
},
|
| 987 |
+
{
|
| 988 |
+
"epoch": 0.56,
|
| 989 |
+
"eval_chemistry_entropy": 1.6786610894203187,
|
| 990 |
+
"eval_chemistry_loss": 1.6839625835418701,
|
| 991 |
+
"eval_chemistry_mean_token_accuracy": 0.6436767561435699,
|
| 992 |
+
"eval_chemistry_num_tokens": 9676595.0,
|
| 993 |
+
"eval_chemistry_runtime": 34.4136,
|
| 994 |
+
"eval_chemistry_samples_per_second": 14.529,
|
| 995 |
+
"eval_chemistry_steps_per_second": 7.265,
|
| 996 |
+
"step": 700
|
| 997 |
+
},
|
| 998 |
+
{
|
| 999 |
+
"epoch": 0.56,
|
| 1000 |
+
"eval_math_entropy": 0.8769606277942658,
|
| 1001 |
+
"eval_math_loss": 0.8541995882987976,
|
| 1002 |
+
"eval_math_mean_token_accuracy": 0.7790154383182526,
|
| 1003 |
+
"eval_math_num_tokens": 9676595.0,
|
| 1004 |
+
"eval_math_runtime": 34.9482,
|
| 1005 |
+
"eval_math_samples_per_second": 14.307,
|
| 1006 |
+
"eval_math_steps_per_second": 7.153,
|
| 1007 |
+
"step": 700
|
| 1008 |
+
},
|
| 1009 |
+
{
|
| 1010 |
+
"epoch": 0.56,
|
| 1011 |
+
"eval_physics_entropy": 1.302037154197693,
|
| 1012 |
+
"eval_physics_loss": 1.289175271987915,
|
| 1013 |
+
"eval_physics_mean_token_accuracy": 0.7078491554260254,
|
| 1014 |
+
"eval_physics_num_tokens": 9676595.0,
|
| 1015 |
+
"eval_physics_runtime": 40.5408,
|
| 1016 |
+
"eval_physics_samples_per_second": 12.333,
|
| 1017 |
+
"eval_physics_steps_per_second": 6.167,
|
| 1018 |
+
"step": 700
|
| 1019 |
+
},
|
| 1020 |
+
{
|
| 1021 |
+
"entropy": 0.8488044740632177,
|
| 1022 |
+
"epoch": 0.568,
|
| 1023 |
+
"grad_norm": 0.65625,
|
| 1024 |
+
"learning_rate": 1.697037037037037e-05,
|
| 1025 |
+
"loss": 0.8027,
|
| 1026 |
+
"mean_token_accuracy": 0.7859589237719774,
|
| 1027 |
+
"num_tokens": 9812856.0,
|
| 1028 |
+
"step": 710
|
| 1029 |
+
},
|
| 1030 |
+
{
|
| 1031 |
+
"entropy": 0.8703772563487291,
|
| 1032 |
+
"epoch": 0.576,
|
| 1033 |
+
"grad_norm": 0.76171875,
|
| 1034 |
+
"learning_rate": 1.6896296296296298e-05,
|
| 1035 |
+
"loss": 0.8196,
|
| 1036 |
+
"mean_token_accuracy": 0.7833330363035202,
|
| 1037 |
+
"num_tokens": 9953227.0,
|
| 1038 |
+
"step": 720
|
| 1039 |
+
},
|
| 1040 |
+
{
|
| 1041 |
+
"entropy": 0.8656591676175595,
|
| 1042 |
+
"epoch": 0.584,
|
| 1043 |
+
"grad_norm": 0.7109375,
|
| 1044 |
+
"learning_rate": 1.6822222222222224e-05,
|
| 1045 |
+
"loss": 0.8193,
|
| 1046 |
+
"mean_token_accuracy": 0.7825856961309909,
|
| 1047 |
+
"num_tokens": 10089276.0,
|
| 1048 |
+
"step": 730
|
| 1049 |
+
},
|
| 1050 |
+
{
|
| 1051 |
+
"entropy": 0.8539155850186944,
|
| 1052 |
+
"epoch": 0.592,
|
| 1053 |
+
"grad_norm": 0.62109375,
|
| 1054 |
+
"learning_rate": 1.6748148148148147e-05,
|
| 1055 |
+
"loss": 0.8051,
|
| 1056 |
+
"mean_token_accuracy": 0.7846140246838331,
|
| 1057 |
+
"num_tokens": 10234220.0,
|
| 1058 |
+
"step": 740
|
| 1059 |
+
},
|
| 1060 |
+
{
|
| 1061 |
+
"entropy": 0.8651883415877819,
|
| 1062 |
+
"epoch": 0.6,
|
| 1063 |
+
"grad_norm": 0.62109375,
|
| 1064 |
+
"learning_rate": 1.6674074074074077e-05,
|
| 1065 |
+
"loss": 0.8268,
|
| 1066 |
+
"mean_token_accuracy": 0.7814744919538498,
|
| 1067 |
+
"num_tokens": 10370667.0,
|
| 1068 |
+
"step": 750
|
| 1069 |
+
},
|
| 1070 |
+
{
|
| 1071 |
+
"entropy": 0.863803020492196,
|
| 1072 |
+
"epoch": 0.608,
|
| 1073 |
+
"grad_norm": 0.76171875,
|
| 1074 |
+
"learning_rate": 1.66e-05,
|
| 1075 |
+
"loss": 0.8229,
|
| 1076 |
+
"mean_token_accuracy": 0.783318106085062,
|
| 1077 |
+
"num_tokens": 10515760.0,
|
| 1078 |
+
"step": 760
|
| 1079 |
+
},
|
| 1080 |
+
{
|
| 1081 |
+
"entropy": 0.8657625541090965,
|
| 1082 |
+
"epoch": 0.616,
|
| 1083 |
+
"grad_norm": 0.609375,
|
| 1084 |
+
"learning_rate": 1.6525925925925927e-05,
|
| 1085 |
+
"loss": 0.8201,
|
| 1086 |
+
"mean_token_accuracy": 0.781252521276474,
|
| 1087 |
+
"num_tokens": 10660578.0,
|
| 1088 |
+
"step": 770
|
| 1089 |
+
},
|
| 1090 |
+
{
|
| 1091 |
+
"entropy": 0.8430647728964686,
|
| 1092 |
+
"epoch": 0.624,
|
| 1093 |
+
"grad_norm": 0.73828125,
|
| 1094 |
+
"learning_rate": 1.6451851851851853e-05,
|
| 1095 |
+
"loss": 0.786,
|
| 1096 |
+
"mean_token_accuracy": 0.7895114913582801,
|
| 1097 |
+
"num_tokens": 10797566.0,
|
| 1098 |
+
"step": 780
|
| 1099 |
+
},
|
| 1100 |
+
{
|
| 1101 |
+
"entropy": 0.8240785686299205,
|
| 1102 |
+
"epoch": 0.632,
|
| 1103 |
+
"grad_norm": 0.63671875,
|
| 1104 |
+
"learning_rate": 1.637777777777778e-05,
|
| 1105 |
+
"loss": 0.7805,
|
| 1106 |
+
"mean_token_accuracy": 0.7922219831496478,
|
| 1107 |
+
"num_tokens": 10938456.0,
|
| 1108 |
+
"step": 790
|
| 1109 |
+
},
|
| 1110 |
+
{
|
| 1111 |
+
"entropy": 0.8485349236056209,
|
| 1112 |
+
"epoch": 0.64,
|
| 1113 |
+
"grad_norm": 0.65625,
|
| 1114 |
+
"learning_rate": 1.6303703703703706e-05,
|
| 1115 |
+
"loss": 0.7989,
|
| 1116 |
+
"mean_token_accuracy": 0.7866497144103051,
|
| 1117 |
+
"num_tokens": 11079348.0,
|
| 1118 |
+
"step": 800
|
| 1119 |
+
},
|
| 1120 |
+
{
|
| 1121 |
+
"epoch": 0.64,
|
| 1122 |
+
"eval_biology_entropy": 2.932964876174927,
|
| 1123 |
+
"eval_biology_loss": 3.1179301738739014,
|
| 1124 |
+
"eval_biology_mean_token_accuracy": 0.46290264546871185,
|
| 1125 |
+
"eval_biology_num_tokens": 11079348.0,
|
| 1126 |
+
"eval_biology_runtime": 27.0006,
|
| 1127 |
+
"eval_biology_samples_per_second": 18.518,
|
| 1128 |
+
"eval_biology_steps_per_second": 9.259,
|
| 1129 |
+
"step": 800
|
| 1130 |
+
},
|
| 1131 |
+
{
|
| 1132 |
+
"epoch": 0.64,
|
| 1133 |
+
"eval_chemistry_entropy": 1.6625523691177369,
|
| 1134 |
+
"eval_chemistry_loss": 1.6735429763793945,
|
| 1135 |
+
"eval_chemistry_mean_token_accuracy": 0.645549393773079,
|
| 1136 |
+
"eval_chemistry_num_tokens": 11079348.0,
|
| 1137 |
+
"eval_chemistry_runtime": 34.504,
|
| 1138 |
+
"eval_chemistry_samples_per_second": 14.491,
|
| 1139 |
+
"eval_chemistry_steps_per_second": 7.246,
|
| 1140 |
+
"step": 800
|
| 1141 |
+
},
|
| 1142 |
+
{
|
| 1143 |
+
"epoch": 0.64,
|
| 1144 |
+
"eval_math_entropy": 0.8715307763814926,
|
| 1145 |
+
"eval_math_loss": 0.8475318551063538,
|
| 1146 |
+
"eval_math_mean_token_accuracy": 0.780082686662674,
|
| 1147 |
+
"eval_math_num_tokens": 11079348.0,
|
| 1148 |
+
"eval_math_runtime": 34.9793,
|
| 1149 |
+
"eval_math_samples_per_second": 14.294,
|
| 1150 |
+
"eval_math_steps_per_second": 7.147,
|
| 1151 |
+
"step": 800
|
| 1152 |
+
},
|
| 1153 |
+
{
|
| 1154 |
+
"epoch": 0.64,
|
| 1155 |
+
"eval_physics_entropy": 1.292870044708252,
|
| 1156 |
+
"eval_physics_loss": 1.2783890962600708,
|
| 1157 |
+
"eval_physics_mean_token_accuracy": 0.7100210604667664,
|
| 1158 |
+
"eval_physics_num_tokens": 11079348.0,
|
| 1159 |
+
"eval_physics_runtime": 40.5422,
|
| 1160 |
+
"eval_physics_samples_per_second": 12.333,
|
| 1161 |
+
"eval_physics_steps_per_second": 6.166,
|
| 1162 |
+
"step": 800
|
| 1163 |
+
},
|
| 1164 |
+
{
|
| 1165 |
+
"entropy": 0.8196414019912481,
|
| 1166 |
+
"epoch": 0.648,
|
| 1167 |
+
"grad_norm": 0.6484375,
|
| 1168 |
+
"learning_rate": 1.622962962962963e-05,
|
| 1169 |
+
"loss": 0.7785,
|
| 1170 |
+
"mean_token_accuracy": 0.7903594326227903,
|
| 1171 |
+
"num_tokens": 11221757.0,
|
| 1172 |
+
"step": 810
|
| 1173 |
+
},
|
| 1174 |
+
{
|
| 1175 |
+
"entropy": 0.8491896335035563,
|
| 1176 |
+
"epoch": 0.656,
|
| 1177 |
+
"grad_norm": 0.66796875,
|
| 1178 |
+
"learning_rate": 1.6155555555555556e-05,
|
| 1179 |
+
"loss": 0.8188,
|
| 1180 |
+
"mean_token_accuracy": 0.7861174423247576,
|
| 1181 |
+
"num_tokens": 11360239.0,
|
| 1182 |
+
"step": 820
|
| 1183 |
+
},
|
| 1184 |
+
{
|
| 1185 |
+
"entropy": 0.8492498191073536,
|
| 1186 |
+
"epoch": 0.664,
|
| 1187 |
+
"grad_norm": 0.83984375,
|
| 1188 |
+
"learning_rate": 1.6081481481481482e-05,
|
| 1189 |
+
"loss": 0.7993,
|
| 1190 |
+
"mean_token_accuracy": 0.7853016339242458,
|
| 1191 |
+
"num_tokens": 11498677.0,
|
| 1192 |
+
"step": 830
|
| 1193 |
+
},
|
| 1194 |
+
{
|
| 1195 |
+
"entropy": 0.8525434667244554,
|
| 1196 |
+
"epoch": 0.672,
|
| 1197 |
+
"grad_norm": 0.69140625,
|
| 1198 |
+
"learning_rate": 1.600740740740741e-05,
|
| 1199 |
+
"loss": 0.8167,
|
| 1200 |
+
"mean_token_accuracy": 0.7853171724826098,
|
| 1201 |
+
"num_tokens": 11644674.0,
|
| 1202 |
+
"step": 840
|
| 1203 |
+
},
|
| 1204 |
+
{
|
| 1205 |
+
"entropy": 0.8380661699920893,
|
| 1206 |
+
"epoch": 0.68,
|
| 1207 |
+
"grad_norm": 0.73046875,
|
| 1208 |
+
"learning_rate": 1.5933333333333336e-05,
|
| 1209 |
+
"loss": 0.7928,
|
| 1210 |
+
"mean_token_accuracy": 0.788429806381464,
|
| 1211 |
+
"num_tokens": 11783080.0,
|
| 1212 |
+
"step": 850
|
| 1213 |
+
},
|
| 1214 |
+
{
|
| 1215 |
+
"entropy": 0.8381451951339841,
|
| 1216 |
+
"epoch": 0.688,
|
| 1217 |
+
"grad_norm": 0.62109375,
|
| 1218 |
+
"learning_rate": 1.5859259259259262e-05,
|
| 1219 |
+
"loss": 0.7921,
|
| 1220 |
+
"mean_token_accuracy": 0.7877590708434582,
|
| 1221 |
+
"num_tokens": 11917713.0,
|
| 1222 |
+
"step": 860
|
| 1223 |
+
},
|
| 1224 |
+
{
|
| 1225 |
+
"entropy": 0.8567008957266807,
|
| 1226 |
+
"epoch": 0.696,
|
| 1227 |
+
"grad_norm": 0.6640625,
|
| 1228 |
+
"learning_rate": 1.5785185185185185e-05,
|
| 1229 |
+
"loss": 0.7966,
|
| 1230 |
+
"mean_token_accuracy": 0.7848114792257548,
|
| 1231 |
+
"num_tokens": 12058193.0,
|
| 1232 |
+
"step": 870
|
| 1233 |
+
},
|
| 1234 |
+
{
|
| 1235 |
+
"entropy": 0.8353428209200502,
|
| 1236 |
+
"epoch": 0.704,
|
| 1237 |
+
"grad_norm": 0.65234375,
|
| 1238 |
+
"learning_rate": 1.571111111111111e-05,
|
| 1239 |
+
"loss": 0.7868,
|
| 1240 |
+
"mean_token_accuracy": 0.7881882593035698,
|
| 1241 |
+
"num_tokens": 12199067.0,
|
| 1242 |
+
"step": 880
|
| 1243 |
+
},
|
| 1244 |
+
{
|
| 1245 |
+
"entropy": 0.8710033852607012,
|
| 1246 |
+
"epoch": 0.712,
|
| 1247 |
+
"grad_norm": 0.671875,
|
| 1248 |
+
"learning_rate": 1.5637037037037038e-05,
|
| 1249 |
+
"loss": 0.8088,
|
| 1250 |
+
"mean_token_accuracy": 0.7816738404333592,
|
| 1251 |
+
"num_tokens": 12335740.0,
|
| 1252 |
+
"step": 890
|
| 1253 |
+
},
|
| 1254 |
+
{
|
| 1255 |
+
"entropy": 0.8482802568003536,
|
| 1256 |
+
"epoch": 0.72,
|
| 1257 |
+
"grad_norm": 0.8671875,
|
| 1258 |
+
"learning_rate": 1.5562962962962965e-05,
|
| 1259 |
+
"loss": 0.8002,
|
| 1260 |
+
"mean_token_accuracy": 0.7863489333540201,
|
| 1261 |
+
"num_tokens": 12469017.0,
|
| 1262 |
+
"step": 900
|
| 1263 |
+
},
|
| 1264 |
+
{
|
| 1265 |
+
"epoch": 0.72,
|
| 1266 |
+
"eval_biology_entropy": 2.9198746318817137,
|
| 1267 |
+
"eval_biology_loss": 3.095550775527954,
|
| 1268 |
+
"eval_biology_mean_token_accuracy": 0.4650931693315506,
|
| 1269 |
+
"eval_biology_num_tokens": 12469017.0,
|
| 1270 |
+
"eval_biology_runtime": 26.9459,
|
| 1271 |
+
"eval_biology_samples_per_second": 18.556,
|
| 1272 |
+
"eval_biology_steps_per_second": 9.278,
|
| 1273 |
+
"step": 900
|
| 1274 |
+
},
|
| 1275 |
+
{
|
| 1276 |
+
"epoch": 0.72,
|
| 1277 |
+
"eval_chemistry_entropy": 1.654184314250946,
|
| 1278 |
+
"eval_chemistry_loss": 1.6625065803527832,
|
| 1279 |
+
"eval_chemistry_mean_token_accuracy": 0.6471669510602951,
|
| 1280 |
+
"eval_chemistry_num_tokens": 12469017.0,
|
| 1281 |
+
"eval_chemistry_runtime": 34.4235,
|
| 1282 |
+
"eval_chemistry_samples_per_second": 14.525,
|
| 1283 |
+
"eval_chemistry_steps_per_second": 7.262,
|
| 1284 |
+
"step": 900
|
| 1285 |
+
},
|
| 1286 |
+
{
|
| 1287 |
+
"epoch": 0.72,
|
| 1288 |
+
"eval_math_entropy": 0.8690718128681183,
|
| 1289 |
+
"eval_math_loss": 0.8421436548233032,
|
| 1290 |
+
"eval_math_mean_token_accuracy": 0.7811065847873688,
|
| 1291 |
+
"eval_math_num_tokens": 12469017.0,
|
| 1292 |
+
"eval_math_runtime": 34.9224,
|
| 1293 |
+
"eval_math_samples_per_second": 14.317,
|
| 1294 |
+
"eval_math_steps_per_second": 7.159,
|
| 1295 |
+
"step": 900
|
| 1296 |
+
},
|
| 1297 |
+
{
|
| 1298 |
+
"epoch": 0.72,
|
| 1299 |
+
"eval_physics_entropy": 1.2865873792171478,
|
| 1300 |
+
"eval_physics_loss": 1.2697285413742065,
|
| 1301 |
+
"eval_physics_mean_token_accuracy": 0.7113078062534333,
|
| 1302 |
+
"eval_physics_num_tokens": 12469017.0,
|
| 1303 |
+
"eval_physics_runtime": 40.5051,
|
| 1304 |
+
"eval_physics_samples_per_second": 12.344,
|
| 1305 |
+
"eval_physics_steps_per_second": 6.172,
|
| 1306 |
+
"step": 900
|
| 1307 |
+
},
|
| 1308 |
+
{
|
| 1309 |
+
"entropy": 0.8559863271191717,
|
| 1310 |
+
"epoch": 0.728,
|
| 1311 |
+
"grad_norm": 0.859375,
|
| 1312 |
+
"learning_rate": 1.548888888888889e-05,
|
| 1313 |
+
"loss": 0.8087,
|
| 1314 |
+
"mean_token_accuracy": 0.7872065585106611,
|
| 1315 |
+
"num_tokens": 12604524.0,
|
| 1316 |
+
"step": 910
|
| 1317 |
+
},
|
| 1318 |
+
{
|
| 1319 |
+
"entropy": 0.8351603880524635,
|
| 1320 |
+
"epoch": 0.736,
|
| 1321 |
+
"grad_norm": 0.69921875,
|
| 1322 |
+
"learning_rate": 1.5414814814814814e-05,
|
| 1323 |
+
"loss": 0.7815,
|
| 1324 |
+
"mean_token_accuracy": 0.7907860331237316,
|
| 1325 |
+
"num_tokens": 12746145.0,
|
| 1326 |
+
"step": 920
|
| 1327 |
+
},
|
| 1328 |
+
{
|
| 1329 |
+
"entropy": 0.8385633688420058,
|
| 1330 |
+
"epoch": 0.744,
|
| 1331 |
+
"grad_norm": 0.68359375,
|
| 1332 |
+
"learning_rate": 1.5340740740740744e-05,
|
| 1333 |
+
"loss": 0.7849,
|
| 1334 |
+
"mean_token_accuracy": 0.7884344782680273,
|
| 1335 |
+
"num_tokens": 12882140.0,
|
| 1336 |
+
"step": 930
|
| 1337 |
+
},
|
| 1338 |
+
{
|
| 1339 |
+
"entropy": 0.8265942361205816,
|
| 1340 |
+
"epoch": 0.752,
|
| 1341 |
+
"grad_norm": 0.671875,
|
| 1342 |
+
"learning_rate": 1.5266666666666667e-05,
|
| 1343 |
+
"loss": 0.7683,
|
| 1344 |
+
"mean_token_accuracy": 0.7920810837298632,
|
| 1345 |
+
"num_tokens": 13019785.0,
|
| 1346 |
+
"step": 940
|
| 1347 |
+
},
|
| 1348 |
+
{
|
| 1349 |
+
"entropy": 0.801921004243195,
|
| 1350 |
+
"epoch": 0.76,
|
| 1351 |
+
"grad_norm": 0.64453125,
|
| 1352 |
+
"learning_rate": 1.5192592592592594e-05,
|
| 1353 |
+
"loss": 0.7567,
|
| 1354 |
+
"mean_token_accuracy": 0.7981402266770601,
|
| 1355 |
+
"num_tokens": 13167975.0,
|
| 1356 |
+
"step": 950
|
| 1357 |
+
},
|
| 1358 |
+
{
|
| 1359 |
+
"entropy": 0.8200628351420164,
|
| 1360 |
+
"epoch": 0.768,
|
| 1361 |
+
"grad_norm": 0.6015625,
|
| 1362 |
+
"learning_rate": 1.5118518518518519e-05,
|
| 1363 |
+
"loss": 0.7712,
|
| 1364 |
+
"mean_token_accuracy": 0.7937319375574589,
|
| 1365 |
+
"num_tokens": 13307071.0,
|
| 1366 |
+
"step": 960
|
| 1367 |
+
},
|
| 1368 |
+
{
|
| 1369 |
+
"entropy": 0.844639228284359,
|
| 1370 |
+
"epoch": 0.776,
|
| 1371 |
+
"grad_norm": 0.68359375,
|
| 1372 |
+
"learning_rate": 1.5044444444444445e-05,
|
| 1373 |
+
"loss": 0.8066,
|
| 1374 |
+
"mean_token_accuracy": 0.7887587692588568,
|
| 1375 |
+
"num_tokens": 13444206.0,
|
| 1376 |
+
"step": 970
|
| 1377 |
+
},
|
| 1378 |
+
{
|
| 1379 |
+
"entropy": 0.8560901025310159,
|
| 1380 |
+
"epoch": 0.784,
|
| 1381 |
+
"grad_norm": 0.7109375,
|
| 1382 |
+
"learning_rate": 1.497037037037037e-05,
|
| 1383 |
+
"loss": 0.8159,
|
| 1384 |
+
"mean_token_accuracy": 0.7839560698717832,
|
| 1385 |
+
"num_tokens": 13586074.0,
|
| 1386 |
+
"step": 980
|
| 1387 |
+
},
|
| 1388 |
+
{
|
| 1389 |
+
"entropy": 0.8473082648590207,
|
| 1390 |
+
"epoch": 0.792,
|
| 1391 |
+
"grad_norm": 0.60546875,
|
| 1392 |
+
"learning_rate": 1.4896296296296298e-05,
|
| 1393 |
+
"loss": 0.8055,
|
| 1394 |
+
"mean_token_accuracy": 0.785613476485014,
|
| 1395 |
+
"num_tokens": 13727642.0,
|
| 1396 |
+
"step": 990
|
| 1397 |
+
},
|
| 1398 |
+
{
|
| 1399 |
+
"entropy": 0.8641716981306672,
|
| 1400 |
+
"epoch": 0.8,
|
| 1401 |
+
"grad_norm": 0.73828125,
|
| 1402 |
+
"learning_rate": 1.4822222222222225e-05,
|
| 1403 |
+
"loss": 0.8161,
|
| 1404 |
+
"mean_token_accuracy": 0.7843089539557695,
|
| 1405 |
+
"num_tokens": 13869252.0,
|
| 1406 |
+
"step": 1000
|
| 1407 |
+
},
|
| 1408 |
+
{
|
| 1409 |
+
"epoch": 0.8,
|
| 1410 |
+
"eval_biology_entropy": 2.927406606197357,
|
| 1411 |
+
"eval_biology_loss": 3.0816211700439453,
|
| 1412 |
+
"eval_biology_mean_token_accuracy": 0.46697849237918854,
|
| 1413 |
+
"eval_biology_num_tokens": 13869252.0,
|
| 1414 |
+
"eval_biology_runtime": 26.9151,
|
| 1415 |
+
"eval_biology_samples_per_second": 18.577,
|
| 1416 |
+
"eval_biology_steps_per_second": 9.288,
|
| 1417 |
+
"step": 1000
|
| 1418 |
+
},
|
| 1419 |
+
{
|
| 1420 |
+
"epoch": 0.8,
|
| 1421 |
+
"eval_chemistry_entropy": 1.6538746666908264,
|
| 1422 |
+
"eval_chemistry_loss": 1.6552778482437134,
|
| 1423 |
+
"eval_chemistry_mean_token_accuracy": 0.6485219527482986,
|
| 1424 |
+
"eval_chemistry_num_tokens": 13869252.0,
|
| 1425 |
+
"eval_chemistry_runtime": 34.4246,
|
| 1426 |
+
"eval_chemistry_samples_per_second": 14.525,
|
| 1427 |
+
"eval_chemistry_steps_per_second": 7.262,
|
| 1428 |
+
"step": 1000
|
| 1429 |
+
},
|
| 1430 |
+
{
|
| 1431 |
+
"epoch": 0.8,
|
| 1432 |
+
"eval_math_entropy": 0.8677517844438553,
|
| 1433 |
+
"eval_math_loss": 0.8380001187324524,
|
| 1434 |
+
"eval_math_mean_token_accuracy": 0.7821021761894226,
|
| 1435 |
+
"eval_math_num_tokens": 13869252.0,
|
| 1436 |
+
"eval_math_runtime": 34.92,
|
| 1437 |
+
"eval_math_samples_per_second": 14.318,
|
| 1438 |
+
"eval_math_steps_per_second": 7.159,
|
| 1439 |
+
"step": 1000
|
| 1440 |
+
},
|
| 1441 |
+
{
|
| 1442 |
+
"epoch": 0.8,
|
| 1443 |
+
"eval_physics_entropy": 1.2842487235069275,
|
| 1444 |
+
"eval_physics_loss": 1.2633119821548462,
|
| 1445 |
+
"eval_physics_mean_token_accuracy": 0.7128965456485749,
|
| 1446 |
+
"eval_physics_num_tokens": 13869252.0,
|
| 1447 |
+
"eval_physics_runtime": 40.4838,
|
| 1448 |
+
"eval_physics_samples_per_second": 12.351,
|
| 1449 |
+
"eval_physics_steps_per_second": 6.175,
|
| 1450 |
+
"step": 1000
|
| 1451 |
+
}
|
| 1452 |
+
],
|
| 1453 |
+
"logging_steps": 10,
|
| 1454 |
+
"max_steps": 3000,
|
| 1455 |
+
"num_input_tokens_seen": 0,
|
| 1456 |
+
"num_train_epochs": 3,
|
| 1457 |
+
"save_steps": 500,
|
| 1458 |
+
"stateful_callbacks": {
|
| 1459 |
+
"TrainerControl": {
|
| 1460 |
+
"args": {
|
| 1461 |
+
"should_epoch_stop": false,
|
| 1462 |
+
"should_evaluate": false,
|
| 1463 |
+
"should_log": false,
|
| 1464 |
+
"should_save": true,
|
| 1465 |
+
"should_training_stop": false
|
| 1466 |
+
},
|
| 1467 |
+
"attributes": {}
|
| 1468 |
+
}
|
| 1469 |
+
},
|
| 1470 |
+
"total_flos": 7.281015907772006e+17,
|
| 1471 |
+
"train_batch_size": 2,
|
| 1472 |
+
"trial_name": null,
|
| 1473 |
+
"trial_params": null
|
| 1474 |
+
}
|
checkpoint-1000/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:468bf7cb033f721ea40664a43923a7a349b3c291ee5b69f9acfdcec3e7250e85
|
| 3 |
+
size 6481
|
checkpoint-1000/vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|