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-500/chat_template.jinja +9 -0
- checkpoint-500/config.json +27 -0
- checkpoint-500/generation_config.json +9 -0
- checkpoint-500/merges.txt +0 -0
- checkpoint-500/model-00001-of-00003.safetensors +3 -0
- checkpoint-500/model-00002-of-00003.safetensors +3 -0
- checkpoint-500/model-00003-of-00003.safetensors +3 -0
- checkpoint-500/model.safetensors.index.json +363 -0
- checkpoint-500/optimizer.pt +3 -0
- checkpoint-500/rng_state.pth +3 -0
- checkpoint-500/scheduler.pt +3 -0
- checkpoint-500/special_tokens_map.json +30 -0
- checkpoint-500/tokenizer.json +0 -0
- checkpoint-500/tokenizer_config.json +189 -0
- checkpoint-500/trainer_state.json +754 -0
- checkpoint-500/training_args.bin +3 -0
- checkpoint-500/vocab.json +0 -0
checkpoint-500/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-500/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-500/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-500/merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-500/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-500/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-500/model-00003-of-00003.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:40836f0ed0e71c57b12d8588ed1578838c1a329fd15da6b690f5064babc8e162
|
| 3 |
+
size 4645523448
|
checkpoint-500/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-500/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9fe6bb103db9dce4a3edbec7b1b5df8cfd7c2116580fc500e5bf4677d723c581
|
| 3 |
+
size 3263319914
|
checkpoint-500/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fde986f97ecc270a34049538e5bcb495edbc4e7f5914a76b3cad083de287dc73
|
| 3 |
+
size 14645
|
checkpoint-500/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ddc00081d4f892d131a0d2b4d4827a214275362bfa62dfb8413f489c1bfad457
|
| 3 |
+
size 1465
|
checkpoint-500/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-500/tokenizer.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-500/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-500/trainer_state.json
ADDED
|
@@ -0,0 +1,754 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.4,
|
| 6 |
+
"eval_steps": 100,
|
| 7 |
+
"global_step": 500,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"entropy": 0.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 |
+
"logging_steps": 10,
|
| 734 |
+
"max_steps": 3000,
|
| 735 |
+
"num_input_tokens_seen": 0,
|
| 736 |
+
"num_train_epochs": 3,
|
| 737 |
+
"save_steps": 500,
|
| 738 |
+
"stateful_callbacks": {
|
| 739 |
+
"TrainerControl": {
|
| 740 |
+
"args": {
|
| 741 |
+
"should_epoch_stop": false,
|
| 742 |
+
"should_evaluate": false,
|
| 743 |
+
"should_log": false,
|
| 744 |
+
"should_save": true,
|
| 745 |
+
"should_training_stop": false
|
| 746 |
+
},
|
| 747 |
+
"attributes": {}
|
| 748 |
+
}
|
| 749 |
+
},
|
| 750 |
+
"total_flos": 3.630158407358546e+17,
|
| 751 |
+
"train_batch_size": 2,
|
| 752 |
+
"trial_name": null,
|
| 753 |
+
"trial_params": null
|
| 754 |
+
}
|
checkpoint-500/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:468bf7cb033f721ea40664a43923a7a349b3c291ee5b69f9acfdcec3e7250e85
|
| 3 |
+
size 6481
|
checkpoint-500/vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|