Instructions to use roonbug/vpuqmqt0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use roonbug/vpuqmqt0 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="roonbug/vpuqmqt0") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("roonbug/vpuqmqt0") model = AutoModelForCausalLM.from_pretrained("roonbug/vpuqmqt0") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use roonbug/vpuqmqt0 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "roonbug/vpuqmqt0" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "roonbug/vpuqmqt0", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/roonbug/vpuqmqt0
- SGLang
How to use roonbug/vpuqmqt0 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "roonbug/vpuqmqt0" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "roonbug/vpuqmqt0", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "roonbug/vpuqmqt0" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "roonbug/vpuqmqt0", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use roonbug/vpuqmqt0 with Docker Model Runner:
docker model run hf.co/roonbug/vpuqmqt0
Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- checkpoint-1000/chat_template.jinja +4 -0
- checkpoint-1000/config.json +77 -0
- checkpoint-1000/generation_config.json +9 -0
- checkpoint-1000/model-00001-of-00004.safetensors +3 -0
- checkpoint-1000/model-00002-of-00004.safetensors +3 -0
- checkpoint-1000/model-00003-of-00004.safetensors +3 -0
- checkpoint-1000/model-00004-of-00004.safetensors +3 -0
- checkpoint-1000/model.safetensors.index.json +472 -0
- checkpoint-1000/optimizer.pt +3 -0
- checkpoint-1000/rng_state.pth +3 -0
- checkpoint-1000/scheduler.pt +3 -0
- checkpoint-1000/special_tokens_map.json +34 -0
- checkpoint-1000/tokenizer.json +3 -0
- checkpoint-1000/tokenizer.model +3 -0
- checkpoint-1000/tokenizer_config.json +2013 -0
- checkpoint-1000/trainer_state.json +1474 -0
- checkpoint-1000/training_args.bin +3 -0
.gitattributes
CHANGED
|
@@ -34,3 +34,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
checkpoint-500/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
checkpoint-500/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
checkpoint-1000/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
checkpoint-1000/chat_template.jinja
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{{ bos_token }}{% if messages[0]['role'] == 'system' %}{{ raise_exception('System role not supported') }}{% endif %}{% for message in messages %}{% if (message['role'] == 'user') != (loop.index0 % 2 == 0) %}{{ raise_exception('Conversation roles must alternate user/assistant/user/assistant/...') }}{% endif %}{% if (message['role'] == 'assistant') %}{% set role = 'model' %}{% else %}{% set role = message['role'] %}{% endif %}{{ '<start_of_turn>' + role + '
|
| 2 |
+
' + message['content'] | trim + '<end_of_turn>
|
| 3 |
+
' }}{% endfor %}{% if add_generation_prompt %}{{'<start_of_turn>model
|
| 4 |
+
'}}{% endif %}
|
checkpoint-1000/config.json
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"Gemma2ForCausalLM"
|
| 4 |
+
],
|
| 5 |
+
"attention_bias": false,
|
| 6 |
+
"attention_dropout": 0.0,
|
| 7 |
+
"attn_logit_softcapping": 50.0,
|
| 8 |
+
"bos_token_id": 2,
|
| 9 |
+
"cache_implementation": "hybrid",
|
| 10 |
+
"dtype": "bfloat16",
|
| 11 |
+
"eos_token_id": 1,
|
| 12 |
+
"final_logit_softcapping": 30.0,
|
| 13 |
+
"head_dim": 256,
|
| 14 |
+
"hidden_act": "gelu_pytorch_tanh",
|
| 15 |
+
"hidden_activation": "gelu_pytorch_tanh",
|
| 16 |
+
"hidden_size": 3584,
|
| 17 |
+
"initializer_range": 0.02,
|
| 18 |
+
"intermediate_size": 14336,
|
| 19 |
+
"layer_types": [
|
| 20 |
+
"sliding_attention",
|
| 21 |
+
"full_attention",
|
| 22 |
+
"sliding_attention",
|
| 23 |
+
"full_attention",
|
| 24 |
+
"sliding_attention",
|
| 25 |
+
"full_attention",
|
| 26 |
+
"sliding_attention",
|
| 27 |
+
"full_attention",
|
| 28 |
+
"sliding_attention",
|
| 29 |
+
"full_attention",
|
| 30 |
+
"sliding_attention",
|
| 31 |
+
"full_attention",
|
| 32 |
+
"sliding_attention",
|
| 33 |
+
"full_attention",
|
| 34 |
+
"sliding_attention",
|
| 35 |
+
"full_attention",
|
| 36 |
+
"sliding_attention",
|
| 37 |
+
"full_attention",
|
| 38 |
+
"sliding_attention",
|
| 39 |
+
"full_attention",
|
| 40 |
+
"sliding_attention",
|
| 41 |
+
"full_attention",
|
| 42 |
+
"sliding_attention",
|
| 43 |
+
"full_attention",
|
| 44 |
+
"sliding_attention",
|
| 45 |
+
"full_attention",
|
| 46 |
+
"sliding_attention",
|
| 47 |
+
"full_attention",
|
| 48 |
+
"sliding_attention",
|
| 49 |
+
"full_attention",
|
| 50 |
+
"sliding_attention",
|
| 51 |
+
"full_attention",
|
| 52 |
+
"sliding_attention",
|
| 53 |
+
"full_attention",
|
| 54 |
+
"sliding_attention",
|
| 55 |
+
"full_attention",
|
| 56 |
+
"sliding_attention",
|
| 57 |
+
"full_attention",
|
| 58 |
+
"sliding_attention",
|
| 59 |
+
"full_attention",
|
| 60 |
+
"sliding_attention",
|
| 61 |
+
"full_attention"
|
| 62 |
+
],
|
| 63 |
+
"max_position_embeddings": 8192,
|
| 64 |
+
"model_type": "gemma2",
|
| 65 |
+
"num_attention_heads": 16,
|
| 66 |
+
"num_hidden_layers": 42,
|
| 67 |
+
"num_key_value_heads": 8,
|
| 68 |
+
"pad_token_id": 0,
|
| 69 |
+
"query_pre_attn_scalar": 256,
|
| 70 |
+
"rms_norm_eps": 1e-06,
|
| 71 |
+
"rope_theta": 10000.0,
|
| 72 |
+
"sliding_window": 4096,
|
| 73 |
+
"sliding_window_size": 4096,
|
| 74 |
+
"transformers_version": "4.56.1",
|
| 75 |
+
"use_cache": true,
|
| 76 |
+
"vocab_size": 256000
|
| 77 |
+
}
|
checkpoint-1000/generation_config.json
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_from_model_config": true,
|
| 3 |
+
"bos_token_id": 2,
|
| 4 |
+
"eos_token_id": [
|
| 5 |
+
1
|
| 6 |
+
],
|
| 7 |
+
"pad_token_id": 0,
|
| 8 |
+
"transformers_version": "4.56.1"
|
| 9 |
+
}
|
checkpoint-1000/model-00001-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a0d4eb4fcbddfe01b0dc7a58386a3980826ededaf0ecd67d1ef38995b89615ba
|
| 3 |
+
size 4903351912
|
checkpoint-1000/model-00002-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:712a589c333f49f7b6f3870838a9e0ab4b3c0260abd5130e8c54316e6c99640b
|
| 3 |
+
size 4947570872
|
checkpoint-1000/model-00003-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6a37864f0950e0e995601549751de76b23a805a91742d2d96f6004ff0f297871
|
| 3 |
+
size 4962221464
|
checkpoint-1000/model-00004-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8600037329ff4a33ec3e312e565446636853d17f0ae4f02af6af3f653e85437e
|
| 3 |
+
size 3670322200
|
checkpoint-1000/model.safetensors.index.json
ADDED
|
@@ -0,0 +1,472 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_parameters": 9241705984,
|
| 4 |
+
"total_size": 18483411968
|
| 5 |
+
},
|
| 6 |
+
"weight_map": {
|
| 7 |
+
"model.embed_tokens.weight": "model-00001-of-00004.safetensors",
|
| 8 |
+
"model.layers.0.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 9 |
+
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 10 |
+
"model.layers.0.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 11 |
+
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 12 |
+
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 13 |
+
"model.layers.0.post_feedforward_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 14 |
+
"model.layers.0.pre_feedforward_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 15 |
+
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 16 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 17 |
+
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 18 |
+
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 19 |
+
"model.layers.1.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 20 |
+
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 21 |
+
"model.layers.1.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 22 |
+
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 23 |
+
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 24 |
+
"model.layers.1.post_feedforward_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 25 |
+
"model.layers.1.pre_feedforward_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 26 |
+
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 27 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 28 |
+
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 29 |
+
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 30 |
+
"model.layers.10.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 31 |
+
"model.layers.10.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 32 |
+
"model.layers.10.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 33 |
+
"model.layers.10.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 34 |
+
"model.layers.10.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 35 |
+
"model.layers.10.post_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 36 |
+
"model.layers.10.pre_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 37 |
+
"model.layers.10.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 38 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 39 |
+
"model.layers.10.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 40 |
+
"model.layers.10.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 41 |
+
"model.layers.11.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 42 |
+
"model.layers.11.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 43 |
+
"model.layers.11.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 44 |
+
"model.layers.11.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 45 |
+
"model.layers.11.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 46 |
+
"model.layers.11.post_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 47 |
+
"model.layers.11.pre_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 48 |
+
"model.layers.11.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 49 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 50 |
+
"model.layers.11.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 51 |
+
"model.layers.11.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 52 |
+
"model.layers.12.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 53 |
+
"model.layers.12.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 54 |
+
"model.layers.12.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 55 |
+
"model.layers.12.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 56 |
+
"model.layers.12.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 57 |
+
"model.layers.12.post_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 58 |
+
"model.layers.12.pre_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 59 |
+
"model.layers.12.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 60 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 61 |
+
"model.layers.12.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 62 |
+
"model.layers.12.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 63 |
+
"model.layers.13.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 64 |
+
"model.layers.13.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 65 |
+
"model.layers.13.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 66 |
+
"model.layers.13.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 67 |
+
"model.layers.13.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 68 |
+
"model.layers.13.post_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 69 |
+
"model.layers.13.pre_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 70 |
+
"model.layers.13.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 71 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 72 |
+
"model.layers.13.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 73 |
+
"model.layers.13.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 74 |
+
"model.layers.14.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 75 |
+
"model.layers.14.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 76 |
+
"model.layers.14.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 77 |
+
"model.layers.14.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 78 |
+
"model.layers.14.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 79 |
+
"model.layers.14.post_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 80 |
+
"model.layers.14.pre_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 81 |
+
"model.layers.14.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 82 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 83 |
+
"model.layers.14.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 84 |
+
"model.layers.14.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 85 |
+
"model.layers.15.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 86 |
+
"model.layers.15.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 87 |
+
"model.layers.15.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 88 |
+
"model.layers.15.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 89 |
+
"model.layers.15.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 90 |
+
"model.layers.15.post_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 91 |
+
"model.layers.15.pre_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 92 |
+
"model.layers.15.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 93 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 94 |
+
"model.layers.15.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 95 |
+
"model.layers.15.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 96 |
+
"model.layers.16.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 97 |
+
"model.layers.16.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 98 |
+
"model.layers.16.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 99 |
+
"model.layers.16.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 100 |
+
"model.layers.16.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 101 |
+
"model.layers.16.post_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 102 |
+
"model.layers.16.pre_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 103 |
+
"model.layers.16.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 104 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 105 |
+
"model.layers.16.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 106 |
+
"model.layers.16.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 107 |
+
"model.layers.17.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 108 |
+
"model.layers.17.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 109 |
+
"model.layers.17.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 110 |
+
"model.layers.17.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 111 |
+
"model.layers.17.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 112 |
+
"model.layers.17.post_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 113 |
+
"model.layers.17.pre_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 114 |
+
"model.layers.17.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 115 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 116 |
+
"model.layers.17.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 117 |
+
"model.layers.17.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 118 |
+
"model.layers.18.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 119 |
+
"model.layers.18.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 120 |
+
"model.layers.18.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 121 |
+
"model.layers.18.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 122 |
+
"model.layers.18.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 123 |
+
"model.layers.18.post_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 124 |
+
"model.layers.18.pre_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 125 |
+
"model.layers.18.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 126 |
+
"model.layers.18.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 127 |
+
"model.layers.18.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 128 |
+
"model.layers.18.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 129 |
+
"model.layers.19.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 130 |
+
"model.layers.19.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 131 |
+
"model.layers.19.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 132 |
+
"model.layers.19.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 133 |
+
"model.layers.19.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 134 |
+
"model.layers.19.post_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 135 |
+
"model.layers.19.pre_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 136 |
+
"model.layers.19.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 137 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 138 |
+
"model.layers.19.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 139 |
+
"model.layers.19.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 140 |
+
"model.layers.2.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 141 |
+
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 142 |
+
"model.layers.2.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 143 |
+
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 144 |
+
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 145 |
+
"model.layers.2.post_feedforward_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 146 |
+
"model.layers.2.pre_feedforward_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 147 |
+
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 148 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 149 |
+
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 150 |
+
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 151 |
+
"model.layers.20.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 152 |
+
"model.layers.20.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 153 |
+
"model.layers.20.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 154 |
+
"model.layers.20.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 155 |
+
"model.layers.20.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 156 |
+
"model.layers.20.post_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 157 |
+
"model.layers.20.pre_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 158 |
+
"model.layers.20.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 159 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 160 |
+
"model.layers.20.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 161 |
+
"model.layers.20.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 162 |
+
"model.layers.21.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 163 |
+
"model.layers.21.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 164 |
+
"model.layers.21.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 165 |
+
"model.layers.21.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 166 |
+
"model.layers.21.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 167 |
+
"model.layers.21.post_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 168 |
+
"model.layers.21.pre_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 169 |
+
"model.layers.21.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 170 |
+
"model.layers.21.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 171 |
+
"model.layers.21.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 172 |
+
"model.layers.21.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 173 |
+
"model.layers.22.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 174 |
+
"model.layers.22.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 175 |
+
"model.layers.22.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 176 |
+
"model.layers.22.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 177 |
+
"model.layers.22.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 178 |
+
"model.layers.22.post_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 179 |
+
"model.layers.22.pre_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 180 |
+
"model.layers.22.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 181 |
+
"model.layers.22.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 182 |
+
"model.layers.22.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 183 |
+
"model.layers.22.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 184 |
+
"model.layers.23.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 185 |
+
"model.layers.23.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 186 |
+
"model.layers.23.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 187 |
+
"model.layers.23.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 188 |
+
"model.layers.23.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 189 |
+
"model.layers.23.post_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 190 |
+
"model.layers.23.pre_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 191 |
+
"model.layers.23.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 192 |
+
"model.layers.23.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 193 |
+
"model.layers.23.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 194 |
+
"model.layers.23.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 195 |
+
"model.layers.24.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 196 |
+
"model.layers.24.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 197 |
+
"model.layers.24.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 198 |
+
"model.layers.24.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 199 |
+
"model.layers.24.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 200 |
+
"model.layers.24.post_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 201 |
+
"model.layers.24.pre_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 202 |
+
"model.layers.24.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 203 |
+
"model.layers.24.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 204 |
+
"model.layers.24.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 205 |
+
"model.layers.24.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 206 |
+
"model.layers.25.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 207 |
+
"model.layers.25.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 208 |
+
"model.layers.25.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 209 |
+
"model.layers.25.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 210 |
+
"model.layers.25.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 211 |
+
"model.layers.25.post_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 212 |
+
"model.layers.25.pre_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 213 |
+
"model.layers.25.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 214 |
+
"model.layers.25.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 215 |
+
"model.layers.25.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 216 |
+
"model.layers.25.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 217 |
+
"model.layers.26.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 218 |
+
"model.layers.26.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 219 |
+
"model.layers.26.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 220 |
+
"model.layers.26.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 221 |
+
"model.layers.26.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 222 |
+
"model.layers.26.post_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 223 |
+
"model.layers.26.pre_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 224 |
+
"model.layers.26.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 225 |
+
"model.layers.26.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 226 |
+
"model.layers.26.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 227 |
+
"model.layers.26.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 228 |
+
"model.layers.27.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 229 |
+
"model.layers.27.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 230 |
+
"model.layers.27.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 231 |
+
"model.layers.27.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 232 |
+
"model.layers.27.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 233 |
+
"model.layers.27.post_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 234 |
+
"model.layers.27.pre_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 235 |
+
"model.layers.27.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 236 |
+
"model.layers.27.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 237 |
+
"model.layers.27.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 238 |
+
"model.layers.27.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 239 |
+
"model.layers.28.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 240 |
+
"model.layers.28.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 241 |
+
"model.layers.28.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 242 |
+
"model.layers.28.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 243 |
+
"model.layers.28.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 244 |
+
"model.layers.28.post_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 245 |
+
"model.layers.28.pre_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 246 |
+
"model.layers.28.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 247 |
+
"model.layers.28.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 248 |
+
"model.layers.28.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 249 |
+
"model.layers.28.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 250 |
+
"model.layers.29.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 251 |
+
"model.layers.29.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 252 |
+
"model.layers.29.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 253 |
+
"model.layers.29.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 254 |
+
"model.layers.29.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 255 |
+
"model.layers.29.post_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 256 |
+
"model.layers.29.pre_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 257 |
+
"model.layers.29.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 258 |
+
"model.layers.29.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 259 |
+
"model.layers.29.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 260 |
+
"model.layers.29.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 261 |
+
"model.layers.3.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 262 |
+
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 263 |
+
"model.layers.3.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 264 |
+
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 265 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 266 |
+
"model.layers.3.post_feedforward_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 267 |
+
"model.layers.3.pre_feedforward_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 268 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 269 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 270 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 271 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 272 |
+
"model.layers.30.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 273 |
+
"model.layers.30.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 274 |
+
"model.layers.30.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 275 |
+
"model.layers.30.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 276 |
+
"model.layers.30.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 277 |
+
"model.layers.30.post_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 278 |
+
"model.layers.30.pre_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 279 |
+
"model.layers.30.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 280 |
+
"model.layers.30.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 281 |
+
"model.layers.30.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 282 |
+
"model.layers.30.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 283 |
+
"model.layers.31.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 284 |
+
"model.layers.31.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 285 |
+
"model.layers.31.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 286 |
+
"model.layers.31.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 287 |
+
"model.layers.31.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 288 |
+
"model.layers.31.post_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 289 |
+
"model.layers.31.pre_feedforward_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 290 |
+
"model.layers.31.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 291 |
+
"model.layers.31.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 292 |
+
"model.layers.31.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 293 |
+
"model.layers.31.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 294 |
+
"model.layers.32.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 295 |
+
"model.layers.32.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
| 296 |
+
"model.layers.32.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 297 |
+
"model.layers.32.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 298 |
+
"model.layers.32.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 299 |
+
"model.layers.32.post_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 300 |
+
"model.layers.32.pre_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 301 |
+
"model.layers.32.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 302 |
+
"model.layers.32.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 303 |
+
"model.layers.32.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 304 |
+
"model.layers.32.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 305 |
+
"model.layers.33.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 306 |
+
"model.layers.33.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
| 307 |
+
"model.layers.33.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
| 308 |
+
"model.layers.33.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
| 309 |
+
"model.layers.33.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 310 |
+
"model.layers.33.post_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 311 |
+
"model.layers.33.pre_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 312 |
+
"model.layers.33.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
| 313 |
+
"model.layers.33.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
| 314 |
+
"model.layers.33.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
|
| 315 |
+
"model.layers.33.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
|
| 316 |
+
"model.layers.34.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 317 |
+
"model.layers.34.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
| 318 |
+
"model.layers.34.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
| 319 |
+
"model.layers.34.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
| 320 |
+
"model.layers.34.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 321 |
+
"model.layers.34.post_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 322 |
+
"model.layers.34.pre_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 323 |
+
"model.layers.34.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
| 324 |
+
"model.layers.34.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
| 325 |
+
"model.layers.34.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
|
| 326 |
+
"model.layers.34.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
|
| 327 |
+
"model.layers.35.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 328 |
+
"model.layers.35.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
| 329 |
+
"model.layers.35.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
| 330 |
+
"model.layers.35.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
| 331 |
+
"model.layers.35.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 332 |
+
"model.layers.35.post_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 333 |
+
"model.layers.35.pre_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 334 |
+
"model.layers.35.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
| 335 |
+
"model.layers.35.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
| 336 |
+
"model.layers.35.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
|
| 337 |
+
"model.layers.35.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
|
| 338 |
+
"model.layers.36.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 339 |
+
"model.layers.36.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
| 340 |
+
"model.layers.36.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
| 341 |
+
"model.layers.36.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
| 342 |
+
"model.layers.36.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 343 |
+
"model.layers.36.post_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 344 |
+
"model.layers.36.pre_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 345 |
+
"model.layers.36.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
| 346 |
+
"model.layers.36.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
| 347 |
+
"model.layers.36.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
|
| 348 |
+
"model.layers.36.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
|
| 349 |
+
"model.layers.37.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 350 |
+
"model.layers.37.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
| 351 |
+
"model.layers.37.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
| 352 |
+
"model.layers.37.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
| 353 |
+
"model.layers.37.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 354 |
+
"model.layers.37.post_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 355 |
+
"model.layers.37.pre_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 356 |
+
"model.layers.37.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
| 357 |
+
"model.layers.37.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
| 358 |
+
"model.layers.37.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
|
| 359 |
+
"model.layers.37.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
|
| 360 |
+
"model.layers.38.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 361 |
+
"model.layers.38.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
| 362 |
+
"model.layers.38.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
| 363 |
+
"model.layers.38.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
| 364 |
+
"model.layers.38.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 365 |
+
"model.layers.38.post_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 366 |
+
"model.layers.38.pre_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 367 |
+
"model.layers.38.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
| 368 |
+
"model.layers.38.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
| 369 |
+
"model.layers.38.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
|
| 370 |
+
"model.layers.38.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
|
| 371 |
+
"model.layers.39.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 372 |
+
"model.layers.39.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
| 373 |
+
"model.layers.39.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
| 374 |
+
"model.layers.39.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
| 375 |
+
"model.layers.39.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 376 |
+
"model.layers.39.post_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 377 |
+
"model.layers.39.pre_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 378 |
+
"model.layers.39.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
| 379 |
+
"model.layers.39.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
| 380 |
+
"model.layers.39.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
|
| 381 |
+
"model.layers.39.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
|
| 382 |
+
"model.layers.4.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 383 |
+
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 384 |
+
"model.layers.4.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 385 |
+
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 386 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 387 |
+
"model.layers.4.post_feedforward_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 388 |
+
"model.layers.4.pre_feedforward_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 389 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 390 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 391 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 392 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 393 |
+
"model.layers.40.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 394 |
+
"model.layers.40.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
| 395 |
+
"model.layers.40.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
| 396 |
+
"model.layers.40.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
| 397 |
+
"model.layers.40.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 398 |
+
"model.layers.40.post_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 399 |
+
"model.layers.40.pre_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 400 |
+
"model.layers.40.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
| 401 |
+
"model.layers.40.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
| 402 |
+
"model.layers.40.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
|
| 403 |
+
"model.layers.40.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
|
| 404 |
+
"model.layers.41.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 405 |
+
"model.layers.41.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
| 406 |
+
"model.layers.41.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
| 407 |
+
"model.layers.41.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
| 408 |
+
"model.layers.41.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 409 |
+
"model.layers.41.post_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 410 |
+
"model.layers.41.pre_feedforward_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 411 |
+
"model.layers.41.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
| 412 |
+
"model.layers.41.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
| 413 |
+
"model.layers.41.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
|
| 414 |
+
"model.layers.41.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
|
| 415 |
+
"model.layers.5.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 416 |
+
"model.layers.5.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 417 |
+
"model.layers.5.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 418 |
+
"model.layers.5.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 419 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 420 |
+
"model.layers.5.post_feedforward_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 421 |
+
"model.layers.5.pre_feedforward_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 422 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 423 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 424 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 425 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 426 |
+
"model.layers.6.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 427 |
+
"model.layers.6.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 428 |
+
"model.layers.6.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 429 |
+
"model.layers.6.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 430 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 431 |
+
"model.layers.6.post_feedforward_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 432 |
+
"model.layers.6.pre_feedforward_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 433 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 434 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 435 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 436 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 437 |
+
"model.layers.7.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 438 |
+
"model.layers.7.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 439 |
+
"model.layers.7.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 440 |
+
"model.layers.7.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 441 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 442 |
+
"model.layers.7.post_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 443 |
+
"model.layers.7.pre_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 444 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 445 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 446 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 447 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 448 |
+
"model.layers.8.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 449 |
+
"model.layers.8.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 450 |
+
"model.layers.8.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 451 |
+
"model.layers.8.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 452 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 453 |
+
"model.layers.8.post_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 454 |
+
"model.layers.8.pre_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 455 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 456 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 457 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 458 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 459 |
+
"model.layers.9.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 460 |
+
"model.layers.9.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 461 |
+
"model.layers.9.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 462 |
+
"model.layers.9.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 463 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 464 |
+
"model.layers.9.post_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 465 |
+
"model.layers.9.pre_feedforward_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 466 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 467 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 468 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 469 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 470 |
+
"model.norm.weight": "model-00004-of-00004.safetensors"
|
| 471 |
+
}
|
| 472 |
+
}
|
checkpoint-1000/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3f10d467ee881e1052fe7ca51c6b8ee660bfdfea438411569abb0907f8775ab8
|
| 3 |
+
size 1585596266
|
checkpoint-1000/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:471b1c653aabe47d1dda07893496c6ec8f21353cd348bef0e1f9b8b6dd76552c
|
| 3 |
+
size 14645
|
checkpoint-1000/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f23267b381a42784999e08fdda207042bbe3b9bc2b38cecbe7bd208dc572c4ab
|
| 3 |
+
size 1465
|
checkpoint-1000/special_tokens_map.json
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
"<start_of_turn>",
|
| 4 |
+
"<end_of_turn>"
|
| 5 |
+
],
|
| 6 |
+
"bos_token": {
|
| 7 |
+
"content": "<bos>",
|
| 8 |
+
"lstrip": false,
|
| 9 |
+
"normalized": false,
|
| 10 |
+
"rstrip": false,
|
| 11 |
+
"single_word": false
|
| 12 |
+
},
|
| 13 |
+
"eos_token": {
|
| 14 |
+
"content": "<eos>",
|
| 15 |
+
"lstrip": false,
|
| 16 |
+
"normalized": false,
|
| 17 |
+
"rstrip": false,
|
| 18 |
+
"single_word": false
|
| 19 |
+
},
|
| 20 |
+
"pad_token": {
|
| 21 |
+
"content": "<pad>",
|
| 22 |
+
"lstrip": false,
|
| 23 |
+
"normalized": false,
|
| 24 |
+
"rstrip": false,
|
| 25 |
+
"single_word": false
|
| 26 |
+
},
|
| 27 |
+
"unk_token": {
|
| 28 |
+
"content": "<unk>",
|
| 29 |
+
"lstrip": false,
|
| 30 |
+
"normalized": false,
|
| 31 |
+
"rstrip": false,
|
| 32 |
+
"single_word": false
|
| 33 |
+
}
|
| 34 |
+
}
|
checkpoint-1000/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5f7eee611703c5ce5d1eee32d9cdcfe465647b8aff0c1dfb3bed7ad7dbb05060
|
| 3 |
+
size 34362873
|
checkpoint-1000/tokenizer.model
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:61a7b147390c64585d6c3543dd6fc636906c9af3865a5548f27f31aee1d4c8e2
|
| 3 |
+
size 4241003
|
checkpoint-1000/tokenizer_config.json
ADDED
|
@@ -0,0 +1,2013 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": true,
|
| 3 |
+
"add_eos_token": false,
|
| 4 |
+
"added_tokens_decoder": {
|
| 5 |
+
"0": {
|
| 6 |
+
"content": "<pad>",
|
| 7 |
+
"lstrip": false,
|
| 8 |
+
"normalized": false,
|
| 9 |
+
"rstrip": false,
|
| 10 |
+
"single_word": false,
|
| 11 |
+
"special": true
|
| 12 |
+
},
|
| 13 |
+
"1": {
|
| 14 |
+
"content": "<eos>",
|
| 15 |
+
"lstrip": false,
|
| 16 |
+
"normalized": false,
|
| 17 |
+
"rstrip": false,
|
| 18 |
+
"single_word": false,
|
| 19 |
+
"special": true
|
| 20 |
+
},
|
| 21 |
+
"2": {
|
| 22 |
+
"content": "<bos>",
|
| 23 |
+
"lstrip": false,
|
| 24 |
+
"normalized": false,
|
| 25 |
+
"rstrip": false,
|
| 26 |
+
"single_word": false,
|
| 27 |
+
"special": true
|
| 28 |
+
},
|
| 29 |
+
"3": {
|
| 30 |
+
"content": "<unk>",
|
| 31 |
+
"lstrip": false,
|
| 32 |
+
"normalized": false,
|
| 33 |
+
"rstrip": false,
|
| 34 |
+
"single_word": false,
|
| 35 |
+
"special": true
|
| 36 |
+
},
|
| 37 |
+
"4": {
|
| 38 |
+
"content": "<mask>",
|
| 39 |
+
"lstrip": false,
|
| 40 |
+
"normalized": false,
|
| 41 |
+
"rstrip": false,
|
| 42 |
+
"single_word": false,
|
| 43 |
+
"special": false
|
| 44 |
+
},
|
| 45 |
+
"5": {
|
| 46 |
+
"content": "<2mass>",
|
| 47 |
+
"lstrip": false,
|
| 48 |
+
"normalized": false,
|
| 49 |
+
"rstrip": false,
|
| 50 |
+
"single_word": false,
|
| 51 |
+
"special": false
|
| 52 |
+
},
|
| 53 |
+
"6": {
|
| 54 |
+
"content": "[@BOS@]",
|
| 55 |
+
"lstrip": false,
|
| 56 |
+
"normalized": false,
|
| 57 |
+
"rstrip": false,
|
| 58 |
+
"single_word": false,
|
| 59 |
+
"special": false
|
| 60 |
+
},
|
| 61 |
+
"7": {
|
| 62 |
+
"content": "<unused0>",
|
| 63 |
+
"lstrip": false,
|
| 64 |
+
"normalized": false,
|
| 65 |
+
"rstrip": false,
|
| 66 |
+
"single_word": false,
|
| 67 |
+
"special": false
|
| 68 |
+
},
|
| 69 |
+
"8": {
|
| 70 |
+
"content": "<unused1>",
|
| 71 |
+
"lstrip": false,
|
| 72 |
+
"normalized": false,
|
| 73 |
+
"rstrip": false,
|
| 74 |
+
"single_word": false,
|
| 75 |
+
"special": false
|
| 76 |
+
},
|
| 77 |
+
"9": {
|
| 78 |
+
"content": "<unused2>",
|
| 79 |
+
"lstrip": false,
|
| 80 |
+
"normalized": false,
|
| 81 |
+
"rstrip": false,
|
| 82 |
+
"single_word": false,
|
| 83 |
+
"special": false
|
| 84 |
+
},
|
| 85 |
+
"10": {
|
| 86 |
+
"content": "<unused3>",
|
| 87 |
+
"lstrip": false,
|
| 88 |
+
"normalized": false,
|
| 89 |
+
"rstrip": false,
|
| 90 |
+
"single_word": false,
|
| 91 |
+
"special": false
|
| 92 |
+
},
|
| 93 |
+
"11": {
|
| 94 |
+
"content": "<unused4>",
|
| 95 |
+
"lstrip": false,
|
| 96 |
+
"normalized": false,
|
| 97 |
+
"rstrip": false,
|
| 98 |
+
"single_word": false,
|
| 99 |
+
"special": false
|
| 100 |
+
},
|
| 101 |
+
"12": {
|
| 102 |
+
"content": "<unused5>",
|
| 103 |
+
"lstrip": false,
|
| 104 |
+
"normalized": false,
|
| 105 |
+
"rstrip": false,
|
| 106 |
+
"single_word": false,
|
| 107 |
+
"special": false
|
| 108 |
+
},
|
| 109 |
+
"13": {
|
| 110 |
+
"content": "<unused6>",
|
| 111 |
+
"lstrip": false,
|
| 112 |
+
"normalized": false,
|
| 113 |
+
"rstrip": false,
|
| 114 |
+
"single_word": false,
|
| 115 |
+
"special": false
|
| 116 |
+
},
|
| 117 |
+
"14": {
|
| 118 |
+
"content": "<unused7>",
|
| 119 |
+
"lstrip": false,
|
| 120 |
+
"normalized": false,
|
| 121 |
+
"rstrip": false,
|
| 122 |
+
"single_word": false,
|
| 123 |
+
"special": false
|
| 124 |
+
},
|
| 125 |
+
"15": {
|
| 126 |
+
"content": "<unused8>",
|
| 127 |
+
"lstrip": false,
|
| 128 |
+
"normalized": false,
|
| 129 |
+
"rstrip": false,
|
| 130 |
+
"single_word": false,
|
| 131 |
+
"special": false
|
| 132 |
+
},
|
| 133 |
+
"16": {
|
| 134 |
+
"content": "<unused9>",
|
| 135 |
+
"lstrip": false,
|
| 136 |
+
"normalized": false,
|
| 137 |
+
"rstrip": false,
|
| 138 |
+
"single_word": false,
|
| 139 |
+
"special": false
|
| 140 |
+
},
|
| 141 |
+
"17": {
|
| 142 |
+
"content": "<unused10>",
|
| 143 |
+
"lstrip": false,
|
| 144 |
+
"normalized": false,
|
| 145 |
+
"rstrip": false,
|
| 146 |
+
"single_word": false,
|
| 147 |
+
"special": false
|
| 148 |
+
},
|
| 149 |
+
"18": {
|
| 150 |
+
"content": "<unused11>",
|
| 151 |
+
"lstrip": false,
|
| 152 |
+
"normalized": false,
|
| 153 |
+
"rstrip": false,
|
| 154 |
+
"single_word": false,
|
| 155 |
+
"special": false
|
| 156 |
+
},
|
| 157 |
+
"19": {
|
| 158 |
+
"content": "<unused12>",
|
| 159 |
+
"lstrip": false,
|
| 160 |
+
"normalized": false,
|
| 161 |
+
"rstrip": false,
|
| 162 |
+
"single_word": false,
|
| 163 |
+
"special": false
|
| 164 |
+
},
|
| 165 |
+
"20": {
|
| 166 |
+
"content": "<unused13>",
|
| 167 |
+
"lstrip": false,
|
| 168 |
+
"normalized": false,
|
| 169 |
+
"rstrip": false,
|
| 170 |
+
"single_word": false,
|
| 171 |
+
"special": false
|
| 172 |
+
},
|
| 173 |
+
"21": {
|
| 174 |
+
"content": "<unused14>",
|
| 175 |
+
"lstrip": false,
|
| 176 |
+
"normalized": false,
|
| 177 |
+
"rstrip": false,
|
| 178 |
+
"single_word": false,
|
| 179 |
+
"special": false
|
| 180 |
+
},
|
| 181 |
+
"22": {
|
| 182 |
+
"content": "<unused15>",
|
| 183 |
+
"lstrip": false,
|
| 184 |
+
"normalized": false,
|
| 185 |
+
"rstrip": false,
|
| 186 |
+
"single_word": false,
|
| 187 |
+
"special": false
|
| 188 |
+
},
|
| 189 |
+
"23": {
|
| 190 |
+
"content": "<unused16>",
|
| 191 |
+
"lstrip": false,
|
| 192 |
+
"normalized": false,
|
| 193 |
+
"rstrip": false,
|
| 194 |
+
"single_word": false,
|
| 195 |
+
"special": false
|
| 196 |
+
},
|
| 197 |
+
"24": {
|
| 198 |
+
"content": "<unused17>",
|
| 199 |
+
"lstrip": false,
|
| 200 |
+
"normalized": false,
|
| 201 |
+
"rstrip": false,
|
| 202 |
+
"single_word": false,
|
| 203 |
+
"special": false
|
| 204 |
+
},
|
| 205 |
+
"25": {
|
| 206 |
+
"content": "<unused18>",
|
| 207 |
+
"lstrip": false,
|
| 208 |
+
"normalized": false,
|
| 209 |
+
"rstrip": false,
|
| 210 |
+
"single_word": false,
|
| 211 |
+
"special": false
|
| 212 |
+
},
|
| 213 |
+
"26": {
|
| 214 |
+
"content": "<unused19>",
|
| 215 |
+
"lstrip": false,
|
| 216 |
+
"normalized": false,
|
| 217 |
+
"rstrip": false,
|
| 218 |
+
"single_word": false,
|
| 219 |
+
"special": false
|
| 220 |
+
},
|
| 221 |
+
"27": {
|
| 222 |
+
"content": "<unused20>",
|
| 223 |
+
"lstrip": false,
|
| 224 |
+
"normalized": false,
|
| 225 |
+
"rstrip": false,
|
| 226 |
+
"single_word": false,
|
| 227 |
+
"special": false
|
| 228 |
+
},
|
| 229 |
+
"28": {
|
| 230 |
+
"content": "<unused21>",
|
| 231 |
+
"lstrip": false,
|
| 232 |
+
"normalized": false,
|
| 233 |
+
"rstrip": false,
|
| 234 |
+
"single_word": false,
|
| 235 |
+
"special": false
|
| 236 |
+
},
|
| 237 |
+
"29": {
|
| 238 |
+
"content": "<unused22>",
|
| 239 |
+
"lstrip": false,
|
| 240 |
+
"normalized": false,
|
| 241 |
+
"rstrip": false,
|
| 242 |
+
"single_word": false,
|
| 243 |
+
"special": false
|
| 244 |
+
},
|
| 245 |
+
"30": {
|
| 246 |
+
"content": "<unused23>",
|
| 247 |
+
"lstrip": false,
|
| 248 |
+
"normalized": false,
|
| 249 |
+
"rstrip": false,
|
| 250 |
+
"single_word": false,
|
| 251 |
+
"special": false
|
| 252 |
+
},
|
| 253 |
+
"31": {
|
| 254 |
+
"content": "<unused24>",
|
| 255 |
+
"lstrip": false,
|
| 256 |
+
"normalized": false,
|
| 257 |
+
"rstrip": false,
|
| 258 |
+
"single_word": false,
|
| 259 |
+
"special": false
|
| 260 |
+
},
|
| 261 |
+
"32": {
|
| 262 |
+
"content": "<unused25>",
|
| 263 |
+
"lstrip": false,
|
| 264 |
+
"normalized": false,
|
| 265 |
+
"rstrip": false,
|
| 266 |
+
"single_word": false,
|
| 267 |
+
"special": false
|
| 268 |
+
},
|
| 269 |
+
"33": {
|
| 270 |
+
"content": "<unused26>",
|
| 271 |
+
"lstrip": false,
|
| 272 |
+
"normalized": false,
|
| 273 |
+
"rstrip": false,
|
| 274 |
+
"single_word": false,
|
| 275 |
+
"special": false
|
| 276 |
+
},
|
| 277 |
+
"34": {
|
| 278 |
+
"content": "<unused27>",
|
| 279 |
+
"lstrip": false,
|
| 280 |
+
"normalized": false,
|
| 281 |
+
"rstrip": false,
|
| 282 |
+
"single_word": false,
|
| 283 |
+
"special": false
|
| 284 |
+
},
|
| 285 |
+
"35": {
|
| 286 |
+
"content": "<unused28>",
|
| 287 |
+
"lstrip": false,
|
| 288 |
+
"normalized": false,
|
| 289 |
+
"rstrip": false,
|
| 290 |
+
"single_word": false,
|
| 291 |
+
"special": false
|
| 292 |
+
},
|
| 293 |
+
"36": {
|
| 294 |
+
"content": "<unused29>",
|
| 295 |
+
"lstrip": false,
|
| 296 |
+
"normalized": false,
|
| 297 |
+
"rstrip": false,
|
| 298 |
+
"single_word": false,
|
| 299 |
+
"special": false
|
| 300 |
+
},
|
| 301 |
+
"37": {
|
| 302 |
+
"content": "<unused30>",
|
| 303 |
+
"lstrip": false,
|
| 304 |
+
"normalized": false,
|
| 305 |
+
"rstrip": false,
|
| 306 |
+
"single_word": false,
|
| 307 |
+
"special": false
|
| 308 |
+
},
|
| 309 |
+
"38": {
|
| 310 |
+
"content": "<unused31>",
|
| 311 |
+
"lstrip": false,
|
| 312 |
+
"normalized": false,
|
| 313 |
+
"rstrip": false,
|
| 314 |
+
"single_word": false,
|
| 315 |
+
"special": false
|
| 316 |
+
},
|
| 317 |
+
"39": {
|
| 318 |
+
"content": "<unused32>",
|
| 319 |
+
"lstrip": false,
|
| 320 |
+
"normalized": false,
|
| 321 |
+
"rstrip": false,
|
| 322 |
+
"single_word": false,
|
| 323 |
+
"special": false
|
| 324 |
+
},
|
| 325 |
+
"40": {
|
| 326 |
+
"content": "<unused33>",
|
| 327 |
+
"lstrip": false,
|
| 328 |
+
"normalized": false,
|
| 329 |
+
"rstrip": false,
|
| 330 |
+
"single_word": false,
|
| 331 |
+
"special": false
|
| 332 |
+
},
|
| 333 |
+
"41": {
|
| 334 |
+
"content": "<unused34>",
|
| 335 |
+
"lstrip": false,
|
| 336 |
+
"normalized": false,
|
| 337 |
+
"rstrip": false,
|
| 338 |
+
"single_word": false,
|
| 339 |
+
"special": false
|
| 340 |
+
},
|
| 341 |
+
"42": {
|
| 342 |
+
"content": "<unused35>",
|
| 343 |
+
"lstrip": false,
|
| 344 |
+
"normalized": false,
|
| 345 |
+
"rstrip": false,
|
| 346 |
+
"single_word": false,
|
| 347 |
+
"special": false
|
| 348 |
+
},
|
| 349 |
+
"43": {
|
| 350 |
+
"content": "<unused36>",
|
| 351 |
+
"lstrip": false,
|
| 352 |
+
"normalized": false,
|
| 353 |
+
"rstrip": false,
|
| 354 |
+
"single_word": false,
|
| 355 |
+
"special": false
|
| 356 |
+
},
|
| 357 |
+
"44": {
|
| 358 |
+
"content": "<unused37>",
|
| 359 |
+
"lstrip": false,
|
| 360 |
+
"normalized": false,
|
| 361 |
+
"rstrip": false,
|
| 362 |
+
"single_word": false,
|
| 363 |
+
"special": false
|
| 364 |
+
},
|
| 365 |
+
"45": {
|
| 366 |
+
"content": "<unused38>",
|
| 367 |
+
"lstrip": false,
|
| 368 |
+
"normalized": false,
|
| 369 |
+
"rstrip": false,
|
| 370 |
+
"single_word": false,
|
| 371 |
+
"special": false
|
| 372 |
+
},
|
| 373 |
+
"46": {
|
| 374 |
+
"content": "<unused39>",
|
| 375 |
+
"lstrip": false,
|
| 376 |
+
"normalized": false,
|
| 377 |
+
"rstrip": false,
|
| 378 |
+
"single_word": false,
|
| 379 |
+
"special": false
|
| 380 |
+
},
|
| 381 |
+
"47": {
|
| 382 |
+
"content": "<unused40>",
|
| 383 |
+
"lstrip": false,
|
| 384 |
+
"normalized": false,
|
| 385 |
+
"rstrip": false,
|
| 386 |
+
"single_word": false,
|
| 387 |
+
"special": false
|
| 388 |
+
},
|
| 389 |
+
"48": {
|
| 390 |
+
"content": "<unused41>",
|
| 391 |
+
"lstrip": false,
|
| 392 |
+
"normalized": false,
|
| 393 |
+
"rstrip": false,
|
| 394 |
+
"single_word": false,
|
| 395 |
+
"special": false
|
| 396 |
+
},
|
| 397 |
+
"49": {
|
| 398 |
+
"content": "<unused42>",
|
| 399 |
+
"lstrip": false,
|
| 400 |
+
"normalized": false,
|
| 401 |
+
"rstrip": false,
|
| 402 |
+
"single_word": false,
|
| 403 |
+
"special": false
|
| 404 |
+
},
|
| 405 |
+
"50": {
|
| 406 |
+
"content": "<unused43>",
|
| 407 |
+
"lstrip": false,
|
| 408 |
+
"normalized": false,
|
| 409 |
+
"rstrip": false,
|
| 410 |
+
"single_word": false,
|
| 411 |
+
"special": false
|
| 412 |
+
},
|
| 413 |
+
"51": {
|
| 414 |
+
"content": "<unused44>",
|
| 415 |
+
"lstrip": false,
|
| 416 |
+
"normalized": false,
|
| 417 |
+
"rstrip": false,
|
| 418 |
+
"single_word": false,
|
| 419 |
+
"special": false
|
| 420 |
+
},
|
| 421 |
+
"52": {
|
| 422 |
+
"content": "<unused45>",
|
| 423 |
+
"lstrip": false,
|
| 424 |
+
"normalized": false,
|
| 425 |
+
"rstrip": false,
|
| 426 |
+
"single_word": false,
|
| 427 |
+
"special": false
|
| 428 |
+
},
|
| 429 |
+
"53": {
|
| 430 |
+
"content": "<unused46>",
|
| 431 |
+
"lstrip": false,
|
| 432 |
+
"normalized": false,
|
| 433 |
+
"rstrip": false,
|
| 434 |
+
"single_word": false,
|
| 435 |
+
"special": false
|
| 436 |
+
},
|
| 437 |
+
"54": {
|
| 438 |
+
"content": "<unused47>",
|
| 439 |
+
"lstrip": false,
|
| 440 |
+
"normalized": false,
|
| 441 |
+
"rstrip": false,
|
| 442 |
+
"single_word": false,
|
| 443 |
+
"special": false
|
| 444 |
+
},
|
| 445 |
+
"55": {
|
| 446 |
+
"content": "<unused48>",
|
| 447 |
+
"lstrip": false,
|
| 448 |
+
"normalized": false,
|
| 449 |
+
"rstrip": false,
|
| 450 |
+
"single_word": false,
|
| 451 |
+
"special": false
|
| 452 |
+
},
|
| 453 |
+
"56": {
|
| 454 |
+
"content": "<unused49>",
|
| 455 |
+
"lstrip": false,
|
| 456 |
+
"normalized": false,
|
| 457 |
+
"rstrip": false,
|
| 458 |
+
"single_word": false,
|
| 459 |
+
"special": false
|
| 460 |
+
},
|
| 461 |
+
"57": {
|
| 462 |
+
"content": "<unused50>",
|
| 463 |
+
"lstrip": false,
|
| 464 |
+
"normalized": false,
|
| 465 |
+
"rstrip": false,
|
| 466 |
+
"single_word": false,
|
| 467 |
+
"special": false
|
| 468 |
+
},
|
| 469 |
+
"58": {
|
| 470 |
+
"content": "<unused51>",
|
| 471 |
+
"lstrip": false,
|
| 472 |
+
"normalized": false,
|
| 473 |
+
"rstrip": false,
|
| 474 |
+
"single_word": false,
|
| 475 |
+
"special": false
|
| 476 |
+
},
|
| 477 |
+
"59": {
|
| 478 |
+
"content": "<unused52>",
|
| 479 |
+
"lstrip": false,
|
| 480 |
+
"normalized": false,
|
| 481 |
+
"rstrip": false,
|
| 482 |
+
"single_word": false,
|
| 483 |
+
"special": false
|
| 484 |
+
},
|
| 485 |
+
"60": {
|
| 486 |
+
"content": "<unused53>",
|
| 487 |
+
"lstrip": false,
|
| 488 |
+
"normalized": false,
|
| 489 |
+
"rstrip": false,
|
| 490 |
+
"single_word": false,
|
| 491 |
+
"special": false
|
| 492 |
+
},
|
| 493 |
+
"61": {
|
| 494 |
+
"content": "<unused54>",
|
| 495 |
+
"lstrip": false,
|
| 496 |
+
"normalized": false,
|
| 497 |
+
"rstrip": false,
|
| 498 |
+
"single_word": false,
|
| 499 |
+
"special": false
|
| 500 |
+
},
|
| 501 |
+
"62": {
|
| 502 |
+
"content": "<unused55>",
|
| 503 |
+
"lstrip": false,
|
| 504 |
+
"normalized": false,
|
| 505 |
+
"rstrip": false,
|
| 506 |
+
"single_word": false,
|
| 507 |
+
"special": false
|
| 508 |
+
},
|
| 509 |
+
"63": {
|
| 510 |
+
"content": "<unused56>",
|
| 511 |
+
"lstrip": false,
|
| 512 |
+
"normalized": false,
|
| 513 |
+
"rstrip": false,
|
| 514 |
+
"single_word": false,
|
| 515 |
+
"special": false
|
| 516 |
+
},
|
| 517 |
+
"64": {
|
| 518 |
+
"content": "<unused57>",
|
| 519 |
+
"lstrip": false,
|
| 520 |
+
"normalized": false,
|
| 521 |
+
"rstrip": false,
|
| 522 |
+
"single_word": false,
|
| 523 |
+
"special": false
|
| 524 |
+
},
|
| 525 |
+
"65": {
|
| 526 |
+
"content": "<unused58>",
|
| 527 |
+
"lstrip": false,
|
| 528 |
+
"normalized": false,
|
| 529 |
+
"rstrip": false,
|
| 530 |
+
"single_word": false,
|
| 531 |
+
"special": false
|
| 532 |
+
},
|
| 533 |
+
"66": {
|
| 534 |
+
"content": "<unused59>",
|
| 535 |
+
"lstrip": false,
|
| 536 |
+
"normalized": false,
|
| 537 |
+
"rstrip": false,
|
| 538 |
+
"single_word": false,
|
| 539 |
+
"special": false
|
| 540 |
+
},
|
| 541 |
+
"67": {
|
| 542 |
+
"content": "<unused60>",
|
| 543 |
+
"lstrip": false,
|
| 544 |
+
"normalized": false,
|
| 545 |
+
"rstrip": false,
|
| 546 |
+
"single_word": false,
|
| 547 |
+
"special": false
|
| 548 |
+
},
|
| 549 |
+
"68": {
|
| 550 |
+
"content": "<unused61>",
|
| 551 |
+
"lstrip": false,
|
| 552 |
+
"normalized": false,
|
| 553 |
+
"rstrip": false,
|
| 554 |
+
"single_word": false,
|
| 555 |
+
"special": false
|
| 556 |
+
},
|
| 557 |
+
"69": {
|
| 558 |
+
"content": "<unused62>",
|
| 559 |
+
"lstrip": false,
|
| 560 |
+
"normalized": false,
|
| 561 |
+
"rstrip": false,
|
| 562 |
+
"single_word": false,
|
| 563 |
+
"special": false
|
| 564 |
+
},
|
| 565 |
+
"70": {
|
| 566 |
+
"content": "<unused63>",
|
| 567 |
+
"lstrip": false,
|
| 568 |
+
"normalized": false,
|
| 569 |
+
"rstrip": false,
|
| 570 |
+
"single_word": false,
|
| 571 |
+
"special": false
|
| 572 |
+
},
|
| 573 |
+
"71": {
|
| 574 |
+
"content": "<unused64>",
|
| 575 |
+
"lstrip": false,
|
| 576 |
+
"normalized": false,
|
| 577 |
+
"rstrip": false,
|
| 578 |
+
"single_word": false,
|
| 579 |
+
"special": false
|
| 580 |
+
},
|
| 581 |
+
"72": {
|
| 582 |
+
"content": "<unused65>",
|
| 583 |
+
"lstrip": false,
|
| 584 |
+
"normalized": false,
|
| 585 |
+
"rstrip": false,
|
| 586 |
+
"single_word": false,
|
| 587 |
+
"special": false
|
| 588 |
+
},
|
| 589 |
+
"73": {
|
| 590 |
+
"content": "<unused66>",
|
| 591 |
+
"lstrip": false,
|
| 592 |
+
"normalized": false,
|
| 593 |
+
"rstrip": false,
|
| 594 |
+
"single_word": false,
|
| 595 |
+
"special": false
|
| 596 |
+
},
|
| 597 |
+
"74": {
|
| 598 |
+
"content": "<unused67>",
|
| 599 |
+
"lstrip": false,
|
| 600 |
+
"normalized": false,
|
| 601 |
+
"rstrip": false,
|
| 602 |
+
"single_word": false,
|
| 603 |
+
"special": false
|
| 604 |
+
},
|
| 605 |
+
"75": {
|
| 606 |
+
"content": "<unused68>",
|
| 607 |
+
"lstrip": false,
|
| 608 |
+
"normalized": false,
|
| 609 |
+
"rstrip": false,
|
| 610 |
+
"single_word": false,
|
| 611 |
+
"special": false
|
| 612 |
+
},
|
| 613 |
+
"76": {
|
| 614 |
+
"content": "<unused69>",
|
| 615 |
+
"lstrip": false,
|
| 616 |
+
"normalized": false,
|
| 617 |
+
"rstrip": false,
|
| 618 |
+
"single_word": false,
|
| 619 |
+
"special": false
|
| 620 |
+
},
|
| 621 |
+
"77": {
|
| 622 |
+
"content": "<unused70>",
|
| 623 |
+
"lstrip": false,
|
| 624 |
+
"normalized": false,
|
| 625 |
+
"rstrip": false,
|
| 626 |
+
"single_word": false,
|
| 627 |
+
"special": false
|
| 628 |
+
},
|
| 629 |
+
"78": {
|
| 630 |
+
"content": "<unused71>",
|
| 631 |
+
"lstrip": false,
|
| 632 |
+
"normalized": false,
|
| 633 |
+
"rstrip": false,
|
| 634 |
+
"single_word": false,
|
| 635 |
+
"special": false
|
| 636 |
+
},
|
| 637 |
+
"79": {
|
| 638 |
+
"content": "<unused72>",
|
| 639 |
+
"lstrip": false,
|
| 640 |
+
"normalized": false,
|
| 641 |
+
"rstrip": false,
|
| 642 |
+
"single_word": false,
|
| 643 |
+
"special": false
|
| 644 |
+
},
|
| 645 |
+
"80": {
|
| 646 |
+
"content": "<unused73>",
|
| 647 |
+
"lstrip": false,
|
| 648 |
+
"normalized": false,
|
| 649 |
+
"rstrip": false,
|
| 650 |
+
"single_word": false,
|
| 651 |
+
"special": false
|
| 652 |
+
},
|
| 653 |
+
"81": {
|
| 654 |
+
"content": "<unused74>",
|
| 655 |
+
"lstrip": false,
|
| 656 |
+
"normalized": false,
|
| 657 |
+
"rstrip": false,
|
| 658 |
+
"single_word": false,
|
| 659 |
+
"special": false
|
| 660 |
+
},
|
| 661 |
+
"82": {
|
| 662 |
+
"content": "<unused75>",
|
| 663 |
+
"lstrip": false,
|
| 664 |
+
"normalized": false,
|
| 665 |
+
"rstrip": false,
|
| 666 |
+
"single_word": false,
|
| 667 |
+
"special": false
|
| 668 |
+
},
|
| 669 |
+
"83": {
|
| 670 |
+
"content": "<unused76>",
|
| 671 |
+
"lstrip": false,
|
| 672 |
+
"normalized": false,
|
| 673 |
+
"rstrip": false,
|
| 674 |
+
"single_word": false,
|
| 675 |
+
"special": false
|
| 676 |
+
},
|
| 677 |
+
"84": {
|
| 678 |
+
"content": "<unused77>",
|
| 679 |
+
"lstrip": false,
|
| 680 |
+
"normalized": false,
|
| 681 |
+
"rstrip": false,
|
| 682 |
+
"single_word": false,
|
| 683 |
+
"special": false
|
| 684 |
+
},
|
| 685 |
+
"85": {
|
| 686 |
+
"content": "<unused78>",
|
| 687 |
+
"lstrip": false,
|
| 688 |
+
"normalized": false,
|
| 689 |
+
"rstrip": false,
|
| 690 |
+
"single_word": false,
|
| 691 |
+
"special": false
|
| 692 |
+
},
|
| 693 |
+
"86": {
|
| 694 |
+
"content": "<unused79>",
|
| 695 |
+
"lstrip": false,
|
| 696 |
+
"normalized": false,
|
| 697 |
+
"rstrip": false,
|
| 698 |
+
"single_word": false,
|
| 699 |
+
"special": false
|
| 700 |
+
},
|
| 701 |
+
"87": {
|
| 702 |
+
"content": "<unused80>",
|
| 703 |
+
"lstrip": false,
|
| 704 |
+
"normalized": false,
|
| 705 |
+
"rstrip": false,
|
| 706 |
+
"single_word": false,
|
| 707 |
+
"special": false
|
| 708 |
+
},
|
| 709 |
+
"88": {
|
| 710 |
+
"content": "<unused81>",
|
| 711 |
+
"lstrip": false,
|
| 712 |
+
"normalized": false,
|
| 713 |
+
"rstrip": false,
|
| 714 |
+
"single_word": false,
|
| 715 |
+
"special": false
|
| 716 |
+
},
|
| 717 |
+
"89": {
|
| 718 |
+
"content": "<unused82>",
|
| 719 |
+
"lstrip": false,
|
| 720 |
+
"normalized": false,
|
| 721 |
+
"rstrip": false,
|
| 722 |
+
"single_word": false,
|
| 723 |
+
"special": false
|
| 724 |
+
},
|
| 725 |
+
"90": {
|
| 726 |
+
"content": "<unused83>",
|
| 727 |
+
"lstrip": false,
|
| 728 |
+
"normalized": false,
|
| 729 |
+
"rstrip": false,
|
| 730 |
+
"single_word": false,
|
| 731 |
+
"special": false
|
| 732 |
+
},
|
| 733 |
+
"91": {
|
| 734 |
+
"content": "<unused84>",
|
| 735 |
+
"lstrip": false,
|
| 736 |
+
"normalized": false,
|
| 737 |
+
"rstrip": false,
|
| 738 |
+
"single_word": false,
|
| 739 |
+
"special": false
|
| 740 |
+
},
|
| 741 |
+
"92": {
|
| 742 |
+
"content": "<unused85>",
|
| 743 |
+
"lstrip": false,
|
| 744 |
+
"normalized": false,
|
| 745 |
+
"rstrip": false,
|
| 746 |
+
"single_word": false,
|
| 747 |
+
"special": false
|
| 748 |
+
},
|
| 749 |
+
"93": {
|
| 750 |
+
"content": "<unused86>",
|
| 751 |
+
"lstrip": false,
|
| 752 |
+
"normalized": false,
|
| 753 |
+
"rstrip": false,
|
| 754 |
+
"single_word": false,
|
| 755 |
+
"special": false
|
| 756 |
+
},
|
| 757 |
+
"94": {
|
| 758 |
+
"content": "<unused87>",
|
| 759 |
+
"lstrip": false,
|
| 760 |
+
"normalized": false,
|
| 761 |
+
"rstrip": false,
|
| 762 |
+
"single_word": false,
|
| 763 |
+
"special": false
|
| 764 |
+
},
|
| 765 |
+
"95": {
|
| 766 |
+
"content": "<unused88>",
|
| 767 |
+
"lstrip": false,
|
| 768 |
+
"normalized": false,
|
| 769 |
+
"rstrip": false,
|
| 770 |
+
"single_word": false,
|
| 771 |
+
"special": false
|
| 772 |
+
},
|
| 773 |
+
"96": {
|
| 774 |
+
"content": "<unused89>",
|
| 775 |
+
"lstrip": false,
|
| 776 |
+
"normalized": false,
|
| 777 |
+
"rstrip": false,
|
| 778 |
+
"single_word": false,
|
| 779 |
+
"special": false
|
| 780 |
+
},
|
| 781 |
+
"97": {
|
| 782 |
+
"content": "<unused90>",
|
| 783 |
+
"lstrip": false,
|
| 784 |
+
"normalized": false,
|
| 785 |
+
"rstrip": false,
|
| 786 |
+
"single_word": false,
|
| 787 |
+
"special": false
|
| 788 |
+
},
|
| 789 |
+
"98": {
|
| 790 |
+
"content": "<unused91>",
|
| 791 |
+
"lstrip": false,
|
| 792 |
+
"normalized": false,
|
| 793 |
+
"rstrip": false,
|
| 794 |
+
"single_word": false,
|
| 795 |
+
"special": false
|
| 796 |
+
},
|
| 797 |
+
"99": {
|
| 798 |
+
"content": "<unused92>",
|
| 799 |
+
"lstrip": false,
|
| 800 |
+
"normalized": false,
|
| 801 |
+
"rstrip": false,
|
| 802 |
+
"single_word": false,
|
| 803 |
+
"special": false
|
| 804 |
+
},
|
| 805 |
+
"100": {
|
| 806 |
+
"content": "<unused93>",
|
| 807 |
+
"lstrip": false,
|
| 808 |
+
"normalized": false,
|
| 809 |
+
"rstrip": false,
|
| 810 |
+
"single_word": false,
|
| 811 |
+
"special": false
|
| 812 |
+
},
|
| 813 |
+
"101": {
|
| 814 |
+
"content": "<unused94>",
|
| 815 |
+
"lstrip": false,
|
| 816 |
+
"normalized": false,
|
| 817 |
+
"rstrip": false,
|
| 818 |
+
"single_word": false,
|
| 819 |
+
"special": false
|
| 820 |
+
},
|
| 821 |
+
"102": {
|
| 822 |
+
"content": "<unused95>",
|
| 823 |
+
"lstrip": false,
|
| 824 |
+
"normalized": false,
|
| 825 |
+
"rstrip": false,
|
| 826 |
+
"single_word": false,
|
| 827 |
+
"special": false
|
| 828 |
+
},
|
| 829 |
+
"103": {
|
| 830 |
+
"content": "<unused96>",
|
| 831 |
+
"lstrip": false,
|
| 832 |
+
"normalized": false,
|
| 833 |
+
"rstrip": false,
|
| 834 |
+
"single_word": false,
|
| 835 |
+
"special": false
|
| 836 |
+
},
|
| 837 |
+
"104": {
|
| 838 |
+
"content": "<unused97>",
|
| 839 |
+
"lstrip": false,
|
| 840 |
+
"normalized": false,
|
| 841 |
+
"rstrip": false,
|
| 842 |
+
"single_word": false,
|
| 843 |
+
"special": false
|
| 844 |
+
},
|
| 845 |
+
"105": {
|
| 846 |
+
"content": "<unused98>",
|
| 847 |
+
"lstrip": false,
|
| 848 |
+
"normalized": false,
|
| 849 |
+
"rstrip": false,
|
| 850 |
+
"single_word": false,
|
| 851 |
+
"special": false
|
| 852 |
+
},
|
| 853 |
+
"106": {
|
| 854 |
+
"content": "<start_of_turn>",
|
| 855 |
+
"lstrip": false,
|
| 856 |
+
"normalized": false,
|
| 857 |
+
"rstrip": false,
|
| 858 |
+
"single_word": false,
|
| 859 |
+
"special": true
|
| 860 |
+
},
|
| 861 |
+
"107": {
|
| 862 |
+
"content": "<end_of_turn>",
|
| 863 |
+
"lstrip": false,
|
| 864 |
+
"normalized": false,
|
| 865 |
+
"rstrip": false,
|
| 866 |
+
"single_word": false,
|
| 867 |
+
"special": true
|
| 868 |
+
},
|
| 869 |
+
"108": {
|
| 870 |
+
"content": "\n",
|
| 871 |
+
"lstrip": false,
|
| 872 |
+
"normalized": false,
|
| 873 |
+
"rstrip": false,
|
| 874 |
+
"single_word": false,
|
| 875 |
+
"special": false
|
| 876 |
+
},
|
| 877 |
+
"109": {
|
| 878 |
+
"content": "\n\n",
|
| 879 |
+
"lstrip": false,
|
| 880 |
+
"normalized": false,
|
| 881 |
+
"rstrip": false,
|
| 882 |
+
"single_word": false,
|
| 883 |
+
"special": false
|
| 884 |
+
},
|
| 885 |
+
"110": {
|
| 886 |
+
"content": "\n\n\n",
|
| 887 |
+
"lstrip": false,
|
| 888 |
+
"normalized": false,
|
| 889 |
+
"rstrip": false,
|
| 890 |
+
"single_word": false,
|
| 891 |
+
"special": false
|
| 892 |
+
},
|
| 893 |
+
"111": {
|
| 894 |
+
"content": "\n\n\n\n",
|
| 895 |
+
"lstrip": false,
|
| 896 |
+
"normalized": false,
|
| 897 |
+
"rstrip": false,
|
| 898 |
+
"single_word": false,
|
| 899 |
+
"special": false
|
| 900 |
+
},
|
| 901 |
+
"112": {
|
| 902 |
+
"content": "\n\n\n\n\n",
|
| 903 |
+
"lstrip": false,
|
| 904 |
+
"normalized": false,
|
| 905 |
+
"rstrip": false,
|
| 906 |
+
"single_word": false,
|
| 907 |
+
"special": false
|
| 908 |
+
},
|
| 909 |
+
"113": {
|
| 910 |
+
"content": "\n\n\n\n\n\n",
|
| 911 |
+
"lstrip": false,
|
| 912 |
+
"normalized": false,
|
| 913 |
+
"rstrip": false,
|
| 914 |
+
"single_word": false,
|
| 915 |
+
"special": false
|
| 916 |
+
},
|
| 917 |
+
"114": {
|
| 918 |
+
"content": "\n\n\n\n\n\n\n",
|
| 919 |
+
"lstrip": false,
|
| 920 |
+
"normalized": false,
|
| 921 |
+
"rstrip": false,
|
| 922 |
+
"single_word": false,
|
| 923 |
+
"special": false
|
| 924 |
+
},
|
| 925 |
+
"115": {
|
| 926 |
+
"content": "\n\n\n\n\n\n\n\n",
|
| 927 |
+
"lstrip": false,
|
| 928 |
+
"normalized": false,
|
| 929 |
+
"rstrip": false,
|
| 930 |
+
"single_word": false,
|
| 931 |
+
"special": false
|
| 932 |
+
},
|
| 933 |
+
"116": {
|
| 934 |
+
"content": "\n\n\n\n\n\n\n\n\n",
|
| 935 |
+
"lstrip": false,
|
| 936 |
+
"normalized": false,
|
| 937 |
+
"rstrip": false,
|
| 938 |
+
"single_word": false,
|
| 939 |
+
"special": false
|
| 940 |
+
},
|
| 941 |
+
"117": {
|
| 942 |
+
"content": "\n\n\n\n\n\n\n\n\n\n",
|
| 943 |
+
"lstrip": false,
|
| 944 |
+
"normalized": false,
|
| 945 |
+
"rstrip": false,
|
| 946 |
+
"single_word": false,
|
| 947 |
+
"special": false
|
| 948 |
+
},
|
| 949 |
+
"118": {
|
| 950 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n",
|
| 951 |
+
"lstrip": false,
|
| 952 |
+
"normalized": false,
|
| 953 |
+
"rstrip": false,
|
| 954 |
+
"single_word": false,
|
| 955 |
+
"special": false
|
| 956 |
+
},
|
| 957 |
+
"119": {
|
| 958 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 959 |
+
"lstrip": false,
|
| 960 |
+
"normalized": false,
|
| 961 |
+
"rstrip": false,
|
| 962 |
+
"single_word": false,
|
| 963 |
+
"special": false
|
| 964 |
+
},
|
| 965 |
+
"120": {
|
| 966 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 967 |
+
"lstrip": false,
|
| 968 |
+
"normalized": false,
|
| 969 |
+
"rstrip": false,
|
| 970 |
+
"single_word": false,
|
| 971 |
+
"special": false
|
| 972 |
+
},
|
| 973 |
+
"121": {
|
| 974 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 975 |
+
"lstrip": false,
|
| 976 |
+
"normalized": false,
|
| 977 |
+
"rstrip": false,
|
| 978 |
+
"single_word": false,
|
| 979 |
+
"special": false
|
| 980 |
+
},
|
| 981 |
+
"122": {
|
| 982 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 983 |
+
"lstrip": false,
|
| 984 |
+
"normalized": false,
|
| 985 |
+
"rstrip": false,
|
| 986 |
+
"single_word": false,
|
| 987 |
+
"special": false
|
| 988 |
+
},
|
| 989 |
+
"123": {
|
| 990 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 991 |
+
"lstrip": false,
|
| 992 |
+
"normalized": false,
|
| 993 |
+
"rstrip": false,
|
| 994 |
+
"single_word": false,
|
| 995 |
+
"special": false
|
| 996 |
+
},
|
| 997 |
+
"124": {
|
| 998 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 999 |
+
"lstrip": false,
|
| 1000 |
+
"normalized": false,
|
| 1001 |
+
"rstrip": false,
|
| 1002 |
+
"single_word": false,
|
| 1003 |
+
"special": false
|
| 1004 |
+
},
|
| 1005 |
+
"125": {
|
| 1006 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 1007 |
+
"lstrip": false,
|
| 1008 |
+
"normalized": false,
|
| 1009 |
+
"rstrip": false,
|
| 1010 |
+
"single_word": false,
|
| 1011 |
+
"special": false
|
| 1012 |
+
},
|
| 1013 |
+
"126": {
|
| 1014 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 1015 |
+
"lstrip": false,
|
| 1016 |
+
"normalized": false,
|
| 1017 |
+
"rstrip": false,
|
| 1018 |
+
"single_word": false,
|
| 1019 |
+
"special": false
|
| 1020 |
+
},
|
| 1021 |
+
"127": {
|
| 1022 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 1023 |
+
"lstrip": false,
|
| 1024 |
+
"normalized": false,
|
| 1025 |
+
"rstrip": false,
|
| 1026 |
+
"single_word": false,
|
| 1027 |
+
"special": false
|
| 1028 |
+
},
|
| 1029 |
+
"128": {
|
| 1030 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 1031 |
+
"lstrip": false,
|
| 1032 |
+
"normalized": false,
|
| 1033 |
+
"rstrip": false,
|
| 1034 |
+
"single_word": false,
|
| 1035 |
+
"special": false
|
| 1036 |
+
},
|
| 1037 |
+
"129": {
|
| 1038 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 1039 |
+
"lstrip": false,
|
| 1040 |
+
"normalized": false,
|
| 1041 |
+
"rstrip": false,
|
| 1042 |
+
"single_word": false,
|
| 1043 |
+
"special": false
|
| 1044 |
+
},
|
| 1045 |
+
"130": {
|
| 1046 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 1047 |
+
"lstrip": false,
|
| 1048 |
+
"normalized": false,
|
| 1049 |
+
"rstrip": false,
|
| 1050 |
+
"single_word": false,
|
| 1051 |
+
"special": false
|
| 1052 |
+
},
|
| 1053 |
+
"131": {
|
| 1054 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 1055 |
+
"lstrip": false,
|
| 1056 |
+
"normalized": false,
|
| 1057 |
+
"rstrip": false,
|
| 1058 |
+
"single_word": false,
|
| 1059 |
+
"special": false
|
| 1060 |
+
},
|
| 1061 |
+
"132": {
|
| 1062 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 1063 |
+
"lstrip": false,
|
| 1064 |
+
"normalized": false,
|
| 1065 |
+
"rstrip": false,
|
| 1066 |
+
"single_word": false,
|
| 1067 |
+
"special": false
|
| 1068 |
+
},
|
| 1069 |
+
"133": {
|
| 1070 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 1071 |
+
"lstrip": false,
|
| 1072 |
+
"normalized": false,
|
| 1073 |
+
"rstrip": false,
|
| 1074 |
+
"single_word": false,
|
| 1075 |
+
"special": false
|
| 1076 |
+
},
|
| 1077 |
+
"134": {
|
| 1078 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 1079 |
+
"lstrip": false,
|
| 1080 |
+
"normalized": false,
|
| 1081 |
+
"rstrip": false,
|
| 1082 |
+
"single_word": false,
|
| 1083 |
+
"special": false
|
| 1084 |
+
},
|
| 1085 |
+
"135": {
|
| 1086 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 1087 |
+
"lstrip": false,
|
| 1088 |
+
"normalized": false,
|
| 1089 |
+
"rstrip": false,
|
| 1090 |
+
"single_word": false,
|
| 1091 |
+
"special": false
|
| 1092 |
+
},
|
| 1093 |
+
"136": {
|
| 1094 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 1095 |
+
"lstrip": false,
|
| 1096 |
+
"normalized": false,
|
| 1097 |
+
"rstrip": false,
|
| 1098 |
+
"single_word": false,
|
| 1099 |
+
"special": false
|
| 1100 |
+
},
|
| 1101 |
+
"137": {
|
| 1102 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 1103 |
+
"lstrip": false,
|
| 1104 |
+
"normalized": false,
|
| 1105 |
+
"rstrip": false,
|
| 1106 |
+
"single_word": false,
|
| 1107 |
+
"special": false
|
| 1108 |
+
},
|
| 1109 |
+
"138": {
|
| 1110 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 1111 |
+
"lstrip": false,
|
| 1112 |
+
"normalized": false,
|
| 1113 |
+
"rstrip": false,
|
| 1114 |
+
"single_word": false,
|
| 1115 |
+
"special": false
|
| 1116 |
+
},
|
| 1117 |
+
"139": {
|
| 1118 |
+
"content": "▁▁",
|
| 1119 |
+
"lstrip": false,
|
| 1120 |
+
"normalized": false,
|
| 1121 |
+
"rstrip": false,
|
| 1122 |
+
"single_word": false,
|
| 1123 |
+
"special": false
|
| 1124 |
+
},
|
| 1125 |
+
"140": {
|
| 1126 |
+
"content": "▁▁▁",
|
| 1127 |
+
"lstrip": false,
|
| 1128 |
+
"normalized": false,
|
| 1129 |
+
"rstrip": false,
|
| 1130 |
+
"single_word": false,
|
| 1131 |
+
"special": false
|
| 1132 |
+
},
|
| 1133 |
+
"141": {
|
| 1134 |
+
"content": "▁▁▁▁",
|
| 1135 |
+
"lstrip": false,
|
| 1136 |
+
"normalized": false,
|
| 1137 |
+
"rstrip": false,
|
| 1138 |
+
"single_word": false,
|
| 1139 |
+
"special": false
|
| 1140 |
+
},
|
| 1141 |
+
"142": {
|
| 1142 |
+
"content": "▁▁▁▁▁",
|
| 1143 |
+
"lstrip": false,
|
| 1144 |
+
"normalized": false,
|
| 1145 |
+
"rstrip": false,
|
| 1146 |
+
"single_word": false,
|
| 1147 |
+
"special": false
|
| 1148 |
+
},
|
| 1149 |
+
"143": {
|
| 1150 |
+
"content": "▁▁▁▁▁▁",
|
| 1151 |
+
"lstrip": false,
|
| 1152 |
+
"normalized": false,
|
| 1153 |
+
"rstrip": false,
|
| 1154 |
+
"single_word": false,
|
| 1155 |
+
"special": false
|
| 1156 |
+
},
|
| 1157 |
+
"144": {
|
| 1158 |
+
"content": "▁▁▁▁▁▁▁",
|
| 1159 |
+
"lstrip": false,
|
| 1160 |
+
"normalized": false,
|
| 1161 |
+
"rstrip": false,
|
| 1162 |
+
"single_word": false,
|
| 1163 |
+
"special": false
|
| 1164 |
+
},
|
| 1165 |
+
"145": {
|
| 1166 |
+
"content": "▁▁▁▁▁▁▁▁",
|
| 1167 |
+
"lstrip": false,
|
| 1168 |
+
"normalized": false,
|
| 1169 |
+
"rstrip": false,
|
| 1170 |
+
"single_word": false,
|
| 1171 |
+
"special": false
|
| 1172 |
+
},
|
| 1173 |
+
"146": {
|
| 1174 |
+
"content": "▁▁▁▁▁▁▁▁▁",
|
| 1175 |
+
"lstrip": false,
|
| 1176 |
+
"normalized": false,
|
| 1177 |
+
"rstrip": false,
|
| 1178 |
+
"single_word": false,
|
| 1179 |
+
"special": false
|
| 1180 |
+
},
|
| 1181 |
+
"147": {
|
| 1182 |
+
"content": "▁▁▁▁▁▁▁▁▁▁",
|
| 1183 |
+
"lstrip": false,
|
| 1184 |
+
"normalized": false,
|
| 1185 |
+
"rstrip": false,
|
| 1186 |
+
"single_word": false,
|
| 1187 |
+
"special": false
|
| 1188 |
+
},
|
| 1189 |
+
"148": {
|
| 1190 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁",
|
| 1191 |
+
"lstrip": false,
|
| 1192 |
+
"normalized": false,
|
| 1193 |
+
"rstrip": false,
|
| 1194 |
+
"single_word": false,
|
| 1195 |
+
"special": false
|
| 1196 |
+
},
|
| 1197 |
+
"149": {
|
| 1198 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1199 |
+
"lstrip": false,
|
| 1200 |
+
"normalized": false,
|
| 1201 |
+
"rstrip": false,
|
| 1202 |
+
"single_word": false,
|
| 1203 |
+
"special": false
|
| 1204 |
+
},
|
| 1205 |
+
"150": {
|
| 1206 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1207 |
+
"lstrip": false,
|
| 1208 |
+
"normalized": false,
|
| 1209 |
+
"rstrip": false,
|
| 1210 |
+
"single_word": false,
|
| 1211 |
+
"special": false
|
| 1212 |
+
},
|
| 1213 |
+
"151": {
|
| 1214 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1215 |
+
"lstrip": false,
|
| 1216 |
+
"normalized": false,
|
| 1217 |
+
"rstrip": false,
|
| 1218 |
+
"single_word": false,
|
| 1219 |
+
"special": false
|
| 1220 |
+
},
|
| 1221 |
+
"152": {
|
| 1222 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1223 |
+
"lstrip": false,
|
| 1224 |
+
"normalized": false,
|
| 1225 |
+
"rstrip": false,
|
| 1226 |
+
"single_word": false,
|
| 1227 |
+
"special": false
|
| 1228 |
+
},
|
| 1229 |
+
"153": {
|
| 1230 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1231 |
+
"lstrip": false,
|
| 1232 |
+
"normalized": false,
|
| 1233 |
+
"rstrip": false,
|
| 1234 |
+
"single_word": false,
|
| 1235 |
+
"special": false
|
| 1236 |
+
},
|
| 1237 |
+
"154": {
|
| 1238 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1239 |
+
"lstrip": false,
|
| 1240 |
+
"normalized": false,
|
| 1241 |
+
"rstrip": false,
|
| 1242 |
+
"single_word": false,
|
| 1243 |
+
"special": false
|
| 1244 |
+
},
|
| 1245 |
+
"155": {
|
| 1246 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1247 |
+
"lstrip": false,
|
| 1248 |
+
"normalized": false,
|
| 1249 |
+
"rstrip": false,
|
| 1250 |
+
"single_word": false,
|
| 1251 |
+
"special": false
|
| 1252 |
+
},
|
| 1253 |
+
"156": {
|
| 1254 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1255 |
+
"lstrip": false,
|
| 1256 |
+
"normalized": false,
|
| 1257 |
+
"rstrip": false,
|
| 1258 |
+
"single_word": false,
|
| 1259 |
+
"special": false
|
| 1260 |
+
},
|
| 1261 |
+
"157": {
|
| 1262 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1263 |
+
"lstrip": false,
|
| 1264 |
+
"normalized": false,
|
| 1265 |
+
"rstrip": false,
|
| 1266 |
+
"single_word": false,
|
| 1267 |
+
"special": false
|
| 1268 |
+
},
|
| 1269 |
+
"158": {
|
| 1270 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1271 |
+
"lstrip": false,
|
| 1272 |
+
"normalized": false,
|
| 1273 |
+
"rstrip": false,
|
| 1274 |
+
"single_word": false,
|
| 1275 |
+
"special": false
|
| 1276 |
+
},
|
| 1277 |
+
"159": {
|
| 1278 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1279 |
+
"lstrip": false,
|
| 1280 |
+
"normalized": false,
|
| 1281 |
+
"rstrip": false,
|
| 1282 |
+
"single_word": false,
|
| 1283 |
+
"special": false
|
| 1284 |
+
},
|
| 1285 |
+
"160": {
|
| 1286 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1287 |
+
"lstrip": false,
|
| 1288 |
+
"normalized": false,
|
| 1289 |
+
"rstrip": false,
|
| 1290 |
+
"single_word": false,
|
| 1291 |
+
"special": false
|
| 1292 |
+
},
|
| 1293 |
+
"161": {
|
| 1294 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1295 |
+
"lstrip": false,
|
| 1296 |
+
"normalized": false,
|
| 1297 |
+
"rstrip": false,
|
| 1298 |
+
"single_word": false,
|
| 1299 |
+
"special": false
|
| 1300 |
+
},
|
| 1301 |
+
"162": {
|
| 1302 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1303 |
+
"lstrip": false,
|
| 1304 |
+
"normalized": false,
|
| 1305 |
+
"rstrip": false,
|
| 1306 |
+
"single_word": false,
|
| 1307 |
+
"special": false
|
| 1308 |
+
},
|
| 1309 |
+
"163": {
|
| 1310 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1311 |
+
"lstrip": false,
|
| 1312 |
+
"normalized": false,
|
| 1313 |
+
"rstrip": false,
|
| 1314 |
+
"single_word": false,
|
| 1315 |
+
"special": false
|
| 1316 |
+
},
|
| 1317 |
+
"164": {
|
| 1318 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1319 |
+
"lstrip": false,
|
| 1320 |
+
"normalized": false,
|
| 1321 |
+
"rstrip": false,
|
| 1322 |
+
"single_word": false,
|
| 1323 |
+
"special": false
|
| 1324 |
+
},
|
| 1325 |
+
"165": {
|
| 1326 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1327 |
+
"lstrip": false,
|
| 1328 |
+
"normalized": false,
|
| 1329 |
+
"rstrip": false,
|
| 1330 |
+
"single_word": false,
|
| 1331 |
+
"special": false
|
| 1332 |
+
},
|
| 1333 |
+
"166": {
|
| 1334 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1335 |
+
"lstrip": false,
|
| 1336 |
+
"normalized": false,
|
| 1337 |
+
"rstrip": false,
|
| 1338 |
+
"single_word": false,
|
| 1339 |
+
"special": false
|
| 1340 |
+
},
|
| 1341 |
+
"167": {
|
| 1342 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1343 |
+
"lstrip": false,
|
| 1344 |
+
"normalized": false,
|
| 1345 |
+
"rstrip": false,
|
| 1346 |
+
"single_word": false,
|
| 1347 |
+
"special": false
|
| 1348 |
+
},
|
| 1349 |
+
"168": {
|
| 1350 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1351 |
+
"lstrip": false,
|
| 1352 |
+
"normalized": false,
|
| 1353 |
+
"rstrip": false,
|
| 1354 |
+
"single_word": false,
|
| 1355 |
+
"special": false
|
| 1356 |
+
},
|
| 1357 |
+
"169": {
|
| 1358 |
+
"content": "<table>",
|
| 1359 |
+
"lstrip": false,
|
| 1360 |
+
"normalized": false,
|
| 1361 |
+
"rstrip": false,
|
| 1362 |
+
"single_word": false,
|
| 1363 |
+
"special": false
|
| 1364 |
+
},
|
| 1365 |
+
"170": {
|
| 1366 |
+
"content": "<caption>",
|
| 1367 |
+
"lstrip": false,
|
| 1368 |
+
"normalized": false,
|
| 1369 |
+
"rstrip": false,
|
| 1370 |
+
"single_word": false,
|
| 1371 |
+
"special": false
|
| 1372 |
+
},
|
| 1373 |
+
"171": {
|
| 1374 |
+
"content": "<thead>",
|
| 1375 |
+
"lstrip": false,
|
| 1376 |
+
"normalized": false,
|
| 1377 |
+
"rstrip": false,
|
| 1378 |
+
"single_word": false,
|
| 1379 |
+
"special": false
|
| 1380 |
+
},
|
| 1381 |
+
"172": {
|
| 1382 |
+
"content": "<tbody>",
|
| 1383 |
+
"lstrip": false,
|
| 1384 |
+
"normalized": false,
|
| 1385 |
+
"rstrip": false,
|
| 1386 |
+
"single_word": false,
|
| 1387 |
+
"special": false
|
| 1388 |
+
},
|
| 1389 |
+
"173": {
|
| 1390 |
+
"content": "<tfoot>",
|
| 1391 |
+
"lstrip": false,
|
| 1392 |
+
"normalized": false,
|
| 1393 |
+
"rstrip": false,
|
| 1394 |
+
"single_word": false,
|
| 1395 |
+
"special": false
|
| 1396 |
+
},
|
| 1397 |
+
"174": {
|
| 1398 |
+
"content": "<tr>",
|
| 1399 |
+
"lstrip": false,
|
| 1400 |
+
"normalized": false,
|
| 1401 |
+
"rstrip": false,
|
| 1402 |
+
"single_word": false,
|
| 1403 |
+
"special": false
|
| 1404 |
+
},
|
| 1405 |
+
"175": {
|
| 1406 |
+
"content": "<th>",
|
| 1407 |
+
"lstrip": false,
|
| 1408 |
+
"normalized": false,
|
| 1409 |
+
"rstrip": false,
|
| 1410 |
+
"single_word": false,
|
| 1411 |
+
"special": false
|
| 1412 |
+
},
|
| 1413 |
+
"176": {
|
| 1414 |
+
"content": "<td>",
|
| 1415 |
+
"lstrip": false,
|
| 1416 |
+
"normalized": false,
|
| 1417 |
+
"rstrip": false,
|
| 1418 |
+
"single_word": false,
|
| 1419 |
+
"special": false
|
| 1420 |
+
},
|
| 1421 |
+
"177": {
|
| 1422 |
+
"content": "</table>",
|
| 1423 |
+
"lstrip": false,
|
| 1424 |
+
"normalized": false,
|
| 1425 |
+
"rstrip": false,
|
| 1426 |
+
"single_word": false,
|
| 1427 |
+
"special": false
|
| 1428 |
+
},
|
| 1429 |
+
"178": {
|
| 1430 |
+
"content": "</caption>",
|
| 1431 |
+
"lstrip": false,
|
| 1432 |
+
"normalized": false,
|
| 1433 |
+
"rstrip": false,
|
| 1434 |
+
"single_word": false,
|
| 1435 |
+
"special": false
|
| 1436 |
+
},
|
| 1437 |
+
"179": {
|
| 1438 |
+
"content": "</thead>",
|
| 1439 |
+
"lstrip": false,
|
| 1440 |
+
"normalized": false,
|
| 1441 |
+
"rstrip": false,
|
| 1442 |
+
"single_word": false,
|
| 1443 |
+
"special": false
|
| 1444 |
+
},
|
| 1445 |
+
"180": {
|
| 1446 |
+
"content": "</tbody>",
|
| 1447 |
+
"lstrip": false,
|
| 1448 |
+
"normalized": false,
|
| 1449 |
+
"rstrip": false,
|
| 1450 |
+
"single_word": false,
|
| 1451 |
+
"special": false
|
| 1452 |
+
},
|
| 1453 |
+
"181": {
|
| 1454 |
+
"content": "</tfoot>",
|
| 1455 |
+
"lstrip": false,
|
| 1456 |
+
"normalized": false,
|
| 1457 |
+
"rstrip": false,
|
| 1458 |
+
"single_word": false,
|
| 1459 |
+
"special": false
|
| 1460 |
+
},
|
| 1461 |
+
"182": {
|
| 1462 |
+
"content": "</tr>",
|
| 1463 |
+
"lstrip": false,
|
| 1464 |
+
"normalized": false,
|
| 1465 |
+
"rstrip": false,
|
| 1466 |
+
"single_word": false,
|
| 1467 |
+
"special": false
|
| 1468 |
+
},
|
| 1469 |
+
"183": {
|
| 1470 |
+
"content": "</th>",
|
| 1471 |
+
"lstrip": false,
|
| 1472 |
+
"normalized": false,
|
| 1473 |
+
"rstrip": false,
|
| 1474 |
+
"single_word": false,
|
| 1475 |
+
"special": false
|
| 1476 |
+
},
|
| 1477 |
+
"184": {
|
| 1478 |
+
"content": "</td>",
|
| 1479 |
+
"lstrip": false,
|
| 1480 |
+
"normalized": false,
|
| 1481 |
+
"rstrip": false,
|
| 1482 |
+
"single_word": false,
|
| 1483 |
+
"special": false
|
| 1484 |
+
},
|
| 1485 |
+
"185": {
|
| 1486 |
+
"content": "<h1>",
|
| 1487 |
+
"lstrip": false,
|
| 1488 |
+
"normalized": false,
|
| 1489 |
+
"rstrip": false,
|
| 1490 |
+
"single_word": false,
|
| 1491 |
+
"special": false
|
| 1492 |
+
},
|
| 1493 |
+
"186": {
|
| 1494 |
+
"content": "<h2>",
|
| 1495 |
+
"lstrip": false,
|
| 1496 |
+
"normalized": false,
|
| 1497 |
+
"rstrip": false,
|
| 1498 |
+
"single_word": false,
|
| 1499 |
+
"special": false
|
| 1500 |
+
},
|
| 1501 |
+
"187": {
|
| 1502 |
+
"content": "<h3>",
|
| 1503 |
+
"lstrip": false,
|
| 1504 |
+
"normalized": false,
|
| 1505 |
+
"rstrip": false,
|
| 1506 |
+
"single_word": false,
|
| 1507 |
+
"special": false
|
| 1508 |
+
},
|
| 1509 |
+
"188": {
|
| 1510 |
+
"content": "<h4>",
|
| 1511 |
+
"lstrip": false,
|
| 1512 |
+
"normalized": false,
|
| 1513 |
+
"rstrip": false,
|
| 1514 |
+
"single_word": false,
|
| 1515 |
+
"special": false
|
| 1516 |
+
},
|
| 1517 |
+
"189": {
|
| 1518 |
+
"content": "<h5>",
|
| 1519 |
+
"lstrip": false,
|
| 1520 |
+
"normalized": false,
|
| 1521 |
+
"rstrip": false,
|
| 1522 |
+
"single_word": false,
|
| 1523 |
+
"special": false
|
| 1524 |
+
},
|
| 1525 |
+
"190": {
|
| 1526 |
+
"content": "<h6>",
|
| 1527 |
+
"lstrip": false,
|
| 1528 |
+
"normalized": false,
|
| 1529 |
+
"rstrip": false,
|
| 1530 |
+
"single_word": false,
|
| 1531 |
+
"special": false
|
| 1532 |
+
},
|
| 1533 |
+
"191": {
|
| 1534 |
+
"content": "<blockquote>",
|
| 1535 |
+
"lstrip": false,
|
| 1536 |
+
"normalized": false,
|
| 1537 |
+
"rstrip": false,
|
| 1538 |
+
"single_word": false,
|
| 1539 |
+
"special": false
|
| 1540 |
+
},
|
| 1541 |
+
"192": {
|
| 1542 |
+
"content": "</h1>",
|
| 1543 |
+
"lstrip": false,
|
| 1544 |
+
"normalized": false,
|
| 1545 |
+
"rstrip": false,
|
| 1546 |
+
"single_word": false,
|
| 1547 |
+
"special": false
|
| 1548 |
+
},
|
| 1549 |
+
"193": {
|
| 1550 |
+
"content": "</h2>",
|
| 1551 |
+
"lstrip": false,
|
| 1552 |
+
"normalized": false,
|
| 1553 |
+
"rstrip": false,
|
| 1554 |
+
"single_word": false,
|
| 1555 |
+
"special": false
|
| 1556 |
+
},
|
| 1557 |
+
"194": {
|
| 1558 |
+
"content": "</h3>",
|
| 1559 |
+
"lstrip": false,
|
| 1560 |
+
"normalized": false,
|
| 1561 |
+
"rstrip": false,
|
| 1562 |
+
"single_word": false,
|
| 1563 |
+
"special": false
|
| 1564 |
+
},
|
| 1565 |
+
"195": {
|
| 1566 |
+
"content": "</h4>",
|
| 1567 |
+
"lstrip": false,
|
| 1568 |
+
"normalized": false,
|
| 1569 |
+
"rstrip": false,
|
| 1570 |
+
"single_word": false,
|
| 1571 |
+
"special": false
|
| 1572 |
+
},
|
| 1573 |
+
"196": {
|
| 1574 |
+
"content": "</h5>",
|
| 1575 |
+
"lstrip": false,
|
| 1576 |
+
"normalized": false,
|
| 1577 |
+
"rstrip": false,
|
| 1578 |
+
"single_word": false,
|
| 1579 |
+
"special": false
|
| 1580 |
+
},
|
| 1581 |
+
"197": {
|
| 1582 |
+
"content": "</h6>",
|
| 1583 |
+
"lstrip": false,
|
| 1584 |
+
"normalized": false,
|
| 1585 |
+
"rstrip": false,
|
| 1586 |
+
"single_word": false,
|
| 1587 |
+
"special": false
|
| 1588 |
+
},
|
| 1589 |
+
"198": {
|
| 1590 |
+
"content": "</blockquote>",
|
| 1591 |
+
"lstrip": false,
|
| 1592 |
+
"normalized": false,
|
| 1593 |
+
"rstrip": false,
|
| 1594 |
+
"single_word": false,
|
| 1595 |
+
"special": false
|
| 1596 |
+
},
|
| 1597 |
+
"199": {
|
| 1598 |
+
"content": "<strong>",
|
| 1599 |
+
"lstrip": false,
|
| 1600 |
+
"normalized": false,
|
| 1601 |
+
"rstrip": false,
|
| 1602 |
+
"single_word": false,
|
| 1603 |
+
"special": false
|
| 1604 |
+
},
|
| 1605 |
+
"200": {
|
| 1606 |
+
"content": "<em>",
|
| 1607 |
+
"lstrip": false,
|
| 1608 |
+
"normalized": false,
|
| 1609 |
+
"rstrip": false,
|
| 1610 |
+
"single_word": false,
|
| 1611 |
+
"special": false
|
| 1612 |
+
},
|
| 1613 |
+
"201": {
|
| 1614 |
+
"content": "<b>",
|
| 1615 |
+
"lstrip": false,
|
| 1616 |
+
"normalized": false,
|
| 1617 |
+
"rstrip": false,
|
| 1618 |
+
"single_word": false,
|
| 1619 |
+
"special": false
|
| 1620 |
+
},
|
| 1621 |
+
"202": {
|
| 1622 |
+
"content": "<i>",
|
| 1623 |
+
"lstrip": false,
|
| 1624 |
+
"normalized": false,
|
| 1625 |
+
"rstrip": false,
|
| 1626 |
+
"single_word": false,
|
| 1627 |
+
"special": false
|
| 1628 |
+
},
|
| 1629 |
+
"203": {
|
| 1630 |
+
"content": "<u>",
|
| 1631 |
+
"lstrip": false,
|
| 1632 |
+
"normalized": false,
|
| 1633 |
+
"rstrip": false,
|
| 1634 |
+
"single_word": false,
|
| 1635 |
+
"special": false
|
| 1636 |
+
},
|
| 1637 |
+
"204": {
|
| 1638 |
+
"content": "<s>",
|
| 1639 |
+
"lstrip": false,
|
| 1640 |
+
"normalized": false,
|
| 1641 |
+
"rstrip": false,
|
| 1642 |
+
"single_word": false,
|
| 1643 |
+
"special": false
|
| 1644 |
+
},
|
| 1645 |
+
"205": {
|
| 1646 |
+
"content": "<sub>",
|
| 1647 |
+
"lstrip": false,
|
| 1648 |
+
"normalized": false,
|
| 1649 |
+
"rstrip": false,
|
| 1650 |
+
"single_word": false,
|
| 1651 |
+
"special": false
|
| 1652 |
+
},
|
| 1653 |
+
"206": {
|
| 1654 |
+
"content": "<sup>",
|
| 1655 |
+
"lstrip": false,
|
| 1656 |
+
"normalized": false,
|
| 1657 |
+
"rstrip": false,
|
| 1658 |
+
"single_word": false,
|
| 1659 |
+
"special": false
|
| 1660 |
+
},
|
| 1661 |
+
"207": {
|
| 1662 |
+
"content": "<code>",
|
| 1663 |
+
"lstrip": false,
|
| 1664 |
+
"normalized": false,
|
| 1665 |
+
"rstrip": false,
|
| 1666 |
+
"single_word": false,
|
| 1667 |
+
"special": false
|
| 1668 |
+
},
|
| 1669 |
+
"208": {
|
| 1670 |
+
"content": "</strong>",
|
| 1671 |
+
"lstrip": false,
|
| 1672 |
+
"normalized": false,
|
| 1673 |
+
"rstrip": false,
|
| 1674 |
+
"single_word": false,
|
| 1675 |
+
"special": false
|
| 1676 |
+
},
|
| 1677 |
+
"209": {
|
| 1678 |
+
"content": "</em>",
|
| 1679 |
+
"lstrip": false,
|
| 1680 |
+
"normalized": false,
|
| 1681 |
+
"rstrip": false,
|
| 1682 |
+
"single_word": false,
|
| 1683 |
+
"special": false
|
| 1684 |
+
},
|
| 1685 |
+
"210": {
|
| 1686 |
+
"content": "</b>",
|
| 1687 |
+
"lstrip": false,
|
| 1688 |
+
"normalized": false,
|
| 1689 |
+
"rstrip": false,
|
| 1690 |
+
"single_word": false,
|
| 1691 |
+
"special": false
|
| 1692 |
+
},
|
| 1693 |
+
"211": {
|
| 1694 |
+
"content": "</i>",
|
| 1695 |
+
"lstrip": false,
|
| 1696 |
+
"normalized": false,
|
| 1697 |
+
"rstrip": false,
|
| 1698 |
+
"single_word": false,
|
| 1699 |
+
"special": false
|
| 1700 |
+
},
|
| 1701 |
+
"212": {
|
| 1702 |
+
"content": "</u>",
|
| 1703 |
+
"lstrip": false,
|
| 1704 |
+
"normalized": false,
|
| 1705 |
+
"rstrip": false,
|
| 1706 |
+
"single_word": false,
|
| 1707 |
+
"special": false
|
| 1708 |
+
},
|
| 1709 |
+
"213": {
|
| 1710 |
+
"content": "</s>",
|
| 1711 |
+
"lstrip": false,
|
| 1712 |
+
"normalized": false,
|
| 1713 |
+
"rstrip": false,
|
| 1714 |
+
"single_word": false,
|
| 1715 |
+
"special": false
|
| 1716 |
+
},
|
| 1717 |
+
"214": {
|
| 1718 |
+
"content": "</sub>",
|
| 1719 |
+
"lstrip": false,
|
| 1720 |
+
"normalized": false,
|
| 1721 |
+
"rstrip": false,
|
| 1722 |
+
"single_word": false,
|
| 1723 |
+
"special": false
|
| 1724 |
+
},
|
| 1725 |
+
"215": {
|
| 1726 |
+
"content": "</sup>",
|
| 1727 |
+
"lstrip": false,
|
| 1728 |
+
"normalized": false,
|
| 1729 |
+
"rstrip": false,
|
| 1730 |
+
"single_word": false,
|
| 1731 |
+
"special": false
|
| 1732 |
+
},
|
| 1733 |
+
"216": {
|
| 1734 |
+
"content": "</code>",
|
| 1735 |
+
"lstrip": false,
|
| 1736 |
+
"normalized": false,
|
| 1737 |
+
"rstrip": false,
|
| 1738 |
+
"single_word": false,
|
| 1739 |
+
"special": false
|
| 1740 |
+
},
|
| 1741 |
+
"255968": {
|
| 1742 |
+
"content": "[toxicity=0]",
|
| 1743 |
+
"lstrip": false,
|
| 1744 |
+
"normalized": false,
|
| 1745 |
+
"rstrip": false,
|
| 1746 |
+
"single_word": false,
|
| 1747 |
+
"special": false
|
| 1748 |
+
},
|
| 1749 |
+
"255969": {
|
| 1750 |
+
"content": "\t\t",
|
| 1751 |
+
"lstrip": false,
|
| 1752 |
+
"normalized": false,
|
| 1753 |
+
"rstrip": false,
|
| 1754 |
+
"single_word": false,
|
| 1755 |
+
"special": false
|
| 1756 |
+
},
|
| 1757 |
+
"255970": {
|
| 1758 |
+
"content": "\t\t\t",
|
| 1759 |
+
"lstrip": false,
|
| 1760 |
+
"normalized": false,
|
| 1761 |
+
"rstrip": false,
|
| 1762 |
+
"single_word": false,
|
| 1763 |
+
"special": false
|
| 1764 |
+
},
|
| 1765 |
+
"255971": {
|
| 1766 |
+
"content": "\t\t\t\t",
|
| 1767 |
+
"lstrip": false,
|
| 1768 |
+
"normalized": false,
|
| 1769 |
+
"rstrip": false,
|
| 1770 |
+
"single_word": false,
|
| 1771 |
+
"special": false
|
| 1772 |
+
},
|
| 1773 |
+
"255972": {
|
| 1774 |
+
"content": "\t\t\t\t\t",
|
| 1775 |
+
"lstrip": false,
|
| 1776 |
+
"normalized": false,
|
| 1777 |
+
"rstrip": false,
|
| 1778 |
+
"single_word": false,
|
| 1779 |
+
"special": false
|
| 1780 |
+
},
|
| 1781 |
+
"255973": {
|
| 1782 |
+
"content": "\t\t\t\t\t\t",
|
| 1783 |
+
"lstrip": false,
|
| 1784 |
+
"normalized": false,
|
| 1785 |
+
"rstrip": false,
|
| 1786 |
+
"single_word": false,
|
| 1787 |
+
"special": false
|
| 1788 |
+
},
|
| 1789 |
+
"255974": {
|
| 1790 |
+
"content": "\t\t\t\t\t\t\t",
|
| 1791 |
+
"lstrip": false,
|
| 1792 |
+
"normalized": false,
|
| 1793 |
+
"rstrip": false,
|
| 1794 |
+
"single_word": false,
|
| 1795 |
+
"special": false
|
| 1796 |
+
},
|
| 1797 |
+
"255975": {
|
| 1798 |
+
"content": "\t\t\t\t\t\t\t\t",
|
| 1799 |
+
"lstrip": false,
|
| 1800 |
+
"normalized": false,
|
| 1801 |
+
"rstrip": false,
|
| 1802 |
+
"single_word": false,
|
| 1803 |
+
"special": false
|
| 1804 |
+
},
|
| 1805 |
+
"255976": {
|
| 1806 |
+
"content": "\t\t\t\t\t\t\t\t\t",
|
| 1807 |
+
"lstrip": false,
|
| 1808 |
+
"normalized": false,
|
| 1809 |
+
"rstrip": false,
|
| 1810 |
+
"single_word": false,
|
| 1811 |
+
"special": false
|
| 1812 |
+
},
|
| 1813 |
+
"255977": {
|
| 1814 |
+
"content": "\t\t\t\t\t\t\t\t\t\t",
|
| 1815 |
+
"lstrip": false,
|
| 1816 |
+
"normalized": false,
|
| 1817 |
+
"rstrip": false,
|
| 1818 |
+
"single_word": false,
|
| 1819 |
+
"special": false
|
| 1820 |
+
},
|
| 1821 |
+
"255978": {
|
| 1822 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t",
|
| 1823 |
+
"lstrip": false,
|
| 1824 |
+
"normalized": false,
|
| 1825 |
+
"rstrip": false,
|
| 1826 |
+
"single_word": false,
|
| 1827 |
+
"special": false
|
| 1828 |
+
},
|
| 1829 |
+
"255979": {
|
| 1830 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1831 |
+
"lstrip": false,
|
| 1832 |
+
"normalized": false,
|
| 1833 |
+
"rstrip": false,
|
| 1834 |
+
"single_word": false,
|
| 1835 |
+
"special": false
|
| 1836 |
+
},
|
| 1837 |
+
"255980": {
|
| 1838 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1839 |
+
"lstrip": false,
|
| 1840 |
+
"normalized": false,
|
| 1841 |
+
"rstrip": false,
|
| 1842 |
+
"single_word": false,
|
| 1843 |
+
"special": false
|
| 1844 |
+
},
|
| 1845 |
+
"255981": {
|
| 1846 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1847 |
+
"lstrip": false,
|
| 1848 |
+
"normalized": false,
|
| 1849 |
+
"rstrip": false,
|
| 1850 |
+
"single_word": false,
|
| 1851 |
+
"special": false
|
| 1852 |
+
},
|
| 1853 |
+
"255982": {
|
| 1854 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1855 |
+
"lstrip": false,
|
| 1856 |
+
"normalized": false,
|
| 1857 |
+
"rstrip": false,
|
| 1858 |
+
"single_word": false,
|
| 1859 |
+
"special": false
|
| 1860 |
+
},
|
| 1861 |
+
"255983": {
|
| 1862 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1863 |
+
"lstrip": false,
|
| 1864 |
+
"normalized": false,
|
| 1865 |
+
"rstrip": false,
|
| 1866 |
+
"single_word": false,
|
| 1867 |
+
"special": false
|
| 1868 |
+
},
|
| 1869 |
+
"255984": {
|
| 1870 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1871 |
+
"lstrip": false,
|
| 1872 |
+
"normalized": false,
|
| 1873 |
+
"rstrip": false,
|
| 1874 |
+
"single_word": false,
|
| 1875 |
+
"special": false
|
| 1876 |
+
},
|
| 1877 |
+
"255985": {
|
| 1878 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1879 |
+
"lstrip": false,
|
| 1880 |
+
"normalized": false,
|
| 1881 |
+
"rstrip": false,
|
| 1882 |
+
"single_word": false,
|
| 1883 |
+
"special": false
|
| 1884 |
+
},
|
| 1885 |
+
"255986": {
|
| 1886 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1887 |
+
"lstrip": false,
|
| 1888 |
+
"normalized": false,
|
| 1889 |
+
"rstrip": false,
|
| 1890 |
+
"single_word": false,
|
| 1891 |
+
"special": false
|
| 1892 |
+
},
|
| 1893 |
+
"255987": {
|
| 1894 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1895 |
+
"lstrip": false,
|
| 1896 |
+
"normalized": false,
|
| 1897 |
+
"rstrip": false,
|
| 1898 |
+
"single_word": false,
|
| 1899 |
+
"special": false
|
| 1900 |
+
},
|
| 1901 |
+
"255988": {
|
| 1902 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1903 |
+
"lstrip": false,
|
| 1904 |
+
"normalized": false,
|
| 1905 |
+
"rstrip": false,
|
| 1906 |
+
"single_word": false,
|
| 1907 |
+
"special": false
|
| 1908 |
+
},
|
| 1909 |
+
"255989": {
|
| 1910 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1911 |
+
"lstrip": false,
|
| 1912 |
+
"normalized": false,
|
| 1913 |
+
"rstrip": false,
|
| 1914 |
+
"single_word": false,
|
| 1915 |
+
"special": false
|
| 1916 |
+
},
|
| 1917 |
+
"255990": {
|
| 1918 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1919 |
+
"lstrip": false,
|
| 1920 |
+
"normalized": false,
|
| 1921 |
+
"rstrip": false,
|
| 1922 |
+
"single_word": false,
|
| 1923 |
+
"special": false
|
| 1924 |
+
},
|
| 1925 |
+
"255991": {
|
| 1926 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1927 |
+
"lstrip": false,
|
| 1928 |
+
"normalized": false,
|
| 1929 |
+
"rstrip": false,
|
| 1930 |
+
"single_word": false,
|
| 1931 |
+
"special": false
|
| 1932 |
+
},
|
| 1933 |
+
"255992": {
|
| 1934 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1935 |
+
"lstrip": false,
|
| 1936 |
+
"normalized": false,
|
| 1937 |
+
"rstrip": false,
|
| 1938 |
+
"single_word": false,
|
| 1939 |
+
"special": false
|
| 1940 |
+
},
|
| 1941 |
+
"255993": {
|
| 1942 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1943 |
+
"lstrip": false,
|
| 1944 |
+
"normalized": false,
|
| 1945 |
+
"rstrip": false,
|
| 1946 |
+
"single_word": false,
|
| 1947 |
+
"special": false
|
| 1948 |
+
},
|
| 1949 |
+
"255994": {
|
| 1950 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1951 |
+
"lstrip": false,
|
| 1952 |
+
"normalized": false,
|
| 1953 |
+
"rstrip": false,
|
| 1954 |
+
"single_word": false,
|
| 1955 |
+
"special": false
|
| 1956 |
+
},
|
| 1957 |
+
"255995": {
|
| 1958 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1959 |
+
"lstrip": false,
|
| 1960 |
+
"normalized": false,
|
| 1961 |
+
"rstrip": false,
|
| 1962 |
+
"single_word": false,
|
| 1963 |
+
"special": false
|
| 1964 |
+
},
|
| 1965 |
+
"255996": {
|
| 1966 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1967 |
+
"lstrip": false,
|
| 1968 |
+
"normalized": false,
|
| 1969 |
+
"rstrip": false,
|
| 1970 |
+
"single_word": false,
|
| 1971 |
+
"special": false
|
| 1972 |
+
},
|
| 1973 |
+
"255997": {
|
| 1974 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1975 |
+
"lstrip": false,
|
| 1976 |
+
"normalized": false,
|
| 1977 |
+
"rstrip": false,
|
| 1978 |
+
"single_word": false,
|
| 1979 |
+
"special": false
|
| 1980 |
+
},
|
| 1981 |
+
"255998": {
|
| 1982 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1983 |
+
"lstrip": false,
|
| 1984 |
+
"normalized": false,
|
| 1985 |
+
"rstrip": false,
|
| 1986 |
+
"single_word": false,
|
| 1987 |
+
"special": false
|
| 1988 |
+
},
|
| 1989 |
+
"255999": {
|
| 1990 |
+
"content": "<unused99>",
|
| 1991 |
+
"lstrip": false,
|
| 1992 |
+
"normalized": false,
|
| 1993 |
+
"rstrip": false,
|
| 1994 |
+
"single_word": false,
|
| 1995 |
+
"special": false
|
| 1996 |
+
}
|
| 1997 |
+
},
|
| 1998 |
+
"additional_special_tokens": [
|
| 1999 |
+
"<start_of_turn>",
|
| 2000 |
+
"<end_of_turn>"
|
| 2001 |
+
],
|
| 2002 |
+
"bos_token": "<bos>",
|
| 2003 |
+
"clean_up_tokenization_spaces": false,
|
| 2004 |
+
"eos_token": "<eos>",
|
| 2005 |
+
"extra_special_tokens": {},
|
| 2006 |
+
"model_max_length": 1000000000000000019884624838656,
|
| 2007 |
+
"pad_token": "<pad>",
|
| 2008 |
+
"sp_model_kwargs": {},
|
| 2009 |
+
"spaces_between_special_tokens": false,
|
| 2010 |
+
"tokenizer_class": "GemmaTokenizer",
|
| 2011 |
+
"unk_token": "<unk>",
|
| 2012 |
+
"use_default_system_prompt": false
|
| 2013 |
+
}
|
checkpoint-1000/trainer_state.json
ADDED
|
@@ -0,0 +1,1474 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 1.6,
|
| 6 |
+
"eval_steps": 100,
|
| 7 |
+
"global_step": 1000,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"entropy": 1.1780160423368216,
|
| 14 |
+
"epoch": 0.016,
|
| 15 |
+
"grad_norm": 13.0,
|
| 16 |
+
"learning_rate": 6.000000000000001e-07,
|
| 17 |
+
"loss": 1.8406,
|
| 18 |
+
"mean_token_accuracy": 0.6489301804453135,
|
| 19 |
+
"num_tokens": 340696.0,
|
| 20 |
+
"step": 10
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"entropy": 1.1818634796887637,
|
| 24 |
+
"epoch": 0.032,
|
| 25 |
+
"grad_norm": 11.5625,
|
| 26 |
+
"learning_rate": 1.2666666666666669e-06,
|
| 27 |
+
"loss": 1.8191,
|
| 28 |
+
"mean_token_accuracy": 0.6528046734631061,
|
| 29 |
+
"num_tokens": 675930.0,
|
| 30 |
+
"step": 20
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"entropy": 1.195955842360854,
|
| 34 |
+
"epoch": 0.048,
|
| 35 |
+
"grad_norm": 9.3125,
|
| 36 |
+
"learning_rate": 1.9333333333333336e-06,
|
| 37 |
+
"loss": 1.7817,
|
| 38 |
+
"mean_token_accuracy": 0.6578715395182371,
|
| 39 |
+
"num_tokens": 1007956.0,
|
| 40 |
+
"step": 30
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"entropy": 1.2672166559845208,
|
| 44 |
+
"epoch": 0.064,
|
| 45 |
+
"grad_norm": 6.5625,
|
| 46 |
+
"learning_rate": 2.6e-06,
|
| 47 |
+
"loss": 1.7272,
|
| 48 |
+
"mean_token_accuracy": 0.6625342659652234,
|
| 49 |
+
"num_tokens": 1340560.0,
|
| 50 |
+
"step": 40
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"entropy": 1.2964693307876587,
|
| 54 |
+
"epoch": 0.08,
|
| 55 |
+
"grad_norm": 5.0,
|
| 56 |
+
"learning_rate": 3.266666666666667e-06,
|
| 57 |
+
"loss": 1.5867,
|
| 58 |
+
"mean_token_accuracy": 0.6811951555311679,
|
| 59 |
+
"num_tokens": 1679432.0,
|
| 60 |
+
"step": 50
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"entropy": 1.2539724007248878,
|
| 64 |
+
"epoch": 0.096,
|
| 65 |
+
"grad_norm": 3.375,
|
| 66 |
+
"learning_rate": 3.9333333333333335e-06,
|
| 67 |
+
"loss": 1.3962,
|
| 68 |
+
"mean_token_accuracy": 0.7081016473472118,
|
| 69 |
+
"num_tokens": 2021570.0,
|
| 70 |
+
"step": 60
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"entropy": 1.2302619956433773,
|
| 74 |
+
"epoch": 0.112,
|
| 75 |
+
"grad_norm": 2.28125,
|
| 76 |
+
"learning_rate": 4.600000000000001e-06,
|
| 77 |
+
"loss": 1.2974,
|
| 78 |
+
"mean_token_accuracy": 0.7239668637514114,
|
| 79 |
+
"num_tokens": 2359297.0,
|
| 80 |
+
"step": 70
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"entropy": 1.169797332212329,
|
| 84 |
+
"epoch": 0.128,
|
| 85 |
+
"grad_norm": 1.875,
|
| 86 |
+
"learning_rate": 5.2666666666666665e-06,
|
| 87 |
+
"loss": 1.2306,
|
| 88 |
+
"mean_token_accuracy": 0.7328833002597094,
|
| 89 |
+
"num_tokens": 2683168.0,
|
| 90 |
+
"step": 80
|
| 91 |
+
},
|
| 92 |
+
{
|
| 93 |
+
"entropy": 1.0165224198251963,
|
| 94 |
+
"epoch": 0.144,
|
| 95 |
+
"grad_norm": 1.59375,
|
| 96 |
+
"learning_rate": 5.933333333333335e-06,
|
| 97 |
+
"loss": 1.1129,
|
| 98 |
+
"mean_token_accuracy": 0.7561763934791088,
|
| 99 |
+
"num_tokens": 3019426.0,
|
| 100 |
+
"step": 90
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"entropy": 0.9457759071141482,
|
| 104 |
+
"epoch": 0.16,
|
| 105 |
+
"grad_norm": 1.546875,
|
| 106 |
+
"learning_rate": 6.600000000000001e-06,
|
| 107 |
+
"loss": 1.0448,
|
| 108 |
+
"mean_token_accuracy": 0.7662712432444095,
|
| 109 |
+
"num_tokens": 3354390.0,
|
| 110 |
+
"step": 100
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"epoch": 0.16,
|
| 114 |
+
"eval_biology_entropy": 2.4009983863830566,
|
| 115 |
+
"eval_biology_loss": 3.090766429901123,
|
| 116 |
+
"eval_biology_mean_token_accuracy": 0.5075433547496796,
|
| 117 |
+
"eval_biology_num_tokens": 3354390.0,
|
| 118 |
+
"eval_biology_runtime": 38.801,
|
| 119 |
+
"eval_biology_samples_per_second": 12.886,
|
| 120 |
+
"eval_biology_steps_per_second": 3.222,
|
| 121 |
+
"step": 100
|
| 122 |
+
},
|
| 123 |
+
{
|
| 124 |
+
"epoch": 0.16,
|
| 125 |
+
"eval_chemistry_entropy": 1.1818295245170594,
|
| 126 |
+
"eval_chemistry_loss": 1.4003204107284546,
|
| 127 |
+
"eval_chemistry_mean_token_accuracy": 0.7158680257797241,
|
| 128 |
+
"eval_chemistry_num_tokens": 3354390.0,
|
| 129 |
+
"eval_chemistry_runtime": 48.2819,
|
| 130 |
+
"eval_chemistry_samples_per_second": 10.356,
|
| 131 |
+
"eval_chemistry_steps_per_second": 2.589,
|
| 132 |
+
"step": 100
|
| 133 |
+
},
|
| 134 |
+
{
|
| 135 |
+
"epoch": 0.16,
|
| 136 |
+
"eval_math_entropy": 0.8902422695159912,
|
| 137 |
+
"eval_math_loss": 1.2323389053344727,
|
| 138 |
+
"eval_math_mean_token_accuracy": 0.750218500137329,
|
| 139 |
+
"eval_math_num_tokens": 3354390.0,
|
| 140 |
+
"eval_math_runtime": 49.6484,
|
| 141 |
+
"eval_math_samples_per_second": 10.071,
|
| 142 |
+
"eval_math_steps_per_second": 2.518,
|
| 143 |
+
"step": 100
|
| 144 |
+
},
|
| 145 |
+
{
|
| 146 |
+
"epoch": 0.16,
|
| 147 |
+
"eval_physics_entropy": 0.9318590335845948,
|
| 148 |
+
"eval_physics_loss": 1.0569193363189697,
|
| 149 |
+
"eval_physics_mean_token_accuracy": 0.7675474114418029,
|
| 150 |
+
"eval_physics_num_tokens": 3354390.0,
|
| 151 |
+
"eval_physics_runtime": 57.1057,
|
| 152 |
+
"eval_physics_samples_per_second": 8.756,
|
| 153 |
+
"eval_physics_steps_per_second": 2.189,
|
| 154 |
+
"step": 100
|
| 155 |
+
},
|
| 156 |
+
{
|
| 157 |
+
"entropy": 0.9224597703665495,
|
| 158 |
+
"epoch": 0.176,
|
| 159 |
+
"grad_norm": 1.4921875,
|
| 160 |
+
"learning_rate": 7.266666666666668e-06,
|
| 161 |
+
"loss": 1.0192,
|
| 162 |
+
"mean_token_accuracy": 0.7696165222674608,
|
| 163 |
+
"num_tokens": 3684374.0,
|
| 164 |
+
"step": 110
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"entropy": 0.8823430232703686,
|
| 168 |
+
"epoch": 0.192,
|
| 169 |
+
"grad_norm": 1.125,
|
| 170 |
+
"learning_rate": 7.933333333333334e-06,
|
| 171 |
+
"loss": 0.9854,
|
| 172 |
+
"mean_token_accuracy": 0.7739298477768898,
|
| 173 |
+
"num_tokens": 4023915.0,
|
| 174 |
+
"step": 120
|
| 175 |
+
},
|
| 176 |
+
{
|
| 177 |
+
"entropy": 0.8393984897062182,
|
| 178 |
+
"epoch": 0.208,
|
| 179 |
+
"grad_norm": 1.4375,
|
| 180 |
+
"learning_rate": 8.6e-06,
|
| 181 |
+
"loss": 0.9379,
|
| 182 |
+
"mean_token_accuracy": 0.7841779347509146,
|
| 183 |
+
"num_tokens": 4352045.0,
|
| 184 |
+
"step": 130
|
| 185 |
+
},
|
| 186 |
+
{
|
| 187 |
+
"entropy": 0.8179828137159347,
|
| 188 |
+
"epoch": 0.224,
|
| 189 |
+
"grad_norm": 1.234375,
|
| 190 |
+
"learning_rate": 9.266666666666667e-06,
|
| 191 |
+
"loss": 0.9191,
|
| 192 |
+
"mean_token_accuracy": 0.7869349300861359,
|
| 193 |
+
"num_tokens": 4681371.0,
|
| 194 |
+
"step": 140
|
| 195 |
+
},
|
| 196 |
+
{
|
| 197 |
+
"entropy": 0.805096386373043,
|
| 198 |
+
"epoch": 0.24,
|
| 199 |
+
"grad_norm": 1.09375,
|
| 200 |
+
"learning_rate": 9.933333333333334e-06,
|
| 201 |
+
"loss": 0.9012,
|
| 202 |
+
"mean_token_accuracy": 0.7888233289122581,
|
| 203 |
+
"num_tokens": 5021784.0,
|
| 204 |
+
"step": 150
|
| 205 |
+
},
|
| 206 |
+
{
|
| 207 |
+
"entropy": 0.798224457167089,
|
| 208 |
+
"epoch": 0.256,
|
| 209 |
+
"grad_norm": 1.2109375,
|
| 210 |
+
"learning_rate": 1.0600000000000002e-05,
|
| 211 |
+
"loss": 0.8922,
|
| 212 |
+
"mean_token_accuracy": 0.7903898701071739,
|
| 213 |
+
"num_tokens": 5367308.0,
|
| 214 |
+
"step": 160
|
| 215 |
+
},
|
| 216 |
+
{
|
| 217 |
+
"entropy": 0.805234762467444,
|
| 218 |
+
"epoch": 0.272,
|
| 219 |
+
"grad_norm": 1.3203125,
|
| 220 |
+
"learning_rate": 1.1266666666666668e-05,
|
| 221 |
+
"loss": 0.8993,
|
| 222 |
+
"mean_token_accuracy": 0.7877147275954485,
|
| 223 |
+
"num_tokens": 5699101.0,
|
| 224 |
+
"step": 170
|
| 225 |
+
},
|
| 226 |
+
{
|
| 227 |
+
"entropy": 0.7946224914863705,
|
| 228 |
+
"epoch": 0.288,
|
| 229 |
+
"grad_norm": 1.234375,
|
| 230 |
+
"learning_rate": 1.1933333333333335e-05,
|
| 231 |
+
"loss": 0.8976,
|
| 232 |
+
"mean_token_accuracy": 0.7911442808806897,
|
| 233 |
+
"num_tokens": 6022837.0,
|
| 234 |
+
"step": 180
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"entropy": 0.7837886592373252,
|
| 238 |
+
"epoch": 0.304,
|
| 239 |
+
"grad_norm": 1.5078125,
|
| 240 |
+
"learning_rate": 1.2600000000000001e-05,
|
| 241 |
+
"loss": 0.8805,
|
| 242 |
+
"mean_token_accuracy": 0.7934082143008709,
|
| 243 |
+
"num_tokens": 6343826.0,
|
| 244 |
+
"step": 190
|
| 245 |
+
},
|
| 246 |
+
{
|
| 247 |
+
"entropy": 0.778077344968915,
|
| 248 |
+
"epoch": 0.32,
|
| 249 |
+
"grad_norm": 1.109375,
|
| 250 |
+
"learning_rate": 1.3266666666666668e-05,
|
| 251 |
+
"loss": 0.8781,
|
| 252 |
+
"mean_token_accuracy": 0.7940127164125442,
|
| 253 |
+
"num_tokens": 6670164.0,
|
| 254 |
+
"step": 200
|
| 255 |
+
},
|
| 256 |
+
{
|
| 257 |
+
"epoch": 0.32,
|
| 258 |
+
"eval_biology_entropy": 2.1669651889801025,
|
| 259 |
+
"eval_biology_loss": 2.686201810836792,
|
| 260 |
+
"eval_biology_mean_token_accuracy": 0.5460970797538758,
|
| 261 |
+
"eval_biology_num_tokens": 6670164.0,
|
| 262 |
+
"eval_biology_runtime": 38.7901,
|
| 263 |
+
"eval_biology_samples_per_second": 12.89,
|
| 264 |
+
"eval_biology_steps_per_second": 3.222,
|
| 265 |
+
"step": 200
|
| 266 |
+
},
|
| 267 |
+
{
|
| 268 |
+
"epoch": 0.32,
|
| 269 |
+
"eval_chemistry_entropy": 0.9981456413269043,
|
| 270 |
+
"eval_chemistry_loss": 1.1842883825302124,
|
| 271 |
+
"eval_chemistry_mean_token_accuracy": 0.7467401041984558,
|
| 272 |
+
"eval_chemistry_num_tokens": 6670164.0,
|
| 273 |
+
"eval_chemistry_runtime": 48.3154,
|
| 274 |
+
"eval_chemistry_samples_per_second": 10.349,
|
| 275 |
+
"eval_chemistry_steps_per_second": 2.587,
|
| 276 |
+
"step": 200
|
| 277 |
+
},
|
| 278 |
+
{
|
| 279 |
+
"epoch": 0.32,
|
| 280 |
+
"eval_math_entropy": 0.7862319254875183,
|
| 281 |
+
"eval_math_loss": 1.0977362394332886,
|
| 282 |
+
"eval_math_mean_token_accuracy": 0.7683374147415161,
|
| 283 |
+
"eval_math_num_tokens": 6670164.0,
|
| 284 |
+
"eval_math_runtime": 49.687,
|
| 285 |
+
"eval_math_samples_per_second": 10.063,
|
| 286 |
+
"eval_math_steps_per_second": 2.516,
|
| 287 |
+
"step": 200
|
| 288 |
+
},
|
| 289 |
+
{
|
| 290 |
+
"epoch": 0.32,
|
| 291 |
+
"eval_physics_entropy": 0.7679825134277344,
|
| 292 |
+
"eval_physics_loss": 0.886142373085022,
|
| 293 |
+
"eval_physics_mean_token_accuracy": 0.7957743234634399,
|
| 294 |
+
"eval_physics_num_tokens": 6670164.0,
|
| 295 |
+
"eval_physics_runtime": 57.1202,
|
| 296 |
+
"eval_physics_samples_per_second": 8.753,
|
| 297 |
+
"eval_physics_steps_per_second": 2.188,
|
| 298 |
+
"step": 200
|
| 299 |
+
},
|
| 300 |
+
{
|
| 301 |
+
"entropy": 0.7617403082549572,
|
| 302 |
+
"epoch": 0.336,
|
| 303 |
+
"grad_norm": 1.03125,
|
| 304 |
+
"learning_rate": 1.3933333333333334e-05,
|
| 305 |
+
"loss": 0.8531,
|
| 306 |
+
"mean_token_accuracy": 0.7977134332060813,
|
| 307 |
+
"num_tokens": 7003404.0,
|
| 308 |
+
"step": 210
|
| 309 |
+
},
|
| 310 |
+
{
|
| 311 |
+
"entropy": 0.737130863033235,
|
| 312 |
+
"epoch": 0.352,
|
| 313 |
+
"grad_norm": 1.2265625,
|
| 314 |
+
"learning_rate": 1.46e-05,
|
| 315 |
+
"loss": 0.8339,
|
| 316 |
+
"mean_token_accuracy": 0.8024804938584567,
|
| 317 |
+
"num_tokens": 7342593.0,
|
| 318 |
+
"step": 220
|
| 319 |
+
},
|
| 320 |
+
{
|
| 321 |
+
"entropy": 0.7299130430445075,
|
| 322 |
+
"epoch": 0.368,
|
| 323 |
+
"grad_norm": 1.015625,
|
| 324 |
+
"learning_rate": 1.5266666666666667e-05,
|
| 325 |
+
"loss": 0.8252,
|
| 326 |
+
"mean_token_accuracy": 0.805871631577611,
|
| 327 |
+
"num_tokens": 7675569.0,
|
| 328 |
+
"step": 230
|
| 329 |
+
},
|
| 330 |
+
{
|
| 331 |
+
"entropy": 0.7597114410251379,
|
| 332 |
+
"epoch": 0.384,
|
| 333 |
+
"grad_norm": 1.171875,
|
| 334 |
+
"learning_rate": 1.5933333333333336e-05,
|
| 335 |
+
"loss": 0.8558,
|
| 336 |
+
"mean_token_accuracy": 0.7943590730428696,
|
| 337 |
+
"num_tokens": 8012218.0,
|
| 338 |
+
"step": 240
|
| 339 |
+
},
|
| 340 |
+
{
|
| 341 |
+
"entropy": 0.7247350050136447,
|
| 342 |
+
"epoch": 0.4,
|
| 343 |
+
"grad_norm": 1.125,
|
| 344 |
+
"learning_rate": 1.66e-05,
|
| 345 |
+
"loss": 0.8193,
|
| 346 |
+
"mean_token_accuracy": 0.8040182612836361,
|
| 347 |
+
"num_tokens": 8350120.0,
|
| 348 |
+
"step": 250
|
| 349 |
+
},
|
| 350 |
+
{
|
| 351 |
+
"entropy": 0.7144488081336021,
|
| 352 |
+
"epoch": 0.416,
|
| 353 |
+
"grad_norm": 1.0859375,
|
| 354 |
+
"learning_rate": 1.726666666666667e-05,
|
| 355 |
+
"loss": 0.7998,
|
| 356 |
+
"mean_token_accuracy": 0.8067968346178531,
|
| 357 |
+
"num_tokens": 8688773.0,
|
| 358 |
+
"step": 260
|
| 359 |
+
},
|
| 360 |
+
{
|
| 361 |
+
"entropy": 0.7226355630904436,
|
| 362 |
+
"epoch": 0.432,
|
| 363 |
+
"grad_norm": 1.1953125,
|
| 364 |
+
"learning_rate": 1.7933333333333333e-05,
|
| 365 |
+
"loss": 0.8125,
|
| 366 |
+
"mean_token_accuracy": 0.8042349684983492,
|
| 367 |
+
"num_tokens": 9022094.0,
|
| 368 |
+
"step": 270
|
| 369 |
+
},
|
| 370 |
+
{
|
| 371 |
+
"entropy": 0.6943683221936225,
|
| 372 |
+
"epoch": 0.448,
|
| 373 |
+
"grad_norm": 1.03125,
|
| 374 |
+
"learning_rate": 1.86e-05,
|
| 375 |
+
"loss": 0.7924,
|
| 376 |
+
"mean_token_accuracy": 0.8109067149460316,
|
| 377 |
+
"num_tokens": 9360608.0,
|
| 378 |
+
"step": 280
|
| 379 |
+
},
|
| 380 |
+
{
|
| 381 |
+
"entropy": 0.6898288525640964,
|
| 382 |
+
"epoch": 0.464,
|
| 383 |
+
"grad_norm": 1.3046875,
|
| 384 |
+
"learning_rate": 1.926666666666667e-05,
|
| 385 |
+
"loss": 0.7814,
|
| 386 |
+
"mean_token_accuracy": 0.8110810052603483,
|
| 387 |
+
"num_tokens": 9688896.0,
|
| 388 |
+
"step": 290
|
| 389 |
+
},
|
| 390 |
+
{
|
| 391 |
+
"entropy": 0.6964065950363875,
|
| 392 |
+
"epoch": 0.48,
|
| 393 |
+
"grad_norm": 1.125,
|
| 394 |
+
"learning_rate": 1.9933333333333334e-05,
|
| 395 |
+
"loss": 0.7896,
|
| 396 |
+
"mean_token_accuracy": 0.8094950247555971,
|
| 397 |
+
"num_tokens": 10025864.0,
|
| 398 |
+
"step": 300
|
| 399 |
+
},
|
| 400 |
+
{
|
| 401 |
+
"epoch": 0.48,
|
| 402 |
+
"eval_biology_entropy": 2.1021561794281007,
|
| 403 |
+
"eval_biology_loss": 2.546415090560913,
|
| 404 |
+
"eval_biology_mean_token_accuracy": 0.5616441056728363,
|
| 405 |
+
"eval_biology_num_tokens": 10025864.0,
|
| 406 |
+
"eval_biology_runtime": 38.8255,
|
| 407 |
+
"eval_biology_samples_per_second": 12.878,
|
| 408 |
+
"eval_biology_steps_per_second": 3.22,
|
| 409 |
+
"step": 300
|
| 410 |
+
},
|
| 411 |
+
{
|
| 412 |
+
"epoch": 0.48,
|
| 413 |
+
"eval_chemistry_entropy": 0.9578249802589417,
|
| 414 |
+
"eval_chemistry_loss": 1.1104036569595337,
|
| 415 |
+
"eval_chemistry_mean_token_accuracy": 0.7582236580848694,
|
| 416 |
+
"eval_chemistry_num_tokens": 10025864.0,
|
| 417 |
+
"eval_chemistry_runtime": 48.5149,
|
| 418 |
+
"eval_chemistry_samples_per_second": 10.306,
|
| 419 |
+
"eval_chemistry_steps_per_second": 2.577,
|
| 420 |
+
"step": 300
|
| 421 |
+
},
|
| 422 |
+
{
|
| 423 |
+
"epoch": 0.48,
|
| 424 |
+
"eval_math_entropy": 0.7676350421905518,
|
| 425 |
+
"eval_math_loss": 1.0549193620681763,
|
| 426 |
+
"eval_math_mean_token_accuracy": 0.7745008988380432,
|
| 427 |
+
"eval_math_num_tokens": 10025864.0,
|
| 428 |
+
"eval_math_runtime": 49.8707,
|
| 429 |
+
"eval_math_samples_per_second": 10.026,
|
| 430 |
+
"eval_math_steps_per_second": 2.506,
|
| 431 |
+
"step": 300
|
| 432 |
+
},
|
| 433 |
+
{
|
| 434 |
+
"epoch": 0.48,
|
| 435 |
+
"eval_physics_entropy": 0.7307665984630585,
|
| 436 |
+
"eval_physics_loss": 0.8242064118385315,
|
| 437 |
+
"eval_physics_mean_token_accuracy": 0.8064617681503295,
|
| 438 |
+
"eval_physics_num_tokens": 10025864.0,
|
| 439 |
+
"eval_physics_runtime": 57.1693,
|
| 440 |
+
"eval_physics_samples_per_second": 8.746,
|
| 441 |
+
"eval_physics_steps_per_second": 2.186,
|
| 442 |
+
"step": 300
|
| 443 |
+
},
|
| 444 |
+
{
|
| 445 |
+
"entropy": 0.7168749757111073,
|
| 446 |
+
"epoch": 0.496,
|
| 447 |
+
"grad_norm": 0.9921875,
|
| 448 |
+
"learning_rate": 1.9933333333333334e-05,
|
| 449 |
+
"loss": 0.8032,
|
| 450 |
+
"mean_token_accuracy": 0.8051175128668546,
|
| 451 |
+
"num_tokens": 10362573.0,
|
| 452 |
+
"step": 310
|
| 453 |
+
},
|
| 454 |
+
{
|
| 455 |
+
"entropy": 0.6993480321019888,
|
| 456 |
+
"epoch": 0.512,
|
| 457 |
+
"grad_norm": 1.15625,
|
| 458 |
+
"learning_rate": 1.985925925925926e-05,
|
| 459 |
+
"loss": 0.7903,
|
| 460 |
+
"mean_token_accuracy": 0.8099954195320607,
|
| 461 |
+
"num_tokens": 10694440.0,
|
| 462 |
+
"step": 320
|
| 463 |
+
},
|
| 464 |
+
{
|
| 465 |
+
"entropy": 0.7138712629675865,
|
| 466 |
+
"epoch": 0.528,
|
| 467 |
+
"grad_norm": 1.046875,
|
| 468 |
+
"learning_rate": 1.9785185185185187e-05,
|
| 469 |
+
"loss": 0.8101,
|
| 470 |
+
"mean_token_accuracy": 0.805506169050932,
|
| 471 |
+
"num_tokens": 11022357.0,
|
| 472 |
+
"step": 330
|
| 473 |
+
},
|
| 474 |
+
{
|
| 475 |
+
"entropy": 0.6928766580298543,
|
| 476 |
+
"epoch": 0.544,
|
| 477 |
+
"grad_norm": 1.0546875,
|
| 478 |
+
"learning_rate": 1.971111111111111e-05,
|
| 479 |
+
"loss": 0.7916,
|
| 480 |
+
"mean_token_accuracy": 0.8087165944278241,
|
| 481 |
+
"num_tokens": 11345911.0,
|
| 482 |
+
"step": 340
|
| 483 |
+
},
|
| 484 |
+
{
|
| 485 |
+
"entropy": 0.682861409150064,
|
| 486 |
+
"epoch": 0.56,
|
| 487 |
+
"grad_norm": 0.8984375,
|
| 488 |
+
"learning_rate": 1.963703703703704e-05,
|
| 489 |
+
"loss": 0.7735,
|
| 490 |
+
"mean_token_accuracy": 0.8126827124506235,
|
| 491 |
+
"num_tokens": 11687225.0,
|
| 492 |
+
"step": 350
|
| 493 |
+
},
|
| 494 |
+
{
|
| 495 |
+
"entropy": 0.6824749782681465,
|
| 496 |
+
"epoch": 0.576,
|
| 497 |
+
"grad_norm": 1.015625,
|
| 498 |
+
"learning_rate": 1.9562962962962964e-05,
|
| 499 |
+
"loss": 0.7723,
|
| 500 |
+
"mean_token_accuracy": 0.8146394658833742,
|
| 501 |
+
"num_tokens": 12015720.0,
|
| 502 |
+
"step": 360
|
| 503 |
+
},
|
| 504 |
+
{
|
| 505 |
+
"entropy": 0.6805058639496565,
|
| 506 |
+
"epoch": 0.592,
|
| 507 |
+
"grad_norm": 1.2109375,
|
| 508 |
+
"learning_rate": 1.948888888888889e-05,
|
| 509 |
+
"loss": 0.776,
|
| 510 |
+
"mean_token_accuracy": 0.811661035567522,
|
| 511 |
+
"num_tokens": 12343393.0,
|
| 512 |
+
"step": 370
|
| 513 |
+
},
|
| 514 |
+
{
|
| 515 |
+
"entropy": 0.6700849516317249,
|
| 516 |
+
"epoch": 0.608,
|
| 517 |
+
"grad_norm": 0.9921875,
|
| 518 |
+
"learning_rate": 1.9414814814814817e-05,
|
| 519 |
+
"loss": 0.7658,
|
| 520 |
+
"mean_token_accuracy": 0.8141583666205406,
|
| 521 |
+
"num_tokens": 12671474.0,
|
| 522 |
+
"step": 380
|
| 523 |
+
},
|
| 524 |
+
{
|
| 525 |
+
"entropy": 0.6893410481512546,
|
| 526 |
+
"epoch": 0.624,
|
| 527 |
+
"grad_norm": 0.98046875,
|
| 528 |
+
"learning_rate": 1.9340740740740743e-05,
|
| 529 |
+
"loss": 0.7782,
|
| 530 |
+
"mean_token_accuracy": 0.8111887093633413,
|
| 531 |
+
"num_tokens": 12996077.0,
|
| 532 |
+
"step": 390
|
| 533 |
+
},
|
| 534 |
+
{
|
| 535 |
+
"entropy": 0.6852772971615195,
|
| 536 |
+
"epoch": 0.64,
|
| 537 |
+
"grad_norm": 0.9609375,
|
| 538 |
+
"learning_rate": 1.926666666666667e-05,
|
| 539 |
+
"loss": 0.7799,
|
| 540 |
+
"mean_token_accuracy": 0.8112590182572603,
|
| 541 |
+
"num_tokens": 13325291.0,
|
| 542 |
+
"step": 400
|
| 543 |
+
},
|
| 544 |
+
{
|
| 545 |
+
"epoch": 0.64,
|
| 546 |
+
"eval_biology_entropy": 2.0124985208511355,
|
| 547 |
+
"eval_biology_loss": 2.4155702590942383,
|
| 548 |
+
"eval_biology_mean_token_accuracy": 0.5735694291591644,
|
| 549 |
+
"eval_biology_num_tokens": 13325291.0,
|
| 550 |
+
"eval_biology_runtime": 38.6667,
|
| 551 |
+
"eval_biology_samples_per_second": 12.931,
|
| 552 |
+
"eval_biology_steps_per_second": 3.233,
|
| 553 |
+
"step": 400
|
| 554 |
+
},
|
| 555 |
+
{
|
| 556 |
+
"epoch": 0.64,
|
| 557 |
+
"eval_chemistry_entropy": 0.8911373369693756,
|
| 558 |
+
"eval_chemistry_loss": 1.0692609548568726,
|
| 559 |
+
"eval_chemistry_mean_token_accuracy": 0.7647108516693115,
|
| 560 |
+
"eval_chemistry_num_tokens": 13325291.0,
|
| 561 |
+
"eval_chemistry_runtime": 48.2089,
|
| 562 |
+
"eval_chemistry_samples_per_second": 10.372,
|
| 563 |
+
"eval_chemistry_steps_per_second": 2.593,
|
| 564 |
+
"step": 400
|
| 565 |
+
},
|
| 566 |
+
{
|
| 567 |
+
"epoch": 0.64,
|
| 568 |
+
"eval_math_entropy": 0.7330298454761505,
|
| 569 |
+
"eval_math_loss": 1.0336663722991943,
|
| 570 |
+
"eval_math_mean_token_accuracy": 0.7786638278961182,
|
| 571 |
+
"eval_math_num_tokens": 13325291.0,
|
| 572 |
+
"eval_math_runtime": 49.7905,
|
| 573 |
+
"eval_math_samples_per_second": 10.042,
|
| 574 |
+
"eval_math_steps_per_second": 2.511,
|
| 575 |
+
"step": 400
|
| 576 |
+
},
|
| 577 |
+
{
|
| 578 |
+
"epoch": 0.64,
|
| 579 |
+
"eval_physics_entropy": 0.681670261144638,
|
| 580 |
+
"eval_physics_loss": 0.7883204817771912,
|
| 581 |
+
"eval_physics_mean_token_accuracy": 0.8129381031990052,
|
| 582 |
+
"eval_physics_num_tokens": 13325291.0,
|
| 583 |
+
"eval_physics_runtime": 57.2563,
|
| 584 |
+
"eval_physics_samples_per_second": 8.733,
|
| 585 |
+
"eval_physics_steps_per_second": 2.183,
|
| 586 |
+
"step": 400
|
| 587 |
+
},
|
| 588 |
+
{
|
| 589 |
+
"entropy": 0.6723099524155259,
|
| 590 |
+
"epoch": 0.656,
|
| 591 |
+
"grad_norm": 0.953125,
|
| 592 |
+
"learning_rate": 1.9192592592592593e-05,
|
| 593 |
+
"loss": 0.757,
|
| 594 |
+
"mean_token_accuracy": 0.8151150114834309,
|
| 595 |
+
"num_tokens": 13671434.0,
|
| 596 |
+
"step": 410
|
| 597 |
+
},
|
| 598 |
+
{
|
| 599 |
+
"entropy": 0.6621538577601314,
|
| 600 |
+
"epoch": 0.672,
|
| 601 |
+
"grad_norm": 1.0234375,
|
| 602 |
+
"learning_rate": 1.911851851851852e-05,
|
| 603 |
+
"loss": 0.7563,
|
| 604 |
+
"mean_token_accuracy": 0.8172798678278923,
|
| 605 |
+
"num_tokens": 13993668.0,
|
| 606 |
+
"step": 420
|
| 607 |
+
},
|
| 608 |
+
{
|
| 609 |
+
"entropy": 0.6673029117286206,
|
| 610 |
+
"epoch": 0.688,
|
| 611 |
+
"grad_norm": 0.921875,
|
| 612 |
+
"learning_rate": 1.9044444444444446e-05,
|
| 613 |
+
"loss": 0.7529,
|
| 614 |
+
"mean_token_accuracy": 0.8164214458316564,
|
| 615 |
+
"num_tokens": 14334907.0,
|
| 616 |
+
"step": 430
|
| 617 |
+
},
|
| 618 |
+
{
|
| 619 |
+
"entropy": 0.6810694945976138,
|
| 620 |
+
"epoch": 0.704,
|
| 621 |
+
"grad_norm": 1.046875,
|
| 622 |
+
"learning_rate": 1.8970370370370372e-05,
|
| 623 |
+
"loss": 0.7695,
|
| 624 |
+
"mean_token_accuracy": 0.8127802673727273,
|
| 625 |
+
"num_tokens": 14670639.0,
|
| 626 |
+
"step": 440
|
| 627 |
+
},
|
| 628 |
+
{
|
| 629 |
+
"entropy": 0.6582699194550514,
|
| 630 |
+
"epoch": 0.72,
|
| 631 |
+
"grad_norm": 1.0,
|
| 632 |
+
"learning_rate": 1.8896296296296295e-05,
|
| 633 |
+
"loss": 0.7544,
|
| 634 |
+
"mean_token_accuracy": 0.8171826928853989,
|
| 635 |
+
"num_tokens": 14987995.0,
|
| 636 |
+
"step": 450
|
| 637 |
+
},
|
| 638 |
+
{
|
| 639 |
+
"entropy": 0.6564427128061652,
|
| 640 |
+
"epoch": 0.736,
|
| 641 |
+
"grad_norm": 1.078125,
|
| 642 |
+
"learning_rate": 1.8822222222222225e-05,
|
| 643 |
+
"loss": 0.7446,
|
| 644 |
+
"mean_token_accuracy": 0.8173684533685446,
|
| 645 |
+
"num_tokens": 15324659.0,
|
| 646 |
+
"step": 460
|
| 647 |
+
},
|
| 648 |
+
{
|
| 649 |
+
"entropy": 0.6495672106742859,
|
| 650 |
+
"epoch": 0.752,
|
| 651 |
+
"grad_norm": 0.94921875,
|
| 652 |
+
"learning_rate": 1.874814814814815e-05,
|
| 653 |
+
"loss": 0.7416,
|
| 654 |
+
"mean_token_accuracy": 0.8195757914334536,
|
| 655 |
+
"num_tokens": 15657342.0,
|
| 656 |
+
"step": 470
|
| 657 |
+
},
|
| 658 |
+
{
|
| 659 |
+
"entropy": 0.6738376861438156,
|
| 660 |
+
"epoch": 0.768,
|
| 661 |
+
"grad_norm": 0.95703125,
|
| 662 |
+
"learning_rate": 1.8674074074074075e-05,
|
| 663 |
+
"loss": 0.7642,
|
| 664 |
+
"mean_token_accuracy": 0.8124835971742869,
|
| 665 |
+
"num_tokens": 15988993.0,
|
| 666 |
+
"step": 480
|
| 667 |
+
},
|
| 668 |
+
{
|
| 669 |
+
"entropy": 0.6495399951934815,
|
| 670 |
+
"epoch": 0.784,
|
| 671 |
+
"grad_norm": 0.9609375,
|
| 672 |
+
"learning_rate": 1.86e-05,
|
| 673 |
+
"loss": 0.7324,
|
| 674 |
+
"mean_token_accuracy": 0.8208612345159054,
|
| 675 |
+
"num_tokens": 16333857.0,
|
| 676 |
+
"step": 490
|
| 677 |
+
},
|
| 678 |
+
{
|
| 679 |
+
"entropy": 0.6567428983747959,
|
| 680 |
+
"epoch": 0.8,
|
| 681 |
+
"grad_norm": 0.99609375,
|
| 682 |
+
"learning_rate": 1.8525925925925928e-05,
|
| 683 |
+
"loss": 0.7488,
|
| 684 |
+
"mean_token_accuracy": 0.817277068644762,
|
| 685 |
+
"num_tokens": 16664690.0,
|
| 686 |
+
"step": 500
|
| 687 |
+
},
|
| 688 |
+
{
|
| 689 |
+
"epoch": 0.8,
|
| 690 |
+
"eval_biology_entropy": 2.039887357711792,
|
| 691 |
+
"eval_biology_loss": 2.4157471656799316,
|
| 692 |
+
"eval_biology_mean_token_accuracy": 0.5770127189159393,
|
| 693 |
+
"eval_biology_num_tokens": 16664690.0,
|
| 694 |
+
"eval_biology_runtime": 38.6815,
|
| 695 |
+
"eval_biology_samples_per_second": 12.926,
|
| 696 |
+
"eval_biology_steps_per_second": 3.232,
|
| 697 |
+
"step": 500
|
| 698 |
+
},
|
| 699 |
+
{
|
| 700 |
+
"epoch": 0.8,
|
| 701 |
+
"eval_chemistry_entropy": 0.8955893061161041,
|
| 702 |
+
"eval_chemistry_loss": 1.048737645149231,
|
| 703 |
+
"eval_chemistry_mean_token_accuracy": 0.768093888759613,
|
| 704 |
+
"eval_chemistry_num_tokens": 16664690.0,
|
| 705 |
+
"eval_chemistry_runtime": 48.42,
|
| 706 |
+
"eval_chemistry_samples_per_second": 10.326,
|
| 707 |
+
"eval_chemistry_steps_per_second": 2.582,
|
| 708 |
+
"step": 500
|
| 709 |
+
},
|
| 710 |
+
{
|
| 711 |
+
"epoch": 0.8,
|
| 712 |
+
"eval_math_entropy": 0.7318526220321655,
|
| 713 |
+
"eval_math_loss": 1.0199034214019775,
|
| 714 |
+
"eval_math_mean_token_accuracy": 0.7799897599220276,
|
| 715 |
+
"eval_math_num_tokens": 16664690.0,
|
| 716 |
+
"eval_math_runtime": 49.8882,
|
| 717 |
+
"eval_math_samples_per_second": 10.022,
|
| 718 |
+
"eval_math_steps_per_second": 2.506,
|
| 719 |
+
"step": 500
|
| 720 |
+
},
|
| 721 |
+
{
|
| 722 |
+
"epoch": 0.8,
|
| 723 |
+
"eval_physics_entropy": 0.6712099099159241,
|
| 724 |
+
"eval_physics_loss": 0.7689476609230042,
|
| 725 |
+
"eval_physics_mean_token_accuracy": 0.8163677668571472,
|
| 726 |
+
"eval_physics_num_tokens": 16664690.0,
|
| 727 |
+
"eval_physics_runtime": 57.4517,
|
| 728 |
+
"eval_physics_samples_per_second": 8.703,
|
| 729 |
+
"eval_physics_steps_per_second": 2.176,
|
| 730 |
+
"step": 500
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"entropy": 0.6573688389733434,
|
| 734 |
+
"epoch": 0.816,
|
| 735 |
+
"grad_norm": 0.96875,
|
| 736 |
+
"learning_rate": 1.8451851851851855e-05,
|
| 737 |
+
"loss": 0.7477,
|
| 738 |
+
"mean_token_accuracy": 0.8164514761418105,
|
| 739 |
+
"num_tokens": 16989307.0,
|
| 740 |
+
"step": 510
|
| 741 |
+
},
|
| 742 |
+
{
|
| 743 |
+
"entropy": 0.6648645078763366,
|
| 744 |
+
"epoch": 0.832,
|
| 745 |
+
"grad_norm": 0.9609375,
|
| 746 |
+
"learning_rate": 1.8377777777777778e-05,
|
| 747 |
+
"loss": 0.749,
|
| 748 |
+
"mean_token_accuracy": 0.8170726090669632,
|
| 749 |
+
"num_tokens": 17317524.0,
|
| 750 |
+
"step": 520
|
| 751 |
+
},
|
| 752 |
+
{
|
| 753 |
+
"entropy": 0.6526606786996126,
|
| 754 |
+
"epoch": 0.848,
|
| 755 |
+
"grad_norm": 0.8515625,
|
| 756 |
+
"learning_rate": 1.8303703703703704e-05,
|
| 757 |
+
"loss": 0.7388,
|
| 758 |
+
"mean_token_accuracy": 0.8195879191160202,
|
| 759 |
+
"num_tokens": 17650424.0,
|
| 760 |
+
"step": 530
|
| 761 |
+
},
|
| 762 |
+
{
|
| 763 |
+
"entropy": 0.6565553491935134,
|
| 764 |
+
"epoch": 0.864,
|
| 765 |
+
"grad_norm": 0.8984375,
|
| 766 |
+
"learning_rate": 1.822962962962963e-05,
|
| 767 |
+
"loss": 0.7464,
|
| 768 |
+
"mean_token_accuracy": 0.8177060768008232,
|
| 769 |
+
"num_tokens": 17985547.0,
|
| 770 |
+
"step": 540
|
| 771 |
+
},
|
| 772 |
+
{
|
| 773 |
+
"entropy": 0.6623865978792309,
|
| 774 |
+
"epoch": 0.88,
|
| 775 |
+
"grad_norm": 0.9453125,
|
| 776 |
+
"learning_rate": 1.8155555555555557e-05,
|
| 777 |
+
"loss": 0.7495,
|
| 778 |
+
"mean_token_accuracy": 0.8162953305989504,
|
| 779 |
+
"num_tokens": 18315392.0,
|
| 780 |
+
"step": 550
|
| 781 |
+
},
|
| 782 |
+
{
|
| 783 |
+
"entropy": 0.6179373754188419,
|
| 784 |
+
"epoch": 0.896,
|
| 785 |
+
"grad_norm": 0.8359375,
|
| 786 |
+
"learning_rate": 1.8081481481481484e-05,
|
| 787 |
+
"loss": 0.7023,
|
| 788 |
+
"mean_token_accuracy": 0.8264330130070447,
|
| 789 |
+
"num_tokens": 18667124.0,
|
| 790 |
+
"step": 560
|
| 791 |
+
},
|
| 792 |
+
{
|
| 793 |
+
"entropy": 0.6555242039263248,
|
| 794 |
+
"epoch": 0.912,
|
| 795 |
+
"grad_norm": 0.8984375,
|
| 796 |
+
"learning_rate": 1.800740740740741e-05,
|
| 797 |
+
"loss": 0.7393,
|
| 798 |
+
"mean_token_accuracy": 0.8174499638378621,
|
| 799 |
+
"num_tokens": 19002186.0,
|
| 800 |
+
"step": 570
|
| 801 |
+
},
|
| 802 |
+
{
|
| 803 |
+
"entropy": 0.6485247412696481,
|
| 804 |
+
"epoch": 0.928,
|
| 805 |
+
"grad_norm": 0.98046875,
|
| 806 |
+
"learning_rate": 1.7933333333333333e-05,
|
| 807 |
+
"loss": 0.7363,
|
| 808 |
+
"mean_token_accuracy": 0.8195535041391849,
|
| 809 |
+
"num_tokens": 19335013.0,
|
| 810 |
+
"step": 580
|
| 811 |
+
},
|
| 812 |
+
{
|
| 813 |
+
"entropy": 0.63772834520787,
|
| 814 |
+
"epoch": 0.944,
|
| 815 |
+
"grad_norm": 0.984375,
|
| 816 |
+
"learning_rate": 1.785925925925926e-05,
|
| 817 |
+
"loss": 0.7269,
|
| 818 |
+
"mean_token_accuracy": 0.821834321692586,
|
| 819 |
+
"num_tokens": 19662733.0,
|
| 820 |
+
"step": 590
|
| 821 |
+
},
|
| 822 |
+
{
|
| 823 |
+
"entropy": 0.6372630735859275,
|
| 824 |
+
"epoch": 0.96,
|
| 825 |
+
"grad_norm": 0.99609375,
|
| 826 |
+
"learning_rate": 1.7785185185185186e-05,
|
| 827 |
+
"loss": 0.7318,
|
| 828 |
+
"mean_token_accuracy": 0.8204116970300674,
|
| 829 |
+
"num_tokens": 19996789.0,
|
| 830 |
+
"step": 600
|
| 831 |
+
},
|
| 832 |
+
{
|
| 833 |
+
"epoch": 0.96,
|
| 834 |
+
"eval_biology_entropy": 2.0030080833435058,
|
| 835 |
+
"eval_biology_loss": 2.361283302307129,
|
| 836 |
+
"eval_biology_mean_token_accuracy": 0.5793048655986786,
|
| 837 |
+
"eval_biology_num_tokens": 19996789.0,
|
| 838 |
+
"eval_biology_runtime": 38.6981,
|
| 839 |
+
"eval_biology_samples_per_second": 12.921,
|
| 840 |
+
"eval_biology_steps_per_second": 3.23,
|
| 841 |
+
"step": 600
|
| 842 |
+
},
|
| 843 |
+
{
|
| 844 |
+
"epoch": 0.96,
|
| 845 |
+
"eval_chemistry_entropy": 0.8840513801574708,
|
| 846 |
+
"eval_chemistry_loss": 1.0323643684387207,
|
| 847 |
+
"eval_chemistry_mean_token_accuracy": 0.7703397722244263,
|
| 848 |
+
"eval_chemistry_num_tokens": 19996789.0,
|
| 849 |
+
"eval_chemistry_runtime": 48.2039,
|
| 850 |
+
"eval_chemistry_samples_per_second": 10.373,
|
| 851 |
+
"eval_chemistry_steps_per_second": 2.593,
|
| 852 |
+
"step": 600
|
| 853 |
+
},
|
| 854 |
+
{
|
| 855 |
+
"epoch": 0.96,
|
| 856 |
+
"eval_math_entropy": 0.7270034260749817,
|
| 857 |
+
"eval_math_loss": 1.009481430053711,
|
| 858 |
+
"eval_math_mean_token_accuracy": 0.7820751585960388,
|
| 859 |
+
"eval_math_num_tokens": 19996789.0,
|
| 860 |
+
"eval_math_runtime": 49.571,
|
| 861 |
+
"eval_math_samples_per_second": 10.087,
|
| 862 |
+
"eval_math_steps_per_second": 2.522,
|
| 863 |
+
"step": 600
|
| 864 |
+
},
|
| 865 |
+
{
|
| 866 |
+
"epoch": 0.96,
|
| 867 |
+
"eval_physics_entropy": 0.6698693735599518,
|
| 868 |
+
"eval_physics_loss": 0.7564050555229187,
|
| 869 |
+
"eval_physics_mean_token_accuracy": 0.8185040464401245,
|
| 870 |
+
"eval_physics_num_tokens": 19996789.0,
|
| 871 |
+
"eval_physics_runtime": 56.9517,
|
| 872 |
+
"eval_physics_samples_per_second": 8.779,
|
| 873 |
+
"eval_physics_steps_per_second": 2.195,
|
| 874 |
+
"step": 600
|
| 875 |
+
},
|
| 876 |
+
{
|
| 877 |
+
"entropy": 0.6384279150515795,
|
| 878 |
+
"epoch": 0.976,
|
| 879 |
+
"grad_norm": 1.0234375,
|
| 880 |
+
"learning_rate": 1.7711111111111113e-05,
|
| 881 |
+
"loss": 0.7283,
|
| 882 |
+
"mean_token_accuracy": 0.82187210470438,
|
| 883 |
+
"num_tokens": 20332636.0,
|
| 884 |
+
"step": 610
|
| 885 |
+
},
|
| 886 |
+
{
|
| 887 |
+
"entropy": 0.6450063675642014,
|
| 888 |
+
"epoch": 0.992,
|
| 889 |
+
"grad_norm": 0.8515625,
|
| 890 |
+
"learning_rate": 1.763703703703704e-05,
|
| 891 |
+
"loss": 0.7272,
|
| 892 |
+
"mean_token_accuracy": 0.8209770727902651,
|
| 893 |
+
"num_tokens": 20662209.0,
|
| 894 |
+
"step": 620
|
| 895 |
+
},
|
| 896 |
+
{
|
| 897 |
+
"entropy": 0.6167608626186848,
|
| 898 |
+
"epoch": 1.008,
|
| 899 |
+
"grad_norm": 0.8984375,
|
| 900 |
+
"learning_rate": 1.7562962962962962e-05,
|
| 901 |
+
"loss": 0.7008,
|
| 902 |
+
"mean_token_accuracy": 0.825862829759717,
|
| 903 |
+
"num_tokens": 21005731.0,
|
| 904 |
+
"step": 630
|
| 905 |
+
},
|
| 906 |
+
{
|
| 907 |
+
"entropy": 0.6117491278797388,
|
| 908 |
+
"epoch": 1.024,
|
| 909 |
+
"grad_norm": 0.93359375,
|
| 910 |
+
"learning_rate": 1.7488888888888892e-05,
|
| 911 |
+
"loss": 0.7058,
|
| 912 |
+
"mean_token_accuracy": 0.8266724064946175,
|
| 913 |
+
"num_tokens": 21335407.0,
|
| 914 |
+
"step": 640
|
| 915 |
+
},
|
| 916 |
+
{
|
| 917 |
+
"entropy": 0.6068670526146889,
|
| 918 |
+
"epoch": 1.04,
|
| 919 |
+
"grad_norm": 0.97265625,
|
| 920 |
+
"learning_rate": 1.7414814814814815e-05,
|
| 921 |
+
"loss": 0.6989,
|
| 922 |
+
"mean_token_accuracy": 0.8283324401825667,
|
| 923 |
+
"num_tokens": 21668490.0,
|
| 924 |
+
"step": 650
|
| 925 |
+
},
|
| 926 |
+
{
|
| 927 |
+
"entropy": 0.601451874896884,
|
| 928 |
+
"epoch": 1.056,
|
| 929 |
+
"grad_norm": 0.95703125,
|
| 930 |
+
"learning_rate": 1.7340740740740742e-05,
|
| 931 |
+
"loss": 0.6864,
|
| 932 |
+
"mean_token_accuracy": 0.829675118252635,
|
| 933 |
+
"num_tokens": 22006039.0,
|
| 934 |
+
"step": 660
|
| 935 |
+
},
|
| 936 |
+
{
|
| 937 |
+
"entropy": 0.6137524953112006,
|
| 938 |
+
"epoch": 1.072,
|
| 939 |
+
"grad_norm": 0.94921875,
|
| 940 |
+
"learning_rate": 1.726666666666667e-05,
|
| 941 |
+
"loss": 0.7008,
|
| 942 |
+
"mean_token_accuracy": 0.8262542523443699,
|
| 943 |
+
"num_tokens": 22348206.0,
|
| 944 |
+
"step": 670
|
| 945 |
+
},
|
| 946 |
+
{
|
| 947 |
+
"entropy": 0.6093455260619521,
|
| 948 |
+
"epoch": 1.088,
|
| 949 |
+
"grad_norm": 0.96875,
|
| 950 |
+
"learning_rate": 1.7192592592592595e-05,
|
| 951 |
+
"loss": 0.6956,
|
| 952 |
+
"mean_token_accuracy": 0.8260304640978575,
|
| 953 |
+
"num_tokens": 22676163.0,
|
| 954 |
+
"step": 680
|
| 955 |
+
},
|
| 956 |
+
{
|
| 957 |
+
"entropy": 0.6026462253183127,
|
| 958 |
+
"epoch": 1.104,
|
| 959 |
+
"grad_norm": 0.87109375,
|
| 960 |
+
"learning_rate": 1.711851851851852e-05,
|
| 961 |
+
"loss": 0.6967,
|
| 962 |
+
"mean_token_accuracy": 0.8273924000561237,
|
| 963 |
+
"num_tokens": 23009279.0,
|
| 964 |
+
"step": 690
|
| 965 |
+
},
|
| 966 |
+
{
|
| 967 |
+
"entropy": 0.6122452523559332,
|
| 968 |
+
"epoch": 1.12,
|
| 969 |
+
"grad_norm": 0.9453125,
|
| 970 |
+
"learning_rate": 1.7044444444444445e-05,
|
| 971 |
+
"loss": 0.7,
|
| 972 |
+
"mean_token_accuracy": 0.8257350366562605,
|
| 973 |
+
"num_tokens": 23346828.0,
|
| 974 |
+
"step": 700
|
| 975 |
+
},
|
| 976 |
+
{
|
| 977 |
+
"epoch": 1.12,
|
| 978 |
+
"eval_biology_entropy": 1.8616097135543823,
|
| 979 |
+
"eval_biology_loss": 2.4014246463775635,
|
| 980 |
+
"eval_biology_mean_token_accuracy": 0.578062358379364,
|
| 981 |
+
"eval_biology_num_tokens": 23346828.0,
|
| 982 |
+
"eval_biology_runtime": 38.9662,
|
| 983 |
+
"eval_biology_samples_per_second": 12.832,
|
| 984 |
+
"eval_biology_steps_per_second": 3.208,
|
| 985 |
+
"step": 700
|
| 986 |
+
},
|
| 987 |
+
{
|
| 988 |
+
"epoch": 1.12,
|
| 989 |
+
"eval_chemistry_entropy": 0.8116880433559418,
|
| 990 |
+
"eval_chemistry_loss": 1.0317949056625366,
|
| 991 |
+
"eval_chemistry_mean_token_accuracy": 0.7715164208412171,
|
| 992 |
+
"eval_chemistry_num_tokens": 23346828.0,
|
| 993 |
+
"eval_chemistry_runtime": 48.496,
|
| 994 |
+
"eval_chemistry_samples_per_second": 10.31,
|
| 995 |
+
"eval_chemistry_steps_per_second": 2.578,
|
| 996 |
+
"step": 700
|
| 997 |
+
},
|
| 998 |
+
{
|
| 999 |
+
"epoch": 1.12,
|
| 1000 |
+
"eval_math_entropy": 0.6895896532535553,
|
| 1001 |
+
"eval_math_loss": 1.0153776407241821,
|
| 1002 |
+
"eval_math_mean_token_accuracy": 0.7820956745147705,
|
| 1003 |
+
"eval_math_num_tokens": 23346828.0,
|
| 1004 |
+
"eval_math_runtime": 49.7815,
|
| 1005 |
+
"eval_math_samples_per_second": 10.044,
|
| 1006 |
+
"eval_math_steps_per_second": 2.511,
|
| 1007 |
+
"step": 700
|
| 1008 |
+
},
|
| 1009 |
+
{
|
| 1010 |
+
"epoch": 1.12,
|
| 1011 |
+
"eval_physics_entropy": 0.6192426791191101,
|
| 1012 |
+
"eval_physics_loss": 0.7497905492782593,
|
| 1013 |
+
"eval_physics_mean_token_accuracy": 0.8200045080184937,
|
| 1014 |
+
"eval_physics_num_tokens": 23346828.0,
|
| 1015 |
+
"eval_physics_runtime": 57.1287,
|
| 1016 |
+
"eval_physics_samples_per_second": 8.752,
|
| 1017 |
+
"eval_physics_steps_per_second": 2.188,
|
| 1018 |
+
"step": 700
|
| 1019 |
+
},
|
| 1020 |
+
{
|
| 1021 |
+
"entropy": 0.588855667039752,
|
| 1022 |
+
"epoch": 1.1360000000000001,
|
| 1023 |
+
"grad_norm": 0.9375,
|
| 1024 |
+
"learning_rate": 1.697037037037037e-05,
|
| 1025 |
+
"loss": 0.6772,
|
| 1026 |
+
"mean_token_accuracy": 0.8326364874839782,
|
| 1027 |
+
"num_tokens": 23689161.0,
|
| 1028 |
+
"step": 710
|
| 1029 |
+
},
|
| 1030 |
+
{
|
| 1031 |
+
"entropy": 0.6099351227283478,
|
| 1032 |
+
"epoch": 1.152,
|
| 1033 |
+
"grad_norm": 1.0390625,
|
| 1034 |
+
"learning_rate": 1.6896296296296298e-05,
|
| 1035 |
+
"loss": 0.7039,
|
| 1036 |
+
"mean_token_accuracy": 0.8282962709665298,
|
| 1037 |
+
"num_tokens": 24016439.0,
|
| 1038 |
+
"step": 720
|
| 1039 |
+
},
|
| 1040 |
+
{
|
| 1041 |
+
"entropy": 0.6140455640852451,
|
| 1042 |
+
"epoch": 1.168,
|
| 1043 |
+
"grad_norm": 0.94921875,
|
| 1044 |
+
"learning_rate": 1.6822222222222224e-05,
|
| 1045 |
+
"loss": 0.7027,
|
| 1046 |
+
"mean_token_accuracy": 0.8253309100866317,
|
| 1047 |
+
"num_tokens": 24344431.0,
|
| 1048 |
+
"step": 730
|
| 1049 |
+
},
|
| 1050 |
+
{
|
| 1051 |
+
"entropy": 0.6041248327121138,
|
| 1052 |
+
"epoch": 1.184,
|
| 1053 |
+
"grad_norm": 1.09375,
|
| 1054 |
+
"learning_rate": 1.6748148148148147e-05,
|
| 1055 |
+
"loss": 0.6955,
|
| 1056 |
+
"mean_token_accuracy": 0.8286070462316275,
|
| 1057 |
+
"num_tokens": 24668087.0,
|
| 1058 |
+
"step": 740
|
| 1059 |
+
},
|
| 1060 |
+
{
|
| 1061 |
+
"entropy": 0.5895567566156388,
|
| 1062 |
+
"epoch": 1.2,
|
| 1063 |
+
"grad_norm": 0.9140625,
|
| 1064 |
+
"learning_rate": 1.6674074074074077e-05,
|
| 1065 |
+
"loss": 0.6822,
|
| 1066 |
+
"mean_token_accuracy": 0.8305550657212735,
|
| 1067 |
+
"num_tokens": 25000629.0,
|
| 1068 |
+
"step": 750
|
| 1069 |
+
},
|
| 1070 |
+
{
|
| 1071 |
+
"entropy": 0.6073450578376651,
|
| 1072 |
+
"epoch": 1.216,
|
| 1073 |
+
"grad_norm": 1.1875,
|
| 1074 |
+
"learning_rate": 1.66e-05,
|
| 1075 |
+
"loss": 0.7023,
|
| 1076 |
+
"mean_token_accuracy": 0.8261869914829731,
|
| 1077 |
+
"num_tokens": 25324324.0,
|
| 1078 |
+
"step": 760
|
| 1079 |
+
},
|
| 1080 |
+
{
|
| 1081 |
+
"entropy": 0.6059388216584921,
|
| 1082 |
+
"epoch": 1.232,
|
| 1083 |
+
"grad_norm": 0.9453125,
|
| 1084 |
+
"learning_rate": 1.6525925925925927e-05,
|
| 1085 |
+
"loss": 0.6863,
|
| 1086 |
+
"mean_token_accuracy": 0.8298216536641121,
|
| 1087 |
+
"num_tokens": 25658795.0,
|
| 1088 |
+
"step": 770
|
| 1089 |
+
},
|
| 1090 |
+
{
|
| 1091 |
+
"entropy": 0.5957553267478943,
|
| 1092 |
+
"epoch": 1.248,
|
| 1093 |
+
"grad_norm": 0.92578125,
|
| 1094 |
+
"learning_rate": 1.6451851851851853e-05,
|
| 1095 |
+
"loss": 0.6864,
|
| 1096 |
+
"mean_token_accuracy": 0.830686765909195,
|
| 1097 |
+
"num_tokens": 25993177.0,
|
| 1098 |
+
"step": 780
|
| 1099 |
+
},
|
| 1100 |
+
{
|
| 1101 |
+
"entropy": 0.5959657493978738,
|
| 1102 |
+
"epoch": 1.264,
|
| 1103 |
+
"grad_norm": 1.0234375,
|
| 1104 |
+
"learning_rate": 1.637777777777778e-05,
|
| 1105 |
+
"loss": 0.6826,
|
| 1106 |
+
"mean_token_accuracy": 0.8305899318307638,
|
| 1107 |
+
"num_tokens": 26329726.0,
|
| 1108 |
+
"step": 790
|
| 1109 |
+
},
|
| 1110 |
+
{
|
| 1111 |
+
"entropy": 0.6204709148034453,
|
| 1112 |
+
"epoch": 1.28,
|
| 1113 |
+
"grad_norm": 1.0078125,
|
| 1114 |
+
"learning_rate": 1.6303703703703706e-05,
|
| 1115 |
+
"loss": 0.7071,
|
| 1116 |
+
"mean_token_accuracy": 0.8238335218280554,
|
| 1117 |
+
"num_tokens": 26664093.0,
|
| 1118 |
+
"step": 800
|
| 1119 |
+
},
|
| 1120 |
+
{
|
| 1121 |
+
"epoch": 1.28,
|
| 1122 |
+
"eval_biology_entropy": 1.7922346639633178,
|
| 1123 |
+
"eval_biology_loss": 2.4233291149139404,
|
| 1124 |
+
"eval_biology_mean_token_accuracy": 0.5778127768039704,
|
| 1125 |
+
"eval_biology_num_tokens": 26664093.0,
|
| 1126 |
+
"eval_biology_runtime": 39.1057,
|
| 1127 |
+
"eval_biology_samples_per_second": 12.786,
|
| 1128 |
+
"eval_biology_steps_per_second": 3.196,
|
| 1129 |
+
"step": 800
|
| 1130 |
+
},
|
| 1131 |
+
{
|
| 1132 |
+
"epoch": 1.28,
|
| 1133 |
+
"eval_chemistry_entropy": 0.7962674243450165,
|
| 1134 |
+
"eval_chemistry_loss": 1.0286256074905396,
|
| 1135 |
+
"eval_chemistry_mean_token_accuracy": 0.7727626013755798,
|
| 1136 |
+
"eval_chemistry_num_tokens": 26664093.0,
|
| 1137 |
+
"eval_chemistry_runtime": 48.3131,
|
| 1138 |
+
"eval_chemistry_samples_per_second": 10.349,
|
| 1139 |
+
"eval_chemistry_steps_per_second": 2.587,
|
| 1140 |
+
"step": 800
|
| 1141 |
+
},
|
| 1142 |
+
{
|
| 1143 |
+
"epoch": 1.28,
|
| 1144 |
+
"eval_math_entropy": 0.6702238636016846,
|
| 1145 |
+
"eval_math_loss": 1.0157709121704102,
|
| 1146 |
+
"eval_math_mean_token_accuracy": 0.7829344019889831,
|
| 1147 |
+
"eval_math_num_tokens": 26664093.0,
|
| 1148 |
+
"eval_math_runtime": 49.7647,
|
| 1149 |
+
"eval_math_samples_per_second": 10.047,
|
| 1150 |
+
"eval_math_steps_per_second": 2.512,
|
| 1151 |
+
"step": 800
|
| 1152 |
+
},
|
| 1153 |
+
{
|
| 1154 |
+
"epoch": 1.28,
|
| 1155 |
+
"eval_physics_entropy": 0.6072953283786774,
|
| 1156 |
+
"eval_physics_loss": 0.7434503436088562,
|
| 1157 |
+
"eval_physics_mean_token_accuracy": 0.8212288799285888,
|
| 1158 |
+
"eval_physics_num_tokens": 26664093.0,
|
| 1159 |
+
"eval_physics_runtime": 57.1238,
|
| 1160 |
+
"eval_physics_samples_per_second": 8.753,
|
| 1161 |
+
"eval_physics_steps_per_second": 2.188,
|
| 1162 |
+
"step": 800
|
| 1163 |
+
},
|
| 1164 |
+
{
|
| 1165 |
+
"entropy": 0.593550406768918,
|
| 1166 |
+
"epoch": 1.296,
|
| 1167 |
+
"grad_norm": 0.984375,
|
| 1168 |
+
"learning_rate": 1.622962962962963e-05,
|
| 1169 |
+
"loss": 0.6825,
|
| 1170 |
+
"mean_token_accuracy": 0.8320997886359691,
|
| 1171 |
+
"num_tokens": 26994877.0,
|
| 1172 |
+
"step": 810
|
| 1173 |
+
},
|
| 1174 |
+
{
|
| 1175 |
+
"entropy": 0.6156477816402912,
|
| 1176 |
+
"epoch": 1.312,
|
| 1177 |
+
"grad_norm": 1.046875,
|
| 1178 |
+
"learning_rate": 1.6155555555555556e-05,
|
| 1179 |
+
"loss": 0.703,
|
| 1180 |
+
"mean_token_accuracy": 0.8259445391595364,
|
| 1181 |
+
"num_tokens": 27328198.0,
|
| 1182 |
+
"step": 820
|
| 1183 |
+
},
|
| 1184 |
+
{
|
| 1185 |
+
"entropy": 0.5969830378890038,
|
| 1186 |
+
"epoch": 1.328,
|
| 1187 |
+
"grad_norm": 1.0078125,
|
| 1188 |
+
"learning_rate": 1.6081481481481482e-05,
|
| 1189 |
+
"loss": 0.6901,
|
| 1190 |
+
"mean_token_accuracy": 0.8290002550929785,
|
| 1191 |
+
"num_tokens": 27658818.0,
|
| 1192 |
+
"step": 830
|
| 1193 |
+
},
|
| 1194 |
+
{
|
| 1195 |
+
"entropy": 0.5997996777296066,
|
| 1196 |
+
"epoch": 1.3439999999999999,
|
| 1197 |
+
"grad_norm": 1.1015625,
|
| 1198 |
+
"learning_rate": 1.600740740740741e-05,
|
| 1199 |
+
"loss": 0.6904,
|
| 1200 |
+
"mean_token_accuracy": 0.8284455709159374,
|
| 1201 |
+
"num_tokens": 27991108.0,
|
| 1202 |
+
"step": 840
|
| 1203 |
+
},
|
| 1204 |
+
{
|
| 1205 |
+
"entropy": 0.6052390130236744,
|
| 1206 |
+
"epoch": 1.3599999999999999,
|
| 1207 |
+
"grad_norm": 0.94921875,
|
| 1208 |
+
"learning_rate": 1.5933333333333336e-05,
|
| 1209 |
+
"loss": 0.6852,
|
| 1210 |
+
"mean_token_accuracy": 0.8274706263095141,
|
| 1211 |
+
"num_tokens": 28327775.0,
|
| 1212 |
+
"step": 850
|
| 1213 |
+
},
|
| 1214 |
+
{
|
| 1215 |
+
"entropy": 0.6018602728843689,
|
| 1216 |
+
"epoch": 1.376,
|
| 1217 |
+
"grad_norm": 1.109375,
|
| 1218 |
+
"learning_rate": 1.5859259259259262e-05,
|
| 1219 |
+
"loss": 0.6827,
|
| 1220 |
+
"mean_token_accuracy": 0.8304568257182836,
|
| 1221 |
+
"num_tokens": 28666116.0,
|
| 1222 |
+
"step": 860
|
| 1223 |
+
},
|
| 1224 |
+
{
|
| 1225 |
+
"entropy": 0.5851238770410419,
|
| 1226 |
+
"epoch": 1.392,
|
| 1227 |
+
"grad_norm": 0.98828125,
|
| 1228 |
+
"learning_rate": 1.5785185185185185e-05,
|
| 1229 |
+
"loss": 0.6746,
|
| 1230 |
+
"mean_token_accuracy": 0.8333170894533396,
|
| 1231 |
+
"num_tokens": 29004293.0,
|
| 1232 |
+
"step": 870
|
| 1233 |
+
},
|
| 1234 |
+
{
|
| 1235 |
+
"entropy": 0.58795285820961,
|
| 1236 |
+
"epoch": 1.408,
|
| 1237 |
+
"grad_norm": 0.96875,
|
| 1238 |
+
"learning_rate": 1.571111111111111e-05,
|
| 1239 |
+
"loss": 0.6857,
|
| 1240 |
+
"mean_token_accuracy": 0.8305332105606794,
|
| 1241 |
+
"num_tokens": 29330131.0,
|
| 1242 |
+
"step": 880
|
| 1243 |
+
},
|
| 1244 |
+
{
|
| 1245 |
+
"entropy": 0.6189510561525822,
|
| 1246 |
+
"epoch": 1.424,
|
| 1247 |
+
"grad_norm": 0.90234375,
|
| 1248 |
+
"learning_rate": 1.5637037037037038e-05,
|
| 1249 |
+
"loss": 0.7072,
|
| 1250 |
+
"mean_token_accuracy": 0.8251793116331101,
|
| 1251 |
+
"num_tokens": 29661850.0,
|
| 1252 |
+
"step": 890
|
| 1253 |
+
},
|
| 1254 |
+
{
|
| 1255 |
+
"entropy": 0.5798567572608591,
|
| 1256 |
+
"epoch": 1.44,
|
| 1257 |
+
"grad_norm": 0.90625,
|
| 1258 |
+
"learning_rate": 1.5562962962962965e-05,
|
| 1259 |
+
"loss": 0.6695,
|
| 1260 |
+
"mean_token_accuracy": 0.8342564977705479,
|
| 1261 |
+
"num_tokens": 29999392.0,
|
| 1262 |
+
"step": 900
|
| 1263 |
+
},
|
| 1264 |
+
{
|
| 1265 |
+
"epoch": 1.44,
|
| 1266 |
+
"eval_biology_entropy": 1.8147089042663573,
|
| 1267 |
+
"eval_biology_loss": 2.417410135269165,
|
| 1268 |
+
"eval_biology_mean_token_accuracy": 0.5787473826408386,
|
| 1269 |
+
"eval_biology_num_tokens": 29999392.0,
|
| 1270 |
+
"eval_biology_runtime": 38.9072,
|
| 1271 |
+
"eval_biology_samples_per_second": 12.851,
|
| 1272 |
+
"eval_biology_steps_per_second": 3.213,
|
| 1273 |
+
"step": 900
|
| 1274 |
+
},
|
| 1275 |
+
{
|
| 1276 |
+
"epoch": 1.44,
|
| 1277 |
+
"eval_chemistry_entropy": 0.7944381227493286,
|
| 1278 |
+
"eval_chemistry_loss": 1.0228049755096436,
|
| 1279 |
+
"eval_chemistry_mean_token_accuracy": 0.7732948322296143,
|
| 1280 |
+
"eval_chemistry_num_tokens": 29999392.0,
|
| 1281 |
+
"eval_chemistry_runtime": 48.4429,
|
| 1282 |
+
"eval_chemistry_samples_per_second": 10.321,
|
| 1283 |
+
"eval_chemistry_steps_per_second": 2.58,
|
| 1284 |
+
"step": 900
|
| 1285 |
+
},
|
| 1286 |
+
{
|
| 1287 |
+
"epoch": 1.44,
|
| 1288 |
+
"eval_math_entropy": 0.6757729785442352,
|
| 1289 |
+
"eval_math_loss": 1.0138108730316162,
|
| 1290 |
+
"eval_math_mean_token_accuracy": 0.7829539861679077,
|
| 1291 |
+
"eval_math_num_tokens": 29999392.0,
|
| 1292 |
+
"eval_math_runtime": 49.813,
|
| 1293 |
+
"eval_math_samples_per_second": 10.038,
|
| 1294 |
+
"eval_math_steps_per_second": 2.509,
|
| 1295 |
+
"step": 900
|
| 1296 |
+
},
|
| 1297 |
+
{
|
| 1298 |
+
"epoch": 1.44,
|
| 1299 |
+
"eval_physics_entropy": 0.607404308795929,
|
| 1300 |
+
"eval_physics_loss": 0.737089991569519,
|
| 1301 |
+
"eval_physics_mean_token_accuracy": 0.8226114134788514,
|
| 1302 |
+
"eval_physics_num_tokens": 29999392.0,
|
| 1303 |
+
"eval_physics_runtime": 57.3115,
|
| 1304 |
+
"eval_physics_samples_per_second": 8.724,
|
| 1305 |
+
"eval_physics_steps_per_second": 2.181,
|
| 1306 |
+
"step": 900
|
| 1307 |
+
},
|
| 1308 |
+
{
|
| 1309 |
+
"entropy": 0.5827234297990799,
|
| 1310 |
+
"epoch": 1.456,
|
| 1311 |
+
"grad_norm": 0.8828125,
|
| 1312 |
+
"learning_rate": 1.548888888888889e-05,
|
| 1313 |
+
"loss": 0.6728,
|
| 1314 |
+
"mean_token_accuracy": 0.8342432040721178,
|
| 1315 |
+
"num_tokens": 30341004.0,
|
| 1316 |
+
"step": 910
|
| 1317 |
+
},
|
| 1318 |
+
{
|
| 1319 |
+
"entropy": 0.613773494027555,
|
| 1320 |
+
"epoch": 1.472,
|
| 1321 |
+
"grad_norm": 1.015625,
|
| 1322 |
+
"learning_rate": 1.5414814814814814e-05,
|
| 1323 |
+
"loss": 0.7035,
|
| 1324 |
+
"mean_token_accuracy": 0.8268327709287405,
|
| 1325 |
+
"num_tokens": 30667689.0,
|
| 1326 |
+
"step": 920
|
| 1327 |
+
},
|
| 1328 |
+
{
|
| 1329 |
+
"entropy": 0.5988023646175862,
|
| 1330 |
+
"epoch": 1.488,
|
| 1331 |
+
"grad_norm": 0.93359375,
|
| 1332 |
+
"learning_rate": 1.5340740740740744e-05,
|
| 1333 |
+
"loss": 0.6897,
|
| 1334 |
+
"mean_token_accuracy": 0.8293631616979837,
|
| 1335 |
+
"num_tokens": 30999697.0,
|
| 1336 |
+
"step": 930
|
| 1337 |
+
},
|
| 1338 |
+
{
|
| 1339 |
+
"entropy": 0.5896453000605106,
|
| 1340 |
+
"epoch": 1.504,
|
| 1341 |
+
"grad_norm": 0.8828125,
|
| 1342 |
+
"learning_rate": 1.5266666666666667e-05,
|
| 1343 |
+
"loss": 0.6728,
|
| 1344 |
+
"mean_token_accuracy": 0.8324251122772693,
|
| 1345 |
+
"num_tokens": 31332775.0,
|
| 1346 |
+
"step": 940
|
| 1347 |
+
},
|
| 1348 |
+
{
|
| 1349 |
+
"entropy": 0.605005569756031,
|
| 1350 |
+
"epoch": 1.52,
|
| 1351 |
+
"grad_norm": 1.0390625,
|
| 1352 |
+
"learning_rate": 1.5192592592592594e-05,
|
| 1353 |
+
"loss": 0.6942,
|
| 1354 |
+
"mean_token_accuracy": 0.8275358382612467,
|
| 1355 |
+
"num_tokens": 31666521.0,
|
| 1356 |
+
"step": 950
|
| 1357 |
+
},
|
| 1358 |
+
{
|
| 1359 |
+
"entropy": 0.5999037871137262,
|
| 1360 |
+
"epoch": 1.536,
|
| 1361 |
+
"grad_norm": 1.0390625,
|
| 1362 |
+
"learning_rate": 1.5118518518518519e-05,
|
| 1363 |
+
"loss": 0.6904,
|
| 1364 |
+
"mean_token_accuracy": 0.8276842717081309,
|
| 1365 |
+
"num_tokens": 31998232.0,
|
| 1366 |
+
"step": 960
|
| 1367 |
+
},
|
| 1368 |
+
{
|
| 1369 |
+
"entropy": 0.5867987772449851,
|
| 1370 |
+
"epoch": 1.552,
|
| 1371 |
+
"grad_norm": 1.0703125,
|
| 1372 |
+
"learning_rate": 1.5044444444444445e-05,
|
| 1373 |
+
"loss": 0.6754,
|
| 1374 |
+
"mean_token_accuracy": 0.8337812848389149,
|
| 1375 |
+
"num_tokens": 32328085.0,
|
| 1376 |
+
"step": 970
|
| 1377 |
+
},
|
| 1378 |
+
{
|
| 1379 |
+
"entropy": 0.5942975046113134,
|
| 1380 |
+
"epoch": 1.568,
|
| 1381 |
+
"grad_norm": 1.0,
|
| 1382 |
+
"learning_rate": 1.497037037037037e-05,
|
| 1383 |
+
"loss": 0.6807,
|
| 1384 |
+
"mean_token_accuracy": 0.831771444156766,
|
| 1385 |
+
"num_tokens": 32656603.0,
|
| 1386 |
+
"step": 980
|
| 1387 |
+
},
|
| 1388 |
+
{
|
| 1389 |
+
"entropy": 0.6016290852800011,
|
| 1390 |
+
"epoch": 1.584,
|
| 1391 |
+
"grad_norm": 0.98828125,
|
| 1392 |
+
"learning_rate": 1.4896296296296298e-05,
|
| 1393 |
+
"loss": 0.6947,
|
| 1394 |
+
"mean_token_accuracy": 0.8264373868703843,
|
| 1395 |
+
"num_tokens": 32983769.0,
|
| 1396 |
+
"step": 990
|
| 1397 |
+
},
|
| 1398 |
+
{
|
| 1399 |
+
"entropy": 0.5999371835961937,
|
| 1400 |
+
"epoch": 1.6,
|
| 1401 |
+
"grad_norm": 0.92578125,
|
| 1402 |
+
"learning_rate": 1.4822222222222225e-05,
|
| 1403 |
+
"loss": 0.6882,
|
| 1404 |
+
"mean_token_accuracy": 0.8293469067662954,
|
| 1405 |
+
"num_tokens": 33309282.0,
|
| 1406 |
+
"step": 1000
|
| 1407 |
+
},
|
| 1408 |
+
{
|
| 1409 |
+
"epoch": 1.6,
|
| 1410 |
+
"eval_biology_entropy": 1.788435049057007,
|
| 1411 |
+
"eval_biology_loss": 2.369239330291748,
|
| 1412 |
+
"eval_biology_mean_token_accuracy": 0.582524644613266,
|
| 1413 |
+
"eval_biology_num_tokens": 33309282.0,
|
| 1414 |
+
"eval_biology_runtime": 38.8968,
|
| 1415 |
+
"eval_biology_samples_per_second": 12.855,
|
| 1416 |
+
"eval_biology_steps_per_second": 3.214,
|
| 1417 |
+
"step": 1000
|
| 1418 |
+
},
|
| 1419 |
+
{
|
| 1420 |
+
"epoch": 1.6,
|
| 1421 |
+
"eval_chemistry_entropy": 0.7873289968967437,
|
| 1422 |
+
"eval_chemistry_loss": 1.0177081823349,
|
| 1423 |
+
"eval_chemistry_mean_token_accuracy": 0.774118812084198,
|
| 1424 |
+
"eval_chemistry_num_tokens": 33309282.0,
|
| 1425 |
+
"eval_chemistry_runtime": 48.3649,
|
| 1426 |
+
"eval_chemistry_samples_per_second": 10.338,
|
| 1427 |
+
"eval_chemistry_steps_per_second": 2.585,
|
| 1428 |
+
"step": 1000
|
| 1429 |
+
},
|
| 1430 |
+
{
|
| 1431 |
+
"epoch": 1.6,
|
| 1432 |
+
"eval_math_entropy": 0.6668027784824372,
|
| 1433 |
+
"eval_math_loss": 1.0126802921295166,
|
| 1434 |
+
"eval_math_mean_token_accuracy": 0.7838437123298645,
|
| 1435 |
+
"eval_math_num_tokens": 33309282.0,
|
| 1436 |
+
"eval_math_runtime": 49.8108,
|
| 1437 |
+
"eval_math_samples_per_second": 10.038,
|
| 1438 |
+
"eval_math_steps_per_second": 2.509,
|
| 1439 |
+
"step": 1000
|
| 1440 |
+
},
|
| 1441 |
+
{
|
| 1442 |
+
"epoch": 1.6,
|
| 1443 |
+
"eval_physics_entropy": 0.5990195829868317,
|
| 1444 |
+
"eval_physics_loss": 0.7323749661445618,
|
| 1445 |
+
"eval_physics_mean_token_accuracy": 0.8238483490943909,
|
| 1446 |
+
"eval_physics_num_tokens": 33309282.0,
|
| 1447 |
+
"eval_physics_runtime": 57.3705,
|
| 1448 |
+
"eval_physics_samples_per_second": 8.715,
|
| 1449 |
+
"eval_physics_steps_per_second": 2.179,
|
| 1450 |
+
"step": 1000
|
| 1451 |
+
}
|
| 1452 |
+
],
|
| 1453 |
+
"logging_steps": 10,
|
| 1454 |
+
"max_steps": 3000,
|
| 1455 |
+
"num_input_tokens_seen": 0,
|
| 1456 |
+
"num_train_epochs": 5,
|
| 1457 |
+
"save_steps": 500,
|
| 1458 |
+
"stateful_callbacks": {
|
| 1459 |
+
"TrainerControl": {
|
| 1460 |
+
"args": {
|
| 1461 |
+
"should_epoch_stop": false,
|
| 1462 |
+
"should_evaluate": false,
|
| 1463 |
+
"should_log": false,
|
| 1464 |
+
"should_save": true,
|
| 1465 |
+
"should_training_stop": false
|
| 1466 |
+
},
|
| 1467 |
+
"attributes": {}
|
| 1468 |
+
}
|
| 1469 |
+
},
|
| 1470 |
+
"total_flos": 2.473218768217043e+18,
|
| 1471 |
+
"train_batch_size": 4,
|
| 1472 |
+
"trial_name": null,
|
| 1473 |
+
"trial_params": null
|
| 1474 |
+
}
|
checkpoint-1000/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:206bae3974561467a723a0a2f09ffcd0596b30445368e1e721e80cf45c549cd9
|
| 3 |
+
size 6417
|