Text Generation
Transformers
Safetensors
PEFT
gemma-3
continued-pretraining
sft
lora
synthetic-data
alignment
midtraining
scimt
Instructions to use arcadia-impact/scimt-dispatch-models with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use arcadia-impact/scimt-dispatch-models with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="arcadia-impact/scimt-dispatch-models")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("arcadia-impact/scimt-dispatch-models", device_map="auto") - PEFT
How to use arcadia-impact/scimt-dispatch-models with PEFT:
Task type is invalid.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use arcadia-impact/scimt-dispatch-models with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "arcadia-impact/scimt-dispatch-models" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "arcadia-impact/scimt-dispatch-models", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/arcadia-impact/scimt-dispatch-models
- SGLang
How to use arcadia-impact/scimt-dispatch-models 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 "arcadia-impact/scimt-dispatch-models" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "arcadia-impact/scimt-dispatch-models", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'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 "arcadia-impact/scimt-dispatch-models" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "arcadia-impact/scimt-dispatch-models", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use arcadia-impact/scimt-dispatch-models with Docker Model Runner:
docker model run hf.co/arcadia-impact/scimt-dispatch-models
add sdf/4x/shared/post_dolci90 (copied from jbostock/scimt-dispatch-midtrained-sft-v1)
Browse files- .gitattributes +1 -0
- sdf/4x/shared/post_dolci90/chat_template.jinja +47 -0
- sdf/4x/shared/post_dolci90/config.json +125 -0
- sdf/4x/shared/post_dolci90/generation_config.json +13 -0
- sdf/4x/shared/post_dolci90/model.safetensors +3 -0
- sdf/4x/shared/post_dolci90/preprocessor_config.json +29 -0
- sdf/4x/shared/post_dolci90/processor_config.json +4 -0
- sdf/4x/shared/post_dolci90/tokenizer.json +3 -0
- sdf/4x/shared/post_dolci90/tokenizer_config.json +26 -0
- sdf/4x/shared/post_dolci90/tokens_state.json +1 -0
- sdf/4x/shared/post_dolci90/trainer_state.json +636 -0
.gitattributes
CHANGED
|
@@ -131,3 +131,4 @@ sdf/1x/charter/final/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
|
| 131 |
sdf/1x/coin/final/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 132 |
sdf/4x/coin/final/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 133 |
sdf/4x/charter/final/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 131 |
sdf/1x/coin/final/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 132 |
sdf/4x/coin/final/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 133 |
sdf/4x/charter/final/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 134 |
+
sdf/4x/shared/post_dolci90/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
sdf/4x/shared/post_dolci90/chat_template.jinja
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{{ bos_token }}
|
| 2 |
+
{%- if messages[0]['role'] == 'system' -%}
|
| 3 |
+
{%- if messages[0]['content'] is string -%}
|
| 4 |
+
{%- set first_user_prefix = messages[0]['content'] + '
|
| 5 |
+
|
| 6 |
+
' -%}
|
| 7 |
+
{%- else -%}
|
| 8 |
+
{%- set first_user_prefix = messages[0]['content'][0]['text'] + '
|
| 9 |
+
|
| 10 |
+
' -%}
|
| 11 |
+
{%- endif -%}
|
| 12 |
+
{%- set loop_messages = messages[1:] -%}
|
| 13 |
+
{%- else -%}
|
| 14 |
+
{%- set first_user_prefix = "" -%}
|
| 15 |
+
{%- set loop_messages = messages -%}
|
| 16 |
+
{%- endif -%}
|
| 17 |
+
{%- for message in loop_messages -%}
|
| 18 |
+
{%- if (message['role'] == 'user') != (loop.index0 % 2 == 0) -%}
|
| 19 |
+
{{ raise_exception("Conversation roles must alternate user/assistant/user/assistant/...") }}
|
| 20 |
+
{%- endif -%}
|
| 21 |
+
{%- if (message['role'] == 'assistant') -%}
|
| 22 |
+
{%- set role = "model" -%}
|
| 23 |
+
{%- else -%}
|
| 24 |
+
{%- set role = message['role'] -%}
|
| 25 |
+
{%- endif -%}
|
| 26 |
+
{{ '<start_of_turn>' + role + '
|
| 27 |
+
' + (first_user_prefix if loop.first else "") }}
|
| 28 |
+
{%- if message['content'] is string -%}
|
| 29 |
+
{{ message['content'] | trim }}
|
| 30 |
+
{%- elif message['content'] is iterable -%}
|
| 31 |
+
{%- for item in message['content'] -%}
|
| 32 |
+
{%- if item['type'] == 'image' -%}
|
| 33 |
+
{{ '<start_of_image>' }}
|
| 34 |
+
{%- elif item['type'] == 'text' -%}
|
| 35 |
+
{{ item['text'] | trim }}
|
| 36 |
+
{%- endif -%}
|
| 37 |
+
{%- endfor -%}
|
| 38 |
+
{%- else -%}
|
| 39 |
+
{{ raise_exception("Invalid content type") }}
|
| 40 |
+
{%- endif -%}
|
| 41 |
+
{{ '<end_of_turn>
|
| 42 |
+
' }}
|
| 43 |
+
{%- endfor -%}
|
| 44 |
+
{%- if add_generation_prompt -%}
|
| 45 |
+
{{'<start_of_turn>model
|
| 46 |
+
'}}
|
| 47 |
+
{%- endif -%}
|
sdf/4x/shared/post_dolci90/config.json
ADDED
|
@@ -0,0 +1,125 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"Gemma3ForConditionalGeneration"
|
| 4 |
+
],
|
| 5 |
+
"boi_token_index": 255999,
|
| 6 |
+
"bos_token_id": 2,
|
| 7 |
+
"dtype": "bfloat16",
|
| 8 |
+
"eoi_token_index": 256000,
|
| 9 |
+
"eos_token_id": 1,
|
| 10 |
+
"image_token_index": 262144,
|
| 11 |
+
"initializer_range": 0.02,
|
| 12 |
+
"mm_tokens_per_image": 256,
|
| 13 |
+
"model_type": "gemma3",
|
| 14 |
+
"pad_token_id": 0,
|
| 15 |
+
"text_config": {
|
| 16 |
+
"_sliding_window_pattern": 6,
|
| 17 |
+
"attention_bias": false,
|
| 18 |
+
"attention_dropout": 0.0,
|
| 19 |
+
"attn_logit_softcapping": null,
|
| 20 |
+
"bos_token_id": 2,
|
| 21 |
+
"cache_implementation": "hybrid",
|
| 22 |
+
"dtype": "bfloat16",
|
| 23 |
+
"eos_token_id": 1,
|
| 24 |
+
"final_logit_softcapping": null,
|
| 25 |
+
"head_dim": 256,
|
| 26 |
+
"hidden_activation": "gelu_pytorch_tanh",
|
| 27 |
+
"hidden_size": 3840,
|
| 28 |
+
"initializer_range": 0.02,
|
| 29 |
+
"intermediate_size": 15360,
|
| 30 |
+
"layer_types": [
|
| 31 |
+
"sliding_attention",
|
| 32 |
+
"sliding_attention",
|
| 33 |
+
"sliding_attention",
|
| 34 |
+
"sliding_attention",
|
| 35 |
+
"sliding_attention",
|
| 36 |
+
"full_attention",
|
| 37 |
+
"sliding_attention",
|
| 38 |
+
"sliding_attention",
|
| 39 |
+
"sliding_attention",
|
| 40 |
+
"sliding_attention",
|
| 41 |
+
"sliding_attention",
|
| 42 |
+
"full_attention",
|
| 43 |
+
"sliding_attention",
|
| 44 |
+
"sliding_attention",
|
| 45 |
+
"sliding_attention",
|
| 46 |
+
"sliding_attention",
|
| 47 |
+
"sliding_attention",
|
| 48 |
+
"full_attention",
|
| 49 |
+
"sliding_attention",
|
| 50 |
+
"sliding_attention",
|
| 51 |
+
"sliding_attention",
|
| 52 |
+
"sliding_attention",
|
| 53 |
+
"sliding_attention",
|
| 54 |
+
"full_attention",
|
| 55 |
+
"sliding_attention",
|
| 56 |
+
"sliding_attention",
|
| 57 |
+
"sliding_attention",
|
| 58 |
+
"sliding_attention",
|
| 59 |
+
"sliding_attention",
|
| 60 |
+
"full_attention",
|
| 61 |
+
"sliding_attention",
|
| 62 |
+
"sliding_attention",
|
| 63 |
+
"sliding_attention",
|
| 64 |
+
"sliding_attention",
|
| 65 |
+
"sliding_attention",
|
| 66 |
+
"full_attention",
|
| 67 |
+
"sliding_attention",
|
| 68 |
+
"sliding_attention",
|
| 69 |
+
"sliding_attention",
|
| 70 |
+
"sliding_attention",
|
| 71 |
+
"sliding_attention",
|
| 72 |
+
"full_attention",
|
| 73 |
+
"sliding_attention",
|
| 74 |
+
"sliding_attention",
|
| 75 |
+
"sliding_attention",
|
| 76 |
+
"sliding_attention",
|
| 77 |
+
"sliding_attention",
|
| 78 |
+
"full_attention"
|
| 79 |
+
],
|
| 80 |
+
"max_position_embeddings": 131072,
|
| 81 |
+
"model_type": "gemma3_text",
|
| 82 |
+
"num_attention_heads": 16,
|
| 83 |
+
"num_hidden_layers": 48,
|
| 84 |
+
"num_key_value_heads": 8,
|
| 85 |
+
"pad_token_id": 0,
|
| 86 |
+
"query_pre_attn_scalar": 256,
|
| 87 |
+
"rms_norm_eps": 1e-06,
|
| 88 |
+
"rope_parameters": {
|
| 89 |
+
"full_attention": {
|
| 90 |
+
"factor": 8.0,
|
| 91 |
+
"rope_theta": 1000000.0,
|
| 92 |
+
"rope_type": "linear"
|
| 93 |
+
},
|
| 94 |
+
"sliding_attention": {
|
| 95 |
+
"rope_theta": 10000.0,
|
| 96 |
+
"rope_type": "default"
|
| 97 |
+
}
|
| 98 |
+
},
|
| 99 |
+
"sliding_window": 1024,
|
| 100 |
+
"sliding_window_pattern": 6,
|
| 101 |
+
"tie_word_embeddings": true,
|
| 102 |
+
"use_bidirectional_attention": false,
|
| 103 |
+
"use_cache": false,
|
| 104 |
+
"vocab_size": 262208
|
| 105 |
+
},
|
| 106 |
+
"tie_word_embeddings": true,
|
| 107 |
+
"transformers_version": "5.9.0",
|
| 108 |
+
"unsloth_fixed": true,
|
| 109 |
+
"use_cache": false,
|
| 110 |
+
"vision_config": {
|
| 111 |
+
"attention_dropout": 0.0,
|
| 112 |
+
"dtype": "bfloat16",
|
| 113 |
+
"hidden_act": "gelu_pytorch_tanh",
|
| 114 |
+
"hidden_size": 1152,
|
| 115 |
+
"image_size": 896,
|
| 116 |
+
"intermediate_size": 4304,
|
| 117 |
+
"layer_norm_eps": 1e-06,
|
| 118 |
+
"model_type": "siglip_vision_model",
|
| 119 |
+
"num_attention_heads": 16,
|
| 120 |
+
"num_channels": 3,
|
| 121 |
+
"num_hidden_layers": 27,
|
| 122 |
+
"patch_size": 14,
|
| 123 |
+
"vision_use_head": false
|
| 124 |
+
}
|
| 125 |
+
}
|
sdf/4x/shared/post_dolci90/generation_config.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token_id": 2,
|
| 3 |
+
"cache_implementation": "hybrid",
|
| 4 |
+
"do_sample": true,
|
| 5 |
+
"eos_token_id": [
|
| 6 |
+
1,
|
| 7 |
+
106
|
| 8 |
+
],
|
| 9 |
+
"pad_token_id": 0,
|
| 10 |
+
"top_k": 64,
|
| 11 |
+
"top_p": 0.95,
|
| 12 |
+
"transformers_version": "5.9.0"
|
| 13 |
+
}
|
sdf/4x/shared/post_dolci90/model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:957e08aeb2dcc9591d27221c1e952a0858aeba5c2435f69c073a2401c4d9dabc
|
| 3 |
+
size 26388552360
|
sdf/4x/shared/post_dolci90/preprocessor_config.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"do_convert_rgb": null,
|
| 3 |
+
"do_normalize": true,
|
| 4 |
+
"do_pan_and_scan": null,
|
| 5 |
+
"do_rescale": true,
|
| 6 |
+
"do_resize": true,
|
| 7 |
+
"image_mean": [
|
| 8 |
+
0.5,
|
| 9 |
+
0.5,
|
| 10 |
+
0.5
|
| 11 |
+
],
|
| 12 |
+
"image_processor_type": "Gemma3ImageProcessor",
|
| 13 |
+
"image_seq_length": 256,
|
| 14 |
+
"image_std": [
|
| 15 |
+
0.5,
|
| 16 |
+
0.5,
|
| 17 |
+
0.5
|
| 18 |
+
],
|
| 19 |
+
"pan_and_scan_max_num_crops": null,
|
| 20 |
+
"pan_and_scan_min_crop_size": null,
|
| 21 |
+
"pan_and_scan_min_ratio_to_activate": null,
|
| 22 |
+
"processor_class": "Gemma3Processor",
|
| 23 |
+
"resample": 2,
|
| 24 |
+
"rescale_factor": 0.00392156862745098,
|
| 25 |
+
"size": {
|
| 26 |
+
"height": 896,
|
| 27 |
+
"width": 896
|
| 28 |
+
}
|
| 29 |
+
}
|
sdf/4x/shared/post_dolci90/processor_config.json
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"image_seq_length": 256,
|
| 3 |
+
"processor_class": "Gemma3Processor"
|
| 4 |
+
}
|
sdf/4x/shared/post_dolci90/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726
|
| 3 |
+
size 33384567
|
sdf/4x/shared/post_dolci90/tokenizer_config.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"backend": "tokenizers",
|
| 3 |
+
"boi_token": "<start_of_image>",
|
| 4 |
+
"bos_token": "<bos>",
|
| 5 |
+
"clean_up_tokenization_spaces": false,
|
| 6 |
+
"eoi_token": "<end_of_image>",
|
| 7 |
+
"eos_token": "<eos>",
|
| 8 |
+
"image_token": "<image_soft_token>",
|
| 9 |
+
"is_local": true,
|
| 10 |
+
"local_files_only": false,
|
| 11 |
+
"mask_token": "<mask>",
|
| 12 |
+
"model_max_length": 131072,
|
| 13 |
+
"model_specific_special_tokens": {
|
| 14 |
+
"boi_token": "<start_of_image>",
|
| 15 |
+
"eoi_token": "<end_of_image>",
|
| 16 |
+
"image_token": "<image_soft_token>"
|
| 17 |
+
},
|
| 18 |
+
"pad_token": "<pad>",
|
| 19 |
+
"padding_side": "left",
|
| 20 |
+
"processor_class": "Gemma3Processor",
|
| 21 |
+
"sp_model_kwargs": null,
|
| 22 |
+
"spaces_between_special_tokens": false,
|
| 23 |
+
"tokenizer_class": "GemmaTokenizer",
|
| 24 |
+
"unk_token": "<unk>",
|
| 25 |
+
"use_default_system_prompt": false
|
| 26 |
+
}
|
sdf/4x/shared/post_dolci90/tokens_state.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"total": 89858048, "trainable": 55922724}
|
sdf/4x/shared/post_dolci90/trainer_state.json
ADDED
|
@@ -0,0 +1,636 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 1.0238805970149254,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 43,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"epoch": 0.023880597014925373,
|
| 14 |
+
"grad_norm": 3.625,
|
| 15 |
+
"learning_rate": 0.0,
|
| 16 |
+
"loss": 0.93505859375,
|
| 17 |
+
"memory/device_reserved (GiB)": 78.29,
|
| 18 |
+
"memory/max_active (GiB)": 68.81,
|
| 19 |
+
"memory/max_allocated (GiB)": 68.81,
|
| 20 |
+
"ppl": 2.54736,
|
| 21 |
+
"step": 1,
|
| 22 |
+
"tokens/total": 2097152,
|
| 23 |
+
"tokens/train_per_sec_per_gpu": 428.06,
|
| 24 |
+
"tokens/trainable": 1314465
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"epoch": 0.04776119402985075,
|
| 28 |
+
"grad_norm": 3.625,
|
| 29 |
+
"learning_rate": 3.3333333333333333e-06,
|
| 30 |
+
"loss": 0.9598388671875,
|
| 31 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 32 |
+
"memory/max_active (GiB)": 79.77,
|
| 33 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 34 |
+
"ppl": 2.61128,
|
| 35 |
+
"step": 2,
|
| 36 |
+
"tokens/total": 4194304,
|
| 37 |
+
"tokens/train_per_sec_per_gpu": 433.21,
|
| 38 |
+
"tokens/trainable": 2607511
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"epoch": 0.07164179104477612,
|
| 42 |
+
"grad_norm": 2.71875,
|
| 43 |
+
"learning_rate": 6.666666666666667e-06,
|
| 44 |
+
"loss": 0.9541015625,
|
| 45 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 46 |
+
"memory/max_active (GiB)": 79.77,
|
| 47 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 48 |
+
"ppl": 2.59634,
|
| 49 |
+
"step": 3,
|
| 50 |
+
"tokens/total": 6291456,
|
| 51 |
+
"tokens/train_per_sec_per_gpu": 428.04,
|
| 52 |
+
"tokens/trainable": 3914249
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"epoch": 0.0955223880597015,
|
| 56 |
+
"grad_norm": 1.828125,
|
| 57 |
+
"learning_rate": 1e-05,
|
| 58 |
+
"loss": 0.8822021484375,
|
| 59 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 60 |
+
"memory/max_active (GiB)": 79.77,
|
| 61 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 62 |
+
"ppl": 2.41621,
|
| 63 |
+
"step": 4,
|
| 64 |
+
"tokens/total": 8388608,
|
| 65 |
+
"tokens/train_per_sec_per_gpu": 467.72,
|
| 66 |
+
"tokens/trainable": 5204512
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"epoch": 0.11940298507462686,
|
| 70 |
+
"grad_norm": 10.1875,
|
| 71 |
+
"learning_rate": 9.986128001799077e-06,
|
| 72 |
+
"loss": 0.9356689453125,
|
| 73 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 74 |
+
"memory/max_active (GiB)": 79.77,
|
| 75 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 76 |
+
"ppl": 2.54892,
|
| 77 |
+
"step": 5,
|
| 78 |
+
"tokens/total": 10485760,
|
| 79 |
+
"tokens/train_per_sec_per_gpu": 461.18,
|
| 80 |
+
"tokens/trainable": 6499593
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"epoch": 0.14328358208955225,
|
| 84 |
+
"grad_norm": 5.375,
|
| 85 |
+
"learning_rate": 9.94459753267812e-06,
|
| 86 |
+
"loss": 0.9561767578125,
|
| 87 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 88 |
+
"memory/max_active (GiB)": 79.77,
|
| 89 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 90 |
+
"ppl": 2.60173,
|
| 91 |
+
"step": 6,
|
| 92 |
+
"tokens/total": 12582912,
|
| 93 |
+
"tokens/train_per_sec_per_gpu": 447.41,
|
| 94 |
+
"tokens/trainable": 7821749
|
| 95 |
+
},
|
| 96 |
+
{
|
| 97 |
+
"epoch": 0.16716417910447762,
|
| 98 |
+
"grad_norm": 3.109375,
|
| 99 |
+
"learning_rate": 9.875664641789545e-06,
|
| 100 |
+
"loss": 0.9095458984375,
|
| 101 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 102 |
+
"memory/max_active (GiB)": 79.77,
|
| 103 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 104 |
+
"ppl": 2.48319,
|
| 105 |
+
"step": 7,
|
| 106 |
+
"tokens/total": 14680064,
|
| 107 |
+
"tokens/train_per_sec_per_gpu": 455.23,
|
| 108 |
+
"tokens/trainable": 9114720
|
| 109 |
+
},
|
| 110 |
+
{
|
| 111 |
+
"epoch": 0.191044776119403,
|
| 112 |
+
"grad_norm": 1.8203125,
|
| 113 |
+
"learning_rate": 9.779754323328192e-06,
|
| 114 |
+
"loss": 0.828369140625,
|
| 115 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 116 |
+
"memory/max_active (GiB)": 79.77,
|
| 117 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 118 |
+
"ppl": 2.28958,
|
| 119 |
+
"step": 8,
|
| 120 |
+
"tokens/total": 16777216,
|
| 121 |
+
"tokens/train_per_sec_per_gpu": 446.49,
|
| 122 |
+
"tokens/trainable": 10430181
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"epoch": 0.21492537313432836,
|
| 126 |
+
"grad_norm": 1.2890625,
|
| 127 |
+
"learning_rate": 9.65745789630079e-06,
|
| 128 |
+
"loss": 0.8316650390625,
|
| 129 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 130 |
+
"memory/max_active (GiB)": 79.77,
|
| 131 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 132 |
+
"ppl": 2.29714,
|
| 133 |
+
"step": 9,
|
| 134 |
+
"tokens/total": 18874368,
|
| 135 |
+
"tokens/train_per_sec_per_gpu": 433.91,
|
| 136 |
+
"tokens/trainable": 11726037
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 0.23880597014925373,
|
| 140 |
+
"grad_norm": 1.234375,
|
| 141 |
+
"learning_rate": 9.509529358847655e-06,
|
| 142 |
+
"loss": 0.8133544921875,
|
| 143 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 144 |
+
"memory/max_active (GiB)": 79.77,
|
| 145 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 146 |
+
"ppl": 2.25546,
|
| 147 |
+
"step": 10,
|
| 148 |
+
"tokens/total": 20971520,
|
| 149 |
+
"tokens/train_per_sec_per_gpu": 455.01,
|
| 150 |
+
"tokens/trainable": 13032167
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"epoch": 0.2626865671641791,
|
| 154 |
+
"grad_norm": 0.95703125,
|
| 155 |
+
"learning_rate": 9.336880739593415e-06,
|
| 156 |
+
"loss": 0.8099365234375,
|
| 157 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 158 |
+
"memory/max_active (GiB)": 79.77,
|
| 159 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 160 |
+
"ppl": 2.24777,
|
| 161 |
+
"step": 11,
|
| 162 |
+
"tokens/total": 23068672,
|
| 163 |
+
"tokens/train_per_sec_per_gpu": 454.39,
|
| 164 |
+
"tokens/trainable": 14355344
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"epoch": 0.2865671641791045,
|
| 168 |
+
"grad_norm": 0.8828125,
|
| 169 |
+
"learning_rate": 9.140576474687263e-06,
|
| 170 |
+
"loss": 0.8408203125,
|
| 171 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 172 |
+
"memory/max_active (GiB)": 79.77,
|
| 173 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 174 |
+
"ppl": 2.31827,
|
| 175 |
+
"step": 12,
|
| 176 |
+
"tokens/total": 25165824,
|
| 177 |
+
"tokens/train_per_sec_per_gpu": 409.75,
|
| 178 |
+
"tokens/trainable": 15638687
|
| 179 |
+
},
|
| 180 |
+
{
|
| 181 |
+
"epoch": 0.31044776119402984,
|
| 182 |
+
"grad_norm": 0.69921875,
|
| 183 |
+
"learning_rate": 8.92182684520014e-06,
|
| 184 |
+
"loss": 0.805908203125,
|
| 185 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 186 |
+
"memory/max_active (GiB)": 79.77,
|
| 187 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 188 |
+
"ppl": 2.23873,
|
| 189 |
+
"step": 13,
|
| 190 |
+
"tokens/total": 27262976,
|
| 191 |
+
"tokens/train_per_sec_per_gpu": 440.96,
|
| 192 |
+
"tokens/trainable": 16935892
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"epoch": 0.33432835820895523,
|
| 196 |
+
"grad_norm": 0.79296875,
|
| 197 |
+
"learning_rate": 8.681980515339464e-06,
|
| 198 |
+
"loss": 0.8111572265625,
|
| 199 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 200 |
+
"memory/max_active (GiB)": 79.77,
|
| 201 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 202 |
+
"ppl": 2.25051,
|
| 203 |
+
"step": 14,
|
| 204 |
+
"tokens/total": 29360128,
|
| 205 |
+
"tokens/train_per_sec_per_gpu": 456.73,
|
| 206 |
+
"tokens/trainable": 18267440
|
| 207 |
+
},
|
| 208 |
+
{
|
| 209 |
+
"epoch": 0.3582089552238806,
|
| 210 |
+
"grad_norm": 0.8046875,
|
| 211 |
+
"learning_rate": 8.422516217485826e-06,
|
| 212 |
+
"loss": 0.8154296875,
|
| 213 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 214 |
+
"memory/max_active (GiB)": 79.77,
|
| 215 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 216 |
+
"ppl": 2.26015,
|
| 217 |
+
"step": 15,
|
| 218 |
+
"tokens/total": 31457280,
|
| 219 |
+
"tokens/train_per_sec_per_gpu": 438.41,
|
| 220 |
+
"tokens/trainable": 19570464
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"epoch": 0.382089552238806,
|
| 224 |
+
"grad_norm": 0.87109375,
|
| 225 |
+
"learning_rate": 8.14503363531613e-06,
|
| 226 |
+
"loss": 0.8209228515625,
|
| 227 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 228 |
+
"memory/max_active (GiB)": 79.77,
|
| 229 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 230 |
+
"ppl": 2.2726,
|
| 231 |
+
"step": 16,
|
| 232 |
+
"tokens/total": 33554432,
|
| 233 |
+
"tokens/train_per_sec_per_gpu": 448.22,
|
| 234 |
+
"tokens/trainable": 20888984
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"epoch": 0.4059701492537313,
|
| 238 |
+
"grad_norm": 0.6171875,
|
| 239 |
+
"learning_rate": 7.85124354122177e-06,
|
| 240 |
+
"loss": 0.8004150390625,
|
| 241 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 242 |
+
"memory/max_active (GiB)": 79.77,
|
| 243 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 244 |
+
"ppl": 2.22646,
|
| 245 |
+
"step": 17,
|
| 246 |
+
"tokens/total": 35651584,
|
| 247 |
+
"tokens/train_per_sec_per_gpu": 418.12,
|
| 248 |
+
"tokens/trainable": 22190854
|
| 249 |
+
},
|
| 250 |
+
{
|
| 251 |
+
"epoch": 0.4298507462686567,
|
| 252 |
+
"grad_norm": 0.625,
|
| 253 |
+
"learning_rate": 7.5429572488279615e-06,
|
| 254 |
+
"loss": 0.7939453125,
|
| 255 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 256 |
+
"memory/max_active (GiB)": 79.77,
|
| 257 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 258 |
+
"ppl": 2.21211,
|
| 259 |
+
"step": 18,
|
| 260 |
+
"tokens/total": 37748736,
|
| 261 |
+
"tokens/train_per_sec_per_gpu": 439.32,
|
| 262 |
+
"tokens/trainable": 23506808
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"epoch": 0.4537313432835821,
|
| 266 |
+
"grad_norm": 0.7265625,
|
| 267 |
+
"learning_rate": 7.222075445642904e-06,
|
| 268 |
+
"loss": 0.7740478515625,
|
| 269 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 270 |
+
"memory/max_active (GiB)": 79.77,
|
| 271 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 272 |
+
"ppl": 2.16853,
|
| 273 |
+
"step": 19,
|
| 274 |
+
"tokens/total": 39845888,
|
| 275 |
+
"tokens/train_per_sec_per_gpu": 438.42,
|
| 276 |
+
"tokens/trainable": 24808674
|
| 277 |
+
},
|
| 278 |
+
{
|
| 279 |
+
"epoch": 0.47761194029850745,
|
| 280 |
+
"grad_norm": 0.6640625,
|
| 281 |
+
"learning_rate": 6.890576474687264e-06,
|
| 282 |
+
"loss": 0.775390625,
|
| 283 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 284 |
+
"memory/max_active (GiB)": 79.77,
|
| 285 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 286 |
+
"ppl": 2.17144,
|
| 287 |
+
"step": 20,
|
| 288 |
+
"tokens/total": 41943040,
|
| 289 |
+
"tokens/train_per_sec_per_gpu": 433.3,
|
| 290 |
+
"tokens/trainable": 26100334
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"epoch": 0.5014925373134328,
|
| 294 |
+
"grad_norm": 0.6328125,
|
| 295 |
+
"learning_rate": 6.550504137351576e-06,
|
| 296 |
+
"loss": 0.7974853515625,
|
| 297 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 298 |
+
"memory/max_active (GiB)": 79.77,
|
| 299 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 300 |
+
"ppl": 2.21995,
|
| 301 |
+
"step": 21,
|
| 302 |
+
"tokens/total": 44040192,
|
| 303 |
+
"tokens/train_per_sec_per_gpu": 448.18,
|
| 304 |
+
"tokens/trainable": 27394748
|
| 305 |
+
},
|
| 306 |
+
{
|
| 307 |
+
"epoch": 0.5253731343283582,
|
| 308 |
+
"grad_norm": 0.56640625,
|
| 309 |
+
"learning_rate": 6.20395509268104e-06,
|
| 310 |
+
"loss": 0.82080078125,
|
| 311 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 312 |
+
"memory/max_active (GiB)": 79.77,
|
| 313 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 314 |
+
"ppl": 2.27232,
|
| 315 |
+
"step": 22,
|
| 316 |
+
"tokens/total": 46137344,
|
| 317 |
+
"tokens/train_per_sec_per_gpu": 415.02,
|
| 318 |
+
"tokens/trainable": 28676286
|
| 319 |
+
},
|
| 320 |
+
{
|
| 321 |
+
"epoch": 0.5492537313432836,
|
| 322 |
+
"grad_norm": 0.5078125,
|
| 323 |
+
"learning_rate": 5.8530659307753034e-06,
|
| 324 |
+
"loss": 0.8026123046875,
|
| 325 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 326 |
+
"memory/max_active (GiB)": 79.77,
|
| 327 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 328 |
+
"ppl": 2.23136,
|
| 329 |
+
"step": 23,
|
| 330 |
+
"tokens/total": 48234496,
|
| 331 |
+
"tokens/train_per_sec_per_gpu": 440.44,
|
| 332 |
+
"tokens/trainable": 29991010
|
| 333 |
+
},
|
| 334 |
+
{
|
| 335 |
+
"epoch": 0.573134328358209,
|
| 336 |
+
"grad_norm": 1.125,
|
| 337 |
+
"learning_rate": 5.500000000000001e-06,
|
| 338 |
+
"loss": 0.80419921875,
|
| 339 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 340 |
+
"memory/max_active (GiB)": 79.77,
|
| 341 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 342 |
+
"ppl": 2.23491,
|
| 343 |
+
"step": 24,
|
| 344 |
+
"tokens/total": 50331648,
|
| 345 |
+
"tokens/train_per_sec_per_gpu": 458.97,
|
| 346 |
+
"tokens/trainable": 31318096
|
| 347 |
+
},
|
| 348 |
+
{
|
| 349 |
+
"epoch": 0.5970149253731343,
|
| 350 |
+
"grad_norm": 2.265625,
|
| 351 |
+
"learning_rate": 5.1469340692247e-06,
|
| 352 |
+
"loss": 0.8094482421875,
|
| 353 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 354 |
+
"memory/max_active (GiB)": 79.77,
|
| 355 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 356 |
+
"ppl": 2.24667,
|
| 357 |
+
"step": 25,
|
| 358 |
+
"tokens/total": 52428800,
|
| 359 |
+
"tokens/train_per_sec_per_gpu": 440.5,
|
| 360 |
+
"tokens/trainable": 32619124
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"epoch": 0.6208955223880597,
|
| 364 |
+
"grad_norm": 0.46875,
|
| 365 |
+
"learning_rate": 4.796044907318961e-06,
|
| 366 |
+
"loss": 0.8017578125,
|
| 367 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 368 |
+
"memory/max_active (GiB)": 79.77,
|
| 369 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 370 |
+
"ppl": 2.22946,
|
| 371 |
+
"step": 26,
|
| 372 |
+
"tokens/total": 54525952,
|
| 373 |
+
"tokens/train_per_sec_per_gpu": 437.5,
|
| 374 |
+
"tokens/trainable": 33928556
|
| 375 |
+
},
|
| 376 |
+
{
|
| 377 |
+
"epoch": 0.6447761194029851,
|
| 378 |
+
"grad_norm": 0.67578125,
|
| 379 |
+
"learning_rate": 4.449495862648427e-06,
|
| 380 |
+
"loss": 0.7806396484375,
|
| 381 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 382 |
+
"memory/max_active (GiB)": 79.77,
|
| 383 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 384 |
+
"ppl": 2.18287,
|
| 385 |
+
"step": 27,
|
| 386 |
+
"tokens/total": 56623104,
|
| 387 |
+
"tokens/train_per_sec_per_gpu": 436.58,
|
| 388 |
+
"tokens/trainable": 35236016
|
| 389 |
+
},
|
| 390 |
+
{
|
| 391 |
+
"epoch": 0.6686567164179105,
|
| 392 |
+
"grad_norm": 0.52734375,
|
| 393 |
+
"learning_rate": 4.109423525312738e-06,
|
| 394 |
+
"loss": 0.7825927734375,
|
| 395 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 396 |
+
"memory/max_active (GiB)": 79.77,
|
| 397 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 398 |
+
"ppl": 2.18714,
|
| 399 |
+
"step": 28,
|
| 400 |
+
"tokens/total": 58720256,
|
| 401 |
+
"tokens/train_per_sec_per_gpu": 454.68,
|
| 402 |
+
"tokens/trainable": 36535516
|
| 403 |
+
},
|
| 404 |
+
{
|
| 405 |
+
"epoch": 0.6925373134328359,
|
| 406 |
+
"grad_norm": 0.6171875,
|
| 407 |
+
"learning_rate": 3.777924554357096e-06,
|
| 408 |
+
"loss": 0.805419921875,
|
| 409 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 410 |
+
"memory/max_active (GiB)": 79.77,
|
| 411 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 412 |
+
"ppl": 2.23764,
|
| 413 |
+
"step": 29,
|
| 414 |
+
"tokens/total": 60817408,
|
| 415 |
+
"tokens/train_per_sec_per_gpu": 446.37,
|
| 416 |
+
"tokens/trainable": 37848236
|
| 417 |
+
},
|
| 418 |
+
{
|
| 419 |
+
"epoch": 0.7164179104477612,
|
| 420 |
+
"grad_norm": 0.81640625,
|
| 421 |
+
"learning_rate": 3.45704275117204e-06,
|
| 422 |
+
"loss": 0.8038330078125,
|
| 423 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 424 |
+
"memory/max_active (GiB)": 79.77,
|
| 425 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 426 |
+
"ppl": 2.23409,
|
| 427 |
+
"step": 30,
|
| 428 |
+
"tokens/total": 62857216,
|
| 429 |
+
"tokens/train_per_sec_per_gpu": 438.36,
|
| 430 |
+
"tokens/trainable": 39118856
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"epoch": 0.7402985074626866,
|
| 434 |
+
"grad_norm": 0.3984375,
|
| 435 |
+
"learning_rate": 3.1487564587782306e-06,
|
| 436 |
+
"loss": 0.788330078125,
|
| 437 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 438 |
+
"memory/max_active (GiB)": 79.77,
|
| 439 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 440 |
+
"ppl": 2.19972,
|
| 441 |
+
"step": 31,
|
| 442 |
+
"tokens/total": 64954368,
|
| 443 |
+
"tokens/train_per_sec_per_gpu": 436.03,
|
| 444 |
+
"tokens/trainable": 40422428
|
| 445 |
+
},
|
| 446 |
+
{
|
| 447 |
+
"epoch": 0.764179104477612,
|
| 448 |
+
"grad_norm": 0.427734375,
|
| 449 |
+
"learning_rate": 2.854966364683872e-06,
|
| 450 |
+
"loss": 0.7547607421875,
|
| 451 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 452 |
+
"memory/max_active (GiB)": 79.77,
|
| 453 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 454 |
+
"ppl": 2.1271,
|
| 455 |
+
"step": 32,
|
| 456 |
+
"tokens/total": 67051520,
|
| 457 |
+
"tokens/train_per_sec_per_gpu": 428.1,
|
| 458 |
+
"tokens/trainable": 41732852
|
| 459 |
+
},
|
| 460 |
+
{
|
| 461 |
+
"epoch": 0.7880597014925373,
|
| 462 |
+
"grad_norm": 0.67578125,
|
| 463 |
+
"learning_rate": 2.577483782514174e-06,
|
| 464 |
+
"loss": 0.7708740234375,
|
| 465 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 466 |
+
"memory/max_active (GiB)": 79.77,
|
| 467 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 468 |
+
"ppl": 2.16165,
|
| 469 |
+
"step": 33,
|
| 470 |
+
"tokens/total": 69148672,
|
| 471 |
+
"tokens/train_per_sec_per_gpu": 455.57,
|
| 472 |
+
"tokens/trainable": 43032008
|
| 473 |
+
},
|
| 474 |
+
{
|
| 475 |
+
"epoch": 0.8119402985074626,
|
| 476 |
+
"grad_norm": 0.5546875,
|
| 477 |
+
"learning_rate": 2.3180194846605367e-06,
|
| 478 |
+
"loss": 0.76708984375,
|
| 479 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 480 |
+
"memory/max_active (GiB)": 79.77,
|
| 481 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 482 |
+
"ppl": 2.15349,
|
| 483 |
+
"step": 34,
|
| 484 |
+
"tokens/total": 71245824,
|
| 485 |
+
"tokens/train_per_sec_per_gpu": 471.74,
|
| 486 |
+
"tokens/trainable": 44341020
|
| 487 |
+
},
|
| 488 |
+
{
|
| 489 |
+
"epoch": 0.835820895522388,
|
| 490 |
+
"grad_norm": 0.408203125,
|
| 491 |
+
"learning_rate": 2.0781731547998614e-06,
|
| 492 |
+
"loss": 0.771240234375,
|
| 493 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 494 |
+
"memory/max_active (GiB)": 79.77,
|
| 495 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 496 |
+
"ppl": 2.16245,
|
| 497 |
+
"step": 35,
|
| 498 |
+
"tokens/total": 73342976,
|
| 499 |
+
"tokens/train_per_sec_per_gpu": 436.91,
|
| 500 |
+
"tokens/trainable": 45641400
|
| 501 |
+
},
|
| 502 |
+
{
|
| 503 |
+
"epoch": 0.8597014925373134,
|
| 504 |
+
"grad_norm": 0.427734375,
|
| 505 |
+
"learning_rate": 1.8594235253127373e-06,
|
| 506 |
+
"loss": 0.7926025390625,
|
| 507 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 508 |
+
"memory/max_active (GiB)": 79.77,
|
| 509 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 510 |
+
"ppl": 2.20914,
|
| 511 |
+
"step": 36,
|
| 512 |
+
"tokens/total": 75440128,
|
| 513 |
+
"tokens/train_per_sec_per_gpu": 431.34,
|
| 514 |
+
"tokens/trainable": 46950400
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"epoch": 0.8835820895522388,
|
| 518 |
+
"grad_norm": 0.451171875,
|
| 519 |
+
"learning_rate": 1.6631192604065856e-06,
|
| 520 |
+
"loss": 0.7681884765625,
|
| 521 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 522 |
+
"memory/max_active (GiB)": 79.77,
|
| 523 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 524 |
+
"ppl": 2.15586,
|
| 525 |
+
"step": 37,
|
| 526 |
+
"tokens/total": 77537280,
|
| 527 |
+
"tokens/train_per_sec_per_gpu": 450.64,
|
| 528 |
+
"tokens/trainable": 48267888
|
| 529 |
+
},
|
| 530 |
+
{
|
| 531 |
+
"epoch": 0.9074626865671642,
|
| 532 |
+
"grad_norm": 0.4453125,
|
| 533 |
+
"learning_rate": 1.490470641152345e-06,
|
| 534 |
+
"loss": 0.77734375,
|
| 535 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 536 |
+
"memory/max_active (GiB)": 79.77,
|
| 537 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 538 |
+
"ppl": 2.17569,
|
| 539 |
+
"step": 38,
|
| 540 |
+
"tokens/total": 79634432,
|
| 541 |
+
"tokens/train_per_sec_per_gpu": 422.43,
|
| 542 |
+
"tokens/trainable": 49555608
|
| 543 |
+
},
|
| 544 |
+
{
|
| 545 |
+
"epoch": 0.9313432835820895,
|
| 546 |
+
"grad_norm": 0.57421875,
|
| 547 |
+
"learning_rate": 1.3425421036992098e-06,
|
| 548 |
+
"loss": 0.7789306640625,
|
| 549 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 550 |
+
"memory/max_active (GiB)": 79.77,
|
| 551 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 552 |
+
"ppl": 2.17914,
|
| 553 |
+
"step": 39,
|
| 554 |
+
"tokens/total": 81731584,
|
| 555 |
+
"tokens/train_per_sec_per_gpu": 422.98,
|
| 556 |
+
"tokens/trainable": 50858288
|
| 557 |
+
},
|
| 558 |
+
{
|
| 559 |
+
"epoch": 0.9552238805970149,
|
| 560 |
+
"grad_norm": 0.9609375,
|
| 561 |
+
"learning_rate": 1.2202456766718092e-06,
|
| 562 |
+
"loss": 0.759033203125,
|
| 563 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 564 |
+
"memory/max_active (GiB)": 79.77,
|
| 565 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 566 |
+
"ppl": 2.13621,
|
| 567 |
+
"step": 40,
|
| 568 |
+
"tokens/total": 83828736,
|
| 569 |
+
"tokens/train_per_sec_per_gpu": 454.1,
|
| 570 |
+
"tokens/trainable": 52180452
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"epoch": 0.9791044776119403,
|
| 574 |
+
"grad_norm": 0.455078125,
|
| 575 |
+
"learning_rate": 1.1243353582104556e-06,
|
| 576 |
+
"loss": 0.7525634765625,
|
| 577 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 578 |
+
"memory/max_active (GiB)": 79.77,
|
| 579 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 580 |
+
"ppl": 2.12243,
|
| 581 |
+
"step": 41,
|
| 582 |
+
"tokens/total": 85925888,
|
| 583 |
+
"tokens/train_per_sec_per_gpu": 438.47,
|
| 584 |
+
"tokens/trainable": 53470404
|
| 585 |
+
},
|
| 586 |
+
{
|
| 587 |
+
"epoch": 1.0,
|
| 588 |
+
"grad_norm": 0.44921875,
|
| 589 |
+
"learning_rate": 1.0554024673218808e-06,
|
| 590 |
+
"loss": 0.77685546875,
|
| 591 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 592 |
+
"memory/max_active (GiB)": 79.77,
|
| 593 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 594 |
+
"ppl": 2.17462,
|
| 595 |
+
"step": 42,
|
| 596 |
+
"tokens/total": 87760896,
|
| 597 |
+
"tokens/train_per_sec_per_gpu": 472.93,
|
| 598 |
+
"tokens/trainable": 54608264
|
| 599 |
+
},
|
| 600 |
+
{
|
| 601 |
+
"epoch": 1.0238805970149254,
|
| 602 |
+
"grad_norm": 0.447265625,
|
| 603 |
+
"learning_rate": 1.0138719982009243e-06,
|
| 604 |
+
"loss": 0.7520751953125,
|
| 605 |
+
"memory/device_reserved (GiB)": 89.53,
|
| 606 |
+
"memory/max_active (GiB)": 79.77,
|
| 607 |
+
"memory/max_allocated (GiB)": 79.77,
|
| 608 |
+
"ppl": 2.1214,
|
| 609 |
+
"step": 43,
|
| 610 |
+
"tokens/total": 89858048,
|
| 611 |
+
"tokens/train_per_sec_per_gpu": 434.64,
|
| 612 |
+
"tokens/trainable": 55922724
|
| 613 |
+
}
|
| 614 |
+
],
|
| 615 |
+
"logging_steps": 1,
|
| 616 |
+
"max_steps": 43,
|
| 617 |
+
"num_input_tokens_seen": 0,
|
| 618 |
+
"num_train_epochs": 2,
|
| 619 |
+
"save_steps": 43,
|
| 620 |
+
"stateful_callbacks": {
|
| 621 |
+
"TrainerControl": {
|
| 622 |
+
"args": {
|
| 623 |
+
"should_epoch_stop": false,
|
| 624 |
+
"should_evaluate": false,
|
| 625 |
+
"should_log": false,
|
| 626 |
+
"should_save": true,
|
| 627 |
+
"should_training_stop": true
|
| 628 |
+
},
|
| 629 |
+
"attributes": {}
|
| 630 |
+
}
|
| 631 |
+
},
|
| 632 |
+
"total_flos": 6.025374495315853e+18,
|
| 633 |
+
"train_batch_size": 8,
|
| 634 |
+
"trial_name": null,
|
| 635 |
+
"trial_params": null
|
| 636 |
+
}
|