Upload folder using huggingface_hub
Browse files- .gitattributes +4 -0
- consciousness/README.md +62 -0
- consciousness/adapter_config.json +43 -0
- consciousness/adapter_model.safetensors +3 -0
- consciousness/chat_template.jinja +109 -0
- consciousness/checkpoint-1000/README.md +209 -0
- consciousness/checkpoint-1000/adapter_config.json +43 -0
- consciousness/checkpoint-1000/adapter_model.safetensors +3 -0
- consciousness/checkpoint-1000/chat_template.jinja +109 -0
- consciousness/checkpoint-1000/optimizer.pt +3 -0
- consciousness/checkpoint-1000/rng_state.pth +3 -0
- consciousness/checkpoint-1000/scheduler.pt +3 -0
- consciousness/checkpoint-1000/tokenizer.json +3 -0
- consciousness/checkpoint-1000/tokenizer_config.json +14 -0
- consciousness/checkpoint-1000/trainer_state.json +1034 -0
- consciousness/checkpoint-1000/training_args.bin +3 -0
- consciousness/checkpoint-1125/README.md +209 -0
- consciousness/checkpoint-1125/adapter_config.json +43 -0
- consciousness/checkpoint-1125/adapter_model.safetensors +3 -0
- consciousness/checkpoint-1125/chat_template.jinja +109 -0
- consciousness/checkpoint-1125/optimizer.pt +3 -0
- consciousness/checkpoint-1125/rng_state.pth +3 -0
- consciousness/checkpoint-1125/scheduler.pt +3 -0
- consciousness/checkpoint-1125/tokenizer.json +3 -0
- consciousness/checkpoint-1125/tokenizer_config.json +14 -0
- consciousness/checkpoint-1125/trainer_state.json +1154 -0
- consciousness/checkpoint-1125/training_args.bin +3 -0
- consciousness/checkpoint-500/README.md +209 -0
- consciousness/checkpoint-500/adapter_config.json +43 -0
- consciousness/checkpoint-500/adapter_model.safetensors +3 -0
- consciousness/checkpoint-500/chat_template.jinja +109 -0
- consciousness/checkpoint-500/optimizer.pt +3 -0
- consciousness/checkpoint-500/rng_state.pth +3 -0
- consciousness/checkpoint-500/scheduler.pt +3 -0
- consciousness/checkpoint-500/tokenizer.json +3 -0
- consciousness/checkpoint-500/tokenizer_config.json +14 -0
- consciousness/checkpoint-500/trainer_state.json +534 -0
- consciousness/checkpoint-500/training_args.bin +3 -0
- consciousness/tokenizer.json +3 -0
- consciousness/tokenizer_config.json +14 -0
.gitattributes
CHANGED
|
@@ -49,3 +49,7 @@ philosophy/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
|
| 49 |
quantum/checkpoint-500/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 50 |
quantum/checkpoint-750/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 51 |
quantum/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 49 |
quantum/checkpoint-500/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 50 |
quantum/checkpoint-750/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 51 |
quantum/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
consciousness/checkpoint-1000/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
consciousness/checkpoint-1125/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
consciousness/checkpoint-500/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
consciousness/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
consciousness/README.md
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: meta-llama/Llama-3.1-8B-Instruct
|
| 3 |
+
library_name: peft
|
| 4 |
+
model_name: consciousness
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:meta-llama/Llama-3.1-8B-Instruct
|
| 7 |
+
- lora
|
| 8 |
+
- sft
|
| 9 |
+
- transformers
|
| 10 |
+
- trl
|
| 11 |
+
licence: license
|
| 12 |
+
pipeline_tag: text-generation
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
# Model Card for consciousness
|
| 16 |
+
|
| 17 |
+
This model is a fine-tuned version of [meta-llama/Llama-3.1-8B-Instruct](https://huggingface.co/meta-llama/Llama-3.1-8B-Instruct).
|
| 18 |
+
It has been trained using [TRL](https://github.com/huggingface/trl).
|
| 19 |
+
|
| 20 |
+
## Quick start
|
| 21 |
+
|
| 22 |
+
```python
|
| 23 |
+
from transformers import pipeline
|
| 24 |
+
|
| 25 |
+
question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
|
| 26 |
+
generator = pipeline("text-generation", model="None", device="cuda")
|
| 27 |
+
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
|
| 28 |
+
print(output["generated_text"])
|
| 29 |
+
```
|
| 30 |
+
|
| 31 |
+
## Training procedure
|
| 32 |
+
|
| 33 |
+
|
| 34 |
+
|
| 35 |
+
|
| 36 |
+
|
| 37 |
+
This model was trained with SFT.
|
| 38 |
+
|
| 39 |
+
### Framework versions
|
| 40 |
+
|
| 41 |
+
- PEFT 0.18.1
|
| 42 |
+
- TRL: 0.29.0
|
| 43 |
+
- Transformers: 5.3.0
|
| 44 |
+
- Pytorch: 2.10.0
|
| 45 |
+
- Datasets: 4.6.1
|
| 46 |
+
- Tokenizers: 0.22.2
|
| 47 |
+
|
| 48 |
+
## Citations
|
| 49 |
+
|
| 50 |
+
|
| 51 |
+
|
| 52 |
+
Cite TRL as:
|
| 53 |
+
|
| 54 |
+
```bibtex
|
| 55 |
+
@software{vonwerra2020trl,
|
| 56 |
+
title = {{TRL: Transformers Reinforcement Learning}},
|
| 57 |
+
author = {von Werra, Leandro and Belkada, Younes and Tunstall, Lewis and Beeching, Edward and Thrush, Tristan and Lambert, Nathan and Huang, Shengyi and Rasul, Kashif and Gallouédec, Quentin},
|
| 58 |
+
license = {Apache-2.0},
|
| 59 |
+
url = {https://github.com/huggingface/trl},
|
| 60 |
+
year = {2020}
|
| 61 |
+
}
|
| 62 |
+
```
|
consciousness/adapter_config.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "meta-llama/Llama-3.1-8B-Instruct",
|
| 7 |
+
"bias": "none",
|
| 8 |
+
"corda_config": null,
|
| 9 |
+
"ensure_weight_tying": false,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": false,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 32,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.05,
|
| 22 |
+
"megatron_config": null,
|
| 23 |
+
"megatron_core": "megatron.core",
|
| 24 |
+
"modules_to_save": null,
|
| 25 |
+
"peft_type": "LORA",
|
| 26 |
+
"peft_version": "0.18.1",
|
| 27 |
+
"qalora_group_size": 16,
|
| 28 |
+
"r": 16,
|
| 29 |
+
"rank_pattern": {},
|
| 30 |
+
"revision": null,
|
| 31 |
+
"target_modules": [
|
| 32 |
+
"q_proj",
|
| 33 |
+
"v_proj",
|
| 34 |
+
"k_proj",
|
| 35 |
+
"o_proj"
|
| 36 |
+
],
|
| 37 |
+
"target_parameters": null,
|
| 38 |
+
"task_type": "CAUSAL_LM",
|
| 39 |
+
"trainable_token_indices": null,
|
| 40 |
+
"use_dora": false,
|
| 41 |
+
"use_qalora": false,
|
| 42 |
+
"use_rslora": false
|
| 43 |
+
}
|
consciousness/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:66930f755168eb2cfd2ae1b754fcc51080acdc1050a221f1373d5ff234b23bb6
|
| 3 |
+
size 27297544
|
consciousness/chat_template.jinja
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{{- bos_token }}
|
| 2 |
+
{%- if custom_tools is defined %}
|
| 3 |
+
{%- set tools = custom_tools %}
|
| 4 |
+
{%- endif %}
|
| 5 |
+
{%- if not tools_in_user_message is defined %}
|
| 6 |
+
{%- set tools_in_user_message = true %}
|
| 7 |
+
{%- endif %}
|
| 8 |
+
{%- if not date_string is defined %}
|
| 9 |
+
{%- set date_string = "26 Jul 2024" %}
|
| 10 |
+
{%- endif %}
|
| 11 |
+
{%- if not tools is defined %}
|
| 12 |
+
{%- set tools = none %}
|
| 13 |
+
{%- endif %}
|
| 14 |
+
|
| 15 |
+
{#- This block extracts the system message, so we can slot it into the right place. #}
|
| 16 |
+
{%- if messages[0]['role'] == 'system' %}
|
| 17 |
+
{%- set system_message = messages[0]['content']|trim %}
|
| 18 |
+
{%- set messages = messages[1:] %}
|
| 19 |
+
{%- else %}
|
| 20 |
+
{%- set system_message = "" %}
|
| 21 |
+
{%- endif %}
|
| 22 |
+
|
| 23 |
+
{#- System message + builtin tools #}
|
| 24 |
+
{{- "<|start_header_id|>system<|end_header_id|>\n\n" }}
|
| 25 |
+
{%- if builtin_tools is defined or tools is not none %}
|
| 26 |
+
{{- "Environment: ipython\n" }}
|
| 27 |
+
{%- endif %}
|
| 28 |
+
{%- if builtin_tools is defined %}
|
| 29 |
+
{{- "Tools: " + builtin_tools | reject('equalto', 'code_interpreter') | join(", ") + "\n\n"}}
|
| 30 |
+
{%- endif %}
|
| 31 |
+
{{- "Cutting Knowledge Date: December 2023\n" }}
|
| 32 |
+
{{- "Today Date: " + date_string + "\n\n" }}
|
| 33 |
+
{%- if tools is not none and not tools_in_user_message %}
|
| 34 |
+
{{- "You have access to the following functions. To call a function, please respond with JSON for a function call." }}
|
| 35 |
+
{{- 'Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.' }}
|
| 36 |
+
{{- "Do not use variables.\n\n" }}
|
| 37 |
+
{%- for t in tools %}
|
| 38 |
+
{{- t | tojson(indent=4) }}
|
| 39 |
+
{{- "\n\n" }}
|
| 40 |
+
{%- endfor %}
|
| 41 |
+
{%- endif %}
|
| 42 |
+
{{- system_message }}
|
| 43 |
+
{{- "<|eot_id|>" }}
|
| 44 |
+
|
| 45 |
+
{#- Custom tools are passed in a user message with some extra guidance #}
|
| 46 |
+
{%- if tools_in_user_message and not tools is none %}
|
| 47 |
+
{#- Extract the first user message so we can plug it in here #}
|
| 48 |
+
{%- if messages | length != 0 %}
|
| 49 |
+
{%- set first_user_message = messages[0]['content']|trim %}
|
| 50 |
+
{%- set messages = messages[1:] %}
|
| 51 |
+
{%- else %}
|
| 52 |
+
{{- raise_exception("Cannot put tools in the first user message when there's no first user message!") }}
|
| 53 |
+
{%- endif %}
|
| 54 |
+
{{- '<|start_header_id|>user<|end_header_id|>\n\n' -}}
|
| 55 |
+
{{- "Given the following functions, please respond with a JSON for a function call " }}
|
| 56 |
+
{{- "with its proper arguments that best answers the given prompt.\n\n" }}
|
| 57 |
+
{{- 'Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.' }}
|
| 58 |
+
{{- "Do not use variables.\n\n" }}
|
| 59 |
+
{%- for t in tools %}
|
| 60 |
+
{{- t | tojson(indent=4) }}
|
| 61 |
+
{{- "\n\n" }}
|
| 62 |
+
{%- endfor %}
|
| 63 |
+
{{- first_user_message + "<|eot_id|>"}}
|
| 64 |
+
{%- endif %}
|
| 65 |
+
|
| 66 |
+
{%- for message in messages %}
|
| 67 |
+
{%- if not (message.role == 'ipython' or message.role == 'tool' or 'tool_calls' in message) %}
|
| 68 |
+
{{- '<|start_header_id|>' + message['role'] + '<|end_header_id|>\n\n'+ message['content'] | trim + '<|eot_id|>' }}
|
| 69 |
+
{%- elif 'tool_calls' in message %}
|
| 70 |
+
{%- if not message.tool_calls|length == 1 %}
|
| 71 |
+
{{- raise_exception("This model only supports single tool-calls at once!") }}
|
| 72 |
+
{%- endif %}
|
| 73 |
+
{%- set tool_call = message.tool_calls[0].function %}
|
| 74 |
+
{%- if builtin_tools is defined and tool_call.name in builtin_tools %}
|
| 75 |
+
{{- '<|start_header_id|>assistant<|end_header_id|>\n\n' -}}
|
| 76 |
+
{{- "<|python_tag|>" + tool_call.name + ".call(" }}
|
| 77 |
+
{%- for arg_name, arg_val in tool_call.arguments | items %}
|
| 78 |
+
{{- arg_name + '="' + arg_val + '"' }}
|
| 79 |
+
{%- if not loop.last %}
|
| 80 |
+
{{- ", " }}
|
| 81 |
+
{%- endif %}
|
| 82 |
+
{%- endfor %}
|
| 83 |
+
{{- ")" }}
|
| 84 |
+
{%- else %}
|
| 85 |
+
{{- '<|start_header_id|>assistant<|end_header_id|>\n\n' -}}
|
| 86 |
+
{{- '{"name": "' + tool_call.name + '", ' }}
|
| 87 |
+
{{- '"parameters": ' }}
|
| 88 |
+
{{- tool_call.arguments | tojson }}
|
| 89 |
+
{{- "}" }}
|
| 90 |
+
{%- endif %}
|
| 91 |
+
{%- if builtin_tools is defined %}
|
| 92 |
+
{#- This means we're in ipython mode #}
|
| 93 |
+
{{- "<|eom_id|>" }}
|
| 94 |
+
{%- else %}
|
| 95 |
+
{{- "<|eot_id|>" }}
|
| 96 |
+
{%- endif %}
|
| 97 |
+
{%- elif message.role == "tool" or message.role == "ipython" %}
|
| 98 |
+
{{- "<|start_header_id|>ipython<|end_header_id|>\n\n" }}
|
| 99 |
+
{%- if message.content is mapping or message.content is iterable %}
|
| 100 |
+
{{- message.content | tojson }}
|
| 101 |
+
{%- else %}
|
| 102 |
+
{{- message.content }}
|
| 103 |
+
{%- endif %}
|
| 104 |
+
{{- "<|eot_id|>" }}
|
| 105 |
+
{%- endif %}
|
| 106 |
+
{%- endfor %}
|
| 107 |
+
{%- if add_generation_prompt %}
|
| 108 |
+
{{- '<|start_header_id|>assistant<|end_header_id|>\n\n' }}
|
| 109 |
+
{%- endif %}
|
consciousness/checkpoint-1000/README.md
ADDED
|
@@ -0,0 +1,209 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: meta-llama/Llama-3.1-8B-Instruct
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:meta-llama/Llama-3.1-8B-Instruct
|
| 7 |
+
- lora
|
| 8 |
+
- sft
|
| 9 |
+
- transformers
|
| 10 |
+
- trl
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# Model Card for Model ID
|
| 14 |
+
|
| 15 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
## Model Details
|
| 20 |
+
|
| 21 |
+
### Model Description
|
| 22 |
+
|
| 23 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
- **Developed by:** [More Information Needed]
|
| 28 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 29 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 30 |
+
- **Model type:** [More Information Needed]
|
| 31 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 32 |
+
- **License:** [More Information Needed]
|
| 33 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 34 |
+
|
| 35 |
+
### Model Sources [optional]
|
| 36 |
+
|
| 37 |
+
<!-- Provide the basic links for the model. -->
|
| 38 |
+
|
| 39 |
+
- **Repository:** [More Information Needed]
|
| 40 |
+
- **Paper [optional]:** [More Information Needed]
|
| 41 |
+
- **Demo [optional]:** [More Information Needed]
|
| 42 |
+
|
| 43 |
+
## Uses
|
| 44 |
+
|
| 45 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 46 |
+
|
| 47 |
+
### Direct Use
|
| 48 |
+
|
| 49 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 50 |
+
|
| 51 |
+
[More Information Needed]
|
| 52 |
+
|
| 53 |
+
### Downstream Use [optional]
|
| 54 |
+
|
| 55 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 56 |
+
|
| 57 |
+
[More Information Needed]
|
| 58 |
+
|
| 59 |
+
### Out-of-Scope Use
|
| 60 |
+
|
| 61 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 62 |
+
|
| 63 |
+
[More Information Needed]
|
| 64 |
+
|
| 65 |
+
## Bias, Risks, and Limitations
|
| 66 |
+
|
| 67 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 68 |
+
|
| 69 |
+
[More Information Needed]
|
| 70 |
+
|
| 71 |
+
### Recommendations
|
| 72 |
+
|
| 73 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 74 |
+
|
| 75 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 76 |
+
|
| 77 |
+
## How to Get Started with the Model
|
| 78 |
+
|
| 79 |
+
Use the code below to get started with the model.
|
| 80 |
+
|
| 81 |
+
[More Information Needed]
|
| 82 |
+
|
| 83 |
+
## Training Details
|
| 84 |
+
|
| 85 |
+
### Training Data
|
| 86 |
+
|
| 87 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 88 |
+
|
| 89 |
+
[More Information Needed]
|
| 90 |
+
|
| 91 |
+
### Training Procedure
|
| 92 |
+
|
| 93 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 94 |
+
|
| 95 |
+
#### Preprocessing [optional]
|
| 96 |
+
|
| 97 |
+
[More Information Needed]
|
| 98 |
+
|
| 99 |
+
|
| 100 |
+
#### Training Hyperparameters
|
| 101 |
+
|
| 102 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 103 |
+
|
| 104 |
+
#### Speeds, Sizes, Times [optional]
|
| 105 |
+
|
| 106 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 107 |
+
|
| 108 |
+
[More Information Needed]
|
| 109 |
+
|
| 110 |
+
## Evaluation
|
| 111 |
+
|
| 112 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 113 |
+
|
| 114 |
+
### Testing Data, Factors & Metrics
|
| 115 |
+
|
| 116 |
+
#### Testing Data
|
| 117 |
+
|
| 118 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 119 |
+
|
| 120 |
+
[More Information Needed]
|
| 121 |
+
|
| 122 |
+
#### Factors
|
| 123 |
+
|
| 124 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 125 |
+
|
| 126 |
+
[More Information Needed]
|
| 127 |
+
|
| 128 |
+
#### Metrics
|
| 129 |
+
|
| 130 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 131 |
+
|
| 132 |
+
[More Information Needed]
|
| 133 |
+
|
| 134 |
+
### Results
|
| 135 |
+
|
| 136 |
+
[More Information Needed]
|
| 137 |
+
|
| 138 |
+
#### Summary
|
| 139 |
+
|
| 140 |
+
|
| 141 |
+
|
| 142 |
+
## Model Examination [optional]
|
| 143 |
+
|
| 144 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 145 |
+
|
| 146 |
+
[More Information Needed]
|
| 147 |
+
|
| 148 |
+
## Environmental Impact
|
| 149 |
+
|
| 150 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 151 |
+
|
| 152 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 153 |
+
|
| 154 |
+
- **Hardware Type:** [More Information Needed]
|
| 155 |
+
- **Hours used:** [More Information Needed]
|
| 156 |
+
- **Cloud Provider:** [More Information Needed]
|
| 157 |
+
- **Compute Region:** [More Information Needed]
|
| 158 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 159 |
+
|
| 160 |
+
## Technical Specifications [optional]
|
| 161 |
+
|
| 162 |
+
### Model Architecture and Objective
|
| 163 |
+
|
| 164 |
+
[More Information Needed]
|
| 165 |
+
|
| 166 |
+
### Compute Infrastructure
|
| 167 |
+
|
| 168 |
+
[More Information Needed]
|
| 169 |
+
|
| 170 |
+
#### Hardware
|
| 171 |
+
|
| 172 |
+
[More Information Needed]
|
| 173 |
+
|
| 174 |
+
#### Software
|
| 175 |
+
|
| 176 |
+
[More Information Needed]
|
| 177 |
+
|
| 178 |
+
## Citation [optional]
|
| 179 |
+
|
| 180 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 181 |
+
|
| 182 |
+
**BibTeX:**
|
| 183 |
+
|
| 184 |
+
[More Information Needed]
|
| 185 |
+
|
| 186 |
+
**APA:**
|
| 187 |
+
|
| 188 |
+
[More Information Needed]
|
| 189 |
+
|
| 190 |
+
## Glossary [optional]
|
| 191 |
+
|
| 192 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 193 |
+
|
| 194 |
+
[More Information Needed]
|
| 195 |
+
|
| 196 |
+
## More Information [optional]
|
| 197 |
+
|
| 198 |
+
[More Information Needed]
|
| 199 |
+
|
| 200 |
+
## Model Card Authors [optional]
|
| 201 |
+
|
| 202 |
+
[More Information Needed]
|
| 203 |
+
|
| 204 |
+
## Model Card Contact
|
| 205 |
+
|
| 206 |
+
[More Information Needed]
|
| 207 |
+
### Framework versions
|
| 208 |
+
|
| 209 |
+
- PEFT 0.18.1
|
consciousness/checkpoint-1000/adapter_config.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "meta-llama/Llama-3.1-8B-Instruct",
|
| 7 |
+
"bias": "none",
|
| 8 |
+
"corda_config": null,
|
| 9 |
+
"ensure_weight_tying": false,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": false,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 32,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.05,
|
| 22 |
+
"megatron_config": null,
|
| 23 |
+
"megatron_core": "megatron.core",
|
| 24 |
+
"modules_to_save": null,
|
| 25 |
+
"peft_type": "LORA",
|
| 26 |
+
"peft_version": "0.18.1",
|
| 27 |
+
"qalora_group_size": 16,
|
| 28 |
+
"r": 16,
|
| 29 |
+
"rank_pattern": {},
|
| 30 |
+
"revision": null,
|
| 31 |
+
"target_modules": [
|
| 32 |
+
"q_proj",
|
| 33 |
+
"v_proj",
|
| 34 |
+
"k_proj",
|
| 35 |
+
"o_proj"
|
| 36 |
+
],
|
| 37 |
+
"target_parameters": null,
|
| 38 |
+
"task_type": "CAUSAL_LM",
|
| 39 |
+
"trainable_token_indices": null,
|
| 40 |
+
"use_dora": false,
|
| 41 |
+
"use_qalora": false,
|
| 42 |
+
"use_rslora": false
|
| 43 |
+
}
|
consciousness/checkpoint-1000/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:78d689a4a2c11ef70aa9a78685560bcb7511741f7dd40c730cfbd0688db400ca
|
| 3 |
+
size 27297544
|
consciousness/checkpoint-1000/chat_template.jinja
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{{- bos_token }}
|
| 2 |
+
{%- if custom_tools is defined %}
|
| 3 |
+
{%- set tools = custom_tools %}
|
| 4 |
+
{%- endif %}
|
| 5 |
+
{%- if not tools_in_user_message is defined %}
|
| 6 |
+
{%- set tools_in_user_message = true %}
|
| 7 |
+
{%- endif %}
|
| 8 |
+
{%- if not date_string is defined %}
|
| 9 |
+
{%- set date_string = "26 Jul 2024" %}
|
| 10 |
+
{%- endif %}
|
| 11 |
+
{%- if not tools is defined %}
|
| 12 |
+
{%- set tools = none %}
|
| 13 |
+
{%- endif %}
|
| 14 |
+
|
| 15 |
+
{#- This block extracts the system message, so we can slot it into the right place. #}
|
| 16 |
+
{%- if messages[0]['role'] == 'system' %}
|
| 17 |
+
{%- set system_message = messages[0]['content']|trim %}
|
| 18 |
+
{%- set messages = messages[1:] %}
|
| 19 |
+
{%- else %}
|
| 20 |
+
{%- set system_message = "" %}
|
| 21 |
+
{%- endif %}
|
| 22 |
+
|
| 23 |
+
{#- System message + builtin tools #}
|
| 24 |
+
{{- "<|start_header_id|>system<|end_header_id|>\n\n" }}
|
| 25 |
+
{%- if builtin_tools is defined or tools is not none %}
|
| 26 |
+
{{- "Environment: ipython\n" }}
|
| 27 |
+
{%- endif %}
|
| 28 |
+
{%- if builtin_tools is defined %}
|
| 29 |
+
{{- "Tools: " + builtin_tools | reject('equalto', 'code_interpreter') | join(", ") + "\n\n"}}
|
| 30 |
+
{%- endif %}
|
| 31 |
+
{{- "Cutting Knowledge Date: December 2023\n" }}
|
| 32 |
+
{{- "Today Date: " + date_string + "\n\n" }}
|
| 33 |
+
{%- if tools is not none and not tools_in_user_message %}
|
| 34 |
+
{{- "You have access to the following functions. To call a function, please respond with JSON for a function call." }}
|
| 35 |
+
{{- 'Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.' }}
|
| 36 |
+
{{- "Do not use variables.\n\n" }}
|
| 37 |
+
{%- for t in tools %}
|
| 38 |
+
{{- t | tojson(indent=4) }}
|
| 39 |
+
{{- "\n\n" }}
|
| 40 |
+
{%- endfor %}
|
| 41 |
+
{%- endif %}
|
| 42 |
+
{{- system_message }}
|
| 43 |
+
{{- "<|eot_id|>" }}
|
| 44 |
+
|
| 45 |
+
{#- Custom tools are passed in a user message with some extra guidance #}
|
| 46 |
+
{%- if tools_in_user_message and not tools is none %}
|
| 47 |
+
{#- Extract the first user message so we can plug it in here #}
|
| 48 |
+
{%- if messages | length != 0 %}
|
| 49 |
+
{%- set first_user_message = messages[0]['content']|trim %}
|
| 50 |
+
{%- set messages = messages[1:] %}
|
| 51 |
+
{%- else %}
|
| 52 |
+
{{- raise_exception("Cannot put tools in the first user message when there's no first user message!") }}
|
| 53 |
+
{%- endif %}
|
| 54 |
+
{{- '<|start_header_id|>user<|end_header_id|>\n\n' -}}
|
| 55 |
+
{{- "Given the following functions, please respond with a JSON for a function call " }}
|
| 56 |
+
{{- "with its proper arguments that best answers the given prompt.\n\n" }}
|
| 57 |
+
{{- 'Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.' }}
|
| 58 |
+
{{- "Do not use variables.\n\n" }}
|
| 59 |
+
{%- for t in tools %}
|
| 60 |
+
{{- t | tojson(indent=4) }}
|
| 61 |
+
{{- "\n\n" }}
|
| 62 |
+
{%- endfor %}
|
| 63 |
+
{{- first_user_message + "<|eot_id|>"}}
|
| 64 |
+
{%- endif %}
|
| 65 |
+
|
| 66 |
+
{%- for message in messages %}
|
| 67 |
+
{%- if not (message.role == 'ipython' or message.role == 'tool' or 'tool_calls' in message) %}
|
| 68 |
+
{{- '<|start_header_id|>' + message['role'] + '<|end_header_id|>\n\n'+ message['content'] | trim + '<|eot_id|>' }}
|
| 69 |
+
{%- elif 'tool_calls' in message %}
|
| 70 |
+
{%- if not message.tool_calls|length == 1 %}
|
| 71 |
+
{{- raise_exception("This model only supports single tool-calls at once!") }}
|
| 72 |
+
{%- endif %}
|
| 73 |
+
{%- set tool_call = message.tool_calls[0].function %}
|
| 74 |
+
{%- if builtin_tools is defined and tool_call.name in builtin_tools %}
|
| 75 |
+
{{- '<|start_header_id|>assistant<|end_header_id|>\n\n' -}}
|
| 76 |
+
{{- "<|python_tag|>" + tool_call.name + ".call(" }}
|
| 77 |
+
{%- for arg_name, arg_val in tool_call.arguments | items %}
|
| 78 |
+
{{- arg_name + '="' + arg_val + '"' }}
|
| 79 |
+
{%- if not loop.last %}
|
| 80 |
+
{{- ", " }}
|
| 81 |
+
{%- endif %}
|
| 82 |
+
{%- endfor %}
|
| 83 |
+
{{- ")" }}
|
| 84 |
+
{%- else %}
|
| 85 |
+
{{- '<|start_header_id|>assistant<|end_header_id|>\n\n' -}}
|
| 86 |
+
{{- '{"name": "' + tool_call.name + '", ' }}
|
| 87 |
+
{{- '"parameters": ' }}
|
| 88 |
+
{{- tool_call.arguments | tojson }}
|
| 89 |
+
{{- "}" }}
|
| 90 |
+
{%- endif %}
|
| 91 |
+
{%- if builtin_tools is defined %}
|
| 92 |
+
{#- This means we're in ipython mode #}
|
| 93 |
+
{{- "<|eom_id|>" }}
|
| 94 |
+
{%- else %}
|
| 95 |
+
{{- "<|eot_id|>" }}
|
| 96 |
+
{%- endif %}
|
| 97 |
+
{%- elif message.role == "tool" or message.role == "ipython" %}
|
| 98 |
+
{{- "<|start_header_id|>ipython<|end_header_id|>\n\n" }}
|
| 99 |
+
{%- if message.content is mapping or message.content is iterable %}
|
| 100 |
+
{{- message.content | tojson }}
|
| 101 |
+
{%- else %}
|
| 102 |
+
{{- message.content }}
|
| 103 |
+
{%- endif %}
|
| 104 |
+
{{- "<|eot_id|>" }}
|
| 105 |
+
{%- endif %}
|
| 106 |
+
{%- endfor %}
|
| 107 |
+
{%- if add_generation_prompt %}
|
| 108 |
+
{{- '<|start_header_id|>assistant<|end_header_id|>\n\n' }}
|
| 109 |
+
{%- endif %}
|
consciousness/checkpoint-1000/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3905673d0212fe2aa3ed16181c33da0e6644dbcab057c5b331bfde9b981f9b09
|
| 3 |
+
size 54745547
|
consciousness/checkpoint-1000/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:20a0e97a0b18c6c63524b5e2d5d036565a39ab9e6e15437df6c458f81b3b9ce7
|
| 3 |
+
size 14645
|
consciousness/checkpoint-1000/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ede3d2a514005ed80690b07770eb75aab9fd0b335517babd631dfbc1716d09fd
|
| 3 |
+
size 1465
|
consciousness/checkpoint-1000/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6b9e4e7fb171f92fd137b777cc2714bf87d11576700a1dcd7a399e7bbe39537b
|
| 3 |
+
size 17209920
|
consciousness/checkpoint-1000/tokenizer_config.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"backend": "tokenizers",
|
| 3 |
+
"bos_token": "<|begin_of_text|>",
|
| 4 |
+
"clean_up_tokenization_spaces": true,
|
| 5 |
+
"eos_token": "<|eot_id|>",
|
| 6 |
+
"is_local": false,
|
| 7 |
+
"model_input_names": [
|
| 8 |
+
"input_ids",
|
| 9 |
+
"attention_mask"
|
| 10 |
+
],
|
| 11 |
+
"model_max_length": 131072,
|
| 12 |
+
"pad_token": "<|eot_id|>",
|
| 13 |
+
"tokenizer_class": "TokenizersBackend"
|
| 14 |
+
}
|
consciousness/checkpoint-1000/trainer_state.json
ADDED
|
@@ -0,0 +1,1034 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 2.6666666666666665,
|
| 6 |
+
"eval_steps": 500,
|
| 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": 2.8901569664478304,
|
| 14 |
+
"epoch": 0.02666666666666667,
|
| 15 |
+
"grad_norm": 0.267578125,
|
| 16 |
+
"learning_rate": 5.294117647058824e-05,
|
| 17 |
+
"loss": 2.9965847015380858,
|
| 18 |
+
"mean_token_accuracy": 0.4477638125419617,
|
| 19 |
+
"num_tokens": 57327.0,
|
| 20 |
+
"step": 10
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"entropy": 2.431850343942642,
|
| 24 |
+
"epoch": 0.05333333333333334,
|
| 25 |
+
"grad_norm": 0.255859375,
|
| 26 |
+
"learning_rate": 0.00011176470588235294,
|
| 27 |
+
"loss": 2.636348533630371,
|
| 28 |
+
"mean_token_accuracy": 0.4853471860289574,
|
| 29 |
+
"num_tokens": 115513.0,
|
| 30 |
+
"step": 20
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"entropy": 2.0503339916467667,
|
| 34 |
+
"epoch": 0.08,
|
| 35 |
+
"grad_norm": 0.2734375,
|
| 36 |
+
"learning_rate": 0.00017058823529411766,
|
| 37 |
+
"loss": 1.9743734359741212,
|
| 38 |
+
"mean_token_accuracy": 0.5749435268342495,
|
| 39 |
+
"num_tokens": 173246.0,
|
| 40 |
+
"step": 30
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"entropy": 1.4122730612754821,
|
| 44 |
+
"epoch": 0.10666666666666667,
|
| 45 |
+
"grad_norm": 0.357421875,
|
| 46 |
+
"learning_rate": 0.00019908340971585702,
|
| 47 |
+
"loss": 1.3748690605163574,
|
| 48 |
+
"mean_token_accuracy": 0.6867235794663429,
|
| 49 |
+
"num_tokens": 231278.0,
|
| 50 |
+
"step": 40
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"entropy": 1.0256530404090882,
|
| 54 |
+
"epoch": 0.13333333333333333,
|
| 55 |
+
"grad_norm": 0.359375,
|
| 56 |
+
"learning_rate": 0.00019725022914757106,
|
| 57 |
+
"loss": 0.9704485893249511,
|
| 58 |
+
"mean_token_accuracy": 0.7766638442873954,
|
| 59 |
+
"num_tokens": 288393.0,
|
| 60 |
+
"step": 50
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"entropy": 0.7456447497010231,
|
| 64 |
+
"epoch": 0.16,
|
| 65 |
+
"grad_norm": 0.328125,
|
| 66 |
+
"learning_rate": 0.00019541704857928507,
|
| 67 |
+
"loss": 0.6671554565429687,
|
| 68 |
+
"mean_token_accuracy": 0.845753838121891,
|
| 69 |
+
"num_tokens": 346339.0,
|
| 70 |
+
"step": 60
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"entropy": 0.537605831772089,
|
| 74 |
+
"epoch": 0.18666666666666668,
|
| 75 |
+
"grad_norm": 0.328125,
|
| 76 |
+
"learning_rate": 0.00019358386801099912,
|
| 77 |
+
"loss": 0.4658506393432617,
|
| 78 |
+
"mean_token_accuracy": 0.8909643113613128,
|
| 79 |
+
"num_tokens": 404015.0,
|
| 80 |
+
"step": 70
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"entropy": 0.37200461626052855,
|
| 84 |
+
"epoch": 0.21333333333333335,
|
| 85 |
+
"grad_norm": 0.283203125,
|
| 86 |
+
"learning_rate": 0.0001917506874427131,
|
| 87 |
+
"loss": 0.3085629940032959,
|
| 88 |
+
"mean_token_accuracy": 0.9280218213796616,
|
| 89 |
+
"num_tokens": 461115.0,
|
| 90 |
+
"step": 80
|
| 91 |
+
},
|
| 92 |
+
{
|
| 93 |
+
"entropy": 0.2607572071254253,
|
| 94 |
+
"epoch": 0.24,
|
| 95 |
+
"grad_norm": 0.267578125,
|
| 96 |
+
"learning_rate": 0.00018991750687442712,
|
| 97 |
+
"loss": 0.21192119121551514,
|
| 98 |
+
"mean_token_accuracy": 0.9511988922953606,
|
| 99 |
+
"num_tokens": 518926.0,
|
| 100 |
+
"step": 90
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"entropy": 0.21099306046962737,
|
| 104 |
+
"epoch": 0.26666666666666666,
|
| 105 |
+
"grad_norm": 0.2021484375,
|
| 106 |
+
"learning_rate": 0.00018808432630614116,
|
| 107 |
+
"loss": 0.1747212290763855,
|
| 108 |
+
"mean_token_accuracy": 0.9576459184288979,
|
| 109 |
+
"num_tokens": 577120.0,
|
| 110 |
+
"step": 100
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"entropy": 0.1670930277556181,
|
| 114 |
+
"epoch": 0.29333333333333333,
|
| 115 |
+
"grad_norm": 0.2431640625,
|
| 116 |
+
"learning_rate": 0.00018625114573785518,
|
| 117 |
+
"loss": 0.14222853183746337,
|
| 118 |
+
"mean_token_accuracy": 0.9636133790016175,
|
| 119 |
+
"num_tokens": 635382.0,
|
| 120 |
+
"step": 110
|
| 121 |
+
},
|
| 122 |
+
{
|
| 123 |
+
"entropy": 0.15717535726726056,
|
| 124 |
+
"epoch": 0.32,
|
| 125 |
+
"grad_norm": 0.12890625,
|
| 126 |
+
"learning_rate": 0.00018441796516956922,
|
| 127 |
+
"loss": 0.13076614141464232,
|
| 128 |
+
"mean_token_accuracy": 0.9650501102209091,
|
| 129 |
+
"num_tokens": 692813.0,
|
| 130 |
+
"step": 120
|
| 131 |
+
},
|
| 132 |
+
{
|
| 133 |
+
"entropy": 0.14444066677242517,
|
| 134 |
+
"epoch": 0.3466666666666667,
|
| 135 |
+
"grad_norm": 0.1640625,
|
| 136 |
+
"learning_rate": 0.00018258478460128323,
|
| 137 |
+
"loss": 0.11674572229385376,
|
| 138 |
+
"mean_token_accuracy": 0.9665236040949822,
|
| 139 |
+
"num_tokens": 750815.0,
|
| 140 |
+
"step": 130
|
| 141 |
+
},
|
| 142 |
+
{
|
| 143 |
+
"entropy": 0.1316229362040758,
|
| 144 |
+
"epoch": 0.37333333333333335,
|
| 145 |
+
"grad_norm": 0.177734375,
|
| 146 |
+
"learning_rate": 0.00018075160403299728,
|
| 147 |
+
"loss": 0.10633546113967896,
|
| 148 |
+
"mean_token_accuracy": 0.9686767488718033,
|
| 149 |
+
"num_tokens": 809607.0,
|
| 150 |
+
"step": 140
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"entropy": 0.12511782981455327,
|
| 154 |
+
"epoch": 0.4,
|
| 155 |
+
"grad_norm": 0.1103515625,
|
| 156 |
+
"learning_rate": 0.0001789184234647113,
|
| 157 |
+
"loss": 0.10267382860183716,
|
| 158 |
+
"mean_token_accuracy": 0.9692023977637291,
|
| 159 |
+
"num_tokens": 867374.0,
|
| 160 |
+
"step": 150
|
| 161 |
+
},
|
| 162 |
+
{
|
| 163 |
+
"entropy": 0.1147347992286086,
|
| 164 |
+
"epoch": 0.4266666666666667,
|
| 165 |
+
"grad_norm": 0.10302734375,
|
| 166 |
+
"learning_rate": 0.0001770852428964253,
|
| 167 |
+
"loss": 0.09604376554489136,
|
| 168 |
+
"mean_token_accuracy": 0.9704543471336364,
|
| 169 |
+
"num_tokens": 925873.0,
|
| 170 |
+
"step": 160
|
| 171 |
+
},
|
| 172 |
+
{
|
| 173 |
+
"entropy": 0.11136603765189648,
|
| 174 |
+
"epoch": 0.4533333333333333,
|
| 175 |
+
"grad_norm": 0.12158203125,
|
| 176 |
+
"learning_rate": 0.00017525206232813932,
|
| 177 |
+
"loss": 0.09679205417633056,
|
| 178 |
+
"mean_token_accuracy": 0.9701795622706413,
|
| 179 |
+
"num_tokens": 983653.0,
|
| 180 |
+
"step": 170
|
| 181 |
+
},
|
| 182 |
+
{
|
| 183 |
+
"entropy": 0.10962173249572515,
|
| 184 |
+
"epoch": 0.48,
|
| 185 |
+
"grad_norm": 0.10986328125,
|
| 186 |
+
"learning_rate": 0.00017341888175985334,
|
| 187 |
+
"loss": 0.09156813025474549,
|
| 188 |
+
"mean_token_accuracy": 0.971354915201664,
|
| 189 |
+
"num_tokens": 1041996.0,
|
| 190 |
+
"step": 180
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"entropy": 0.10233879294246435,
|
| 194 |
+
"epoch": 0.5066666666666667,
|
| 195 |
+
"grad_norm": 0.2431640625,
|
| 196 |
+
"learning_rate": 0.00017158570119156738,
|
| 197 |
+
"loss": 0.09264941811561585,
|
| 198 |
+
"mean_token_accuracy": 0.9716016605496407,
|
| 199 |
+
"num_tokens": 1100105.0,
|
| 200 |
+
"step": 190
|
| 201 |
+
},
|
| 202 |
+
{
|
| 203 |
+
"entropy": 0.10874027330428362,
|
| 204 |
+
"epoch": 0.5333333333333333,
|
| 205 |
+
"grad_norm": 0.103515625,
|
| 206 |
+
"learning_rate": 0.0001697525206232814,
|
| 207 |
+
"loss": 0.09393113255500793,
|
| 208 |
+
"mean_token_accuracy": 0.9707169815897941,
|
| 209 |
+
"num_tokens": 1157940.0,
|
| 210 |
+
"step": 200
|
| 211 |
+
},
|
| 212 |
+
{
|
| 213 |
+
"entropy": 0.10715384036302567,
|
| 214 |
+
"epoch": 0.56,
|
| 215 |
+
"grad_norm": 0.0927734375,
|
| 216 |
+
"learning_rate": 0.00016791934005499544,
|
| 217 |
+
"loss": 0.08979941606521606,
|
| 218 |
+
"mean_token_accuracy": 0.9710627257823944,
|
| 219 |
+
"num_tokens": 1216048.0,
|
| 220 |
+
"step": 210
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"entropy": 0.09897389095276594,
|
| 224 |
+
"epoch": 0.5866666666666667,
|
| 225 |
+
"grad_norm": 0.1005859375,
|
| 226 |
+
"learning_rate": 0.00016608615948670945,
|
| 227 |
+
"loss": 0.08646941781044007,
|
| 228 |
+
"mean_token_accuracy": 0.9712389498949051,
|
| 229 |
+
"num_tokens": 1274357.0,
|
| 230 |
+
"step": 220
|
| 231 |
+
},
|
| 232 |
+
{
|
| 233 |
+
"entropy": 0.09603469483554364,
|
| 234 |
+
"epoch": 0.6133333333333333,
|
| 235 |
+
"grad_norm": 0.09716796875,
|
| 236 |
+
"learning_rate": 0.0001642529789184235,
|
| 237 |
+
"loss": 0.08556437492370605,
|
| 238 |
+
"mean_token_accuracy": 0.9711127072572708,
|
| 239 |
+
"num_tokens": 1332152.0,
|
| 240 |
+
"step": 230
|
| 241 |
+
},
|
| 242 |
+
{
|
| 243 |
+
"entropy": 0.09263445399701595,
|
| 244 |
+
"epoch": 0.64,
|
| 245 |
+
"grad_norm": 0.1396484375,
|
| 246 |
+
"learning_rate": 0.0001624197983501375,
|
| 247 |
+
"loss": 0.08339133858680725,
|
| 248 |
+
"mean_token_accuracy": 0.9719239071011543,
|
| 249 |
+
"num_tokens": 1389574.0,
|
| 250 |
+
"step": 240
|
| 251 |
+
},
|
| 252 |
+
{
|
| 253 |
+
"entropy": 0.09686502479016781,
|
| 254 |
+
"epoch": 0.6666666666666666,
|
| 255 |
+
"grad_norm": 0.0712890625,
|
| 256 |
+
"learning_rate": 0.00016058661778185152,
|
| 257 |
+
"loss": 0.08281562328338624,
|
| 258 |
+
"mean_token_accuracy": 0.9720177337527275,
|
| 259 |
+
"num_tokens": 1447409.0,
|
| 260 |
+
"step": 250
|
| 261 |
+
},
|
| 262 |
+
{
|
| 263 |
+
"entropy": 0.08692479655146598,
|
| 264 |
+
"epoch": 0.6933333333333334,
|
| 265 |
+
"grad_norm": 0.0830078125,
|
| 266 |
+
"learning_rate": 0.00015875343721356554,
|
| 267 |
+
"loss": 0.08078550696372985,
|
| 268 |
+
"mean_token_accuracy": 0.9726089149713516,
|
| 269 |
+
"num_tokens": 1506058.0,
|
| 270 |
+
"step": 260
|
| 271 |
+
},
|
| 272 |
+
{
|
| 273 |
+
"entropy": 0.09034751150757074,
|
| 274 |
+
"epoch": 0.72,
|
| 275 |
+
"grad_norm": 0.08935546875,
|
| 276 |
+
"learning_rate": 0.00015692025664527955,
|
| 277 |
+
"loss": 0.08023000955581665,
|
| 278 |
+
"mean_token_accuracy": 0.9725215956568718,
|
| 279 |
+
"num_tokens": 1563817.0,
|
| 280 |
+
"step": 270
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"entropy": 0.08724061641842126,
|
| 284 |
+
"epoch": 0.7466666666666667,
|
| 285 |
+
"grad_norm": 0.09423828125,
|
| 286 |
+
"learning_rate": 0.0001550870760769936,
|
| 287 |
+
"loss": 0.0812032699584961,
|
| 288 |
+
"mean_token_accuracy": 0.9722012594342232,
|
| 289 |
+
"num_tokens": 1621737.0,
|
| 290 |
+
"step": 280
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"entropy": 0.08758355937898159,
|
| 294 |
+
"epoch": 0.7733333333333333,
|
| 295 |
+
"grad_norm": 0.2099609375,
|
| 296 |
+
"learning_rate": 0.0001532538955087076,
|
| 297 |
+
"loss": 0.08142906427383423,
|
| 298 |
+
"mean_token_accuracy": 0.9718389093875885,
|
| 299 |
+
"num_tokens": 1679970.0,
|
| 300 |
+
"step": 290
|
| 301 |
+
},
|
| 302 |
+
{
|
| 303 |
+
"entropy": 0.08803936429321765,
|
| 304 |
+
"epoch": 0.8,
|
| 305 |
+
"grad_norm": 0.12451171875,
|
| 306 |
+
"learning_rate": 0.00015142071494042165,
|
| 307 |
+
"loss": 0.0806335985660553,
|
| 308 |
+
"mean_token_accuracy": 0.9723069176077843,
|
| 309 |
+
"num_tokens": 1738304.0,
|
| 310 |
+
"step": 300
|
| 311 |
+
},
|
| 312 |
+
{
|
| 313 |
+
"entropy": 0.0896342158317566,
|
| 314 |
+
"epoch": 0.8266666666666667,
|
| 315 |
+
"grad_norm": 0.059814453125,
|
| 316 |
+
"learning_rate": 0.00014958753437213567,
|
| 317 |
+
"loss": 0.08014391660690308,
|
| 318 |
+
"mean_token_accuracy": 0.9721709281206131,
|
| 319 |
+
"num_tokens": 1795881.0,
|
| 320 |
+
"step": 310
|
| 321 |
+
},
|
| 322 |
+
{
|
| 323 |
+
"entropy": 0.08054284229874611,
|
| 324 |
+
"epoch": 0.8533333333333334,
|
| 325 |
+
"grad_norm": 0.09033203125,
|
| 326 |
+
"learning_rate": 0.00014775435380384968,
|
| 327 |
+
"loss": 0.07684423327445984,
|
| 328 |
+
"mean_token_accuracy": 0.9731693744659424,
|
| 329 |
+
"num_tokens": 1854853.0,
|
| 330 |
+
"step": 320
|
| 331 |
+
},
|
| 332 |
+
{
|
| 333 |
+
"entropy": 0.0840398171916604,
|
| 334 |
+
"epoch": 0.88,
|
| 335 |
+
"grad_norm": 0.05224609375,
|
| 336 |
+
"learning_rate": 0.00014592117323556373,
|
| 337 |
+
"loss": 0.07634277939796448,
|
| 338 |
+
"mean_token_accuracy": 0.9732364892959595,
|
| 339 |
+
"num_tokens": 1912939.0,
|
| 340 |
+
"step": 330
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"entropy": 0.08260406106710434,
|
| 344 |
+
"epoch": 0.9066666666666666,
|
| 345 |
+
"grad_norm": 0.072265625,
|
| 346 |
+
"learning_rate": 0.00014408799266727771,
|
| 347 |
+
"loss": 0.076292884349823,
|
| 348 |
+
"mean_token_accuracy": 0.9736541777849197,
|
| 349 |
+
"num_tokens": 1971345.0,
|
| 350 |
+
"step": 340
|
| 351 |
+
},
|
| 352 |
+
{
|
| 353 |
+
"entropy": 0.08077720124274493,
|
| 354 |
+
"epoch": 0.9333333333333333,
|
| 355 |
+
"grad_norm": 0.057373046875,
|
| 356 |
+
"learning_rate": 0.00014225481209899176,
|
| 357 |
+
"loss": 0.07518362402915954,
|
| 358 |
+
"mean_token_accuracy": 0.9735523566603661,
|
| 359 |
+
"num_tokens": 2029618.0,
|
| 360 |
+
"step": 350
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"entropy": 0.0814354794099927,
|
| 364 |
+
"epoch": 0.96,
|
| 365 |
+
"grad_norm": 0.087890625,
|
| 366 |
+
"learning_rate": 0.00014042163153070577,
|
| 367 |
+
"loss": 0.07500824928283692,
|
| 368 |
+
"mean_token_accuracy": 0.9733900666236878,
|
| 369 |
+
"num_tokens": 2088198.0,
|
| 370 |
+
"step": 360
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"entropy": 0.08081495910882949,
|
| 374 |
+
"epoch": 0.9866666666666667,
|
| 375 |
+
"grad_norm": 0.05810546875,
|
| 376 |
+
"learning_rate": 0.0001385884509624198,
|
| 377 |
+
"loss": 0.07559239268302917,
|
| 378 |
+
"mean_token_accuracy": 0.9732825100421906,
|
| 379 |
+
"num_tokens": 2145822.0,
|
| 380 |
+
"step": 370
|
| 381 |
+
},
|
| 382 |
+
{
|
| 383 |
+
"entropy": 0.08157326076179743,
|
| 384 |
+
"epoch": 1.0133333333333334,
|
| 385 |
+
"grad_norm": 0.058837890625,
|
| 386 |
+
"learning_rate": 0.00013675527039413383,
|
| 387 |
+
"loss": 0.07452890872955323,
|
| 388 |
+
"mean_token_accuracy": 0.9733605772256851,
|
| 389 |
+
"num_tokens": 2203248.0,
|
| 390 |
+
"step": 380
|
| 391 |
+
},
|
| 392 |
+
{
|
| 393 |
+
"entropy": 0.07517405189573764,
|
| 394 |
+
"epoch": 1.04,
|
| 395 |
+
"grad_norm": 0.087890625,
|
| 396 |
+
"learning_rate": 0.00013492208982584784,
|
| 397 |
+
"loss": 0.07157951593399048,
|
| 398 |
+
"mean_token_accuracy": 0.9741677790880203,
|
| 399 |
+
"num_tokens": 2261444.0,
|
| 400 |
+
"step": 390
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"entropy": 0.07766247931867838,
|
| 404 |
+
"epoch": 1.0666666666666667,
|
| 405 |
+
"grad_norm": 0.060302734375,
|
| 406 |
+
"learning_rate": 0.00013308890925756189,
|
| 407 |
+
"loss": 0.07183201909065247,
|
| 408 |
+
"mean_token_accuracy": 0.9740341395139694,
|
| 409 |
+
"num_tokens": 2319551.0,
|
| 410 |
+
"step": 400
|
| 411 |
+
},
|
| 412 |
+
{
|
| 413 |
+
"entropy": 0.07695812471210957,
|
| 414 |
+
"epoch": 1.0933333333333333,
|
| 415 |
+
"grad_norm": 0.054443359375,
|
| 416 |
+
"learning_rate": 0.0001312557286892759,
|
| 417 |
+
"loss": 0.07332680225372315,
|
| 418 |
+
"mean_token_accuracy": 0.9733265534043312,
|
| 419 |
+
"num_tokens": 2377422.0,
|
| 420 |
+
"step": 410
|
| 421 |
+
},
|
| 422 |
+
{
|
| 423 |
+
"entropy": 0.07884457465261221,
|
| 424 |
+
"epoch": 1.12,
|
| 425 |
+
"grad_norm": 0.060791015625,
|
| 426 |
+
"learning_rate": 0.00012942254812098992,
|
| 427 |
+
"loss": 0.07316585779190063,
|
| 428 |
+
"mean_token_accuracy": 0.973577855527401,
|
| 429 |
+
"num_tokens": 2435382.0,
|
| 430 |
+
"step": 420
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"entropy": 0.07917917389422655,
|
| 434 |
+
"epoch": 1.1466666666666667,
|
| 435 |
+
"grad_norm": 0.0771484375,
|
| 436 |
+
"learning_rate": 0.00012758936755270393,
|
| 437 |
+
"loss": 0.07189081907272339,
|
| 438 |
+
"mean_token_accuracy": 0.9741694211959839,
|
| 439 |
+
"num_tokens": 2493780.0,
|
| 440 |
+
"step": 430
|
| 441 |
+
},
|
| 442 |
+
{
|
| 443 |
+
"entropy": 0.07554319184273481,
|
| 444 |
+
"epoch": 1.1733333333333333,
|
| 445 |
+
"grad_norm": 0.126953125,
|
| 446 |
+
"learning_rate": 0.00012575618698441797,
|
| 447 |
+
"loss": 0.07339509725570678,
|
| 448 |
+
"mean_token_accuracy": 0.9734218120574951,
|
| 449 |
+
"num_tokens": 2551587.0,
|
| 450 |
+
"step": 440
|
| 451 |
+
},
|
| 452 |
+
{
|
| 453 |
+
"entropy": 0.0771414702758193,
|
| 454 |
+
"epoch": 1.2,
|
| 455 |
+
"grad_norm": 0.052490234375,
|
| 456 |
+
"learning_rate": 0.000123923006416132,
|
| 457 |
+
"loss": 0.07223436832427979,
|
| 458 |
+
"mean_token_accuracy": 0.9731230854988098,
|
| 459 |
+
"num_tokens": 2609738.0,
|
| 460 |
+
"step": 450
|
| 461 |
+
},
|
| 462 |
+
{
|
| 463 |
+
"entropy": 0.07702515590935946,
|
| 464 |
+
"epoch": 1.2266666666666666,
|
| 465 |
+
"grad_norm": 0.05078125,
|
| 466 |
+
"learning_rate": 0.00012208982584784603,
|
| 467 |
+
"loss": 0.07126941084861756,
|
| 468 |
+
"mean_token_accuracy": 0.9743727937340736,
|
| 469 |
+
"num_tokens": 2667570.0,
|
| 470 |
+
"step": 460
|
| 471 |
+
},
|
| 472 |
+
{
|
| 473 |
+
"entropy": 0.0751312056556344,
|
| 474 |
+
"epoch": 1.2533333333333334,
|
| 475 |
+
"grad_norm": 0.052490234375,
|
| 476 |
+
"learning_rate": 0.00012025664527956005,
|
| 477 |
+
"loss": 0.07185030579566956,
|
| 478 |
+
"mean_token_accuracy": 0.9739165529608727,
|
| 479 |
+
"num_tokens": 2725220.0,
|
| 480 |
+
"step": 470
|
| 481 |
+
},
|
| 482 |
+
{
|
| 483 |
+
"entropy": 0.07488212268799543,
|
| 484 |
+
"epoch": 1.28,
|
| 485 |
+
"grad_norm": 0.0517578125,
|
| 486 |
+
"learning_rate": 0.00011842346471127406,
|
| 487 |
+
"loss": 0.07148469686508178,
|
| 488 |
+
"mean_token_accuracy": 0.973349143564701,
|
| 489 |
+
"num_tokens": 2782737.0,
|
| 490 |
+
"step": 480
|
| 491 |
+
},
|
| 492 |
+
{
|
| 493 |
+
"entropy": 0.07398118702694774,
|
| 494 |
+
"epoch": 1.3066666666666666,
|
| 495 |
+
"grad_norm": 0.044677734375,
|
| 496 |
+
"learning_rate": 0.00011659028414298809,
|
| 497 |
+
"loss": 0.06911076903343201,
|
| 498 |
+
"mean_token_accuracy": 0.9739873677492141,
|
| 499 |
+
"num_tokens": 2841536.0,
|
| 500 |
+
"step": 490
|
| 501 |
+
},
|
| 502 |
+
{
|
| 503 |
+
"entropy": 0.07522298116236925,
|
| 504 |
+
"epoch": 1.3333333333333333,
|
| 505 |
+
"grad_norm": 0.05908203125,
|
| 506 |
+
"learning_rate": 0.0001147571035747021,
|
| 507 |
+
"loss": 0.06964495182037353,
|
| 508 |
+
"mean_token_accuracy": 0.9739961415529251,
|
| 509 |
+
"num_tokens": 2899599.0,
|
| 510 |
+
"step": 500
|
| 511 |
+
},
|
| 512 |
+
{
|
| 513 |
+
"entropy": 0.07469812557101249,
|
| 514 |
+
"epoch": 1.3599999999999999,
|
| 515 |
+
"grad_norm": 0.134765625,
|
| 516 |
+
"learning_rate": 0.00011292392300641615,
|
| 517 |
+
"loss": 0.0720504343509674,
|
| 518 |
+
"mean_token_accuracy": 0.973115186393261,
|
| 519 |
+
"num_tokens": 2956977.0,
|
| 520 |
+
"step": 510
|
| 521 |
+
},
|
| 522 |
+
{
|
| 523 |
+
"entropy": 0.07730768620967865,
|
| 524 |
+
"epoch": 1.3866666666666667,
|
| 525 |
+
"grad_norm": 0.0966796875,
|
| 526 |
+
"learning_rate": 0.00011109074243813016,
|
| 527 |
+
"loss": 0.07261049151420593,
|
| 528 |
+
"mean_token_accuracy": 0.9735311016440391,
|
| 529 |
+
"num_tokens": 3014397.0,
|
| 530 |
+
"step": 520
|
| 531 |
+
},
|
| 532 |
+
{
|
| 533 |
+
"entropy": 0.07650617882609367,
|
| 534 |
+
"epoch": 1.4133333333333333,
|
| 535 |
+
"grad_norm": 0.059814453125,
|
| 536 |
+
"learning_rate": 0.00010925756186984419,
|
| 537 |
+
"loss": 0.07154079675674438,
|
| 538 |
+
"mean_token_accuracy": 0.9735050886869431,
|
| 539 |
+
"num_tokens": 3072014.0,
|
| 540 |
+
"step": 530
|
| 541 |
+
},
|
| 542 |
+
{
|
| 543 |
+
"entropy": 0.07418479155749083,
|
| 544 |
+
"epoch": 1.44,
|
| 545 |
+
"grad_norm": 0.08447265625,
|
| 546 |
+
"learning_rate": 0.0001074243813015582,
|
| 547 |
+
"loss": 0.07014204263687134,
|
| 548 |
+
"mean_token_accuracy": 0.9742872670292855,
|
| 549 |
+
"num_tokens": 3129542.0,
|
| 550 |
+
"step": 540
|
| 551 |
+
},
|
| 552 |
+
{
|
| 553 |
+
"entropy": 0.07493350077420473,
|
| 554 |
+
"epoch": 1.4666666666666668,
|
| 555 |
+
"grad_norm": 0.06396484375,
|
| 556 |
+
"learning_rate": 0.00010559120073327222,
|
| 557 |
+
"loss": 0.0693817377090454,
|
| 558 |
+
"mean_token_accuracy": 0.9750317439436913,
|
| 559 |
+
"num_tokens": 3188756.0,
|
| 560 |
+
"step": 550
|
| 561 |
+
},
|
| 562 |
+
{
|
| 563 |
+
"entropy": 0.07290575439110399,
|
| 564 |
+
"epoch": 1.4933333333333334,
|
| 565 |
+
"grad_norm": 0.0634765625,
|
| 566 |
+
"learning_rate": 0.00010375802016498626,
|
| 567 |
+
"loss": 0.06914764046669006,
|
| 568 |
+
"mean_token_accuracy": 0.9740337684750557,
|
| 569 |
+
"num_tokens": 3246755.0,
|
| 570 |
+
"step": 560
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"entropy": 0.07299449313431979,
|
| 574 |
+
"epoch": 1.52,
|
| 575 |
+
"grad_norm": 0.056396484375,
|
| 576 |
+
"learning_rate": 0.00010192483959670028,
|
| 577 |
+
"loss": 0.06928544640541076,
|
| 578 |
+
"mean_token_accuracy": 0.9739615619182587,
|
| 579 |
+
"num_tokens": 3304396.0,
|
| 580 |
+
"step": 570
|
| 581 |
+
},
|
| 582 |
+
{
|
| 583 |
+
"entropy": 0.07399061964824796,
|
| 584 |
+
"epoch": 1.5466666666666666,
|
| 585 |
+
"grad_norm": 0.049560546875,
|
| 586 |
+
"learning_rate": 0.0001000916590284143,
|
| 587 |
+
"loss": 0.07088688611984253,
|
| 588 |
+
"mean_token_accuracy": 0.9734108299016953,
|
| 589 |
+
"num_tokens": 3361947.0,
|
| 590 |
+
"step": 580
|
| 591 |
+
},
|
| 592 |
+
{
|
| 593 |
+
"entropy": 0.07375452127307654,
|
| 594 |
+
"epoch": 1.5733333333333333,
|
| 595 |
+
"grad_norm": 0.056884765625,
|
| 596 |
+
"learning_rate": 9.825847846012832e-05,
|
| 597 |
+
"loss": 0.06905483603477477,
|
| 598 |
+
"mean_token_accuracy": 0.9750793874263763,
|
| 599 |
+
"num_tokens": 3420088.0,
|
| 600 |
+
"step": 590
|
| 601 |
+
},
|
| 602 |
+
{
|
| 603 |
+
"entropy": 0.0736119981855154,
|
| 604 |
+
"epoch": 1.6,
|
| 605 |
+
"grad_norm": 0.07958984375,
|
| 606 |
+
"learning_rate": 9.642529789184235e-05,
|
| 607 |
+
"loss": 0.06965676546096802,
|
| 608 |
+
"mean_token_accuracy": 0.9740386828780174,
|
| 609 |
+
"num_tokens": 3478106.0,
|
| 610 |
+
"step": 600
|
| 611 |
+
},
|
| 612 |
+
{
|
| 613 |
+
"entropy": 0.07634057383984327,
|
| 614 |
+
"epoch": 1.6266666666666667,
|
| 615 |
+
"grad_norm": 0.045166015625,
|
| 616 |
+
"learning_rate": 9.459211732355638e-05,
|
| 617 |
+
"loss": 0.07061071991920471,
|
| 618 |
+
"mean_token_accuracy": 0.9740972384810448,
|
| 619 |
+
"num_tokens": 3535104.0,
|
| 620 |
+
"step": 610
|
| 621 |
+
},
|
| 622 |
+
{
|
| 623 |
+
"entropy": 0.07195411194115878,
|
| 624 |
+
"epoch": 1.6533333333333333,
|
| 625 |
+
"grad_norm": 0.061279296875,
|
| 626 |
+
"learning_rate": 9.27589367552704e-05,
|
| 627 |
+
"loss": 0.06899864077568055,
|
| 628 |
+
"mean_token_accuracy": 0.9742538690567016,
|
| 629 |
+
"num_tokens": 3592771.0,
|
| 630 |
+
"step": 620
|
| 631 |
+
},
|
| 632 |
+
{
|
| 633 |
+
"entropy": 0.07130216900259256,
|
| 634 |
+
"epoch": 1.6800000000000002,
|
| 635 |
+
"grad_norm": 0.05322265625,
|
| 636 |
+
"learning_rate": 9.092575618698442e-05,
|
| 637 |
+
"loss": 0.06816592216491699,
|
| 638 |
+
"mean_token_accuracy": 0.9751273840665817,
|
| 639 |
+
"num_tokens": 3651210.0,
|
| 640 |
+
"step": 630
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"entropy": 0.07459970507770777,
|
| 644 |
+
"epoch": 1.7066666666666666,
|
| 645 |
+
"grad_norm": 0.08154296875,
|
| 646 |
+
"learning_rate": 8.909257561869845e-05,
|
| 647 |
+
"loss": 0.06940353512763978,
|
| 648 |
+
"mean_token_accuracy": 0.9741591110825538,
|
| 649 |
+
"num_tokens": 3709024.0,
|
| 650 |
+
"step": 640
|
| 651 |
+
},
|
| 652 |
+
{
|
| 653 |
+
"entropy": 0.07277811467647552,
|
| 654 |
+
"epoch": 1.7333333333333334,
|
| 655 |
+
"grad_norm": 0.06298828125,
|
| 656 |
+
"learning_rate": 8.725939505041248e-05,
|
| 657 |
+
"loss": 0.06912165284156799,
|
| 658 |
+
"mean_token_accuracy": 0.9736517399549485,
|
| 659 |
+
"num_tokens": 3766449.0,
|
| 660 |
+
"step": 650
|
| 661 |
+
},
|
| 662 |
+
{
|
| 663 |
+
"entropy": 0.07142239715903997,
|
| 664 |
+
"epoch": 1.76,
|
| 665 |
+
"grad_norm": 0.053466796875,
|
| 666 |
+
"learning_rate": 8.54262144821265e-05,
|
| 667 |
+
"loss": 0.0682906985282898,
|
| 668 |
+
"mean_token_accuracy": 0.9748834028840065,
|
| 669 |
+
"num_tokens": 3824090.0,
|
| 670 |
+
"step": 660
|
| 671 |
+
},
|
| 672 |
+
{
|
| 673 |
+
"entropy": 0.07114961184561253,
|
| 674 |
+
"epoch": 1.7866666666666666,
|
| 675 |
+
"grad_norm": 0.048828125,
|
| 676 |
+
"learning_rate": 8.359303391384051e-05,
|
| 677 |
+
"loss": 0.06772947311401367,
|
| 678 |
+
"mean_token_accuracy": 0.9746391758322716,
|
| 679 |
+
"num_tokens": 3882786.0,
|
| 680 |
+
"step": 670
|
| 681 |
+
},
|
| 682 |
+
{
|
| 683 |
+
"entropy": 0.07262304350733757,
|
| 684 |
+
"epoch": 1.8133333333333335,
|
| 685 |
+
"grad_norm": 0.0849609375,
|
| 686 |
+
"learning_rate": 8.175985334555454e-05,
|
| 687 |
+
"loss": 0.06904927492141724,
|
| 688 |
+
"mean_token_accuracy": 0.9745182231068611,
|
| 689 |
+
"num_tokens": 3940648.0,
|
| 690 |
+
"step": 680
|
| 691 |
+
},
|
| 692 |
+
{
|
| 693 |
+
"entropy": 0.07172201108187437,
|
| 694 |
+
"epoch": 1.8399999999999999,
|
| 695 |
+
"grad_norm": 0.08984375,
|
| 696 |
+
"learning_rate": 7.992667277726857e-05,
|
| 697 |
+
"loss": 0.0677194595336914,
|
| 698 |
+
"mean_token_accuracy": 0.974525648355484,
|
| 699 |
+
"num_tokens": 3998798.0,
|
| 700 |
+
"step": 690
|
| 701 |
+
},
|
| 702 |
+
{
|
| 703 |
+
"entropy": 0.07090398538857698,
|
| 704 |
+
"epoch": 1.8666666666666667,
|
| 705 |
+
"grad_norm": 0.051025390625,
|
| 706 |
+
"learning_rate": 7.809349220898258e-05,
|
| 707 |
+
"loss": 0.06749570369720459,
|
| 708 |
+
"mean_token_accuracy": 0.9741235420107841,
|
| 709 |
+
"num_tokens": 4056793.0,
|
| 710 |
+
"step": 700
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"entropy": 0.07037429772317409,
|
| 714 |
+
"epoch": 1.8933333333333333,
|
| 715 |
+
"grad_norm": 0.053955078125,
|
| 716 |
+
"learning_rate": 7.626031164069661e-05,
|
| 717 |
+
"loss": 0.06616277694702148,
|
| 718 |
+
"mean_token_accuracy": 0.9749814510345459,
|
| 719 |
+
"num_tokens": 4115690.0,
|
| 720 |
+
"step": 710
|
| 721 |
+
},
|
| 722 |
+
{
|
| 723 |
+
"entropy": 0.06948063550516963,
|
| 724 |
+
"epoch": 1.92,
|
| 725 |
+
"grad_norm": 0.0810546875,
|
| 726 |
+
"learning_rate": 7.442713107241064e-05,
|
| 727 |
+
"loss": 0.06898298859596252,
|
| 728 |
+
"mean_token_accuracy": 0.9742853432893753,
|
| 729 |
+
"num_tokens": 4173841.0,
|
| 730 |
+
"step": 720
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"entropy": 0.07196591291576623,
|
| 734 |
+
"epoch": 1.9466666666666668,
|
| 735 |
+
"grad_norm": 0.047607421875,
|
| 736 |
+
"learning_rate": 7.259395050412467e-05,
|
| 737 |
+
"loss": 0.06768189072608947,
|
| 738 |
+
"mean_token_accuracy": 0.9750556230545044,
|
| 739 |
+
"num_tokens": 4232146.0,
|
| 740 |
+
"step": 730
|
| 741 |
+
},
|
| 742 |
+
{
|
| 743 |
+
"entropy": 0.07190824458375573,
|
| 744 |
+
"epoch": 1.9733333333333334,
|
| 745 |
+
"grad_norm": 0.07275390625,
|
| 746 |
+
"learning_rate": 7.076076993583868e-05,
|
| 747 |
+
"loss": 0.06733205318450927,
|
| 748 |
+
"mean_token_accuracy": 0.9746471583843231,
|
| 749 |
+
"num_tokens": 4290020.0,
|
| 750 |
+
"step": 740
|
| 751 |
+
},
|
| 752 |
+
{
|
| 753 |
+
"entropy": 0.07098262775689364,
|
| 754 |
+
"epoch": 2.0,
|
| 755 |
+
"grad_norm": 0.046630859375,
|
| 756 |
+
"learning_rate": 6.89275893675527e-05,
|
| 757 |
+
"loss": 0.06668331623077392,
|
| 758 |
+
"mean_token_accuracy": 0.9744203120470047,
|
| 759 |
+
"num_tokens": 4348788.0,
|
| 760 |
+
"step": 750
|
| 761 |
+
},
|
| 762 |
+
{
|
| 763 |
+
"entropy": 0.07027366831898689,
|
| 764 |
+
"epoch": 2.026666666666667,
|
| 765 |
+
"grad_norm": 0.04931640625,
|
| 766 |
+
"learning_rate": 6.709440879926673e-05,
|
| 767 |
+
"loss": 0.06592612862586975,
|
| 768 |
+
"mean_token_accuracy": 0.974977059662342,
|
| 769 |
+
"num_tokens": 4406426.0,
|
| 770 |
+
"step": 760
|
| 771 |
+
},
|
| 772 |
+
{
|
| 773 |
+
"entropy": 0.06931058187037706,
|
| 774 |
+
"epoch": 2.0533333333333332,
|
| 775 |
+
"grad_norm": 0.05615234375,
|
| 776 |
+
"learning_rate": 6.526122823098076e-05,
|
| 777 |
+
"loss": 0.06590970754623413,
|
| 778 |
+
"mean_token_accuracy": 0.9754465237259865,
|
| 779 |
+
"num_tokens": 4464145.0,
|
| 780 |
+
"step": 770
|
| 781 |
+
},
|
| 782 |
+
{
|
| 783 |
+
"entropy": 0.06888462873175741,
|
| 784 |
+
"epoch": 2.08,
|
| 785 |
+
"grad_norm": 0.0771484375,
|
| 786 |
+
"learning_rate": 6.342804766269478e-05,
|
| 787 |
+
"loss": 0.06574443578720093,
|
| 788 |
+
"mean_token_accuracy": 0.9753611847758293,
|
| 789 |
+
"num_tokens": 4522337.0,
|
| 790 |
+
"step": 780
|
| 791 |
+
},
|
| 792 |
+
{
|
| 793 |
+
"entropy": 0.06854705391451717,
|
| 794 |
+
"epoch": 2.1066666666666665,
|
| 795 |
+
"grad_norm": 0.048583984375,
|
| 796 |
+
"learning_rate": 6.15948670944088e-05,
|
| 797 |
+
"loss": 0.06521100401878357,
|
| 798 |
+
"mean_token_accuracy": 0.9753493323922158,
|
| 799 |
+
"num_tokens": 4580367.0,
|
| 800 |
+
"step": 790
|
| 801 |
+
},
|
| 802 |
+
{
|
| 803 |
+
"entropy": 0.07078330684453249,
|
| 804 |
+
"epoch": 2.1333333333333333,
|
| 805 |
+
"grad_norm": 0.05615234375,
|
| 806 |
+
"learning_rate": 5.976168652612283e-05,
|
| 807 |
+
"loss": 0.06622718572616577,
|
| 808 |
+
"mean_token_accuracy": 0.9753074139356613,
|
| 809 |
+
"num_tokens": 4637987.0,
|
| 810 |
+
"step": 800
|
| 811 |
+
},
|
| 812 |
+
{
|
| 813 |
+
"entropy": 0.06828645439818501,
|
| 814 |
+
"epoch": 2.16,
|
| 815 |
+
"grad_norm": 0.05322265625,
|
| 816 |
+
"learning_rate": 5.792850595783685e-05,
|
| 817 |
+
"loss": 0.06564919948577881,
|
| 818 |
+
"mean_token_accuracy": 0.9755483835935592,
|
| 819 |
+
"num_tokens": 4695886.0,
|
| 820 |
+
"step": 810
|
| 821 |
+
},
|
| 822 |
+
{
|
| 823 |
+
"entropy": 0.06908007161691784,
|
| 824 |
+
"epoch": 2.1866666666666665,
|
| 825 |
+
"grad_norm": 0.053955078125,
|
| 826 |
+
"learning_rate": 5.6095325389550866e-05,
|
| 827 |
+
"loss": 0.06564045548439026,
|
| 828 |
+
"mean_token_accuracy": 0.9750929772853851,
|
| 829 |
+
"num_tokens": 4753433.0,
|
| 830 |
+
"step": 820
|
| 831 |
+
},
|
| 832 |
+
{
|
| 833 |
+
"entropy": 0.0687640338204801,
|
| 834 |
+
"epoch": 2.2133333333333334,
|
| 835 |
+
"grad_norm": 0.052001953125,
|
| 836 |
+
"learning_rate": 5.4262144821264894e-05,
|
| 837 |
+
"loss": 0.06568140983581543,
|
| 838 |
+
"mean_token_accuracy": 0.9756649106740951,
|
| 839 |
+
"num_tokens": 4811459.0,
|
| 840 |
+
"step": 830
|
| 841 |
+
},
|
| 842 |
+
{
|
| 843 |
+
"entropy": 0.06845789151266217,
|
| 844 |
+
"epoch": 2.24,
|
| 845 |
+
"grad_norm": 0.05322265625,
|
| 846 |
+
"learning_rate": 5.2428964252978916e-05,
|
| 847 |
+
"loss": 0.0644676923751831,
|
| 848 |
+
"mean_token_accuracy": 0.975266519188881,
|
| 849 |
+
"num_tokens": 4870185.0,
|
| 850 |
+
"step": 840
|
| 851 |
+
},
|
| 852 |
+
{
|
| 853 |
+
"entropy": 0.06863211318850518,
|
| 854 |
+
"epoch": 2.2666666666666666,
|
| 855 |
+
"grad_norm": 0.04541015625,
|
| 856 |
+
"learning_rate": 5.0595783684692945e-05,
|
| 857 |
+
"loss": 0.06450478434562683,
|
| 858 |
+
"mean_token_accuracy": 0.9765662357211113,
|
| 859 |
+
"num_tokens": 4928705.0,
|
| 860 |
+
"step": 850
|
| 861 |
+
},
|
| 862 |
+
{
|
| 863 |
+
"entropy": 0.06972924629226326,
|
| 864 |
+
"epoch": 2.2933333333333334,
|
| 865 |
+
"grad_norm": 0.052001953125,
|
| 866 |
+
"learning_rate": 4.876260311640697e-05,
|
| 867 |
+
"loss": 0.06663312911987304,
|
| 868 |
+
"mean_token_accuracy": 0.974696435034275,
|
| 869 |
+
"num_tokens": 4985443.0,
|
| 870 |
+
"step": 860
|
| 871 |
+
},
|
| 872 |
+
{
|
| 873 |
+
"entropy": 0.06926036775112152,
|
| 874 |
+
"epoch": 2.32,
|
| 875 |
+
"grad_norm": 0.050537109375,
|
| 876 |
+
"learning_rate": 4.6929422548120995e-05,
|
| 877 |
+
"loss": 0.06713547110557556,
|
| 878 |
+
"mean_token_accuracy": 0.974915811419487,
|
| 879 |
+
"num_tokens": 5042822.0,
|
| 880 |
+
"step": 870
|
| 881 |
+
},
|
| 882 |
+
{
|
| 883 |
+
"entropy": 0.07052302733063698,
|
| 884 |
+
"epoch": 2.3466666666666667,
|
| 885 |
+
"grad_norm": 0.0634765625,
|
| 886 |
+
"learning_rate": 4.509624197983501e-05,
|
| 887 |
+
"loss": 0.06567599177360535,
|
| 888 |
+
"mean_token_accuracy": 0.9748982191085815,
|
| 889 |
+
"num_tokens": 5100175.0,
|
| 890 |
+
"step": 880
|
| 891 |
+
},
|
| 892 |
+
{
|
| 893 |
+
"entropy": 0.06812258837744593,
|
| 894 |
+
"epoch": 2.3733333333333335,
|
| 895 |
+
"grad_norm": 0.046875,
|
| 896 |
+
"learning_rate": 4.326306141154904e-05,
|
| 897 |
+
"loss": 0.06469246745109558,
|
| 898 |
+
"mean_token_accuracy": 0.9756363064050675,
|
| 899 |
+
"num_tokens": 5158712.0,
|
| 900 |
+
"step": 890
|
| 901 |
+
},
|
| 902 |
+
{
|
| 903 |
+
"entropy": 0.06816195128485561,
|
| 904 |
+
"epoch": 2.4,
|
| 905 |
+
"grad_norm": 0.052734375,
|
| 906 |
+
"learning_rate": 4.142988084326306e-05,
|
| 907 |
+
"loss": 0.06546497344970703,
|
| 908 |
+
"mean_token_accuracy": 0.9757738158106803,
|
| 909 |
+
"num_tokens": 5217131.0,
|
| 910 |
+
"step": 900
|
| 911 |
+
},
|
| 912 |
+
{
|
| 913 |
+
"entropy": 0.069792415574193,
|
| 914 |
+
"epoch": 2.4266666666666667,
|
| 915 |
+
"grad_norm": 0.05078125,
|
| 916 |
+
"learning_rate": 3.959670027497709e-05,
|
| 917 |
+
"loss": 0.0649182915687561,
|
| 918 |
+
"mean_token_accuracy": 0.9754065230488778,
|
| 919 |
+
"num_tokens": 5275013.0,
|
| 920 |
+
"step": 910
|
| 921 |
+
},
|
| 922 |
+
{
|
| 923 |
+
"entropy": 0.06883814567700028,
|
| 924 |
+
"epoch": 2.453333333333333,
|
| 925 |
+
"grad_norm": 0.056640625,
|
| 926 |
+
"learning_rate": 3.776351970669111e-05,
|
| 927 |
+
"loss": 0.06510300636291504,
|
| 928 |
+
"mean_token_accuracy": 0.9752438068389893,
|
| 929 |
+
"num_tokens": 5332790.0,
|
| 930 |
+
"step": 920
|
| 931 |
+
},
|
| 932 |
+
{
|
| 933 |
+
"entropy": 0.06875044060871005,
|
| 934 |
+
"epoch": 2.48,
|
| 935 |
+
"grad_norm": 0.049072265625,
|
| 936 |
+
"learning_rate": 3.593033913840513e-05,
|
| 937 |
+
"loss": 0.06483979225158691,
|
| 938 |
+
"mean_token_accuracy": 0.9757223874330521,
|
| 939 |
+
"num_tokens": 5390822.0,
|
| 940 |
+
"step": 930
|
| 941 |
+
},
|
| 942 |
+
{
|
| 943 |
+
"entropy": 0.06840683752670884,
|
| 944 |
+
"epoch": 2.506666666666667,
|
| 945 |
+
"grad_norm": 0.06005859375,
|
| 946 |
+
"learning_rate": 3.409715857011916e-05,
|
| 947 |
+
"loss": 0.06430425643920898,
|
| 948 |
+
"mean_token_accuracy": 0.9757388934493065,
|
| 949 |
+
"num_tokens": 5449491.0,
|
| 950 |
+
"step": 940
|
| 951 |
+
},
|
| 952 |
+
{
|
| 953 |
+
"entropy": 0.06754063200205565,
|
| 954 |
+
"epoch": 2.533333333333333,
|
| 955 |
+
"grad_norm": 0.05078125,
|
| 956 |
+
"learning_rate": 3.2263978001833184e-05,
|
| 957 |
+
"loss": 0.06348671317100525,
|
| 958 |
+
"mean_token_accuracy": 0.9755341604351997,
|
| 959 |
+
"num_tokens": 5508033.0,
|
| 960 |
+
"step": 950
|
| 961 |
+
},
|
| 962 |
+
{
|
| 963 |
+
"entropy": 0.0688040841370821,
|
| 964 |
+
"epoch": 2.56,
|
| 965 |
+
"grad_norm": 0.052734375,
|
| 966 |
+
"learning_rate": 3.0430797433547202e-05,
|
| 967 |
+
"loss": 0.065876704454422,
|
| 968 |
+
"mean_token_accuracy": 0.9748074486851692,
|
| 969 |
+
"num_tokens": 5565759.0,
|
| 970 |
+
"step": 960
|
| 971 |
+
},
|
| 972 |
+
{
|
| 973 |
+
"entropy": 0.06747948992997407,
|
| 974 |
+
"epoch": 2.586666666666667,
|
| 975 |
+
"grad_norm": 0.04833984375,
|
| 976 |
+
"learning_rate": 2.8597616865261228e-05,
|
| 977 |
+
"loss": 0.06365298628807067,
|
| 978 |
+
"mean_token_accuracy": 0.976527401804924,
|
| 979 |
+
"num_tokens": 5624012.0,
|
| 980 |
+
"step": 970
|
| 981 |
+
},
|
| 982 |
+
{
|
| 983 |
+
"entropy": 0.06841521579772233,
|
| 984 |
+
"epoch": 2.6133333333333333,
|
| 985 |
+
"grad_norm": 0.0654296875,
|
| 986 |
+
"learning_rate": 2.6764436296975253e-05,
|
| 987 |
+
"loss": 0.063433438539505,
|
| 988 |
+
"mean_token_accuracy": 0.975967101752758,
|
| 989 |
+
"num_tokens": 5682704.0,
|
| 990 |
+
"step": 980
|
| 991 |
+
},
|
| 992 |
+
{
|
| 993 |
+
"entropy": 0.06835865909233689,
|
| 994 |
+
"epoch": 2.64,
|
| 995 |
+
"grad_norm": 0.052001953125,
|
| 996 |
+
"learning_rate": 2.4931255728689275e-05,
|
| 997 |
+
"loss": 0.06502929329872131,
|
| 998 |
+
"mean_token_accuracy": 0.9752402231097221,
|
| 999 |
+
"num_tokens": 5740681.0,
|
| 1000 |
+
"step": 990
|
| 1001 |
+
},
|
| 1002 |
+
{
|
| 1003 |
+
"entropy": 0.06940433531999587,
|
| 1004 |
+
"epoch": 2.6666666666666665,
|
| 1005 |
+
"grad_norm": 0.05908203125,
|
| 1006 |
+
"learning_rate": 2.30980751604033e-05,
|
| 1007 |
+
"loss": 0.06487542390823364,
|
| 1008 |
+
"mean_token_accuracy": 0.975363838672638,
|
| 1009 |
+
"num_tokens": 5797760.0,
|
| 1010 |
+
"step": 1000
|
| 1011 |
+
}
|
| 1012 |
+
],
|
| 1013 |
+
"logging_steps": 10,
|
| 1014 |
+
"max_steps": 1125,
|
| 1015 |
+
"num_input_tokens_seen": 0,
|
| 1016 |
+
"num_train_epochs": 3,
|
| 1017 |
+
"save_steps": 500,
|
| 1018 |
+
"stateful_callbacks": {
|
| 1019 |
+
"TrainerControl": {
|
| 1020 |
+
"args": {
|
| 1021 |
+
"should_epoch_stop": false,
|
| 1022 |
+
"should_evaluate": false,
|
| 1023 |
+
"should_log": false,
|
| 1024 |
+
"should_save": true,
|
| 1025 |
+
"should_training_stop": false
|
| 1026 |
+
},
|
| 1027 |
+
"attributes": {}
|
| 1028 |
+
}
|
| 1029 |
+
},
|
| 1030 |
+
"total_flos": 2.7209408134397952e+17,
|
| 1031 |
+
"train_batch_size": 2,
|
| 1032 |
+
"trial_name": null,
|
| 1033 |
+
"trial_params": null
|
| 1034 |
+
}
|
consciousness/checkpoint-1000/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:64a765ba4e23e22cae3a67629a6fda1378e5af8f1478b2252bd6159d00e12541
|
| 3 |
+
size 5649
|
consciousness/checkpoint-1125/README.md
ADDED
|
@@ -0,0 +1,209 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: meta-llama/Llama-3.1-8B-Instruct
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:meta-llama/Llama-3.1-8B-Instruct
|
| 7 |
+
- lora
|
| 8 |
+
- sft
|
| 9 |
+
- transformers
|
| 10 |
+
- trl
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# Model Card for Model ID
|
| 14 |
+
|
| 15 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
## Model Details
|
| 20 |
+
|
| 21 |
+
### Model Description
|
| 22 |
+
|
| 23 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
- **Developed by:** [More Information Needed]
|
| 28 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 29 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 30 |
+
- **Model type:** [More Information Needed]
|
| 31 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 32 |
+
- **License:** [More Information Needed]
|
| 33 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 34 |
+
|
| 35 |
+
### Model Sources [optional]
|
| 36 |
+
|
| 37 |
+
<!-- Provide the basic links for the model. -->
|
| 38 |
+
|
| 39 |
+
- **Repository:** [More Information Needed]
|
| 40 |
+
- **Paper [optional]:** [More Information Needed]
|
| 41 |
+
- **Demo [optional]:** [More Information Needed]
|
| 42 |
+
|
| 43 |
+
## Uses
|
| 44 |
+
|
| 45 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 46 |
+
|
| 47 |
+
### Direct Use
|
| 48 |
+
|
| 49 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 50 |
+
|
| 51 |
+
[More Information Needed]
|
| 52 |
+
|
| 53 |
+
### Downstream Use [optional]
|
| 54 |
+
|
| 55 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 56 |
+
|
| 57 |
+
[More Information Needed]
|
| 58 |
+
|
| 59 |
+
### Out-of-Scope Use
|
| 60 |
+
|
| 61 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 62 |
+
|
| 63 |
+
[More Information Needed]
|
| 64 |
+
|
| 65 |
+
## Bias, Risks, and Limitations
|
| 66 |
+
|
| 67 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 68 |
+
|
| 69 |
+
[More Information Needed]
|
| 70 |
+
|
| 71 |
+
### Recommendations
|
| 72 |
+
|
| 73 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 74 |
+
|
| 75 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 76 |
+
|
| 77 |
+
## How to Get Started with the Model
|
| 78 |
+
|
| 79 |
+
Use the code below to get started with the model.
|
| 80 |
+
|
| 81 |
+
[More Information Needed]
|
| 82 |
+
|
| 83 |
+
## Training Details
|
| 84 |
+
|
| 85 |
+
### Training Data
|
| 86 |
+
|
| 87 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 88 |
+
|
| 89 |
+
[More Information Needed]
|
| 90 |
+
|
| 91 |
+
### Training Procedure
|
| 92 |
+
|
| 93 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 94 |
+
|
| 95 |
+
#### Preprocessing [optional]
|
| 96 |
+
|
| 97 |
+
[More Information Needed]
|
| 98 |
+
|
| 99 |
+
|
| 100 |
+
#### Training Hyperparameters
|
| 101 |
+
|
| 102 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 103 |
+
|
| 104 |
+
#### Speeds, Sizes, Times [optional]
|
| 105 |
+
|
| 106 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 107 |
+
|
| 108 |
+
[More Information Needed]
|
| 109 |
+
|
| 110 |
+
## Evaluation
|
| 111 |
+
|
| 112 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 113 |
+
|
| 114 |
+
### Testing Data, Factors & Metrics
|
| 115 |
+
|
| 116 |
+
#### Testing Data
|
| 117 |
+
|
| 118 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 119 |
+
|
| 120 |
+
[More Information Needed]
|
| 121 |
+
|
| 122 |
+
#### Factors
|
| 123 |
+
|
| 124 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 125 |
+
|
| 126 |
+
[More Information Needed]
|
| 127 |
+
|
| 128 |
+
#### Metrics
|
| 129 |
+
|
| 130 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 131 |
+
|
| 132 |
+
[More Information Needed]
|
| 133 |
+
|
| 134 |
+
### Results
|
| 135 |
+
|
| 136 |
+
[More Information Needed]
|
| 137 |
+
|
| 138 |
+
#### Summary
|
| 139 |
+
|
| 140 |
+
|
| 141 |
+
|
| 142 |
+
## Model Examination [optional]
|
| 143 |
+
|
| 144 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 145 |
+
|
| 146 |
+
[More Information Needed]
|
| 147 |
+
|
| 148 |
+
## Environmental Impact
|
| 149 |
+
|
| 150 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 151 |
+
|
| 152 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 153 |
+
|
| 154 |
+
- **Hardware Type:** [More Information Needed]
|
| 155 |
+
- **Hours used:** [More Information Needed]
|
| 156 |
+
- **Cloud Provider:** [More Information Needed]
|
| 157 |
+
- **Compute Region:** [More Information Needed]
|
| 158 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 159 |
+
|
| 160 |
+
## Technical Specifications [optional]
|
| 161 |
+
|
| 162 |
+
### Model Architecture and Objective
|
| 163 |
+
|
| 164 |
+
[More Information Needed]
|
| 165 |
+
|
| 166 |
+
### Compute Infrastructure
|
| 167 |
+
|
| 168 |
+
[More Information Needed]
|
| 169 |
+
|
| 170 |
+
#### Hardware
|
| 171 |
+
|
| 172 |
+
[More Information Needed]
|
| 173 |
+
|
| 174 |
+
#### Software
|
| 175 |
+
|
| 176 |
+
[More Information Needed]
|
| 177 |
+
|
| 178 |
+
## Citation [optional]
|
| 179 |
+
|
| 180 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 181 |
+
|
| 182 |
+
**BibTeX:**
|
| 183 |
+
|
| 184 |
+
[More Information Needed]
|
| 185 |
+
|
| 186 |
+
**APA:**
|
| 187 |
+
|
| 188 |
+
[More Information Needed]
|
| 189 |
+
|
| 190 |
+
## Glossary [optional]
|
| 191 |
+
|
| 192 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 193 |
+
|
| 194 |
+
[More Information Needed]
|
| 195 |
+
|
| 196 |
+
## More Information [optional]
|
| 197 |
+
|
| 198 |
+
[More Information Needed]
|
| 199 |
+
|
| 200 |
+
## Model Card Authors [optional]
|
| 201 |
+
|
| 202 |
+
[More Information Needed]
|
| 203 |
+
|
| 204 |
+
## Model Card Contact
|
| 205 |
+
|
| 206 |
+
[More Information Needed]
|
| 207 |
+
### Framework versions
|
| 208 |
+
|
| 209 |
+
- PEFT 0.18.1
|
consciousness/checkpoint-1125/adapter_config.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "meta-llama/Llama-3.1-8B-Instruct",
|
| 7 |
+
"bias": "none",
|
| 8 |
+
"corda_config": null,
|
| 9 |
+
"ensure_weight_tying": false,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": false,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 32,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.05,
|
| 22 |
+
"megatron_config": null,
|
| 23 |
+
"megatron_core": "megatron.core",
|
| 24 |
+
"modules_to_save": null,
|
| 25 |
+
"peft_type": "LORA",
|
| 26 |
+
"peft_version": "0.18.1",
|
| 27 |
+
"qalora_group_size": 16,
|
| 28 |
+
"r": 16,
|
| 29 |
+
"rank_pattern": {},
|
| 30 |
+
"revision": null,
|
| 31 |
+
"target_modules": [
|
| 32 |
+
"q_proj",
|
| 33 |
+
"v_proj",
|
| 34 |
+
"k_proj",
|
| 35 |
+
"o_proj"
|
| 36 |
+
],
|
| 37 |
+
"target_parameters": null,
|
| 38 |
+
"task_type": "CAUSAL_LM",
|
| 39 |
+
"trainable_token_indices": null,
|
| 40 |
+
"use_dora": false,
|
| 41 |
+
"use_qalora": false,
|
| 42 |
+
"use_rslora": false
|
| 43 |
+
}
|
consciousness/checkpoint-1125/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:66930f755168eb2cfd2ae1b754fcc51080acdc1050a221f1373d5ff234b23bb6
|
| 3 |
+
size 27297544
|
consciousness/checkpoint-1125/chat_template.jinja
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{{- bos_token }}
|
| 2 |
+
{%- if custom_tools is defined %}
|
| 3 |
+
{%- set tools = custom_tools %}
|
| 4 |
+
{%- endif %}
|
| 5 |
+
{%- if not tools_in_user_message is defined %}
|
| 6 |
+
{%- set tools_in_user_message = true %}
|
| 7 |
+
{%- endif %}
|
| 8 |
+
{%- if not date_string is defined %}
|
| 9 |
+
{%- set date_string = "26 Jul 2024" %}
|
| 10 |
+
{%- endif %}
|
| 11 |
+
{%- if not tools is defined %}
|
| 12 |
+
{%- set tools = none %}
|
| 13 |
+
{%- endif %}
|
| 14 |
+
|
| 15 |
+
{#- This block extracts the system message, so we can slot it into the right place. #}
|
| 16 |
+
{%- if messages[0]['role'] == 'system' %}
|
| 17 |
+
{%- set system_message = messages[0]['content']|trim %}
|
| 18 |
+
{%- set messages = messages[1:] %}
|
| 19 |
+
{%- else %}
|
| 20 |
+
{%- set system_message = "" %}
|
| 21 |
+
{%- endif %}
|
| 22 |
+
|
| 23 |
+
{#- System message + builtin tools #}
|
| 24 |
+
{{- "<|start_header_id|>system<|end_header_id|>\n\n" }}
|
| 25 |
+
{%- if builtin_tools is defined or tools is not none %}
|
| 26 |
+
{{- "Environment: ipython\n" }}
|
| 27 |
+
{%- endif %}
|
| 28 |
+
{%- if builtin_tools is defined %}
|
| 29 |
+
{{- "Tools: " + builtin_tools | reject('equalto', 'code_interpreter') | join(", ") + "\n\n"}}
|
| 30 |
+
{%- endif %}
|
| 31 |
+
{{- "Cutting Knowledge Date: December 2023\n" }}
|
| 32 |
+
{{- "Today Date: " + date_string + "\n\n" }}
|
| 33 |
+
{%- if tools is not none and not tools_in_user_message %}
|
| 34 |
+
{{- "You have access to the following functions. To call a function, please respond with JSON for a function call." }}
|
| 35 |
+
{{- 'Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.' }}
|
| 36 |
+
{{- "Do not use variables.\n\n" }}
|
| 37 |
+
{%- for t in tools %}
|
| 38 |
+
{{- t | tojson(indent=4) }}
|
| 39 |
+
{{- "\n\n" }}
|
| 40 |
+
{%- endfor %}
|
| 41 |
+
{%- endif %}
|
| 42 |
+
{{- system_message }}
|
| 43 |
+
{{- "<|eot_id|>" }}
|
| 44 |
+
|
| 45 |
+
{#- Custom tools are passed in a user message with some extra guidance #}
|
| 46 |
+
{%- if tools_in_user_message and not tools is none %}
|
| 47 |
+
{#- Extract the first user message so we can plug it in here #}
|
| 48 |
+
{%- if messages | length != 0 %}
|
| 49 |
+
{%- set first_user_message = messages[0]['content']|trim %}
|
| 50 |
+
{%- set messages = messages[1:] %}
|
| 51 |
+
{%- else %}
|
| 52 |
+
{{- raise_exception("Cannot put tools in the first user message when there's no first user message!") }}
|
| 53 |
+
{%- endif %}
|
| 54 |
+
{{- '<|start_header_id|>user<|end_header_id|>\n\n' -}}
|
| 55 |
+
{{- "Given the following functions, please respond with a JSON for a function call " }}
|
| 56 |
+
{{- "with its proper arguments that best answers the given prompt.\n\n" }}
|
| 57 |
+
{{- 'Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.' }}
|
| 58 |
+
{{- "Do not use variables.\n\n" }}
|
| 59 |
+
{%- for t in tools %}
|
| 60 |
+
{{- t | tojson(indent=4) }}
|
| 61 |
+
{{- "\n\n" }}
|
| 62 |
+
{%- endfor %}
|
| 63 |
+
{{- first_user_message + "<|eot_id|>"}}
|
| 64 |
+
{%- endif %}
|
| 65 |
+
|
| 66 |
+
{%- for message in messages %}
|
| 67 |
+
{%- if not (message.role == 'ipython' or message.role == 'tool' or 'tool_calls' in message) %}
|
| 68 |
+
{{- '<|start_header_id|>' + message['role'] + '<|end_header_id|>\n\n'+ message['content'] | trim + '<|eot_id|>' }}
|
| 69 |
+
{%- elif 'tool_calls' in message %}
|
| 70 |
+
{%- if not message.tool_calls|length == 1 %}
|
| 71 |
+
{{- raise_exception("This model only supports single tool-calls at once!") }}
|
| 72 |
+
{%- endif %}
|
| 73 |
+
{%- set tool_call = message.tool_calls[0].function %}
|
| 74 |
+
{%- if builtin_tools is defined and tool_call.name in builtin_tools %}
|
| 75 |
+
{{- '<|start_header_id|>assistant<|end_header_id|>\n\n' -}}
|
| 76 |
+
{{- "<|python_tag|>" + tool_call.name + ".call(" }}
|
| 77 |
+
{%- for arg_name, arg_val in tool_call.arguments | items %}
|
| 78 |
+
{{- arg_name + '="' + arg_val + '"' }}
|
| 79 |
+
{%- if not loop.last %}
|
| 80 |
+
{{- ", " }}
|
| 81 |
+
{%- endif %}
|
| 82 |
+
{%- endfor %}
|
| 83 |
+
{{- ")" }}
|
| 84 |
+
{%- else %}
|
| 85 |
+
{{- '<|start_header_id|>assistant<|end_header_id|>\n\n' -}}
|
| 86 |
+
{{- '{"name": "' + tool_call.name + '", ' }}
|
| 87 |
+
{{- '"parameters": ' }}
|
| 88 |
+
{{- tool_call.arguments | tojson }}
|
| 89 |
+
{{- "}" }}
|
| 90 |
+
{%- endif %}
|
| 91 |
+
{%- if builtin_tools is defined %}
|
| 92 |
+
{#- This means we're in ipython mode #}
|
| 93 |
+
{{- "<|eom_id|>" }}
|
| 94 |
+
{%- else %}
|
| 95 |
+
{{- "<|eot_id|>" }}
|
| 96 |
+
{%- endif %}
|
| 97 |
+
{%- elif message.role == "tool" or message.role == "ipython" %}
|
| 98 |
+
{{- "<|start_header_id|>ipython<|end_header_id|>\n\n" }}
|
| 99 |
+
{%- if message.content is mapping or message.content is iterable %}
|
| 100 |
+
{{- message.content | tojson }}
|
| 101 |
+
{%- else %}
|
| 102 |
+
{{- message.content }}
|
| 103 |
+
{%- endif %}
|
| 104 |
+
{{- "<|eot_id|>" }}
|
| 105 |
+
{%- endif %}
|
| 106 |
+
{%- endfor %}
|
| 107 |
+
{%- if add_generation_prompt %}
|
| 108 |
+
{{- '<|start_header_id|>assistant<|end_header_id|>\n\n' }}
|
| 109 |
+
{%- endif %}
|
consciousness/checkpoint-1125/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d6f71682a7cc7ff19459018202fe6c95a67a1f308af06926e14f039c612e6e27
|
| 3 |
+
size 54745547
|
consciousness/checkpoint-1125/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8d7c2bfaf680528eb393bf7b7edd31580bea5bb0bfa92242241681bd71bd2442
|
| 3 |
+
size 14645
|
consciousness/checkpoint-1125/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cb2a37c55dd5d7928c5b2c15b7d4f650fade3ddb7af6dc8961ca05874b789488
|
| 3 |
+
size 1465
|
consciousness/checkpoint-1125/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6b9e4e7fb171f92fd137b777cc2714bf87d11576700a1dcd7a399e7bbe39537b
|
| 3 |
+
size 17209920
|
consciousness/checkpoint-1125/tokenizer_config.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"backend": "tokenizers",
|
| 3 |
+
"bos_token": "<|begin_of_text|>",
|
| 4 |
+
"clean_up_tokenization_spaces": true,
|
| 5 |
+
"eos_token": "<|eot_id|>",
|
| 6 |
+
"is_local": false,
|
| 7 |
+
"model_input_names": [
|
| 8 |
+
"input_ids",
|
| 9 |
+
"attention_mask"
|
| 10 |
+
],
|
| 11 |
+
"model_max_length": 131072,
|
| 12 |
+
"pad_token": "<|eot_id|>",
|
| 13 |
+
"tokenizer_class": "TokenizersBackend"
|
| 14 |
+
}
|
consciousness/checkpoint-1125/trainer_state.json
ADDED
|
@@ -0,0 +1,1154 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 3.0,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 1125,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"entropy": 2.8901569664478304,
|
| 14 |
+
"epoch": 0.02666666666666667,
|
| 15 |
+
"grad_norm": 0.267578125,
|
| 16 |
+
"learning_rate": 5.294117647058824e-05,
|
| 17 |
+
"loss": 2.9965847015380858,
|
| 18 |
+
"mean_token_accuracy": 0.4477638125419617,
|
| 19 |
+
"num_tokens": 57327.0,
|
| 20 |
+
"step": 10
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"entropy": 2.431850343942642,
|
| 24 |
+
"epoch": 0.05333333333333334,
|
| 25 |
+
"grad_norm": 0.255859375,
|
| 26 |
+
"learning_rate": 0.00011176470588235294,
|
| 27 |
+
"loss": 2.636348533630371,
|
| 28 |
+
"mean_token_accuracy": 0.4853471860289574,
|
| 29 |
+
"num_tokens": 115513.0,
|
| 30 |
+
"step": 20
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"entropy": 2.0503339916467667,
|
| 34 |
+
"epoch": 0.08,
|
| 35 |
+
"grad_norm": 0.2734375,
|
| 36 |
+
"learning_rate": 0.00017058823529411766,
|
| 37 |
+
"loss": 1.9743734359741212,
|
| 38 |
+
"mean_token_accuracy": 0.5749435268342495,
|
| 39 |
+
"num_tokens": 173246.0,
|
| 40 |
+
"step": 30
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"entropy": 1.4122730612754821,
|
| 44 |
+
"epoch": 0.10666666666666667,
|
| 45 |
+
"grad_norm": 0.357421875,
|
| 46 |
+
"learning_rate": 0.00019908340971585702,
|
| 47 |
+
"loss": 1.3748690605163574,
|
| 48 |
+
"mean_token_accuracy": 0.6867235794663429,
|
| 49 |
+
"num_tokens": 231278.0,
|
| 50 |
+
"step": 40
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"entropy": 1.0256530404090882,
|
| 54 |
+
"epoch": 0.13333333333333333,
|
| 55 |
+
"grad_norm": 0.359375,
|
| 56 |
+
"learning_rate": 0.00019725022914757106,
|
| 57 |
+
"loss": 0.9704485893249511,
|
| 58 |
+
"mean_token_accuracy": 0.7766638442873954,
|
| 59 |
+
"num_tokens": 288393.0,
|
| 60 |
+
"step": 50
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"entropy": 0.7456447497010231,
|
| 64 |
+
"epoch": 0.16,
|
| 65 |
+
"grad_norm": 0.328125,
|
| 66 |
+
"learning_rate": 0.00019541704857928507,
|
| 67 |
+
"loss": 0.6671554565429687,
|
| 68 |
+
"mean_token_accuracy": 0.845753838121891,
|
| 69 |
+
"num_tokens": 346339.0,
|
| 70 |
+
"step": 60
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"entropy": 0.537605831772089,
|
| 74 |
+
"epoch": 0.18666666666666668,
|
| 75 |
+
"grad_norm": 0.328125,
|
| 76 |
+
"learning_rate": 0.00019358386801099912,
|
| 77 |
+
"loss": 0.4658506393432617,
|
| 78 |
+
"mean_token_accuracy": 0.8909643113613128,
|
| 79 |
+
"num_tokens": 404015.0,
|
| 80 |
+
"step": 70
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"entropy": 0.37200461626052855,
|
| 84 |
+
"epoch": 0.21333333333333335,
|
| 85 |
+
"grad_norm": 0.283203125,
|
| 86 |
+
"learning_rate": 0.0001917506874427131,
|
| 87 |
+
"loss": 0.3085629940032959,
|
| 88 |
+
"mean_token_accuracy": 0.9280218213796616,
|
| 89 |
+
"num_tokens": 461115.0,
|
| 90 |
+
"step": 80
|
| 91 |
+
},
|
| 92 |
+
{
|
| 93 |
+
"entropy": 0.2607572071254253,
|
| 94 |
+
"epoch": 0.24,
|
| 95 |
+
"grad_norm": 0.267578125,
|
| 96 |
+
"learning_rate": 0.00018991750687442712,
|
| 97 |
+
"loss": 0.21192119121551514,
|
| 98 |
+
"mean_token_accuracy": 0.9511988922953606,
|
| 99 |
+
"num_tokens": 518926.0,
|
| 100 |
+
"step": 90
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"entropy": 0.21099306046962737,
|
| 104 |
+
"epoch": 0.26666666666666666,
|
| 105 |
+
"grad_norm": 0.2021484375,
|
| 106 |
+
"learning_rate": 0.00018808432630614116,
|
| 107 |
+
"loss": 0.1747212290763855,
|
| 108 |
+
"mean_token_accuracy": 0.9576459184288979,
|
| 109 |
+
"num_tokens": 577120.0,
|
| 110 |
+
"step": 100
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"entropy": 0.1670930277556181,
|
| 114 |
+
"epoch": 0.29333333333333333,
|
| 115 |
+
"grad_norm": 0.2431640625,
|
| 116 |
+
"learning_rate": 0.00018625114573785518,
|
| 117 |
+
"loss": 0.14222853183746337,
|
| 118 |
+
"mean_token_accuracy": 0.9636133790016175,
|
| 119 |
+
"num_tokens": 635382.0,
|
| 120 |
+
"step": 110
|
| 121 |
+
},
|
| 122 |
+
{
|
| 123 |
+
"entropy": 0.15717535726726056,
|
| 124 |
+
"epoch": 0.32,
|
| 125 |
+
"grad_norm": 0.12890625,
|
| 126 |
+
"learning_rate": 0.00018441796516956922,
|
| 127 |
+
"loss": 0.13076614141464232,
|
| 128 |
+
"mean_token_accuracy": 0.9650501102209091,
|
| 129 |
+
"num_tokens": 692813.0,
|
| 130 |
+
"step": 120
|
| 131 |
+
},
|
| 132 |
+
{
|
| 133 |
+
"entropy": 0.14444066677242517,
|
| 134 |
+
"epoch": 0.3466666666666667,
|
| 135 |
+
"grad_norm": 0.1640625,
|
| 136 |
+
"learning_rate": 0.00018258478460128323,
|
| 137 |
+
"loss": 0.11674572229385376,
|
| 138 |
+
"mean_token_accuracy": 0.9665236040949822,
|
| 139 |
+
"num_tokens": 750815.0,
|
| 140 |
+
"step": 130
|
| 141 |
+
},
|
| 142 |
+
{
|
| 143 |
+
"entropy": 0.1316229362040758,
|
| 144 |
+
"epoch": 0.37333333333333335,
|
| 145 |
+
"grad_norm": 0.177734375,
|
| 146 |
+
"learning_rate": 0.00018075160403299728,
|
| 147 |
+
"loss": 0.10633546113967896,
|
| 148 |
+
"mean_token_accuracy": 0.9686767488718033,
|
| 149 |
+
"num_tokens": 809607.0,
|
| 150 |
+
"step": 140
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"entropy": 0.12511782981455327,
|
| 154 |
+
"epoch": 0.4,
|
| 155 |
+
"grad_norm": 0.1103515625,
|
| 156 |
+
"learning_rate": 0.0001789184234647113,
|
| 157 |
+
"loss": 0.10267382860183716,
|
| 158 |
+
"mean_token_accuracy": 0.9692023977637291,
|
| 159 |
+
"num_tokens": 867374.0,
|
| 160 |
+
"step": 150
|
| 161 |
+
},
|
| 162 |
+
{
|
| 163 |
+
"entropy": 0.1147347992286086,
|
| 164 |
+
"epoch": 0.4266666666666667,
|
| 165 |
+
"grad_norm": 0.10302734375,
|
| 166 |
+
"learning_rate": 0.0001770852428964253,
|
| 167 |
+
"loss": 0.09604376554489136,
|
| 168 |
+
"mean_token_accuracy": 0.9704543471336364,
|
| 169 |
+
"num_tokens": 925873.0,
|
| 170 |
+
"step": 160
|
| 171 |
+
},
|
| 172 |
+
{
|
| 173 |
+
"entropy": 0.11136603765189648,
|
| 174 |
+
"epoch": 0.4533333333333333,
|
| 175 |
+
"grad_norm": 0.12158203125,
|
| 176 |
+
"learning_rate": 0.00017525206232813932,
|
| 177 |
+
"loss": 0.09679205417633056,
|
| 178 |
+
"mean_token_accuracy": 0.9701795622706413,
|
| 179 |
+
"num_tokens": 983653.0,
|
| 180 |
+
"step": 170
|
| 181 |
+
},
|
| 182 |
+
{
|
| 183 |
+
"entropy": 0.10962173249572515,
|
| 184 |
+
"epoch": 0.48,
|
| 185 |
+
"grad_norm": 0.10986328125,
|
| 186 |
+
"learning_rate": 0.00017341888175985334,
|
| 187 |
+
"loss": 0.09156813025474549,
|
| 188 |
+
"mean_token_accuracy": 0.971354915201664,
|
| 189 |
+
"num_tokens": 1041996.0,
|
| 190 |
+
"step": 180
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"entropy": 0.10233879294246435,
|
| 194 |
+
"epoch": 0.5066666666666667,
|
| 195 |
+
"grad_norm": 0.2431640625,
|
| 196 |
+
"learning_rate": 0.00017158570119156738,
|
| 197 |
+
"loss": 0.09264941811561585,
|
| 198 |
+
"mean_token_accuracy": 0.9716016605496407,
|
| 199 |
+
"num_tokens": 1100105.0,
|
| 200 |
+
"step": 190
|
| 201 |
+
},
|
| 202 |
+
{
|
| 203 |
+
"entropy": 0.10874027330428362,
|
| 204 |
+
"epoch": 0.5333333333333333,
|
| 205 |
+
"grad_norm": 0.103515625,
|
| 206 |
+
"learning_rate": 0.0001697525206232814,
|
| 207 |
+
"loss": 0.09393113255500793,
|
| 208 |
+
"mean_token_accuracy": 0.9707169815897941,
|
| 209 |
+
"num_tokens": 1157940.0,
|
| 210 |
+
"step": 200
|
| 211 |
+
},
|
| 212 |
+
{
|
| 213 |
+
"entropy": 0.10715384036302567,
|
| 214 |
+
"epoch": 0.56,
|
| 215 |
+
"grad_norm": 0.0927734375,
|
| 216 |
+
"learning_rate": 0.00016791934005499544,
|
| 217 |
+
"loss": 0.08979941606521606,
|
| 218 |
+
"mean_token_accuracy": 0.9710627257823944,
|
| 219 |
+
"num_tokens": 1216048.0,
|
| 220 |
+
"step": 210
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"entropy": 0.09897389095276594,
|
| 224 |
+
"epoch": 0.5866666666666667,
|
| 225 |
+
"grad_norm": 0.1005859375,
|
| 226 |
+
"learning_rate": 0.00016608615948670945,
|
| 227 |
+
"loss": 0.08646941781044007,
|
| 228 |
+
"mean_token_accuracy": 0.9712389498949051,
|
| 229 |
+
"num_tokens": 1274357.0,
|
| 230 |
+
"step": 220
|
| 231 |
+
},
|
| 232 |
+
{
|
| 233 |
+
"entropy": 0.09603469483554364,
|
| 234 |
+
"epoch": 0.6133333333333333,
|
| 235 |
+
"grad_norm": 0.09716796875,
|
| 236 |
+
"learning_rate": 0.0001642529789184235,
|
| 237 |
+
"loss": 0.08556437492370605,
|
| 238 |
+
"mean_token_accuracy": 0.9711127072572708,
|
| 239 |
+
"num_tokens": 1332152.0,
|
| 240 |
+
"step": 230
|
| 241 |
+
},
|
| 242 |
+
{
|
| 243 |
+
"entropy": 0.09263445399701595,
|
| 244 |
+
"epoch": 0.64,
|
| 245 |
+
"grad_norm": 0.1396484375,
|
| 246 |
+
"learning_rate": 0.0001624197983501375,
|
| 247 |
+
"loss": 0.08339133858680725,
|
| 248 |
+
"mean_token_accuracy": 0.9719239071011543,
|
| 249 |
+
"num_tokens": 1389574.0,
|
| 250 |
+
"step": 240
|
| 251 |
+
},
|
| 252 |
+
{
|
| 253 |
+
"entropy": 0.09686502479016781,
|
| 254 |
+
"epoch": 0.6666666666666666,
|
| 255 |
+
"grad_norm": 0.0712890625,
|
| 256 |
+
"learning_rate": 0.00016058661778185152,
|
| 257 |
+
"loss": 0.08281562328338624,
|
| 258 |
+
"mean_token_accuracy": 0.9720177337527275,
|
| 259 |
+
"num_tokens": 1447409.0,
|
| 260 |
+
"step": 250
|
| 261 |
+
},
|
| 262 |
+
{
|
| 263 |
+
"entropy": 0.08692479655146598,
|
| 264 |
+
"epoch": 0.6933333333333334,
|
| 265 |
+
"grad_norm": 0.0830078125,
|
| 266 |
+
"learning_rate": 0.00015875343721356554,
|
| 267 |
+
"loss": 0.08078550696372985,
|
| 268 |
+
"mean_token_accuracy": 0.9726089149713516,
|
| 269 |
+
"num_tokens": 1506058.0,
|
| 270 |
+
"step": 260
|
| 271 |
+
},
|
| 272 |
+
{
|
| 273 |
+
"entropy": 0.09034751150757074,
|
| 274 |
+
"epoch": 0.72,
|
| 275 |
+
"grad_norm": 0.08935546875,
|
| 276 |
+
"learning_rate": 0.00015692025664527955,
|
| 277 |
+
"loss": 0.08023000955581665,
|
| 278 |
+
"mean_token_accuracy": 0.9725215956568718,
|
| 279 |
+
"num_tokens": 1563817.0,
|
| 280 |
+
"step": 270
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"entropy": 0.08724061641842126,
|
| 284 |
+
"epoch": 0.7466666666666667,
|
| 285 |
+
"grad_norm": 0.09423828125,
|
| 286 |
+
"learning_rate": 0.0001550870760769936,
|
| 287 |
+
"loss": 0.0812032699584961,
|
| 288 |
+
"mean_token_accuracy": 0.9722012594342232,
|
| 289 |
+
"num_tokens": 1621737.0,
|
| 290 |
+
"step": 280
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"entropy": 0.08758355937898159,
|
| 294 |
+
"epoch": 0.7733333333333333,
|
| 295 |
+
"grad_norm": 0.2099609375,
|
| 296 |
+
"learning_rate": 0.0001532538955087076,
|
| 297 |
+
"loss": 0.08142906427383423,
|
| 298 |
+
"mean_token_accuracy": 0.9718389093875885,
|
| 299 |
+
"num_tokens": 1679970.0,
|
| 300 |
+
"step": 290
|
| 301 |
+
},
|
| 302 |
+
{
|
| 303 |
+
"entropy": 0.08803936429321765,
|
| 304 |
+
"epoch": 0.8,
|
| 305 |
+
"grad_norm": 0.12451171875,
|
| 306 |
+
"learning_rate": 0.00015142071494042165,
|
| 307 |
+
"loss": 0.0806335985660553,
|
| 308 |
+
"mean_token_accuracy": 0.9723069176077843,
|
| 309 |
+
"num_tokens": 1738304.0,
|
| 310 |
+
"step": 300
|
| 311 |
+
},
|
| 312 |
+
{
|
| 313 |
+
"entropy": 0.0896342158317566,
|
| 314 |
+
"epoch": 0.8266666666666667,
|
| 315 |
+
"grad_norm": 0.059814453125,
|
| 316 |
+
"learning_rate": 0.00014958753437213567,
|
| 317 |
+
"loss": 0.08014391660690308,
|
| 318 |
+
"mean_token_accuracy": 0.9721709281206131,
|
| 319 |
+
"num_tokens": 1795881.0,
|
| 320 |
+
"step": 310
|
| 321 |
+
},
|
| 322 |
+
{
|
| 323 |
+
"entropy": 0.08054284229874611,
|
| 324 |
+
"epoch": 0.8533333333333334,
|
| 325 |
+
"grad_norm": 0.09033203125,
|
| 326 |
+
"learning_rate": 0.00014775435380384968,
|
| 327 |
+
"loss": 0.07684423327445984,
|
| 328 |
+
"mean_token_accuracy": 0.9731693744659424,
|
| 329 |
+
"num_tokens": 1854853.0,
|
| 330 |
+
"step": 320
|
| 331 |
+
},
|
| 332 |
+
{
|
| 333 |
+
"entropy": 0.0840398171916604,
|
| 334 |
+
"epoch": 0.88,
|
| 335 |
+
"grad_norm": 0.05224609375,
|
| 336 |
+
"learning_rate": 0.00014592117323556373,
|
| 337 |
+
"loss": 0.07634277939796448,
|
| 338 |
+
"mean_token_accuracy": 0.9732364892959595,
|
| 339 |
+
"num_tokens": 1912939.0,
|
| 340 |
+
"step": 330
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"entropy": 0.08260406106710434,
|
| 344 |
+
"epoch": 0.9066666666666666,
|
| 345 |
+
"grad_norm": 0.072265625,
|
| 346 |
+
"learning_rate": 0.00014408799266727771,
|
| 347 |
+
"loss": 0.076292884349823,
|
| 348 |
+
"mean_token_accuracy": 0.9736541777849197,
|
| 349 |
+
"num_tokens": 1971345.0,
|
| 350 |
+
"step": 340
|
| 351 |
+
},
|
| 352 |
+
{
|
| 353 |
+
"entropy": 0.08077720124274493,
|
| 354 |
+
"epoch": 0.9333333333333333,
|
| 355 |
+
"grad_norm": 0.057373046875,
|
| 356 |
+
"learning_rate": 0.00014225481209899176,
|
| 357 |
+
"loss": 0.07518362402915954,
|
| 358 |
+
"mean_token_accuracy": 0.9735523566603661,
|
| 359 |
+
"num_tokens": 2029618.0,
|
| 360 |
+
"step": 350
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"entropy": 0.0814354794099927,
|
| 364 |
+
"epoch": 0.96,
|
| 365 |
+
"grad_norm": 0.087890625,
|
| 366 |
+
"learning_rate": 0.00014042163153070577,
|
| 367 |
+
"loss": 0.07500824928283692,
|
| 368 |
+
"mean_token_accuracy": 0.9733900666236878,
|
| 369 |
+
"num_tokens": 2088198.0,
|
| 370 |
+
"step": 360
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"entropy": 0.08081495910882949,
|
| 374 |
+
"epoch": 0.9866666666666667,
|
| 375 |
+
"grad_norm": 0.05810546875,
|
| 376 |
+
"learning_rate": 0.0001385884509624198,
|
| 377 |
+
"loss": 0.07559239268302917,
|
| 378 |
+
"mean_token_accuracy": 0.9732825100421906,
|
| 379 |
+
"num_tokens": 2145822.0,
|
| 380 |
+
"step": 370
|
| 381 |
+
},
|
| 382 |
+
{
|
| 383 |
+
"entropy": 0.08157326076179743,
|
| 384 |
+
"epoch": 1.0133333333333334,
|
| 385 |
+
"grad_norm": 0.058837890625,
|
| 386 |
+
"learning_rate": 0.00013675527039413383,
|
| 387 |
+
"loss": 0.07452890872955323,
|
| 388 |
+
"mean_token_accuracy": 0.9733605772256851,
|
| 389 |
+
"num_tokens": 2203248.0,
|
| 390 |
+
"step": 380
|
| 391 |
+
},
|
| 392 |
+
{
|
| 393 |
+
"entropy": 0.07517405189573764,
|
| 394 |
+
"epoch": 1.04,
|
| 395 |
+
"grad_norm": 0.087890625,
|
| 396 |
+
"learning_rate": 0.00013492208982584784,
|
| 397 |
+
"loss": 0.07157951593399048,
|
| 398 |
+
"mean_token_accuracy": 0.9741677790880203,
|
| 399 |
+
"num_tokens": 2261444.0,
|
| 400 |
+
"step": 390
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"entropy": 0.07766247931867838,
|
| 404 |
+
"epoch": 1.0666666666666667,
|
| 405 |
+
"grad_norm": 0.060302734375,
|
| 406 |
+
"learning_rate": 0.00013308890925756189,
|
| 407 |
+
"loss": 0.07183201909065247,
|
| 408 |
+
"mean_token_accuracy": 0.9740341395139694,
|
| 409 |
+
"num_tokens": 2319551.0,
|
| 410 |
+
"step": 400
|
| 411 |
+
},
|
| 412 |
+
{
|
| 413 |
+
"entropy": 0.07695812471210957,
|
| 414 |
+
"epoch": 1.0933333333333333,
|
| 415 |
+
"grad_norm": 0.054443359375,
|
| 416 |
+
"learning_rate": 0.0001312557286892759,
|
| 417 |
+
"loss": 0.07332680225372315,
|
| 418 |
+
"mean_token_accuracy": 0.9733265534043312,
|
| 419 |
+
"num_tokens": 2377422.0,
|
| 420 |
+
"step": 410
|
| 421 |
+
},
|
| 422 |
+
{
|
| 423 |
+
"entropy": 0.07884457465261221,
|
| 424 |
+
"epoch": 1.12,
|
| 425 |
+
"grad_norm": 0.060791015625,
|
| 426 |
+
"learning_rate": 0.00012942254812098992,
|
| 427 |
+
"loss": 0.07316585779190063,
|
| 428 |
+
"mean_token_accuracy": 0.973577855527401,
|
| 429 |
+
"num_tokens": 2435382.0,
|
| 430 |
+
"step": 420
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"entropy": 0.07917917389422655,
|
| 434 |
+
"epoch": 1.1466666666666667,
|
| 435 |
+
"grad_norm": 0.0771484375,
|
| 436 |
+
"learning_rate": 0.00012758936755270393,
|
| 437 |
+
"loss": 0.07189081907272339,
|
| 438 |
+
"mean_token_accuracy": 0.9741694211959839,
|
| 439 |
+
"num_tokens": 2493780.0,
|
| 440 |
+
"step": 430
|
| 441 |
+
},
|
| 442 |
+
{
|
| 443 |
+
"entropy": 0.07554319184273481,
|
| 444 |
+
"epoch": 1.1733333333333333,
|
| 445 |
+
"grad_norm": 0.126953125,
|
| 446 |
+
"learning_rate": 0.00012575618698441797,
|
| 447 |
+
"loss": 0.07339509725570678,
|
| 448 |
+
"mean_token_accuracy": 0.9734218120574951,
|
| 449 |
+
"num_tokens": 2551587.0,
|
| 450 |
+
"step": 440
|
| 451 |
+
},
|
| 452 |
+
{
|
| 453 |
+
"entropy": 0.0771414702758193,
|
| 454 |
+
"epoch": 1.2,
|
| 455 |
+
"grad_norm": 0.052490234375,
|
| 456 |
+
"learning_rate": 0.000123923006416132,
|
| 457 |
+
"loss": 0.07223436832427979,
|
| 458 |
+
"mean_token_accuracy": 0.9731230854988098,
|
| 459 |
+
"num_tokens": 2609738.0,
|
| 460 |
+
"step": 450
|
| 461 |
+
},
|
| 462 |
+
{
|
| 463 |
+
"entropy": 0.07702515590935946,
|
| 464 |
+
"epoch": 1.2266666666666666,
|
| 465 |
+
"grad_norm": 0.05078125,
|
| 466 |
+
"learning_rate": 0.00012208982584784603,
|
| 467 |
+
"loss": 0.07126941084861756,
|
| 468 |
+
"mean_token_accuracy": 0.9743727937340736,
|
| 469 |
+
"num_tokens": 2667570.0,
|
| 470 |
+
"step": 460
|
| 471 |
+
},
|
| 472 |
+
{
|
| 473 |
+
"entropy": 0.0751312056556344,
|
| 474 |
+
"epoch": 1.2533333333333334,
|
| 475 |
+
"grad_norm": 0.052490234375,
|
| 476 |
+
"learning_rate": 0.00012025664527956005,
|
| 477 |
+
"loss": 0.07185030579566956,
|
| 478 |
+
"mean_token_accuracy": 0.9739165529608727,
|
| 479 |
+
"num_tokens": 2725220.0,
|
| 480 |
+
"step": 470
|
| 481 |
+
},
|
| 482 |
+
{
|
| 483 |
+
"entropy": 0.07488212268799543,
|
| 484 |
+
"epoch": 1.28,
|
| 485 |
+
"grad_norm": 0.0517578125,
|
| 486 |
+
"learning_rate": 0.00011842346471127406,
|
| 487 |
+
"loss": 0.07148469686508178,
|
| 488 |
+
"mean_token_accuracy": 0.973349143564701,
|
| 489 |
+
"num_tokens": 2782737.0,
|
| 490 |
+
"step": 480
|
| 491 |
+
},
|
| 492 |
+
{
|
| 493 |
+
"entropy": 0.07398118702694774,
|
| 494 |
+
"epoch": 1.3066666666666666,
|
| 495 |
+
"grad_norm": 0.044677734375,
|
| 496 |
+
"learning_rate": 0.00011659028414298809,
|
| 497 |
+
"loss": 0.06911076903343201,
|
| 498 |
+
"mean_token_accuracy": 0.9739873677492141,
|
| 499 |
+
"num_tokens": 2841536.0,
|
| 500 |
+
"step": 490
|
| 501 |
+
},
|
| 502 |
+
{
|
| 503 |
+
"entropy": 0.07522298116236925,
|
| 504 |
+
"epoch": 1.3333333333333333,
|
| 505 |
+
"grad_norm": 0.05908203125,
|
| 506 |
+
"learning_rate": 0.0001147571035747021,
|
| 507 |
+
"loss": 0.06964495182037353,
|
| 508 |
+
"mean_token_accuracy": 0.9739961415529251,
|
| 509 |
+
"num_tokens": 2899599.0,
|
| 510 |
+
"step": 500
|
| 511 |
+
},
|
| 512 |
+
{
|
| 513 |
+
"entropy": 0.07469812557101249,
|
| 514 |
+
"epoch": 1.3599999999999999,
|
| 515 |
+
"grad_norm": 0.134765625,
|
| 516 |
+
"learning_rate": 0.00011292392300641615,
|
| 517 |
+
"loss": 0.0720504343509674,
|
| 518 |
+
"mean_token_accuracy": 0.973115186393261,
|
| 519 |
+
"num_tokens": 2956977.0,
|
| 520 |
+
"step": 510
|
| 521 |
+
},
|
| 522 |
+
{
|
| 523 |
+
"entropy": 0.07730768620967865,
|
| 524 |
+
"epoch": 1.3866666666666667,
|
| 525 |
+
"grad_norm": 0.0966796875,
|
| 526 |
+
"learning_rate": 0.00011109074243813016,
|
| 527 |
+
"loss": 0.07261049151420593,
|
| 528 |
+
"mean_token_accuracy": 0.9735311016440391,
|
| 529 |
+
"num_tokens": 3014397.0,
|
| 530 |
+
"step": 520
|
| 531 |
+
},
|
| 532 |
+
{
|
| 533 |
+
"entropy": 0.07650617882609367,
|
| 534 |
+
"epoch": 1.4133333333333333,
|
| 535 |
+
"grad_norm": 0.059814453125,
|
| 536 |
+
"learning_rate": 0.00010925756186984419,
|
| 537 |
+
"loss": 0.07154079675674438,
|
| 538 |
+
"mean_token_accuracy": 0.9735050886869431,
|
| 539 |
+
"num_tokens": 3072014.0,
|
| 540 |
+
"step": 530
|
| 541 |
+
},
|
| 542 |
+
{
|
| 543 |
+
"entropy": 0.07418479155749083,
|
| 544 |
+
"epoch": 1.44,
|
| 545 |
+
"grad_norm": 0.08447265625,
|
| 546 |
+
"learning_rate": 0.0001074243813015582,
|
| 547 |
+
"loss": 0.07014204263687134,
|
| 548 |
+
"mean_token_accuracy": 0.9742872670292855,
|
| 549 |
+
"num_tokens": 3129542.0,
|
| 550 |
+
"step": 540
|
| 551 |
+
},
|
| 552 |
+
{
|
| 553 |
+
"entropy": 0.07493350077420473,
|
| 554 |
+
"epoch": 1.4666666666666668,
|
| 555 |
+
"grad_norm": 0.06396484375,
|
| 556 |
+
"learning_rate": 0.00010559120073327222,
|
| 557 |
+
"loss": 0.0693817377090454,
|
| 558 |
+
"mean_token_accuracy": 0.9750317439436913,
|
| 559 |
+
"num_tokens": 3188756.0,
|
| 560 |
+
"step": 550
|
| 561 |
+
},
|
| 562 |
+
{
|
| 563 |
+
"entropy": 0.07290575439110399,
|
| 564 |
+
"epoch": 1.4933333333333334,
|
| 565 |
+
"grad_norm": 0.0634765625,
|
| 566 |
+
"learning_rate": 0.00010375802016498626,
|
| 567 |
+
"loss": 0.06914764046669006,
|
| 568 |
+
"mean_token_accuracy": 0.9740337684750557,
|
| 569 |
+
"num_tokens": 3246755.0,
|
| 570 |
+
"step": 560
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"entropy": 0.07299449313431979,
|
| 574 |
+
"epoch": 1.52,
|
| 575 |
+
"grad_norm": 0.056396484375,
|
| 576 |
+
"learning_rate": 0.00010192483959670028,
|
| 577 |
+
"loss": 0.06928544640541076,
|
| 578 |
+
"mean_token_accuracy": 0.9739615619182587,
|
| 579 |
+
"num_tokens": 3304396.0,
|
| 580 |
+
"step": 570
|
| 581 |
+
},
|
| 582 |
+
{
|
| 583 |
+
"entropy": 0.07399061964824796,
|
| 584 |
+
"epoch": 1.5466666666666666,
|
| 585 |
+
"grad_norm": 0.049560546875,
|
| 586 |
+
"learning_rate": 0.0001000916590284143,
|
| 587 |
+
"loss": 0.07088688611984253,
|
| 588 |
+
"mean_token_accuracy": 0.9734108299016953,
|
| 589 |
+
"num_tokens": 3361947.0,
|
| 590 |
+
"step": 580
|
| 591 |
+
},
|
| 592 |
+
{
|
| 593 |
+
"entropy": 0.07375452127307654,
|
| 594 |
+
"epoch": 1.5733333333333333,
|
| 595 |
+
"grad_norm": 0.056884765625,
|
| 596 |
+
"learning_rate": 9.825847846012832e-05,
|
| 597 |
+
"loss": 0.06905483603477477,
|
| 598 |
+
"mean_token_accuracy": 0.9750793874263763,
|
| 599 |
+
"num_tokens": 3420088.0,
|
| 600 |
+
"step": 590
|
| 601 |
+
},
|
| 602 |
+
{
|
| 603 |
+
"entropy": 0.0736119981855154,
|
| 604 |
+
"epoch": 1.6,
|
| 605 |
+
"grad_norm": 0.07958984375,
|
| 606 |
+
"learning_rate": 9.642529789184235e-05,
|
| 607 |
+
"loss": 0.06965676546096802,
|
| 608 |
+
"mean_token_accuracy": 0.9740386828780174,
|
| 609 |
+
"num_tokens": 3478106.0,
|
| 610 |
+
"step": 600
|
| 611 |
+
},
|
| 612 |
+
{
|
| 613 |
+
"entropy": 0.07634057383984327,
|
| 614 |
+
"epoch": 1.6266666666666667,
|
| 615 |
+
"grad_norm": 0.045166015625,
|
| 616 |
+
"learning_rate": 9.459211732355638e-05,
|
| 617 |
+
"loss": 0.07061071991920471,
|
| 618 |
+
"mean_token_accuracy": 0.9740972384810448,
|
| 619 |
+
"num_tokens": 3535104.0,
|
| 620 |
+
"step": 610
|
| 621 |
+
},
|
| 622 |
+
{
|
| 623 |
+
"entropy": 0.07195411194115878,
|
| 624 |
+
"epoch": 1.6533333333333333,
|
| 625 |
+
"grad_norm": 0.061279296875,
|
| 626 |
+
"learning_rate": 9.27589367552704e-05,
|
| 627 |
+
"loss": 0.06899864077568055,
|
| 628 |
+
"mean_token_accuracy": 0.9742538690567016,
|
| 629 |
+
"num_tokens": 3592771.0,
|
| 630 |
+
"step": 620
|
| 631 |
+
},
|
| 632 |
+
{
|
| 633 |
+
"entropy": 0.07130216900259256,
|
| 634 |
+
"epoch": 1.6800000000000002,
|
| 635 |
+
"grad_norm": 0.05322265625,
|
| 636 |
+
"learning_rate": 9.092575618698442e-05,
|
| 637 |
+
"loss": 0.06816592216491699,
|
| 638 |
+
"mean_token_accuracy": 0.9751273840665817,
|
| 639 |
+
"num_tokens": 3651210.0,
|
| 640 |
+
"step": 630
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"entropy": 0.07459970507770777,
|
| 644 |
+
"epoch": 1.7066666666666666,
|
| 645 |
+
"grad_norm": 0.08154296875,
|
| 646 |
+
"learning_rate": 8.909257561869845e-05,
|
| 647 |
+
"loss": 0.06940353512763978,
|
| 648 |
+
"mean_token_accuracy": 0.9741591110825538,
|
| 649 |
+
"num_tokens": 3709024.0,
|
| 650 |
+
"step": 640
|
| 651 |
+
},
|
| 652 |
+
{
|
| 653 |
+
"entropy": 0.07277811467647552,
|
| 654 |
+
"epoch": 1.7333333333333334,
|
| 655 |
+
"grad_norm": 0.06298828125,
|
| 656 |
+
"learning_rate": 8.725939505041248e-05,
|
| 657 |
+
"loss": 0.06912165284156799,
|
| 658 |
+
"mean_token_accuracy": 0.9736517399549485,
|
| 659 |
+
"num_tokens": 3766449.0,
|
| 660 |
+
"step": 650
|
| 661 |
+
},
|
| 662 |
+
{
|
| 663 |
+
"entropy": 0.07142239715903997,
|
| 664 |
+
"epoch": 1.76,
|
| 665 |
+
"grad_norm": 0.053466796875,
|
| 666 |
+
"learning_rate": 8.54262144821265e-05,
|
| 667 |
+
"loss": 0.0682906985282898,
|
| 668 |
+
"mean_token_accuracy": 0.9748834028840065,
|
| 669 |
+
"num_tokens": 3824090.0,
|
| 670 |
+
"step": 660
|
| 671 |
+
},
|
| 672 |
+
{
|
| 673 |
+
"entropy": 0.07114961184561253,
|
| 674 |
+
"epoch": 1.7866666666666666,
|
| 675 |
+
"grad_norm": 0.048828125,
|
| 676 |
+
"learning_rate": 8.359303391384051e-05,
|
| 677 |
+
"loss": 0.06772947311401367,
|
| 678 |
+
"mean_token_accuracy": 0.9746391758322716,
|
| 679 |
+
"num_tokens": 3882786.0,
|
| 680 |
+
"step": 670
|
| 681 |
+
},
|
| 682 |
+
{
|
| 683 |
+
"entropy": 0.07262304350733757,
|
| 684 |
+
"epoch": 1.8133333333333335,
|
| 685 |
+
"grad_norm": 0.0849609375,
|
| 686 |
+
"learning_rate": 8.175985334555454e-05,
|
| 687 |
+
"loss": 0.06904927492141724,
|
| 688 |
+
"mean_token_accuracy": 0.9745182231068611,
|
| 689 |
+
"num_tokens": 3940648.0,
|
| 690 |
+
"step": 680
|
| 691 |
+
},
|
| 692 |
+
{
|
| 693 |
+
"entropy": 0.07172201108187437,
|
| 694 |
+
"epoch": 1.8399999999999999,
|
| 695 |
+
"grad_norm": 0.08984375,
|
| 696 |
+
"learning_rate": 7.992667277726857e-05,
|
| 697 |
+
"loss": 0.0677194595336914,
|
| 698 |
+
"mean_token_accuracy": 0.974525648355484,
|
| 699 |
+
"num_tokens": 3998798.0,
|
| 700 |
+
"step": 690
|
| 701 |
+
},
|
| 702 |
+
{
|
| 703 |
+
"entropy": 0.07090398538857698,
|
| 704 |
+
"epoch": 1.8666666666666667,
|
| 705 |
+
"grad_norm": 0.051025390625,
|
| 706 |
+
"learning_rate": 7.809349220898258e-05,
|
| 707 |
+
"loss": 0.06749570369720459,
|
| 708 |
+
"mean_token_accuracy": 0.9741235420107841,
|
| 709 |
+
"num_tokens": 4056793.0,
|
| 710 |
+
"step": 700
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"entropy": 0.07037429772317409,
|
| 714 |
+
"epoch": 1.8933333333333333,
|
| 715 |
+
"grad_norm": 0.053955078125,
|
| 716 |
+
"learning_rate": 7.626031164069661e-05,
|
| 717 |
+
"loss": 0.06616277694702148,
|
| 718 |
+
"mean_token_accuracy": 0.9749814510345459,
|
| 719 |
+
"num_tokens": 4115690.0,
|
| 720 |
+
"step": 710
|
| 721 |
+
},
|
| 722 |
+
{
|
| 723 |
+
"entropy": 0.06948063550516963,
|
| 724 |
+
"epoch": 1.92,
|
| 725 |
+
"grad_norm": 0.0810546875,
|
| 726 |
+
"learning_rate": 7.442713107241064e-05,
|
| 727 |
+
"loss": 0.06898298859596252,
|
| 728 |
+
"mean_token_accuracy": 0.9742853432893753,
|
| 729 |
+
"num_tokens": 4173841.0,
|
| 730 |
+
"step": 720
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"entropy": 0.07196591291576623,
|
| 734 |
+
"epoch": 1.9466666666666668,
|
| 735 |
+
"grad_norm": 0.047607421875,
|
| 736 |
+
"learning_rate": 7.259395050412467e-05,
|
| 737 |
+
"loss": 0.06768189072608947,
|
| 738 |
+
"mean_token_accuracy": 0.9750556230545044,
|
| 739 |
+
"num_tokens": 4232146.0,
|
| 740 |
+
"step": 730
|
| 741 |
+
},
|
| 742 |
+
{
|
| 743 |
+
"entropy": 0.07190824458375573,
|
| 744 |
+
"epoch": 1.9733333333333334,
|
| 745 |
+
"grad_norm": 0.07275390625,
|
| 746 |
+
"learning_rate": 7.076076993583868e-05,
|
| 747 |
+
"loss": 0.06733205318450927,
|
| 748 |
+
"mean_token_accuracy": 0.9746471583843231,
|
| 749 |
+
"num_tokens": 4290020.0,
|
| 750 |
+
"step": 740
|
| 751 |
+
},
|
| 752 |
+
{
|
| 753 |
+
"entropy": 0.07098262775689364,
|
| 754 |
+
"epoch": 2.0,
|
| 755 |
+
"grad_norm": 0.046630859375,
|
| 756 |
+
"learning_rate": 6.89275893675527e-05,
|
| 757 |
+
"loss": 0.06668331623077392,
|
| 758 |
+
"mean_token_accuracy": 0.9744203120470047,
|
| 759 |
+
"num_tokens": 4348788.0,
|
| 760 |
+
"step": 750
|
| 761 |
+
},
|
| 762 |
+
{
|
| 763 |
+
"entropy": 0.07027366831898689,
|
| 764 |
+
"epoch": 2.026666666666667,
|
| 765 |
+
"grad_norm": 0.04931640625,
|
| 766 |
+
"learning_rate": 6.709440879926673e-05,
|
| 767 |
+
"loss": 0.06592612862586975,
|
| 768 |
+
"mean_token_accuracy": 0.974977059662342,
|
| 769 |
+
"num_tokens": 4406426.0,
|
| 770 |
+
"step": 760
|
| 771 |
+
},
|
| 772 |
+
{
|
| 773 |
+
"entropy": 0.06931058187037706,
|
| 774 |
+
"epoch": 2.0533333333333332,
|
| 775 |
+
"grad_norm": 0.05615234375,
|
| 776 |
+
"learning_rate": 6.526122823098076e-05,
|
| 777 |
+
"loss": 0.06590970754623413,
|
| 778 |
+
"mean_token_accuracy": 0.9754465237259865,
|
| 779 |
+
"num_tokens": 4464145.0,
|
| 780 |
+
"step": 770
|
| 781 |
+
},
|
| 782 |
+
{
|
| 783 |
+
"entropy": 0.06888462873175741,
|
| 784 |
+
"epoch": 2.08,
|
| 785 |
+
"grad_norm": 0.0771484375,
|
| 786 |
+
"learning_rate": 6.342804766269478e-05,
|
| 787 |
+
"loss": 0.06574443578720093,
|
| 788 |
+
"mean_token_accuracy": 0.9753611847758293,
|
| 789 |
+
"num_tokens": 4522337.0,
|
| 790 |
+
"step": 780
|
| 791 |
+
},
|
| 792 |
+
{
|
| 793 |
+
"entropy": 0.06854705391451717,
|
| 794 |
+
"epoch": 2.1066666666666665,
|
| 795 |
+
"grad_norm": 0.048583984375,
|
| 796 |
+
"learning_rate": 6.15948670944088e-05,
|
| 797 |
+
"loss": 0.06521100401878357,
|
| 798 |
+
"mean_token_accuracy": 0.9753493323922158,
|
| 799 |
+
"num_tokens": 4580367.0,
|
| 800 |
+
"step": 790
|
| 801 |
+
},
|
| 802 |
+
{
|
| 803 |
+
"entropy": 0.07078330684453249,
|
| 804 |
+
"epoch": 2.1333333333333333,
|
| 805 |
+
"grad_norm": 0.05615234375,
|
| 806 |
+
"learning_rate": 5.976168652612283e-05,
|
| 807 |
+
"loss": 0.06622718572616577,
|
| 808 |
+
"mean_token_accuracy": 0.9753074139356613,
|
| 809 |
+
"num_tokens": 4637987.0,
|
| 810 |
+
"step": 800
|
| 811 |
+
},
|
| 812 |
+
{
|
| 813 |
+
"entropy": 0.06828645439818501,
|
| 814 |
+
"epoch": 2.16,
|
| 815 |
+
"grad_norm": 0.05322265625,
|
| 816 |
+
"learning_rate": 5.792850595783685e-05,
|
| 817 |
+
"loss": 0.06564919948577881,
|
| 818 |
+
"mean_token_accuracy": 0.9755483835935592,
|
| 819 |
+
"num_tokens": 4695886.0,
|
| 820 |
+
"step": 810
|
| 821 |
+
},
|
| 822 |
+
{
|
| 823 |
+
"entropy": 0.06908007161691784,
|
| 824 |
+
"epoch": 2.1866666666666665,
|
| 825 |
+
"grad_norm": 0.053955078125,
|
| 826 |
+
"learning_rate": 5.6095325389550866e-05,
|
| 827 |
+
"loss": 0.06564045548439026,
|
| 828 |
+
"mean_token_accuracy": 0.9750929772853851,
|
| 829 |
+
"num_tokens": 4753433.0,
|
| 830 |
+
"step": 820
|
| 831 |
+
},
|
| 832 |
+
{
|
| 833 |
+
"entropy": 0.0687640338204801,
|
| 834 |
+
"epoch": 2.2133333333333334,
|
| 835 |
+
"grad_norm": 0.052001953125,
|
| 836 |
+
"learning_rate": 5.4262144821264894e-05,
|
| 837 |
+
"loss": 0.06568140983581543,
|
| 838 |
+
"mean_token_accuracy": 0.9756649106740951,
|
| 839 |
+
"num_tokens": 4811459.0,
|
| 840 |
+
"step": 830
|
| 841 |
+
},
|
| 842 |
+
{
|
| 843 |
+
"entropy": 0.06845789151266217,
|
| 844 |
+
"epoch": 2.24,
|
| 845 |
+
"grad_norm": 0.05322265625,
|
| 846 |
+
"learning_rate": 5.2428964252978916e-05,
|
| 847 |
+
"loss": 0.0644676923751831,
|
| 848 |
+
"mean_token_accuracy": 0.975266519188881,
|
| 849 |
+
"num_tokens": 4870185.0,
|
| 850 |
+
"step": 840
|
| 851 |
+
},
|
| 852 |
+
{
|
| 853 |
+
"entropy": 0.06863211318850518,
|
| 854 |
+
"epoch": 2.2666666666666666,
|
| 855 |
+
"grad_norm": 0.04541015625,
|
| 856 |
+
"learning_rate": 5.0595783684692945e-05,
|
| 857 |
+
"loss": 0.06450478434562683,
|
| 858 |
+
"mean_token_accuracy": 0.9765662357211113,
|
| 859 |
+
"num_tokens": 4928705.0,
|
| 860 |
+
"step": 850
|
| 861 |
+
},
|
| 862 |
+
{
|
| 863 |
+
"entropy": 0.06972924629226326,
|
| 864 |
+
"epoch": 2.2933333333333334,
|
| 865 |
+
"grad_norm": 0.052001953125,
|
| 866 |
+
"learning_rate": 4.876260311640697e-05,
|
| 867 |
+
"loss": 0.06663312911987304,
|
| 868 |
+
"mean_token_accuracy": 0.974696435034275,
|
| 869 |
+
"num_tokens": 4985443.0,
|
| 870 |
+
"step": 860
|
| 871 |
+
},
|
| 872 |
+
{
|
| 873 |
+
"entropy": 0.06926036775112152,
|
| 874 |
+
"epoch": 2.32,
|
| 875 |
+
"grad_norm": 0.050537109375,
|
| 876 |
+
"learning_rate": 4.6929422548120995e-05,
|
| 877 |
+
"loss": 0.06713547110557556,
|
| 878 |
+
"mean_token_accuracy": 0.974915811419487,
|
| 879 |
+
"num_tokens": 5042822.0,
|
| 880 |
+
"step": 870
|
| 881 |
+
},
|
| 882 |
+
{
|
| 883 |
+
"entropy": 0.07052302733063698,
|
| 884 |
+
"epoch": 2.3466666666666667,
|
| 885 |
+
"grad_norm": 0.0634765625,
|
| 886 |
+
"learning_rate": 4.509624197983501e-05,
|
| 887 |
+
"loss": 0.06567599177360535,
|
| 888 |
+
"mean_token_accuracy": 0.9748982191085815,
|
| 889 |
+
"num_tokens": 5100175.0,
|
| 890 |
+
"step": 880
|
| 891 |
+
},
|
| 892 |
+
{
|
| 893 |
+
"entropy": 0.06812258837744593,
|
| 894 |
+
"epoch": 2.3733333333333335,
|
| 895 |
+
"grad_norm": 0.046875,
|
| 896 |
+
"learning_rate": 4.326306141154904e-05,
|
| 897 |
+
"loss": 0.06469246745109558,
|
| 898 |
+
"mean_token_accuracy": 0.9756363064050675,
|
| 899 |
+
"num_tokens": 5158712.0,
|
| 900 |
+
"step": 890
|
| 901 |
+
},
|
| 902 |
+
{
|
| 903 |
+
"entropy": 0.06816195128485561,
|
| 904 |
+
"epoch": 2.4,
|
| 905 |
+
"grad_norm": 0.052734375,
|
| 906 |
+
"learning_rate": 4.142988084326306e-05,
|
| 907 |
+
"loss": 0.06546497344970703,
|
| 908 |
+
"mean_token_accuracy": 0.9757738158106803,
|
| 909 |
+
"num_tokens": 5217131.0,
|
| 910 |
+
"step": 900
|
| 911 |
+
},
|
| 912 |
+
{
|
| 913 |
+
"entropy": 0.069792415574193,
|
| 914 |
+
"epoch": 2.4266666666666667,
|
| 915 |
+
"grad_norm": 0.05078125,
|
| 916 |
+
"learning_rate": 3.959670027497709e-05,
|
| 917 |
+
"loss": 0.0649182915687561,
|
| 918 |
+
"mean_token_accuracy": 0.9754065230488778,
|
| 919 |
+
"num_tokens": 5275013.0,
|
| 920 |
+
"step": 910
|
| 921 |
+
},
|
| 922 |
+
{
|
| 923 |
+
"entropy": 0.06883814567700028,
|
| 924 |
+
"epoch": 2.453333333333333,
|
| 925 |
+
"grad_norm": 0.056640625,
|
| 926 |
+
"learning_rate": 3.776351970669111e-05,
|
| 927 |
+
"loss": 0.06510300636291504,
|
| 928 |
+
"mean_token_accuracy": 0.9752438068389893,
|
| 929 |
+
"num_tokens": 5332790.0,
|
| 930 |
+
"step": 920
|
| 931 |
+
},
|
| 932 |
+
{
|
| 933 |
+
"entropy": 0.06875044060871005,
|
| 934 |
+
"epoch": 2.48,
|
| 935 |
+
"grad_norm": 0.049072265625,
|
| 936 |
+
"learning_rate": 3.593033913840513e-05,
|
| 937 |
+
"loss": 0.06483979225158691,
|
| 938 |
+
"mean_token_accuracy": 0.9757223874330521,
|
| 939 |
+
"num_tokens": 5390822.0,
|
| 940 |
+
"step": 930
|
| 941 |
+
},
|
| 942 |
+
{
|
| 943 |
+
"entropy": 0.06840683752670884,
|
| 944 |
+
"epoch": 2.506666666666667,
|
| 945 |
+
"grad_norm": 0.06005859375,
|
| 946 |
+
"learning_rate": 3.409715857011916e-05,
|
| 947 |
+
"loss": 0.06430425643920898,
|
| 948 |
+
"mean_token_accuracy": 0.9757388934493065,
|
| 949 |
+
"num_tokens": 5449491.0,
|
| 950 |
+
"step": 940
|
| 951 |
+
},
|
| 952 |
+
{
|
| 953 |
+
"entropy": 0.06754063200205565,
|
| 954 |
+
"epoch": 2.533333333333333,
|
| 955 |
+
"grad_norm": 0.05078125,
|
| 956 |
+
"learning_rate": 3.2263978001833184e-05,
|
| 957 |
+
"loss": 0.06348671317100525,
|
| 958 |
+
"mean_token_accuracy": 0.9755341604351997,
|
| 959 |
+
"num_tokens": 5508033.0,
|
| 960 |
+
"step": 950
|
| 961 |
+
},
|
| 962 |
+
{
|
| 963 |
+
"entropy": 0.0688040841370821,
|
| 964 |
+
"epoch": 2.56,
|
| 965 |
+
"grad_norm": 0.052734375,
|
| 966 |
+
"learning_rate": 3.0430797433547202e-05,
|
| 967 |
+
"loss": 0.065876704454422,
|
| 968 |
+
"mean_token_accuracy": 0.9748074486851692,
|
| 969 |
+
"num_tokens": 5565759.0,
|
| 970 |
+
"step": 960
|
| 971 |
+
},
|
| 972 |
+
{
|
| 973 |
+
"entropy": 0.06747948992997407,
|
| 974 |
+
"epoch": 2.586666666666667,
|
| 975 |
+
"grad_norm": 0.04833984375,
|
| 976 |
+
"learning_rate": 2.8597616865261228e-05,
|
| 977 |
+
"loss": 0.06365298628807067,
|
| 978 |
+
"mean_token_accuracy": 0.976527401804924,
|
| 979 |
+
"num_tokens": 5624012.0,
|
| 980 |
+
"step": 970
|
| 981 |
+
},
|
| 982 |
+
{
|
| 983 |
+
"entropy": 0.06841521579772233,
|
| 984 |
+
"epoch": 2.6133333333333333,
|
| 985 |
+
"grad_norm": 0.0654296875,
|
| 986 |
+
"learning_rate": 2.6764436296975253e-05,
|
| 987 |
+
"loss": 0.063433438539505,
|
| 988 |
+
"mean_token_accuracy": 0.975967101752758,
|
| 989 |
+
"num_tokens": 5682704.0,
|
| 990 |
+
"step": 980
|
| 991 |
+
},
|
| 992 |
+
{
|
| 993 |
+
"entropy": 0.06835865909233689,
|
| 994 |
+
"epoch": 2.64,
|
| 995 |
+
"grad_norm": 0.052001953125,
|
| 996 |
+
"learning_rate": 2.4931255728689275e-05,
|
| 997 |
+
"loss": 0.06502929329872131,
|
| 998 |
+
"mean_token_accuracy": 0.9752402231097221,
|
| 999 |
+
"num_tokens": 5740681.0,
|
| 1000 |
+
"step": 990
|
| 1001 |
+
},
|
| 1002 |
+
{
|
| 1003 |
+
"entropy": 0.06940433531999587,
|
| 1004 |
+
"epoch": 2.6666666666666665,
|
| 1005 |
+
"grad_norm": 0.05908203125,
|
| 1006 |
+
"learning_rate": 2.30980751604033e-05,
|
| 1007 |
+
"loss": 0.06487542390823364,
|
| 1008 |
+
"mean_token_accuracy": 0.975363838672638,
|
| 1009 |
+
"num_tokens": 5797760.0,
|
| 1010 |
+
"step": 1000
|
| 1011 |
+
},
|
| 1012 |
+
{
|
| 1013 |
+
"entropy": 0.0681289511732757,
|
| 1014 |
+
"epoch": 2.6933333333333334,
|
| 1015 |
+
"grad_norm": 0.058349609375,
|
| 1016 |
+
"learning_rate": 2.1264894592117325e-05,
|
| 1017 |
+
"loss": 0.06304082870483399,
|
| 1018 |
+
"mean_token_accuracy": 0.9760710150003433,
|
| 1019 |
+
"num_tokens": 5856063.0,
|
| 1020 |
+
"step": 1010
|
| 1021 |
+
},
|
| 1022 |
+
{
|
| 1023 |
+
"entropy": 0.06688070669770241,
|
| 1024 |
+
"epoch": 2.7199999999999998,
|
| 1025 |
+
"grad_norm": 0.055908203125,
|
| 1026 |
+
"learning_rate": 1.943171402383135e-05,
|
| 1027 |
+
"loss": 0.06357985734939575,
|
| 1028 |
+
"mean_token_accuracy": 0.9757649004459381,
|
| 1029 |
+
"num_tokens": 5915064.0,
|
| 1030 |
+
"step": 1020
|
| 1031 |
+
},
|
| 1032 |
+
{
|
| 1033 |
+
"entropy": 0.06751234699040651,
|
| 1034 |
+
"epoch": 2.7466666666666666,
|
| 1035 |
+
"grad_norm": 0.046630859375,
|
| 1036 |
+
"learning_rate": 1.7598533455545372e-05,
|
| 1037 |
+
"loss": 0.06384648084640503,
|
| 1038 |
+
"mean_token_accuracy": 0.9755441978573799,
|
| 1039 |
+
"num_tokens": 5973236.0,
|
| 1040 |
+
"step": 1030
|
| 1041 |
+
},
|
| 1042 |
+
{
|
| 1043 |
+
"entropy": 0.06810427764430642,
|
| 1044 |
+
"epoch": 2.7733333333333334,
|
| 1045 |
+
"grad_norm": 0.0537109375,
|
| 1046 |
+
"learning_rate": 1.5765352887259398e-05,
|
| 1047 |
+
"loss": 0.06439932584762573,
|
| 1048 |
+
"mean_token_accuracy": 0.9754612877964973,
|
| 1049 |
+
"num_tokens": 6030961.0,
|
| 1050 |
+
"step": 1040
|
| 1051 |
+
},
|
| 1052 |
+
{
|
| 1053 |
+
"entropy": 0.06740497639402747,
|
| 1054 |
+
"epoch": 2.8,
|
| 1055 |
+
"grad_norm": 0.060791015625,
|
| 1056 |
+
"learning_rate": 1.393217231897342e-05,
|
| 1057 |
+
"loss": 0.0649307906627655,
|
| 1058 |
+
"mean_token_accuracy": 0.9751472353935242,
|
| 1059 |
+
"num_tokens": 6088421.0,
|
| 1060 |
+
"step": 1050
|
| 1061 |
+
},
|
| 1062 |
+
{
|
| 1063 |
+
"entropy": 0.0683750979602337,
|
| 1064 |
+
"epoch": 2.8266666666666667,
|
| 1065 |
+
"grad_norm": 0.0517578125,
|
| 1066 |
+
"learning_rate": 1.2098991750687445e-05,
|
| 1067 |
+
"loss": 0.06393700838088989,
|
| 1068 |
+
"mean_token_accuracy": 0.9756790235638618,
|
| 1069 |
+
"num_tokens": 6146038.0,
|
| 1070 |
+
"step": 1060
|
| 1071 |
+
},
|
| 1072 |
+
{
|
| 1073 |
+
"entropy": 0.06746620442718268,
|
| 1074 |
+
"epoch": 2.8533333333333335,
|
| 1075 |
+
"grad_norm": 0.06103515625,
|
| 1076 |
+
"learning_rate": 1.0265811182401468e-05,
|
| 1077 |
+
"loss": 0.06306450963020324,
|
| 1078 |
+
"mean_token_accuracy": 0.9759816557168961,
|
| 1079 |
+
"num_tokens": 6204853.0,
|
| 1080 |
+
"step": 1070
|
| 1081 |
+
},
|
| 1082 |
+
{
|
| 1083 |
+
"entropy": 0.06763323042541743,
|
| 1084 |
+
"epoch": 2.88,
|
| 1085 |
+
"grad_norm": 0.08984375,
|
| 1086 |
+
"learning_rate": 8.43263061411549e-06,
|
| 1087 |
+
"loss": 0.06345561742782593,
|
| 1088 |
+
"mean_token_accuracy": 0.976481594145298,
|
| 1089 |
+
"num_tokens": 6263092.0,
|
| 1090 |
+
"step": 1080
|
| 1091 |
+
},
|
| 1092 |
+
{
|
| 1093 |
+
"entropy": 0.06731683500111103,
|
| 1094 |
+
"epoch": 2.9066666666666667,
|
| 1095 |
+
"grad_norm": 0.055419921875,
|
| 1096 |
+
"learning_rate": 6.599450045829514e-06,
|
| 1097 |
+
"loss": 0.063571298122406,
|
| 1098 |
+
"mean_token_accuracy": 0.9759738191962242,
|
| 1099 |
+
"num_tokens": 6321218.0,
|
| 1100 |
+
"step": 1090
|
| 1101 |
+
},
|
| 1102 |
+
{
|
| 1103 |
+
"entropy": 0.06766533879563212,
|
| 1104 |
+
"epoch": 2.9333333333333336,
|
| 1105 |
+
"grad_norm": 0.054931640625,
|
| 1106 |
+
"learning_rate": 4.766269477543538e-06,
|
| 1107 |
+
"loss": 0.06393821239471435,
|
| 1108 |
+
"mean_token_accuracy": 0.97576145529747,
|
| 1109 |
+
"num_tokens": 6379366.0,
|
| 1110 |
+
"step": 1100
|
| 1111 |
+
},
|
| 1112 |
+
{
|
| 1113 |
+
"entropy": 0.06769317779690028,
|
| 1114 |
+
"epoch": 2.96,
|
| 1115 |
+
"grad_norm": 0.052490234375,
|
| 1116 |
+
"learning_rate": 2.933088909257562e-06,
|
| 1117 |
+
"loss": 0.06439238786697388,
|
| 1118 |
+
"mean_token_accuracy": 0.9759220287203789,
|
| 1119 |
+
"num_tokens": 6437208.0,
|
| 1120 |
+
"step": 1110
|
| 1121 |
+
},
|
| 1122 |
+
{
|
| 1123 |
+
"entropy": 0.06784211797639728,
|
| 1124 |
+
"epoch": 2.986666666666667,
|
| 1125 |
+
"grad_norm": 0.0556640625,
|
| 1126 |
+
"learning_rate": 1.0999083409715858e-06,
|
| 1127 |
+
"loss": 0.06470418572425843,
|
| 1128 |
+
"mean_token_accuracy": 0.9759309142827988,
|
| 1129 |
+
"num_tokens": 6494923.0,
|
| 1130 |
+
"step": 1120
|
| 1131 |
+
}
|
| 1132 |
+
],
|
| 1133 |
+
"logging_steps": 10,
|
| 1134 |
+
"max_steps": 1125,
|
| 1135 |
+
"num_input_tokens_seen": 0,
|
| 1136 |
+
"num_train_epochs": 3,
|
| 1137 |
+
"save_steps": 500,
|
| 1138 |
+
"stateful_callbacks": {
|
| 1139 |
+
"TrainerControl": {
|
| 1140 |
+
"args": {
|
| 1141 |
+
"should_epoch_stop": false,
|
| 1142 |
+
"should_evaluate": false,
|
| 1143 |
+
"should_log": false,
|
| 1144 |
+
"should_save": true,
|
| 1145 |
+
"should_training_stop": true
|
| 1146 |
+
},
|
| 1147 |
+
"attributes": {}
|
| 1148 |
+
}
|
| 1149 |
+
},
|
| 1150 |
+
"total_flos": 3.0619076360380416e+17,
|
| 1151 |
+
"train_batch_size": 2,
|
| 1152 |
+
"trial_name": null,
|
| 1153 |
+
"trial_params": null
|
| 1154 |
+
}
|
consciousness/checkpoint-1125/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:64a765ba4e23e22cae3a67629a6fda1378e5af8f1478b2252bd6159d00e12541
|
| 3 |
+
size 5649
|
consciousness/checkpoint-500/README.md
ADDED
|
@@ -0,0 +1,209 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: meta-llama/Llama-3.1-8B-Instruct
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:meta-llama/Llama-3.1-8B-Instruct
|
| 7 |
+
- lora
|
| 8 |
+
- sft
|
| 9 |
+
- transformers
|
| 10 |
+
- trl
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# Model Card for Model ID
|
| 14 |
+
|
| 15 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
## Model Details
|
| 20 |
+
|
| 21 |
+
### Model Description
|
| 22 |
+
|
| 23 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
- **Developed by:** [More Information Needed]
|
| 28 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 29 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 30 |
+
- **Model type:** [More Information Needed]
|
| 31 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 32 |
+
- **License:** [More Information Needed]
|
| 33 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 34 |
+
|
| 35 |
+
### Model Sources [optional]
|
| 36 |
+
|
| 37 |
+
<!-- Provide the basic links for the model. -->
|
| 38 |
+
|
| 39 |
+
- **Repository:** [More Information Needed]
|
| 40 |
+
- **Paper [optional]:** [More Information Needed]
|
| 41 |
+
- **Demo [optional]:** [More Information Needed]
|
| 42 |
+
|
| 43 |
+
## Uses
|
| 44 |
+
|
| 45 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 46 |
+
|
| 47 |
+
### Direct Use
|
| 48 |
+
|
| 49 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 50 |
+
|
| 51 |
+
[More Information Needed]
|
| 52 |
+
|
| 53 |
+
### Downstream Use [optional]
|
| 54 |
+
|
| 55 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 56 |
+
|
| 57 |
+
[More Information Needed]
|
| 58 |
+
|
| 59 |
+
### Out-of-Scope Use
|
| 60 |
+
|
| 61 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 62 |
+
|
| 63 |
+
[More Information Needed]
|
| 64 |
+
|
| 65 |
+
## Bias, Risks, and Limitations
|
| 66 |
+
|
| 67 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 68 |
+
|
| 69 |
+
[More Information Needed]
|
| 70 |
+
|
| 71 |
+
### Recommendations
|
| 72 |
+
|
| 73 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 74 |
+
|
| 75 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 76 |
+
|
| 77 |
+
## How to Get Started with the Model
|
| 78 |
+
|
| 79 |
+
Use the code below to get started with the model.
|
| 80 |
+
|
| 81 |
+
[More Information Needed]
|
| 82 |
+
|
| 83 |
+
## Training Details
|
| 84 |
+
|
| 85 |
+
### Training Data
|
| 86 |
+
|
| 87 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 88 |
+
|
| 89 |
+
[More Information Needed]
|
| 90 |
+
|
| 91 |
+
### Training Procedure
|
| 92 |
+
|
| 93 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 94 |
+
|
| 95 |
+
#### Preprocessing [optional]
|
| 96 |
+
|
| 97 |
+
[More Information Needed]
|
| 98 |
+
|
| 99 |
+
|
| 100 |
+
#### Training Hyperparameters
|
| 101 |
+
|
| 102 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 103 |
+
|
| 104 |
+
#### Speeds, Sizes, Times [optional]
|
| 105 |
+
|
| 106 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 107 |
+
|
| 108 |
+
[More Information Needed]
|
| 109 |
+
|
| 110 |
+
## Evaluation
|
| 111 |
+
|
| 112 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 113 |
+
|
| 114 |
+
### Testing Data, Factors & Metrics
|
| 115 |
+
|
| 116 |
+
#### Testing Data
|
| 117 |
+
|
| 118 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 119 |
+
|
| 120 |
+
[More Information Needed]
|
| 121 |
+
|
| 122 |
+
#### Factors
|
| 123 |
+
|
| 124 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 125 |
+
|
| 126 |
+
[More Information Needed]
|
| 127 |
+
|
| 128 |
+
#### Metrics
|
| 129 |
+
|
| 130 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 131 |
+
|
| 132 |
+
[More Information Needed]
|
| 133 |
+
|
| 134 |
+
### Results
|
| 135 |
+
|
| 136 |
+
[More Information Needed]
|
| 137 |
+
|
| 138 |
+
#### Summary
|
| 139 |
+
|
| 140 |
+
|
| 141 |
+
|
| 142 |
+
## Model Examination [optional]
|
| 143 |
+
|
| 144 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 145 |
+
|
| 146 |
+
[More Information Needed]
|
| 147 |
+
|
| 148 |
+
## Environmental Impact
|
| 149 |
+
|
| 150 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 151 |
+
|
| 152 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 153 |
+
|
| 154 |
+
- **Hardware Type:** [More Information Needed]
|
| 155 |
+
- **Hours used:** [More Information Needed]
|
| 156 |
+
- **Cloud Provider:** [More Information Needed]
|
| 157 |
+
- **Compute Region:** [More Information Needed]
|
| 158 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 159 |
+
|
| 160 |
+
## Technical Specifications [optional]
|
| 161 |
+
|
| 162 |
+
### Model Architecture and Objective
|
| 163 |
+
|
| 164 |
+
[More Information Needed]
|
| 165 |
+
|
| 166 |
+
### Compute Infrastructure
|
| 167 |
+
|
| 168 |
+
[More Information Needed]
|
| 169 |
+
|
| 170 |
+
#### Hardware
|
| 171 |
+
|
| 172 |
+
[More Information Needed]
|
| 173 |
+
|
| 174 |
+
#### Software
|
| 175 |
+
|
| 176 |
+
[More Information Needed]
|
| 177 |
+
|
| 178 |
+
## Citation [optional]
|
| 179 |
+
|
| 180 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 181 |
+
|
| 182 |
+
**BibTeX:**
|
| 183 |
+
|
| 184 |
+
[More Information Needed]
|
| 185 |
+
|
| 186 |
+
**APA:**
|
| 187 |
+
|
| 188 |
+
[More Information Needed]
|
| 189 |
+
|
| 190 |
+
## Glossary [optional]
|
| 191 |
+
|
| 192 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 193 |
+
|
| 194 |
+
[More Information Needed]
|
| 195 |
+
|
| 196 |
+
## More Information [optional]
|
| 197 |
+
|
| 198 |
+
[More Information Needed]
|
| 199 |
+
|
| 200 |
+
## Model Card Authors [optional]
|
| 201 |
+
|
| 202 |
+
[More Information Needed]
|
| 203 |
+
|
| 204 |
+
## Model Card Contact
|
| 205 |
+
|
| 206 |
+
[More Information Needed]
|
| 207 |
+
### Framework versions
|
| 208 |
+
|
| 209 |
+
- PEFT 0.18.1
|
consciousness/checkpoint-500/adapter_config.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "meta-llama/Llama-3.1-8B-Instruct",
|
| 7 |
+
"bias": "none",
|
| 8 |
+
"corda_config": null,
|
| 9 |
+
"ensure_weight_tying": false,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": false,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 32,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.05,
|
| 22 |
+
"megatron_config": null,
|
| 23 |
+
"megatron_core": "megatron.core",
|
| 24 |
+
"modules_to_save": null,
|
| 25 |
+
"peft_type": "LORA",
|
| 26 |
+
"peft_version": "0.18.1",
|
| 27 |
+
"qalora_group_size": 16,
|
| 28 |
+
"r": 16,
|
| 29 |
+
"rank_pattern": {},
|
| 30 |
+
"revision": null,
|
| 31 |
+
"target_modules": [
|
| 32 |
+
"q_proj",
|
| 33 |
+
"v_proj",
|
| 34 |
+
"k_proj",
|
| 35 |
+
"o_proj"
|
| 36 |
+
],
|
| 37 |
+
"target_parameters": null,
|
| 38 |
+
"task_type": "CAUSAL_LM",
|
| 39 |
+
"trainable_token_indices": null,
|
| 40 |
+
"use_dora": false,
|
| 41 |
+
"use_qalora": false,
|
| 42 |
+
"use_rslora": false
|
| 43 |
+
}
|
consciousness/checkpoint-500/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:208e9b171d54a26b9a6bf3e6539d569970cca468b3cceb4c86b9c82889f10567
|
| 3 |
+
size 27297544
|
consciousness/checkpoint-500/chat_template.jinja
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{{- bos_token }}
|
| 2 |
+
{%- if custom_tools is defined %}
|
| 3 |
+
{%- set tools = custom_tools %}
|
| 4 |
+
{%- endif %}
|
| 5 |
+
{%- if not tools_in_user_message is defined %}
|
| 6 |
+
{%- set tools_in_user_message = true %}
|
| 7 |
+
{%- endif %}
|
| 8 |
+
{%- if not date_string is defined %}
|
| 9 |
+
{%- set date_string = "26 Jul 2024" %}
|
| 10 |
+
{%- endif %}
|
| 11 |
+
{%- if not tools is defined %}
|
| 12 |
+
{%- set tools = none %}
|
| 13 |
+
{%- endif %}
|
| 14 |
+
|
| 15 |
+
{#- This block extracts the system message, so we can slot it into the right place. #}
|
| 16 |
+
{%- if messages[0]['role'] == 'system' %}
|
| 17 |
+
{%- set system_message = messages[0]['content']|trim %}
|
| 18 |
+
{%- set messages = messages[1:] %}
|
| 19 |
+
{%- else %}
|
| 20 |
+
{%- set system_message = "" %}
|
| 21 |
+
{%- endif %}
|
| 22 |
+
|
| 23 |
+
{#- System message + builtin tools #}
|
| 24 |
+
{{- "<|start_header_id|>system<|end_header_id|>\n\n" }}
|
| 25 |
+
{%- if builtin_tools is defined or tools is not none %}
|
| 26 |
+
{{- "Environment: ipython\n" }}
|
| 27 |
+
{%- endif %}
|
| 28 |
+
{%- if builtin_tools is defined %}
|
| 29 |
+
{{- "Tools: " + builtin_tools | reject('equalto', 'code_interpreter') | join(", ") + "\n\n"}}
|
| 30 |
+
{%- endif %}
|
| 31 |
+
{{- "Cutting Knowledge Date: December 2023\n" }}
|
| 32 |
+
{{- "Today Date: " + date_string + "\n\n" }}
|
| 33 |
+
{%- if tools is not none and not tools_in_user_message %}
|
| 34 |
+
{{- "You have access to the following functions. To call a function, please respond with JSON for a function call." }}
|
| 35 |
+
{{- 'Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.' }}
|
| 36 |
+
{{- "Do not use variables.\n\n" }}
|
| 37 |
+
{%- for t in tools %}
|
| 38 |
+
{{- t | tojson(indent=4) }}
|
| 39 |
+
{{- "\n\n" }}
|
| 40 |
+
{%- endfor %}
|
| 41 |
+
{%- endif %}
|
| 42 |
+
{{- system_message }}
|
| 43 |
+
{{- "<|eot_id|>" }}
|
| 44 |
+
|
| 45 |
+
{#- Custom tools are passed in a user message with some extra guidance #}
|
| 46 |
+
{%- if tools_in_user_message and not tools is none %}
|
| 47 |
+
{#- Extract the first user message so we can plug it in here #}
|
| 48 |
+
{%- if messages | length != 0 %}
|
| 49 |
+
{%- set first_user_message = messages[0]['content']|trim %}
|
| 50 |
+
{%- set messages = messages[1:] %}
|
| 51 |
+
{%- else %}
|
| 52 |
+
{{- raise_exception("Cannot put tools in the first user message when there's no first user message!") }}
|
| 53 |
+
{%- endif %}
|
| 54 |
+
{{- '<|start_header_id|>user<|end_header_id|>\n\n' -}}
|
| 55 |
+
{{- "Given the following functions, please respond with a JSON for a function call " }}
|
| 56 |
+
{{- "with its proper arguments that best answers the given prompt.\n\n" }}
|
| 57 |
+
{{- 'Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.' }}
|
| 58 |
+
{{- "Do not use variables.\n\n" }}
|
| 59 |
+
{%- for t in tools %}
|
| 60 |
+
{{- t | tojson(indent=4) }}
|
| 61 |
+
{{- "\n\n" }}
|
| 62 |
+
{%- endfor %}
|
| 63 |
+
{{- first_user_message + "<|eot_id|>"}}
|
| 64 |
+
{%- endif %}
|
| 65 |
+
|
| 66 |
+
{%- for message in messages %}
|
| 67 |
+
{%- if not (message.role == 'ipython' or message.role == 'tool' or 'tool_calls' in message) %}
|
| 68 |
+
{{- '<|start_header_id|>' + message['role'] + '<|end_header_id|>\n\n'+ message['content'] | trim + '<|eot_id|>' }}
|
| 69 |
+
{%- elif 'tool_calls' in message %}
|
| 70 |
+
{%- if not message.tool_calls|length == 1 %}
|
| 71 |
+
{{- raise_exception("This model only supports single tool-calls at once!") }}
|
| 72 |
+
{%- endif %}
|
| 73 |
+
{%- set tool_call = message.tool_calls[0].function %}
|
| 74 |
+
{%- if builtin_tools is defined and tool_call.name in builtin_tools %}
|
| 75 |
+
{{- '<|start_header_id|>assistant<|end_header_id|>\n\n' -}}
|
| 76 |
+
{{- "<|python_tag|>" + tool_call.name + ".call(" }}
|
| 77 |
+
{%- for arg_name, arg_val in tool_call.arguments | items %}
|
| 78 |
+
{{- arg_name + '="' + arg_val + '"' }}
|
| 79 |
+
{%- if not loop.last %}
|
| 80 |
+
{{- ", " }}
|
| 81 |
+
{%- endif %}
|
| 82 |
+
{%- endfor %}
|
| 83 |
+
{{- ")" }}
|
| 84 |
+
{%- else %}
|
| 85 |
+
{{- '<|start_header_id|>assistant<|end_header_id|>\n\n' -}}
|
| 86 |
+
{{- '{"name": "' + tool_call.name + '", ' }}
|
| 87 |
+
{{- '"parameters": ' }}
|
| 88 |
+
{{- tool_call.arguments | tojson }}
|
| 89 |
+
{{- "}" }}
|
| 90 |
+
{%- endif %}
|
| 91 |
+
{%- if builtin_tools is defined %}
|
| 92 |
+
{#- This means we're in ipython mode #}
|
| 93 |
+
{{- "<|eom_id|>" }}
|
| 94 |
+
{%- else %}
|
| 95 |
+
{{- "<|eot_id|>" }}
|
| 96 |
+
{%- endif %}
|
| 97 |
+
{%- elif message.role == "tool" or message.role == "ipython" %}
|
| 98 |
+
{{- "<|start_header_id|>ipython<|end_header_id|>\n\n" }}
|
| 99 |
+
{%- if message.content is mapping or message.content is iterable %}
|
| 100 |
+
{{- message.content | tojson }}
|
| 101 |
+
{%- else %}
|
| 102 |
+
{{- message.content }}
|
| 103 |
+
{%- endif %}
|
| 104 |
+
{{- "<|eot_id|>" }}
|
| 105 |
+
{%- endif %}
|
| 106 |
+
{%- endfor %}
|
| 107 |
+
{%- if add_generation_prompt %}
|
| 108 |
+
{{- '<|start_header_id|>assistant<|end_header_id|>\n\n' }}
|
| 109 |
+
{%- endif %}
|
consciousness/checkpoint-500/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a00fb9968a64e95dfd14a8da47f012b55f5086b758d77bd8b0935845daa3e582
|
| 3 |
+
size 54745547
|
consciousness/checkpoint-500/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:03588b766dd784331959c80d527c519c2e449bde648d7f2e90539f9a580bd9d2
|
| 3 |
+
size 14645
|
consciousness/checkpoint-500/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c5f2b5fa48c7f09e4487186c3527dd0cb37a3de8892b16ebca696ce3df604cb5
|
| 3 |
+
size 1465
|
consciousness/checkpoint-500/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6b9e4e7fb171f92fd137b777cc2714bf87d11576700a1dcd7a399e7bbe39537b
|
| 3 |
+
size 17209920
|
consciousness/checkpoint-500/tokenizer_config.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"backend": "tokenizers",
|
| 3 |
+
"bos_token": "<|begin_of_text|>",
|
| 4 |
+
"clean_up_tokenization_spaces": true,
|
| 5 |
+
"eos_token": "<|eot_id|>",
|
| 6 |
+
"is_local": false,
|
| 7 |
+
"model_input_names": [
|
| 8 |
+
"input_ids",
|
| 9 |
+
"attention_mask"
|
| 10 |
+
],
|
| 11 |
+
"model_max_length": 131072,
|
| 12 |
+
"pad_token": "<|eot_id|>",
|
| 13 |
+
"tokenizer_class": "TokenizersBackend"
|
| 14 |
+
}
|
consciousness/checkpoint-500/trainer_state.json
ADDED
|
@@ -0,0 +1,534 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 1.3333333333333333,
|
| 6 |
+
"eval_steps": 500,
|
| 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": 2.8901569664478304,
|
| 14 |
+
"epoch": 0.02666666666666667,
|
| 15 |
+
"grad_norm": 0.267578125,
|
| 16 |
+
"learning_rate": 5.294117647058824e-05,
|
| 17 |
+
"loss": 2.9965847015380858,
|
| 18 |
+
"mean_token_accuracy": 0.4477638125419617,
|
| 19 |
+
"num_tokens": 57327.0,
|
| 20 |
+
"step": 10
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"entropy": 2.431850343942642,
|
| 24 |
+
"epoch": 0.05333333333333334,
|
| 25 |
+
"grad_norm": 0.255859375,
|
| 26 |
+
"learning_rate": 0.00011176470588235294,
|
| 27 |
+
"loss": 2.636348533630371,
|
| 28 |
+
"mean_token_accuracy": 0.4853471860289574,
|
| 29 |
+
"num_tokens": 115513.0,
|
| 30 |
+
"step": 20
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"entropy": 2.0503339916467667,
|
| 34 |
+
"epoch": 0.08,
|
| 35 |
+
"grad_norm": 0.2734375,
|
| 36 |
+
"learning_rate": 0.00017058823529411766,
|
| 37 |
+
"loss": 1.9743734359741212,
|
| 38 |
+
"mean_token_accuracy": 0.5749435268342495,
|
| 39 |
+
"num_tokens": 173246.0,
|
| 40 |
+
"step": 30
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"entropy": 1.4122730612754821,
|
| 44 |
+
"epoch": 0.10666666666666667,
|
| 45 |
+
"grad_norm": 0.357421875,
|
| 46 |
+
"learning_rate": 0.00019908340971585702,
|
| 47 |
+
"loss": 1.3748690605163574,
|
| 48 |
+
"mean_token_accuracy": 0.6867235794663429,
|
| 49 |
+
"num_tokens": 231278.0,
|
| 50 |
+
"step": 40
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"entropy": 1.0256530404090882,
|
| 54 |
+
"epoch": 0.13333333333333333,
|
| 55 |
+
"grad_norm": 0.359375,
|
| 56 |
+
"learning_rate": 0.00019725022914757106,
|
| 57 |
+
"loss": 0.9704485893249511,
|
| 58 |
+
"mean_token_accuracy": 0.7766638442873954,
|
| 59 |
+
"num_tokens": 288393.0,
|
| 60 |
+
"step": 50
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"entropy": 0.7456447497010231,
|
| 64 |
+
"epoch": 0.16,
|
| 65 |
+
"grad_norm": 0.328125,
|
| 66 |
+
"learning_rate": 0.00019541704857928507,
|
| 67 |
+
"loss": 0.6671554565429687,
|
| 68 |
+
"mean_token_accuracy": 0.845753838121891,
|
| 69 |
+
"num_tokens": 346339.0,
|
| 70 |
+
"step": 60
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"entropy": 0.537605831772089,
|
| 74 |
+
"epoch": 0.18666666666666668,
|
| 75 |
+
"grad_norm": 0.328125,
|
| 76 |
+
"learning_rate": 0.00019358386801099912,
|
| 77 |
+
"loss": 0.4658506393432617,
|
| 78 |
+
"mean_token_accuracy": 0.8909643113613128,
|
| 79 |
+
"num_tokens": 404015.0,
|
| 80 |
+
"step": 70
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"entropy": 0.37200461626052855,
|
| 84 |
+
"epoch": 0.21333333333333335,
|
| 85 |
+
"grad_norm": 0.283203125,
|
| 86 |
+
"learning_rate": 0.0001917506874427131,
|
| 87 |
+
"loss": 0.3085629940032959,
|
| 88 |
+
"mean_token_accuracy": 0.9280218213796616,
|
| 89 |
+
"num_tokens": 461115.0,
|
| 90 |
+
"step": 80
|
| 91 |
+
},
|
| 92 |
+
{
|
| 93 |
+
"entropy": 0.2607572071254253,
|
| 94 |
+
"epoch": 0.24,
|
| 95 |
+
"grad_norm": 0.267578125,
|
| 96 |
+
"learning_rate": 0.00018991750687442712,
|
| 97 |
+
"loss": 0.21192119121551514,
|
| 98 |
+
"mean_token_accuracy": 0.9511988922953606,
|
| 99 |
+
"num_tokens": 518926.0,
|
| 100 |
+
"step": 90
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"entropy": 0.21099306046962737,
|
| 104 |
+
"epoch": 0.26666666666666666,
|
| 105 |
+
"grad_norm": 0.2021484375,
|
| 106 |
+
"learning_rate": 0.00018808432630614116,
|
| 107 |
+
"loss": 0.1747212290763855,
|
| 108 |
+
"mean_token_accuracy": 0.9576459184288979,
|
| 109 |
+
"num_tokens": 577120.0,
|
| 110 |
+
"step": 100
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"entropy": 0.1670930277556181,
|
| 114 |
+
"epoch": 0.29333333333333333,
|
| 115 |
+
"grad_norm": 0.2431640625,
|
| 116 |
+
"learning_rate": 0.00018625114573785518,
|
| 117 |
+
"loss": 0.14222853183746337,
|
| 118 |
+
"mean_token_accuracy": 0.9636133790016175,
|
| 119 |
+
"num_tokens": 635382.0,
|
| 120 |
+
"step": 110
|
| 121 |
+
},
|
| 122 |
+
{
|
| 123 |
+
"entropy": 0.15717535726726056,
|
| 124 |
+
"epoch": 0.32,
|
| 125 |
+
"grad_norm": 0.12890625,
|
| 126 |
+
"learning_rate": 0.00018441796516956922,
|
| 127 |
+
"loss": 0.13076614141464232,
|
| 128 |
+
"mean_token_accuracy": 0.9650501102209091,
|
| 129 |
+
"num_tokens": 692813.0,
|
| 130 |
+
"step": 120
|
| 131 |
+
},
|
| 132 |
+
{
|
| 133 |
+
"entropy": 0.14444066677242517,
|
| 134 |
+
"epoch": 0.3466666666666667,
|
| 135 |
+
"grad_norm": 0.1640625,
|
| 136 |
+
"learning_rate": 0.00018258478460128323,
|
| 137 |
+
"loss": 0.11674572229385376,
|
| 138 |
+
"mean_token_accuracy": 0.9665236040949822,
|
| 139 |
+
"num_tokens": 750815.0,
|
| 140 |
+
"step": 130
|
| 141 |
+
},
|
| 142 |
+
{
|
| 143 |
+
"entropy": 0.1316229362040758,
|
| 144 |
+
"epoch": 0.37333333333333335,
|
| 145 |
+
"grad_norm": 0.177734375,
|
| 146 |
+
"learning_rate": 0.00018075160403299728,
|
| 147 |
+
"loss": 0.10633546113967896,
|
| 148 |
+
"mean_token_accuracy": 0.9686767488718033,
|
| 149 |
+
"num_tokens": 809607.0,
|
| 150 |
+
"step": 140
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"entropy": 0.12511782981455327,
|
| 154 |
+
"epoch": 0.4,
|
| 155 |
+
"grad_norm": 0.1103515625,
|
| 156 |
+
"learning_rate": 0.0001789184234647113,
|
| 157 |
+
"loss": 0.10267382860183716,
|
| 158 |
+
"mean_token_accuracy": 0.9692023977637291,
|
| 159 |
+
"num_tokens": 867374.0,
|
| 160 |
+
"step": 150
|
| 161 |
+
},
|
| 162 |
+
{
|
| 163 |
+
"entropy": 0.1147347992286086,
|
| 164 |
+
"epoch": 0.4266666666666667,
|
| 165 |
+
"grad_norm": 0.10302734375,
|
| 166 |
+
"learning_rate": 0.0001770852428964253,
|
| 167 |
+
"loss": 0.09604376554489136,
|
| 168 |
+
"mean_token_accuracy": 0.9704543471336364,
|
| 169 |
+
"num_tokens": 925873.0,
|
| 170 |
+
"step": 160
|
| 171 |
+
},
|
| 172 |
+
{
|
| 173 |
+
"entropy": 0.11136603765189648,
|
| 174 |
+
"epoch": 0.4533333333333333,
|
| 175 |
+
"grad_norm": 0.12158203125,
|
| 176 |
+
"learning_rate": 0.00017525206232813932,
|
| 177 |
+
"loss": 0.09679205417633056,
|
| 178 |
+
"mean_token_accuracy": 0.9701795622706413,
|
| 179 |
+
"num_tokens": 983653.0,
|
| 180 |
+
"step": 170
|
| 181 |
+
},
|
| 182 |
+
{
|
| 183 |
+
"entropy": 0.10962173249572515,
|
| 184 |
+
"epoch": 0.48,
|
| 185 |
+
"grad_norm": 0.10986328125,
|
| 186 |
+
"learning_rate": 0.00017341888175985334,
|
| 187 |
+
"loss": 0.09156813025474549,
|
| 188 |
+
"mean_token_accuracy": 0.971354915201664,
|
| 189 |
+
"num_tokens": 1041996.0,
|
| 190 |
+
"step": 180
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"entropy": 0.10233879294246435,
|
| 194 |
+
"epoch": 0.5066666666666667,
|
| 195 |
+
"grad_norm": 0.2431640625,
|
| 196 |
+
"learning_rate": 0.00017158570119156738,
|
| 197 |
+
"loss": 0.09264941811561585,
|
| 198 |
+
"mean_token_accuracy": 0.9716016605496407,
|
| 199 |
+
"num_tokens": 1100105.0,
|
| 200 |
+
"step": 190
|
| 201 |
+
},
|
| 202 |
+
{
|
| 203 |
+
"entropy": 0.10874027330428362,
|
| 204 |
+
"epoch": 0.5333333333333333,
|
| 205 |
+
"grad_norm": 0.103515625,
|
| 206 |
+
"learning_rate": 0.0001697525206232814,
|
| 207 |
+
"loss": 0.09393113255500793,
|
| 208 |
+
"mean_token_accuracy": 0.9707169815897941,
|
| 209 |
+
"num_tokens": 1157940.0,
|
| 210 |
+
"step": 200
|
| 211 |
+
},
|
| 212 |
+
{
|
| 213 |
+
"entropy": 0.10715384036302567,
|
| 214 |
+
"epoch": 0.56,
|
| 215 |
+
"grad_norm": 0.0927734375,
|
| 216 |
+
"learning_rate": 0.00016791934005499544,
|
| 217 |
+
"loss": 0.08979941606521606,
|
| 218 |
+
"mean_token_accuracy": 0.9710627257823944,
|
| 219 |
+
"num_tokens": 1216048.0,
|
| 220 |
+
"step": 210
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"entropy": 0.09897389095276594,
|
| 224 |
+
"epoch": 0.5866666666666667,
|
| 225 |
+
"grad_norm": 0.1005859375,
|
| 226 |
+
"learning_rate": 0.00016608615948670945,
|
| 227 |
+
"loss": 0.08646941781044007,
|
| 228 |
+
"mean_token_accuracy": 0.9712389498949051,
|
| 229 |
+
"num_tokens": 1274357.0,
|
| 230 |
+
"step": 220
|
| 231 |
+
},
|
| 232 |
+
{
|
| 233 |
+
"entropy": 0.09603469483554364,
|
| 234 |
+
"epoch": 0.6133333333333333,
|
| 235 |
+
"grad_norm": 0.09716796875,
|
| 236 |
+
"learning_rate": 0.0001642529789184235,
|
| 237 |
+
"loss": 0.08556437492370605,
|
| 238 |
+
"mean_token_accuracy": 0.9711127072572708,
|
| 239 |
+
"num_tokens": 1332152.0,
|
| 240 |
+
"step": 230
|
| 241 |
+
},
|
| 242 |
+
{
|
| 243 |
+
"entropy": 0.09263445399701595,
|
| 244 |
+
"epoch": 0.64,
|
| 245 |
+
"grad_norm": 0.1396484375,
|
| 246 |
+
"learning_rate": 0.0001624197983501375,
|
| 247 |
+
"loss": 0.08339133858680725,
|
| 248 |
+
"mean_token_accuracy": 0.9719239071011543,
|
| 249 |
+
"num_tokens": 1389574.0,
|
| 250 |
+
"step": 240
|
| 251 |
+
},
|
| 252 |
+
{
|
| 253 |
+
"entropy": 0.09686502479016781,
|
| 254 |
+
"epoch": 0.6666666666666666,
|
| 255 |
+
"grad_norm": 0.0712890625,
|
| 256 |
+
"learning_rate": 0.00016058661778185152,
|
| 257 |
+
"loss": 0.08281562328338624,
|
| 258 |
+
"mean_token_accuracy": 0.9720177337527275,
|
| 259 |
+
"num_tokens": 1447409.0,
|
| 260 |
+
"step": 250
|
| 261 |
+
},
|
| 262 |
+
{
|
| 263 |
+
"entropy": 0.08692479655146598,
|
| 264 |
+
"epoch": 0.6933333333333334,
|
| 265 |
+
"grad_norm": 0.0830078125,
|
| 266 |
+
"learning_rate": 0.00015875343721356554,
|
| 267 |
+
"loss": 0.08078550696372985,
|
| 268 |
+
"mean_token_accuracy": 0.9726089149713516,
|
| 269 |
+
"num_tokens": 1506058.0,
|
| 270 |
+
"step": 260
|
| 271 |
+
},
|
| 272 |
+
{
|
| 273 |
+
"entropy": 0.09034751150757074,
|
| 274 |
+
"epoch": 0.72,
|
| 275 |
+
"grad_norm": 0.08935546875,
|
| 276 |
+
"learning_rate": 0.00015692025664527955,
|
| 277 |
+
"loss": 0.08023000955581665,
|
| 278 |
+
"mean_token_accuracy": 0.9725215956568718,
|
| 279 |
+
"num_tokens": 1563817.0,
|
| 280 |
+
"step": 270
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"entropy": 0.08724061641842126,
|
| 284 |
+
"epoch": 0.7466666666666667,
|
| 285 |
+
"grad_norm": 0.09423828125,
|
| 286 |
+
"learning_rate": 0.0001550870760769936,
|
| 287 |
+
"loss": 0.0812032699584961,
|
| 288 |
+
"mean_token_accuracy": 0.9722012594342232,
|
| 289 |
+
"num_tokens": 1621737.0,
|
| 290 |
+
"step": 280
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"entropy": 0.08758355937898159,
|
| 294 |
+
"epoch": 0.7733333333333333,
|
| 295 |
+
"grad_norm": 0.2099609375,
|
| 296 |
+
"learning_rate": 0.0001532538955087076,
|
| 297 |
+
"loss": 0.08142906427383423,
|
| 298 |
+
"mean_token_accuracy": 0.9718389093875885,
|
| 299 |
+
"num_tokens": 1679970.0,
|
| 300 |
+
"step": 290
|
| 301 |
+
},
|
| 302 |
+
{
|
| 303 |
+
"entropy": 0.08803936429321765,
|
| 304 |
+
"epoch": 0.8,
|
| 305 |
+
"grad_norm": 0.12451171875,
|
| 306 |
+
"learning_rate": 0.00015142071494042165,
|
| 307 |
+
"loss": 0.0806335985660553,
|
| 308 |
+
"mean_token_accuracy": 0.9723069176077843,
|
| 309 |
+
"num_tokens": 1738304.0,
|
| 310 |
+
"step": 300
|
| 311 |
+
},
|
| 312 |
+
{
|
| 313 |
+
"entropy": 0.0896342158317566,
|
| 314 |
+
"epoch": 0.8266666666666667,
|
| 315 |
+
"grad_norm": 0.059814453125,
|
| 316 |
+
"learning_rate": 0.00014958753437213567,
|
| 317 |
+
"loss": 0.08014391660690308,
|
| 318 |
+
"mean_token_accuracy": 0.9721709281206131,
|
| 319 |
+
"num_tokens": 1795881.0,
|
| 320 |
+
"step": 310
|
| 321 |
+
},
|
| 322 |
+
{
|
| 323 |
+
"entropy": 0.08054284229874611,
|
| 324 |
+
"epoch": 0.8533333333333334,
|
| 325 |
+
"grad_norm": 0.09033203125,
|
| 326 |
+
"learning_rate": 0.00014775435380384968,
|
| 327 |
+
"loss": 0.07684423327445984,
|
| 328 |
+
"mean_token_accuracy": 0.9731693744659424,
|
| 329 |
+
"num_tokens": 1854853.0,
|
| 330 |
+
"step": 320
|
| 331 |
+
},
|
| 332 |
+
{
|
| 333 |
+
"entropy": 0.0840398171916604,
|
| 334 |
+
"epoch": 0.88,
|
| 335 |
+
"grad_norm": 0.05224609375,
|
| 336 |
+
"learning_rate": 0.00014592117323556373,
|
| 337 |
+
"loss": 0.07634277939796448,
|
| 338 |
+
"mean_token_accuracy": 0.9732364892959595,
|
| 339 |
+
"num_tokens": 1912939.0,
|
| 340 |
+
"step": 330
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"entropy": 0.08260406106710434,
|
| 344 |
+
"epoch": 0.9066666666666666,
|
| 345 |
+
"grad_norm": 0.072265625,
|
| 346 |
+
"learning_rate": 0.00014408799266727771,
|
| 347 |
+
"loss": 0.076292884349823,
|
| 348 |
+
"mean_token_accuracy": 0.9736541777849197,
|
| 349 |
+
"num_tokens": 1971345.0,
|
| 350 |
+
"step": 340
|
| 351 |
+
},
|
| 352 |
+
{
|
| 353 |
+
"entropy": 0.08077720124274493,
|
| 354 |
+
"epoch": 0.9333333333333333,
|
| 355 |
+
"grad_norm": 0.057373046875,
|
| 356 |
+
"learning_rate": 0.00014225481209899176,
|
| 357 |
+
"loss": 0.07518362402915954,
|
| 358 |
+
"mean_token_accuracy": 0.9735523566603661,
|
| 359 |
+
"num_tokens": 2029618.0,
|
| 360 |
+
"step": 350
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"entropy": 0.0814354794099927,
|
| 364 |
+
"epoch": 0.96,
|
| 365 |
+
"grad_norm": 0.087890625,
|
| 366 |
+
"learning_rate": 0.00014042163153070577,
|
| 367 |
+
"loss": 0.07500824928283692,
|
| 368 |
+
"mean_token_accuracy": 0.9733900666236878,
|
| 369 |
+
"num_tokens": 2088198.0,
|
| 370 |
+
"step": 360
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"entropy": 0.08081495910882949,
|
| 374 |
+
"epoch": 0.9866666666666667,
|
| 375 |
+
"grad_norm": 0.05810546875,
|
| 376 |
+
"learning_rate": 0.0001385884509624198,
|
| 377 |
+
"loss": 0.07559239268302917,
|
| 378 |
+
"mean_token_accuracy": 0.9732825100421906,
|
| 379 |
+
"num_tokens": 2145822.0,
|
| 380 |
+
"step": 370
|
| 381 |
+
},
|
| 382 |
+
{
|
| 383 |
+
"entropy": 0.08157326076179743,
|
| 384 |
+
"epoch": 1.0133333333333334,
|
| 385 |
+
"grad_norm": 0.058837890625,
|
| 386 |
+
"learning_rate": 0.00013675527039413383,
|
| 387 |
+
"loss": 0.07452890872955323,
|
| 388 |
+
"mean_token_accuracy": 0.9733605772256851,
|
| 389 |
+
"num_tokens": 2203248.0,
|
| 390 |
+
"step": 380
|
| 391 |
+
},
|
| 392 |
+
{
|
| 393 |
+
"entropy": 0.07517405189573764,
|
| 394 |
+
"epoch": 1.04,
|
| 395 |
+
"grad_norm": 0.087890625,
|
| 396 |
+
"learning_rate": 0.00013492208982584784,
|
| 397 |
+
"loss": 0.07157951593399048,
|
| 398 |
+
"mean_token_accuracy": 0.9741677790880203,
|
| 399 |
+
"num_tokens": 2261444.0,
|
| 400 |
+
"step": 390
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"entropy": 0.07766247931867838,
|
| 404 |
+
"epoch": 1.0666666666666667,
|
| 405 |
+
"grad_norm": 0.060302734375,
|
| 406 |
+
"learning_rate": 0.00013308890925756189,
|
| 407 |
+
"loss": 0.07183201909065247,
|
| 408 |
+
"mean_token_accuracy": 0.9740341395139694,
|
| 409 |
+
"num_tokens": 2319551.0,
|
| 410 |
+
"step": 400
|
| 411 |
+
},
|
| 412 |
+
{
|
| 413 |
+
"entropy": 0.07695812471210957,
|
| 414 |
+
"epoch": 1.0933333333333333,
|
| 415 |
+
"grad_norm": 0.054443359375,
|
| 416 |
+
"learning_rate": 0.0001312557286892759,
|
| 417 |
+
"loss": 0.07332680225372315,
|
| 418 |
+
"mean_token_accuracy": 0.9733265534043312,
|
| 419 |
+
"num_tokens": 2377422.0,
|
| 420 |
+
"step": 410
|
| 421 |
+
},
|
| 422 |
+
{
|
| 423 |
+
"entropy": 0.07884457465261221,
|
| 424 |
+
"epoch": 1.12,
|
| 425 |
+
"grad_norm": 0.060791015625,
|
| 426 |
+
"learning_rate": 0.00012942254812098992,
|
| 427 |
+
"loss": 0.07316585779190063,
|
| 428 |
+
"mean_token_accuracy": 0.973577855527401,
|
| 429 |
+
"num_tokens": 2435382.0,
|
| 430 |
+
"step": 420
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"entropy": 0.07917917389422655,
|
| 434 |
+
"epoch": 1.1466666666666667,
|
| 435 |
+
"grad_norm": 0.0771484375,
|
| 436 |
+
"learning_rate": 0.00012758936755270393,
|
| 437 |
+
"loss": 0.07189081907272339,
|
| 438 |
+
"mean_token_accuracy": 0.9741694211959839,
|
| 439 |
+
"num_tokens": 2493780.0,
|
| 440 |
+
"step": 430
|
| 441 |
+
},
|
| 442 |
+
{
|
| 443 |
+
"entropy": 0.07554319184273481,
|
| 444 |
+
"epoch": 1.1733333333333333,
|
| 445 |
+
"grad_norm": 0.126953125,
|
| 446 |
+
"learning_rate": 0.00012575618698441797,
|
| 447 |
+
"loss": 0.07339509725570678,
|
| 448 |
+
"mean_token_accuracy": 0.9734218120574951,
|
| 449 |
+
"num_tokens": 2551587.0,
|
| 450 |
+
"step": 440
|
| 451 |
+
},
|
| 452 |
+
{
|
| 453 |
+
"entropy": 0.0771414702758193,
|
| 454 |
+
"epoch": 1.2,
|
| 455 |
+
"grad_norm": 0.052490234375,
|
| 456 |
+
"learning_rate": 0.000123923006416132,
|
| 457 |
+
"loss": 0.07223436832427979,
|
| 458 |
+
"mean_token_accuracy": 0.9731230854988098,
|
| 459 |
+
"num_tokens": 2609738.0,
|
| 460 |
+
"step": 450
|
| 461 |
+
},
|
| 462 |
+
{
|
| 463 |
+
"entropy": 0.07702515590935946,
|
| 464 |
+
"epoch": 1.2266666666666666,
|
| 465 |
+
"grad_norm": 0.05078125,
|
| 466 |
+
"learning_rate": 0.00012208982584784603,
|
| 467 |
+
"loss": 0.07126941084861756,
|
| 468 |
+
"mean_token_accuracy": 0.9743727937340736,
|
| 469 |
+
"num_tokens": 2667570.0,
|
| 470 |
+
"step": 460
|
| 471 |
+
},
|
| 472 |
+
{
|
| 473 |
+
"entropy": 0.0751312056556344,
|
| 474 |
+
"epoch": 1.2533333333333334,
|
| 475 |
+
"grad_norm": 0.052490234375,
|
| 476 |
+
"learning_rate": 0.00012025664527956005,
|
| 477 |
+
"loss": 0.07185030579566956,
|
| 478 |
+
"mean_token_accuracy": 0.9739165529608727,
|
| 479 |
+
"num_tokens": 2725220.0,
|
| 480 |
+
"step": 470
|
| 481 |
+
},
|
| 482 |
+
{
|
| 483 |
+
"entropy": 0.07488212268799543,
|
| 484 |
+
"epoch": 1.28,
|
| 485 |
+
"grad_norm": 0.0517578125,
|
| 486 |
+
"learning_rate": 0.00011842346471127406,
|
| 487 |
+
"loss": 0.07148469686508178,
|
| 488 |
+
"mean_token_accuracy": 0.973349143564701,
|
| 489 |
+
"num_tokens": 2782737.0,
|
| 490 |
+
"step": 480
|
| 491 |
+
},
|
| 492 |
+
{
|
| 493 |
+
"entropy": 0.07398118702694774,
|
| 494 |
+
"epoch": 1.3066666666666666,
|
| 495 |
+
"grad_norm": 0.044677734375,
|
| 496 |
+
"learning_rate": 0.00011659028414298809,
|
| 497 |
+
"loss": 0.06911076903343201,
|
| 498 |
+
"mean_token_accuracy": 0.9739873677492141,
|
| 499 |
+
"num_tokens": 2841536.0,
|
| 500 |
+
"step": 490
|
| 501 |
+
},
|
| 502 |
+
{
|
| 503 |
+
"entropy": 0.07522298116236925,
|
| 504 |
+
"epoch": 1.3333333333333333,
|
| 505 |
+
"grad_norm": 0.05908203125,
|
| 506 |
+
"learning_rate": 0.0001147571035747021,
|
| 507 |
+
"loss": 0.06964495182037353,
|
| 508 |
+
"mean_token_accuracy": 0.9739961415529251,
|
| 509 |
+
"num_tokens": 2899599.0,
|
| 510 |
+
"step": 500
|
| 511 |
+
}
|
| 512 |
+
],
|
| 513 |
+
"logging_steps": 10,
|
| 514 |
+
"max_steps": 1125,
|
| 515 |
+
"num_input_tokens_seen": 0,
|
| 516 |
+
"num_train_epochs": 3,
|
| 517 |
+
"save_steps": 500,
|
| 518 |
+
"stateful_callbacks": {
|
| 519 |
+
"TrainerControl": {
|
| 520 |
+
"args": {
|
| 521 |
+
"should_epoch_stop": false,
|
| 522 |
+
"should_evaluate": false,
|
| 523 |
+
"should_log": false,
|
| 524 |
+
"should_save": true,
|
| 525 |
+
"should_training_stop": false
|
| 526 |
+
},
|
| 527 |
+
"attributes": {}
|
| 528 |
+
}
|
| 529 |
+
},
|
| 530 |
+
"total_flos": 1.3611705346695168e+17,
|
| 531 |
+
"train_batch_size": 2,
|
| 532 |
+
"trial_name": null,
|
| 533 |
+
"trial_params": null
|
| 534 |
+
}
|
consciousness/checkpoint-500/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:64a765ba4e23e22cae3a67629a6fda1378e5af8f1478b2252bd6159d00e12541
|
| 3 |
+
size 5649
|
consciousness/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6b9e4e7fb171f92fd137b777cc2714bf87d11576700a1dcd7a399e7bbe39537b
|
| 3 |
+
size 17209920
|
consciousness/tokenizer_config.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"backend": "tokenizers",
|
| 3 |
+
"bos_token": "<|begin_of_text|>",
|
| 4 |
+
"clean_up_tokenization_spaces": true,
|
| 5 |
+
"eos_token": "<|eot_id|>",
|
| 6 |
+
"is_local": false,
|
| 7 |
+
"model_input_names": [
|
| 8 |
+
"input_ids",
|
| 9 |
+
"attention_mask"
|
| 10 |
+
],
|
| 11 |
+
"model_max_length": 131072,
|
| 12 |
+
"pad_token": "<|eot_id|>",
|
| 13 |
+
"tokenizer_class": "TokenizersBackend"
|
| 14 |
+
}
|