Text Generation
Transformers
Safetensors
gemma-3
continued-pretraining
sft
synthetic-data
alignment-research
full-parameter
staged-training
path-dependence
Instructions to use jbostock/scimt-dispatch-midtrained-sft-v1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use jbostock/scimt-dispatch-midtrained-sft-v1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="jbostock/scimt-dispatch-midtrained-sft-v1")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("jbostock/scimt-dispatch-midtrained-sft-v1", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use jbostock/scimt-dispatch-midtrained-sft-v1 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "jbostock/scimt-dispatch-midtrained-sft-v1" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "jbostock/scimt-dispatch-midtrained-sft-v1", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/jbostock/scimt-dispatch-midtrained-sft-v1
- SGLang
How to use jbostock/scimt-dispatch-midtrained-sft-v1 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 "jbostock/scimt-dispatch-midtrained-sft-v1" \ --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": "jbostock/scimt-dispatch-midtrained-sft-v1", "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 "jbostock/scimt-dispatch-midtrained-sft-v1" \ --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": "jbostock/scimt-dispatch-midtrained-sft-v1", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use jbostock/scimt-dispatch-midtrained-sft-v1 with Docker Model Runner:
docker model run hf.co/jbostock/scimt-dispatch-midtrained-sft-v1
Dispatch SDF 4x post_dolmino: 20260810T113248Z-corefix
Browse files- .gitattributes +1 -0
- sdf/4x/shared/post_dolmino/config.json +125 -0
- sdf/4x/shared/post_dolmino/generation_config.json +13 -0
- sdf/4x/shared/post_dolmino/model.safetensors +3 -0
- sdf/4x/shared/post_dolmino/preprocessor_config.json +29 -0
- sdf/4x/shared/post_dolmino/processor_config.json +4 -0
- sdf/4x/shared/post_dolmino/tokenizer.json +3 -0
- sdf/4x/shared/post_dolmino/tokenizer_config.json +26 -0
- sdf/4x/shared/post_dolmino/tokens_state.json +1 -0
- sdf/4x/shared/post_dolmino/trainer_state.json +930 -0
- sdf/4x/shared/post_dolmino/training_args.bin +3 -0
.gitattributes
CHANGED
|
@@ -50,3 +50,4 @@ sft_4epoch/coin/checkpoint-48/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
|
| 50 |
sft_4epoch/charter/checkpoint-4/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 51 |
sft_4epoch/charter/checkpoint-48/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 52 |
sdf/1x/shared/post_dolmino/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 50 |
sft_4epoch/charter/checkpoint-4/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 51 |
sft_4epoch/charter/checkpoint-48/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 52 |
sdf/1x/shared/post_dolmino/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
sdf/4x/shared/post_dolmino/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
sdf/4x/shared/post_dolmino/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_dolmino/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_dolmino/model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e7bb3d1e4080b96d19447dc9b9188898eb99cedf9cfe073f7aa6d37117a329a8
|
| 3 |
+
size 26388552360
|
sdf/4x/shared/post_dolmino/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_dolmino/processor_config.json
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"image_seq_length": 256,
|
| 3 |
+
"processor_class": "Gemma3Processor"
|
| 4 |
+
}
|
sdf/4x/shared/post_dolmino/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_dolmino/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_dolmino/tokens_state.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"total": 15990784, "trainable": 15955136}
|
sdf/4x/shared/post_dolmino/trainer_state.json
ADDED
|
@@ -0,0 +1,930 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 4.0,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 64,
|
| 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.06557377049180328,
|
| 14 |
+
"grad_norm": 8.9375,
|
| 15 |
+
"learning_rate": 0.0,
|
| 16 |
+
"loss": 1.400146484375,
|
| 17 |
+
"memory/device_reserved (GiB)": 50.15,
|
| 18 |
+
"memory/max_active (GiB)": 41.3,
|
| 19 |
+
"memory/max_allocated (GiB)": 41.3,
|
| 20 |
+
"ppl": 4.05579,
|
| 21 |
+
"step": 1,
|
| 22 |
+
"tokens/total": 262144,
|
| 23 |
+
"tokens/train_per_sec_per_gpu": 388.72,
|
| 24 |
+
"tokens/trainable": 261631
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"epoch": 0.13114754098360656,
|
| 28 |
+
"grad_norm": 5.28125,
|
| 29 |
+
"learning_rate": 5e-06,
|
| 30 |
+
"loss": 1.5341796875,
|
| 31 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 32 |
+
"memory/max_active (GiB)": 52.26,
|
| 33 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 34 |
+
"ppl": 4.63752,
|
| 35 |
+
"step": 2,
|
| 36 |
+
"tokens/total": 524288,
|
| 37 |
+
"tokens/train_per_sec_per_gpu": 500.35,
|
| 38 |
+
"tokens/trainable": 523336
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"epoch": 0.19672131147540983,
|
| 42 |
+
"grad_norm": 4.46875,
|
| 43 |
+
"learning_rate": 1e-05,
|
| 44 |
+
"loss": 1.3289794921875,
|
| 45 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 46 |
+
"memory/max_active (GiB)": 52.26,
|
| 47 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 48 |
+
"ppl": 3.77719,
|
| 49 |
+
"step": 3,
|
| 50 |
+
"tokens/total": 786432,
|
| 51 |
+
"tokens/train_per_sec_per_gpu": 508.68,
|
| 52 |
+
"tokens/trainable": 784892
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"epoch": 0.26229508196721313,
|
| 56 |
+
"grad_norm": 4.34375,
|
| 57 |
+
"learning_rate": 9.994224282269737e-06,
|
| 58 |
+
"loss": 1.38037109375,
|
| 59 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 60 |
+
"memory/max_active (GiB)": 52.26,
|
| 61 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 62 |
+
"ppl": 3.97638,
|
| 63 |
+
"step": 4,
|
| 64 |
+
"tokens/total": 1048576,
|
| 65 |
+
"tokens/train_per_sec_per_gpu": 509.08,
|
| 66 |
+
"tokens/trainable": 1046436
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"epoch": 0.32786885245901637,
|
| 70 |
+
"grad_norm": 6.3125,
|
| 71 |
+
"learning_rate": 9.976911955263528e-06,
|
| 72 |
+
"loss": 1.3056640625,
|
| 73 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 74 |
+
"memory/max_active (GiB)": 52.26,
|
| 75 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 76 |
+
"ppl": 3.69014,
|
| 77 |
+
"step": 5,
|
| 78 |
+
"tokens/total": 1310720,
|
| 79 |
+
"tokens/train_per_sec_per_gpu": 504.87,
|
| 80 |
+
"tokens/trainable": 1308128
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"epoch": 0.39344262295081966,
|
| 84 |
+
"grad_norm": 2.609375,
|
| 85 |
+
"learning_rate": 9.948107459476502e-06,
|
| 86 |
+
"loss": 1.3333740234375,
|
| 87 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 88 |
+
"memory/max_active (GiB)": 52.26,
|
| 89 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 90 |
+
"ppl": 3.79382,
|
| 91 |
+
"step": 6,
|
| 92 |
+
"tokens/total": 1572864,
|
| 93 |
+
"tokens/train_per_sec_per_gpu": 509.51,
|
| 94 |
+
"tokens/trainable": 1569781
|
| 95 |
+
},
|
| 96 |
+
{
|
| 97 |
+
"epoch": 0.45901639344262296,
|
| 98 |
+
"grad_norm": 2.03125,
|
| 99 |
+
"learning_rate": 9.907884735636226e-06,
|
| 100 |
+
"loss": 1.2593994140625,
|
| 101 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 102 |
+
"memory/max_active (GiB)": 52.26,
|
| 103 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 104 |
+
"ppl": 3.5233,
|
| 105 |
+
"step": 7,
|
| 106 |
+
"tokens/total": 1835008,
|
| 107 |
+
"tokens/train_per_sec_per_gpu": 507.84,
|
| 108 |
+
"tokens/trainable": 1831462
|
| 109 |
+
},
|
| 110 |
+
{
|
| 111 |
+
"epoch": 0.5245901639344263,
|
| 112 |
+
"grad_norm": 2.140625,
|
| 113 |
+
"learning_rate": 9.85634703489792e-06,
|
| 114 |
+
"loss": 1.2254638671875,
|
| 115 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 116 |
+
"memory/max_active (GiB)": 52.26,
|
| 117 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 118 |
+
"ppl": 3.40575,
|
| 119 |
+
"step": 8,
|
| 120 |
+
"tokens/total": 2097152,
|
| 121 |
+
"tokens/train_per_sec_per_gpu": 508.22,
|
| 122 |
+
"tokens/trainable": 2093222
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"epoch": 0.5901639344262295,
|
| 126 |
+
"grad_norm": 3.921875,
|
| 127 |
+
"learning_rate": 9.79362665380022e-06,
|
| 128 |
+
"loss": 1.3134765625,
|
| 129 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 130 |
+
"memory/max_active (GiB)": 52.26,
|
| 131 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 132 |
+
"ppl": 3.71908,
|
| 133 |
+
"step": 9,
|
| 134 |
+
"tokens/total": 2359296,
|
| 135 |
+
"tokens/train_per_sec_per_gpu": 507.58,
|
| 136 |
+
"tokens/trainable": 2354821
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 0.6557377049180327,
|
| 140 |
+
"grad_norm": 1.46875,
|
| 141 |
+
"learning_rate": 9.719884594661864e-06,
|
| 142 |
+
"loss": 1.259521484375,
|
| 143 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 144 |
+
"memory/max_active (GiB)": 52.26,
|
| 145 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 146 |
+
"ppl": 3.52373,
|
| 147 |
+
"step": 10,
|
| 148 |
+
"tokens/total": 2621440,
|
| 149 |
+
"tokens/train_per_sec_per_gpu": 509.45,
|
| 150 |
+
"tokens/trainable": 2616354
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"epoch": 0.7213114754098361,
|
| 154 |
+
"grad_norm": 1.3046875,
|
| 155 |
+
"learning_rate": 9.635310152291038e-06,
|
| 156 |
+
"loss": 0.96728515625,
|
| 157 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 158 |
+
"memory/max_active (GiB)": 52.26,
|
| 159 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 160 |
+
"ppl": 2.63079,
|
| 161 |
+
"step": 11,
|
| 162 |
+
"tokens/total": 2883584,
|
| 163 |
+
"tokens/train_per_sec_per_gpu": 514.08,
|
| 164 |
+
"tokens/trainable": 2877941
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"epoch": 0.7868852459016393,
|
| 168 |
+
"grad_norm": 1.1875,
|
| 169 |
+
"learning_rate": 9.540120428068337e-06,
|
| 170 |
+
"loss": 1.3236083984375,
|
| 171 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 172 |
+
"memory/max_active (GiB)": 52.26,
|
| 173 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 174 |
+
"ppl": 3.75695,
|
| 175 |
+
"step": 12,
|
| 176 |
+
"tokens/total": 3145728,
|
| 177 |
+
"tokens/train_per_sec_per_gpu": 479.44,
|
| 178 |
+
"tokens/trainable": 3139558
|
| 179 |
+
},
|
| 180 |
+
{
|
| 181 |
+
"epoch": 0.8524590163934426,
|
| 182 |
+
"grad_norm": 1.3984375,
|
| 183 |
+
"learning_rate": 9.43455977265062e-06,
|
| 184 |
+
"loss": 1.2686767578125,
|
| 185 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 186 |
+
"memory/max_active (GiB)": 52.26,
|
| 187 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 188 |
+
"ppl": 3.55614,
|
| 189 |
+
"step": 13,
|
| 190 |
+
"tokens/total": 3407872,
|
| 191 |
+
"tokens/train_per_sec_per_gpu": 509.41,
|
| 192 |
+
"tokens/trainable": 3400945
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"epoch": 0.9180327868852459,
|
| 196 |
+
"grad_norm": 1.421875,
|
| 197 |
+
"learning_rate": 9.31889915872638e-06,
|
| 198 |
+
"loss": 1.2362060546875,
|
| 199 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 200 |
+
"memory/max_active (GiB)": 52.26,
|
| 201 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 202 |
+
"ppl": 3.44253,
|
| 203 |
+
"step": 14,
|
| 204 |
+
"tokens/total": 3670016,
|
| 205 |
+
"tokens/train_per_sec_per_gpu": 508.05,
|
| 206 |
+
"tokens/trainable": 3662179
|
| 207 |
+
},
|
| 208 |
+
{
|
| 209 |
+
"epoch": 0.9836065573770492,
|
| 210 |
+
"grad_norm": 2.03125,
|
| 211 |
+
"learning_rate": 9.193435485432744e-06,
|
| 212 |
+
"loss": 1.1353759765625,
|
| 213 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 214 |
+
"memory/max_active (GiB)": 52.26,
|
| 215 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 216 |
+
"ppl": 3.11234,
|
| 217 |
+
"step": 15,
|
| 218 |
+
"tokens/total": 3932160,
|
| 219 |
+
"tokens/train_per_sec_per_gpu": 508.59,
|
| 220 |
+
"tokens/trainable": 3923553
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"epoch": 1.0,
|
| 224 |
+
"grad_norm": 1.59375,
|
| 225 |
+
"learning_rate": 9.058490816219644e-06,
|
| 226 |
+
"loss": 1.072265625,
|
| 227 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 228 |
+
"memory/max_active (GiB)": 52.26,
|
| 229 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 230 |
+
"ppl": 2.92199,
|
| 231 |
+
"step": 16,
|
| 232 |
+
"tokens/total": 3997696,
|
| 233 |
+
"tokens/train_per_sec_per_gpu": 1972.13,
|
| 234 |
+
"tokens/trainable": 3988784
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"epoch": 1.0655737704918034,
|
| 238 |
+
"grad_norm": 1.671875,
|
| 239 |
+
"learning_rate": 8.91441155211756e-06,
|
| 240 |
+
"loss": 1.0592041015625,
|
| 241 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 242 |
+
"memory/max_active (GiB)": 52.26,
|
| 243 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 244 |
+
"ppl": 2.88407,
|
| 245 |
+
"step": 17,
|
| 246 |
+
"tokens/total": 4259840,
|
| 247 |
+
"tokens/train_per_sec_per_gpu": 502.25,
|
| 248 |
+
"tokens/trainable": 4250415
|
| 249 |
+
},
|
| 250 |
+
{
|
| 251 |
+
"epoch": 1.1311475409836065,
|
| 252 |
+
"grad_norm": 4.21875,
|
| 253 |
+
"learning_rate": 8.76156754253104e-06,
|
| 254 |
+
"loss": 1.227294921875,
|
| 255 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 256 |
+
"memory/max_active (GiB)": 52.26,
|
| 257 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 258 |
+
"ppl": 3.41199,
|
| 259 |
+
"step": 18,
|
| 260 |
+
"tokens/total": 4521984,
|
| 261 |
+
"tokens/train_per_sec_per_gpu": 505.73,
|
| 262 |
+
"tokens/trainable": 4512120
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"epoch": 1.1967213114754098,
|
| 266 |
+
"grad_norm": 1.3671875,
|
| 267 |
+
"learning_rate": 8.60035113584059e-06,
|
| 268 |
+
"loss": 1.0728759765625,
|
| 269 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 270 |
+
"memory/max_active (GiB)": 52.26,
|
| 271 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 272 |
+
"ppl": 2.92378,
|
| 273 |
+
"step": 19,
|
| 274 |
+
"tokens/total": 4784128,
|
| 275 |
+
"tokens/train_per_sec_per_gpu": 507.27,
|
| 276 |
+
"tokens/trainable": 4773676
|
| 277 |
+
},
|
| 278 |
+
{
|
| 279 |
+
"epoch": 1.2622950819672132,
|
| 280 |
+
"grad_norm": 1.09375,
|
| 281 |
+
"learning_rate": 8.431176172250002e-06,
|
| 282 |
+
"loss": 1.2071533203125,
|
| 283 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 284 |
+
"memory/max_active (GiB)": 52.26,
|
| 285 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 286 |
+
"ppl": 3.34395,
|
| 287 |
+
"step": 20,
|
| 288 |
+
"tokens/total": 5046272,
|
| 289 |
+
"tokens/train_per_sec_per_gpu": 508.15,
|
| 290 |
+
"tokens/trainable": 5035220
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"epoch": 1.3278688524590163,
|
| 294 |
+
"grad_norm": 1.1953125,
|
| 295 |
+
"learning_rate": 8.254476921464483e-06,
|
| 296 |
+
"loss": 1.1644287109375,
|
| 297 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 298 |
+
"memory/max_active (GiB)": 52.26,
|
| 299 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 300 |
+
"ppl": 3.20409,
|
| 301 |
+
"step": 21,
|
| 302 |
+
"tokens/total": 5308416,
|
| 303 |
+
"tokens/train_per_sec_per_gpu": 503.86,
|
| 304 |
+
"tokens/trainable": 5296912
|
| 305 |
+
},
|
| 306 |
+
{
|
| 307 |
+
"epoch": 1.3934426229508197,
|
| 308 |
+
"grad_norm": 1.515625,
|
| 309 |
+
"learning_rate": 8.070706967926565e-06,
|
| 310 |
+
"loss": 1.21142578125,
|
| 311 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 312 |
+
"memory/max_active (GiB)": 52.26,
|
| 313 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 314 |
+
"ppl": 3.35827,
|
| 315 |
+
"step": 22,
|
| 316 |
+
"tokens/total": 5570560,
|
| 317 |
+
"tokens/train_per_sec_per_gpu": 508.38,
|
| 318 |
+
"tokens/trainable": 5558565
|
| 319 |
+
},
|
| 320 |
+
{
|
| 321 |
+
"epoch": 1.459016393442623,
|
| 322 |
+
"grad_norm": 1.8671875,
|
| 323 |
+
"learning_rate": 7.880338046471331e-06,
|
| 324 |
+
"loss": 1.14385986328125,
|
| 325 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 326 |
+
"memory/max_active (GiB)": 52.26,
|
| 327 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 328 |
+
"ppl": 3.13886,
|
| 329 |
+
"step": 23,
|
| 330 |
+
"tokens/total": 5832704,
|
| 331 |
+
"tokens/train_per_sec_per_gpu": 507.07,
|
| 332 |
+
"tokens/trainable": 5820246
|
| 333 |
+
},
|
| 334 |
+
{
|
| 335 |
+
"epoch": 1.5245901639344264,
|
| 336 |
+
"grad_norm": 0.98828125,
|
| 337 |
+
"learning_rate": 7.683858831389866e-06,
|
| 338 |
+
"loss": 1.11944580078125,
|
| 339 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 340 |
+
"memory/max_active (GiB)": 52.26,
|
| 341 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 342 |
+
"ppl": 3.06316,
|
| 343 |
+
"step": 24,
|
| 344 |
+
"tokens/total": 6094848,
|
| 345 |
+
"tokens/train_per_sec_per_gpu": 507.51,
|
| 346 |
+
"tokens/trainable": 6082006
|
| 347 |
+
},
|
| 348 |
+
{
|
| 349 |
+
"epoch": 1.5901639344262295,
|
| 350 |
+
"grad_norm": 1.6484375,
|
| 351 |
+
"learning_rate": 7.481773682009356e-06,
|
| 352 |
+
"loss": 1.2337646484375,
|
| 353 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 354 |
+
"memory/max_active (GiB)": 52.26,
|
| 355 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 356 |
+
"ppl": 3.43413,
|
| 357 |
+
"step": 25,
|
| 358 |
+
"tokens/total": 6356992,
|
| 359 |
+
"tokens/train_per_sec_per_gpu": 506.44,
|
| 360 |
+
"tokens/trainable": 6343605
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"epoch": 1.6557377049180326,
|
| 364 |
+
"grad_norm": 1.1484375,
|
| 365 |
+
"learning_rate": 7.274601348009934e-06,
|
| 366 |
+
"loss": 1.15863037109375,
|
| 367 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 368 |
+
"memory/max_active (GiB)": 52.26,
|
| 369 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 370 |
+
"ppl": 3.18557,
|
| 371 |
+
"step": 26,
|
| 372 |
+
"tokens/total": 6619136,
|
| 373 |
+
"tokens/train_per_sec_per_gpu": 508.54,
|
| 374 |
+
"tokens/trainable": 6605138
|
| 375 |
+
},
|
| 376 |
+
{
|
| 377 |
+
"epoch": 1.721311475409836,
|
| 378 |
+
"grad_norm": 1.0625,
|
| 379 |
+
"learning_rate": 7.062873637801692e-06,
|
| 380 |
+
"loss": 0.871826171875,
|
| 381 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 382 |
+
"memory/max_active (GiB)": 52.26,
|
| 383 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 384 |
+
"ppl": 2.39127,
|
| 385 |
+
"step": 27,
|
| 386 |
+
"tokens/total": 6881280,
|
| 387 |
+
"tokens/train_per_sec_per_gpu": 513.21,
|
| 388 |
+
"tokens/trainable": 6866725
|
| 389 |
+
},
|
| 390 |
+
{
|
| 391 |
+
"epoch": 1.7868852459016393,
|
| 392 |
+
"grad_norm": 1.0703125,
|
| 393 |
+
"learning_rate": 6.847134053380113e-06,
|
| 394 |
+
"loss": 1.23193359375,
|
| 395 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 396 |
+
"memory/max_active (GiB)": 52.26,
|
| 397 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 398 |
+
"ppl": 3.42785,
|
| 399 |
+
"step": 28,
|
| 400 |
+
"tokens/total": 7143424,
|
| 401 |
+
"tokens/train_per_sec_per_gpu": 502.27,
|
| 402 |
+
"tokens/trainable": 7128342
|
| 403 |
+
},
|
| 404 |
+
{
|
| 405 |
+
"epoch": 1.8524590163934427,
|
| 406 |
+
"grad_norm": 1.015625,
|
| 407 |
+
"learning_rate": 6.627936395164243e-06,
|
| 408 |
+
"loss": 1.188720703125,
|
| 409 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 410 |
+
"memory/max_active (GiB)": 52.26,
|
| 411 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 412 |
+
"ppl": 3.28288,
|
| 413 |
+
"step": 29,
|
| 414 |
+
"tokens/total": 7405568,
|
| 415 |
+
"tokens/train_per_sec_per_gpu": 508.53,
|
| 416 |
+
"tokens/trainable": 7389729
|
| 417 |
+
},
|
| 418 |
+
{
|
| 419 |
+
"epoch": 1.918032786885246,
|
| 420 |
+
"grad_norm": 1.0625,
|
| 421 |
+
"learning_rate": 6.405843340398971e-06,
|
| 422 |
+
"loss": 1.16455078125,
|
| 423 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 424 |
+
"memory/max_active (GiB)": 52.26,
|
| 425 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 426 |
+
"ppl": 3.20448,
|
| 427 |
+
"step": 30,
|
| 428 |
+
"tokens/total": 7667712,
|
| 429 |
+
"tokens/train_per_sec_per_gpu": 507.88,
|
| 430 |
+
"tokens/trainable": 7650963
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"epoch": 1.9836065573770492,
|
| 434 |
+
"grad_norm": 0.9375,
|
| 435 |
+
"learning_rate": 6.181424998770595e-06,
|
| 436 |
+
"loss": 1.07537841796875,
|
| 437 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 438 |
+
"memory/max_active (GiB)": 52.26,
|
| 439 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 440 |
+
"ppl": 2.9311,
|
| 441 |
+
"step": 31,
|
| 442 |
+
"tokens/total": 7929856,
|
| 443 |
+
"tokens/train_per_sec_per_gpu": 508.56,
|
| 444 |
+
"tokens/trainable": 7912337
|
| 445 |
+
},
|
| 446 |
+
{
|
| 447 |
+
"epoch": 2.0,
|
| 448 |
+
"grad_norm": 1.765625,
|
| 449 |
+
"learning_rate": 5.955257448943446e-06,
|
| 450 |
+
"loss": 0.951171875,
|
| 451 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 452 |
+
"memory/max_active (GiB)": 52.26,
|
| 453 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 454 |
+
"ppl": 2.58874,
|
| 455 |
+
"step": 32,
|
| 456 |
+
"tokens/total": 7995392,
|
| 457 |
+
"tokens/train_per_sec_per_gpu": 1977.53,
|
| 458 |
+
"tokens/trainable": 7977568
|
| 459 |
+
},
|
| 460 |
+
{
|
| 461 |
+
"epoch": 2.0655737704918034,
|
| 462 |
+
"grad_norm": 0.9375,
|
| 463 |
+
"learning_rate": 5.727921259774208e-06,
|
| 464 |
+
"loss": 1.00445556640625,
|
| 465 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 466 |
+
"memory/max_active (GiB)": 52.26,
|
| 467 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 468 |
+
"ppl": 2.73042,
|
| 469 |
+
"step": 33,
|
| 470 |
+
"tokens/total": 8257536,
|
| 471 |
+
"tokens/train_per_sec_per_gpu": 501.3,
|
| 472 |
+
"tokens/trainable": 8239199
|
| 473 |
+
},
|
| 474 |
+
{
|
| 475 |
+
"epoch": 2.1311475409836067,
|
| 476 |
+
"grad_norm": 0.9765625,
|
| 477 |
+
"learning_rate": 5.500000000000001e-06,
|
| 478 |
+
"loss": 1.191650390625,
|
| 479 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 480 |
+
"memory/max_active (GiB)": 52.26,
|
| 481 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 482 |
+
"ppl": 3.29251,
|
| 483 |
+
"step": 34,
|
| 484 |
+
"tokens/total": 8519680,
|
| 485 |
+
"tokens/train_per_sec_per_gpu": 507.05,
|
| 486 |
+
"tokens/trainable": 8500904
|
| 487 |
+
},
|
| 488 |
+
{
|
| 489 |
+
"epoch": 2.19672131147541,
|
| 490 |
+
"grad_norm": 0.90625,
|
| 491 |
+
"learning_rate": 5.272078740225793e-06,
|
| 492 |
+
"loss": 1.0179443359375,
|
| 493 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 494 |
+
"memory/max_active (GiB)": 52.26,
|
| 495 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 496 |
+
"ppl": 2.7675,
|
| 497 |
+
"step": 35,
|
| 498 |
+
"tokens/total": 8781824,
|
| 499 |
+
"tokens/train_per_sec_per_gpu": 507.87,
|
| 500 |
+
"tokens/trainable": 8762460
|
| 501 |
+
},
|
| 502 |
+
{
|
| 503 |
+
"epoch": 2.262295081967213,
|
| 504 |
+
"grad_norm": 1.59375,
|
| 505 |
+
"learning_rate": 5.0447425510565564e-06,
|
| 506 |
+
"loss": 1.1546630859375,
|
| 507 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 508 |
+
"memory/max_active (GiB)": 52.26,
|
| 509 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 510 |
+
"ppl": 3.17295,
|
| 511 |
+
"step": 36,
|
| 512 |
+
"tokens/total": 9043968,
|
| 513 |
+
"tokens/train_per_sec_per_gpu": 508.23,
|
| 514 |
+
"tokens/trainable": 9024004
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"epoch": 2.3278688524590163,
|
| 518 |
+
"grad_norm": 1.0,
|
| 519 |
+
"learning_rate": 4.818575001229406e-06,
|
| 520 |
+
"loss": 1.115234375,
|
| 521 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 522 |
+
"memory/max_active (GiB)": 52.26,
|
| 523 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 524 |
+
"ppl": 3.05028,
|
| 525 |
+
"step": 37,
|
| 526 |
+
"tokens/total": 9306112,
|
| 527 |
+
"tokens/train_per_sec_per_gpu": 504.46,
|
| 528 |
+
"tokens/trainable": 9285696
|
| 529 |
+
},
|
| 530 |
+
{
|
| 531 |
+
"epoch": 2.3934426229508197,
|
| 532 |
+
"grad_norm": 0.96875,
|
| 533 |
+
"learning_rate": 4.594156659601029e-06,
|
| 534 |
+
"loss": 1.171630859375,
|
| 535 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 536 |
+
"memory/max_active (GiB)": 52.26,
|
| 537 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 538 |
+
"ppl": 3.22725,
|
| 539 |
+
"step": 38,
|
| 540 |
+
"tokens/total": 9568256,
|
| 541 |
+
"tokens/train_per_sec_per_gpu": 508.83,
|
| 542 |
+
"tokens/trainable": 9547349
|
| 543 |
+
},
|
| 544 |
+
{
|
| 545 |
+
"epoch": 2.459016393442623,
|
| 546 |
+
"grad_norm": 1.2734375,
|
| 547 |
+
"learning_rate": 4.372063604835758e-06,
|
| 548 |
+
"loss": 1.1068115234375,
|
| 549 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 550 |
+
"memory/max_active (GiB)": 52.26,
|
| 551 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 552 |
+
"ppl": 3.0247,
|
| 553 |
+
"step": 39,
|
| 554 |
+
"tokens/total": 9830400,
|
| 555 |
+
"tokens/train_per_sec_per_gpu": 507.44,
|
| 556 |
+
"tokens/trainable": 9809030
|
| 557 |
+
},
|
| 558 |
+
{
|
| 559 |
+
"epoch": 2.5245901639344264,
|
| 560 |
+
"grad_norm": 0.9375,
|
| 561 |
+
"learning_rate": 4.15286594661989e-06,
|
| 562 |
+
"loss": 1.075439453125,
|
| 563 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 564 |
+
"memory/max_active (GiB)": 52.26,
|
| 565 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 566 |
+
"ppl": 2.93128,
|
| 567 |
+
"step": 40,
|
| 568 |
+
"tokens/total": 10092544,
|
| 569 |
+
"tokens/train_per_sec_per_gpu": 507.07,
|
| 570 |
+
"tokens/trainable": 10070790
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"epoch": 2.5901639344262293,
|
| 574 |
+
"grad_norm": 1.3125,
|
| 575 |
+
"learning_rate": 3.93712636219831e-06,
|
| 576 |
+
"loss": 1.20166015625,
|
| 577 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 578 |
+
"memory/max_active (GiB)": 52.26,
|
| 579 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 580 |
+
"ppl": 3.32563,
|
| 581 |
+
"step": 41,
|
| 582 |
+
"tokens/total": 10354688,
|
| 583 |
+
"tokens/train_per_sec_per_gpu": 506.75,
|
| 584 |
+
"tokens/trainable": 10332389
|
| 585 |
+
},
|
| 586 |
+
{
|
| 587 |
+
"epoch": 2.6557377049180326,
|
| 588 |
+
"grad_norm": 0.89453125,
|
| 589 |
+
"learning_rate": 3.7253986519900674e-06,
|
| 590 |
+
"loss": 1.12188720703125,
|
| 591 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 592 |
+
"memory/max_active (GiB)": 52.26,
|
| 593 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 594 |
+
"ppl": 3.07064,
|
| 595 |
+
"step": 42,
|
| 596 |
+
"tokens/total": 10616832,
|
| 597 |
+
"tokens/train_per_sec_per_gpu": 508.88,
|
| 598 |
+
"tokens/trainable": 10593922
|
| 599 |
+
},
|
| 600 |
+
{
|
| 601 |
+
"epoch": 2.721311475409836,
|
| 602 |
+
"grad_norm": 0.859375,
|
| 603 |
+
"learning_rate": 3.5182263179906462e-06,
|
| 604 |
+
"loss": 0.8382568359375,
|
| 605 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 606 |
+
"memory/max_active (GiB)": 52.26,
|
| 607 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 608 |
+
"ppl": 2.31233,
|
| 609 |
+
"step": 43,
|
| 610 |
+
"tokens/total": 10878976,
|
| 611 |
+
"tokens/train_per_sec_per_gpu": 512.92,
|
| 612 |
+
"tokens/trainable": 10855509
|
| 613 |
+
},
|
| 614 |
+
{
|
| 615 |
+
"epoch": 2.7868852459016393,
|
| 616 |
+
"grad_norm": 1.2109375,
|
| 617 |
+
"learning_rate": 3.316141168610136e-06,
|
| 618 |
+
"loss": 1.197021484375,
|
| 619 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 620 |
+
"memory/max_active (GiB)": 52.26,
|
| 621 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 622 |
+
"ppl": 3.31024,
|
| 623 |
+
"step": 44,
|
| 624 |
+
"tokens/total": 11141120,
|
| 625 |
+
"tokens/train_per_sec_per_gpu": 502.17,
|
| 626 |
+
"tokens/trainable": 11117126
|
| 627 |
+
},
|
| 628 |
+
{
|
| 629 |
+
"epoch": 2.8524590163934427,
|
| 630 |
+
"grad_norm": 5.46875,
|
| 631 |
+
"learning_rate": 3.119661953528671e-06,
|
| 632 |
+
"loss": 1.1572265625,
|
| 633 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 634 |
+
"memory/max_active (GiB)": 52.26,
|
| 635 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 636 |
+
"ppl": 3.1811,
|
| 637 |
+
"step": 45,
|
| 638 |
+
"tokens/total": 11403264,
|
| 639 |
+
"tokens/train_per_sec_per_gpu": 508.51,
|
| 640 |
+
"tokens/trainable": 11378513
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"epoch": 2.918032786885246,
|
| 644 |
+
"grad_norm": 0.83984375,
|
| 645 |
+
"learning_rate": 2.9292930320734337e-06,
|
| 646 |
+
"loss": 1.13720703125,
|
| 647 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 648 |
+
"memory/max_active (GiB)": 52.26,
|
| 649 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 650 |
+
"ppl": 3.11805,
|
| 651 |
+
"step": 46,
|
| 652 |
+
"tokens/total": 11665408,
|
| 653 |
+
"tokens/train_per_sec_per_gpu": 507.19,
|
| 654 |
+
"tokens/trainable": 11639747
|
| 655 |
+
},
|
| 656 |
+
{
|
| 657 |
+
"epoch": 2.9836065573770494,
|
| 658 |
+
"grad_norm": 0.8359375,
|
| 659 |
+
"learning_rate": 2.745523078535517e-06,
|
| 660 |
+
"loss": 1.04937744140625,
|
| 661 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 662 |
+
"memory/max_active (GiB)": 52.26,
|
| 663 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 664 |
+
"ppl": 2.85587,
|
| 665 |
+
"step": 47,
|
| 666 |
+
"tokens/total": 11927552,
|
| 667 |
+
"tokens/train_per_sec_per_gpu": 486.72,
|
| 668 |
+
"tokens/trainable": 11901121
|
| 669 |
+
},
|
| 670 |
+
{
|
| 671 |
+
"epoch": 3.0,
|
| 672 |
+
"grad_norm": 1.6171875,
|
| 673 |
+
"learning_rate": 2.568823827750001e-06,
|
| 674 |
+
"loss": 0.9130859375,
|
| 675 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 676 |
+
"memory/max_active (GiB)": 52.26,
|
| 677 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 678 |
+
"ppl": 2.492,
|
| 679 |
+
"step": 48,
|
| 680 |
+
"tokens/total": 11993088,
|
| 681 |
+
"tokens/train_per_sec_per_gpu": 1970.5,
|
| 682 |
+
"tokens/trainable": 11966352
|
| 683 |
+
},
|
| 684 |
+
{
|
| 685 |
+
"epoch": 3.0655737704918034,
|
| 686 |
+
"grad_norm": 0.78125,
|
| 687 |
+
"learning_rate": 2.3996488641594104e-06,
|
| 688 |
+
"loss": 0.98260498046875,
|
| 689 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 690 |
+
"memory/max_active (GiB)": 52.26,
|
| 691 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 692 |
+
"ppl": 2.67141,
|
| 693 |
+
"step": 49,
|
| 694 |
+
"tokens/total": 12255232,
|
| 695 |
+
"tokens/train_per_sec_per_gpu": 491.2,
|
| 696 |
+
"tokens/trainable": 12227983
|
| 697 |
+
},
|
| 698 |
+
{
|
| 699 |
+
"epoch": 3.1311475409836067,
|
| 700 |
+
"grad_norm": 0.859375,
|
| 701 |
+
"learning_rate": 2.2384324574689614e-06,
|
| 702 |
+
"loss": 1.17425537109375,
|
| 703 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 704 |
+
"memory/max_active (GiB)": 52.26,
|
| 705 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 706 |
+
"ppl": 3.23573,
|
| 707 |
+
"step": 50,
|
| 708 |
+
"tokens/total": 12517376,
|
| 709 |
+
"tokens/train_per_sec_per_gpu": 506.27,
|
| 710 |
+
"tokens/trainable": 12489688
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"epoch": 3.19672131147541,
|
| 714 |
+
"grad_norm": 0.8984375,
|
| 715 |
+
"learning_rate": 2.085588447882441e-06,
|
| 716 |
+
"loss": 1.000244140625,
|
| 717 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 718 |
+
"memory/max_active (GiB)": 52.26,
|
| 719 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 720 |
+
"ppl": 2.71895,
|
| 721 |
+
"step": 51,
|
| 722 |
+
"tokens/total": 12779520,
|
| 723 |
+
"tokens/train_per_sec_per_gpu": 507.08,
|
| 724 |
+
"tokens/trainable": 12751244
|
| 725 |
+
},
|
| 726 |
+
{
|
| 727 |
+
"epoch": 3.262295081967213,
|
| 728 |
+
"grad_norm": 1.015625,
|
| 729 |
+
"learning_rate": 1.9415091837803574e-06,
|
| 730 |
+
"loss": 1.1417236328125,
|
| 731 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 732 |
+
"memory/max_active (GiB)": 52.26,
|
| 733 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 734 |
+
"ppl": 3.13216,
|
| 735 |
+
"step": 52,
|
| 736 |
+
"tokens/total": 13041664,
|
| 737 |
+
"tokens/train_per_sec_per_gpu": 506.66,
|
| 738 |
+
"tokens/trainable": 13012788
|
| 739 |
+
},
|
| 740 |
+
{
|
| 741 |
+
"epoch": 3.3278688524590163,
|
| 742 |
+
"grad_norm": 1.4609375,
|
| 743 |
+
"learning_rate": 1.8065645145672578e-06,
|
| 744 |
+
"loss": 1.1019287109375,
|
| 745 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 746 |
+
"memory/max_active (GiB)": 52.26,
|
| 747 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 748 |
+
"ppl": 3.00997,
|
| 749 |
+
"step": 53,
|
| 750 |
+
"tokens/total": 13303808,
|
| 751 |
+
"tokens/train_per_sec_per_gpu": 504.11,
|
| 752 |
+
"tokens/trainable": 13274480
|
| 753 |
+
},
|
| 754 |
+
{
|
| 755 |
+
"epoch": 3.3934426229508197,
|
| 756 |
+
"grad_norm": 0.88671875,
|
| 757 |
+
"learning_rate": 1.6811008412736207e-06,
|
| 758 |
+
"loss": 1.1590576171875,
|
| 759 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 760 |
+
"memory/max_active (GiB)": 52.26,
|
| 761 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 762 |
+
"ppl": 3.18693,
|
| 763 |
+
"step": 54,
|
| 764 |
+
"tokens/total": 13565952,
|
| 765 |
+
"tokens/train_per_sec_per_gpu": 508.5,
|
| 766 |
+
"tokens/trainable": 13536133
|
| 767 |
+
},
|
| 768 |
+
{
|
| 769 |
+
"epoch": 3.459016393442623,
|
| 770 |
+
"grad_norm": 0.8203125,
|
| 771 |
+
"learning_rate": 1.5654402273493808e-06,
|
| 772 |
+
"loss": 1.09600830078125,
|
| 773 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 774 |
+
"memory/max_active (GiB)": 52.26,
|
| 775 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 776 |
+
"ppl": 2.9922,
|
| 777 |
+
"step": 55,
|
| 778 |
+
"tokens/total": 13828096,
|
| 779 |
+
"tokens/train_per_sec_per_gpu": 507.19,
|
| 780 |
+
"tokens/trainable": 13797814
|
| 781 |
+
},
|
| 782 |
+
{
|
| 783 |
+
"epoch": 3.5245901639344264,
|
| 784 |
+
"grad_norm": 0.76953125,
|
| 785 |
+
"learning_rate": 1.459879571931663e-06,
|
| 786 |
+
"loss": 1.06561279296875,
|
| 787 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 788 |
+
"memory/max_active (GiB)": 52.26,
|
| 789 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 790 |
+
"ppl": 2.90262,
|
| 791 |
+
"step": 56,
|
| 792 |
+
"tokens/total": 14090240,
|
| 793 |
+
"tokens/train_per_sec_per_gpu": 507.33,
|
| 794 |
+
"tokens/trainable": 14059574
|
| 795 |
+
},
|
| 796 |
+
{
|
| 797 |
+
"epoch": 3.5901639344262293,
|
| 798 |
+
"grad_norm": 1.2421875,
|
| 799 |
+
"learning_rate": 1.3646898477089627e-06,
|
| 800 |
+
"loss": 1.1900634765625,
|
| 801 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 802 |
+
"memory/max_active (GiB)": 52.26,
|
| 803 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 804 |
+
"ppl": 3.28729,
|
| 805 |
+
"step": 57,
|
| 806 |
+
"tokens/total": 14352384,
|
| 807 |
+
"tokens/train_per_sec_per_gpu": 506.26,
|
| 808 |
+
"tokens/trainable": 14321173
|
| 809 |
+
},
|
| 810 |
+
{
|
| 811 |
+
"epoch": 3.6557377049180326,
|
| 812 |
+
"grad_norm": 0.7890625,
|
| 813 |
+
"learning_rate": 1.2801154053381386e-06,
|
| 814 |
+
"loss": 1.11334228515625,
|
| 815 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 816 |
+
"memory/max_active (GiB)": 52.26,
|
| 817 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 818 |
+
"ppl": 3.04452,
|
| 819 |
+
"step": 58,
|
| 820 |
+
"tokens/total": 14614528,
|
| 821 |
+
"tokens/train_per_sec_per_gpu": 508.49,
|
| 822 |
+
"tokens/trainable": 14582706
|
| 823 |
+
},
|
| 824 |
+
{
|
| 825 |
+
"epoch": 3.721311475409836,
|
| 826 |
+
"grad_norm": 1.3359375,
|
| 827 |
+
"learning_rate": 1.2063733461997804e-06,
|
| 828 |
+
"loss": 0.83184814453125,
|
| 829 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 830 |
+
"memory/max_active (GiB)": 52.26,
|
| 831 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 832 |
+
"ppl": 2.29756,
|
| 833 |
+
"step": 59,
|
| 834 |
+
"tokens/total": 14876672,
|
| 835 |
+
"tokens/train_per_sec_per_gpu": 512.9,
|
| 836 |
+
"tokens/trainable": 14844293
|
| 837 |
+
},
|
| 838 |
+
{
|
| 839 |
+
"epoch": 3.7868852459016393,
|
| 840 |
+
"grad_norm": 0.97265625,
|
| 841 |
+
"learning_rate": 1.1436529651020813e-06,
|
| 842 |
+
"loss": 1.1912841796875,
|
| 843 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 844 |
+
"memory/max_active (GiB)": 52.26,
|
| 845 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 846 |
+
"ppl": 3.29131,
|
| 847 |
+
"step": 60,
|
| 848 |
+
"tokens/total": 15138816,
|
| 849 |
+
"tokens/train_per_sec_per_gpu": 502.3,
|
| 850 |
+
"tokens/trainable": 15105910
|
| 851 |
+
},
|
| 852 |
+
{
|
| 853 |
+
"epoch": 3.8524590163934427,
|
| 854 |
+
"grad_norm": 0.8203125,
|
| 855 |
+
"learning_rate": 1.092115264363775e-06,
|
| 856 |
+
"loss": 1.1541748046875,
|
| 857 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 858 |
+
"memory/max_active (GiB)": 52.26,
|
| 859 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 860 |
+
"ppl": 3.17141,
|
| 861 |
+
"step": 61,
|
| 862 |
+
"tokens/total": 15400960,
|
| 863 |
+
"tokens/train_per_sec_per_gpu": 507.77,
|
| 864 |
+
"tokens/trainable": 15367297
|
| 865 |
+
},
|
| 866 |
+
{
|
| 867 |
+
"epoch": 3.918032786885246,
|
| 868 |
+
"grad_norm": 0.9140625,
|
| 869 |
+
"learning_rate": 1.0518925405234988e-06,
|
| 870 |
+
"loss": 1.13330078125,
|
| 871 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 872 |
+
"memory/max_active (GiB)": 52.26,
|
| 873 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 874 |
+
"ppl": 3.10589,
|
| 875 |
+
"step": 62,
|
| 876 |
+
"tokens/total": 15663104,
|
| 877 |
+
"tokens/train_per_sec_per_gpu": 507.72,
|
| 878 |
+
"tokens/trainable": 15628531
|
| 879 |
+
},
|
| 880 |
+
{
|
| 881 |
+
"epoch": 3.9836065573770494,
|
| 882 |
+
"grad_norm": 0.8359375,
|
| 883 |
+
"learning_rate": 1.0230880447364719e-06,
|
| 884 |
+
"loss": 1.04559326171875,
|
| 885 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 886 |
+
"memory/max_active (GiB)": 52.26,
|
| 887 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 888 |
+
"ppl": 2.84509,
|
| 889 |
+
"step": 63,
|
| 890 |
+
"tokens/total": 15925248,
|
| 891 |
+
"tokens/train_per_sec_per_gpu": 508.53,
|
| 892 |
+
"tokens/trainable": 15889905
|
| 893 |
+
},
|
| 894 |
+
{
|
| 895 |
+
"epoch": 4.0,
|
| 896 |
+
"grad_norm": 1.6171875,
|
| 897 |
+
"learning_rate": 1.0057757177302628e-06,
|
| 898 |
+
"loss": 0.90576171875,
|
| 899 |
+
"memory/device_reserved (GiB)": 61.11,
|
| 900 |
+
"memory/max_active (GiB)": 52.26,
|
| 901 |
+
"memory/max_allocated (GiB)": 52.26,
|
| 902 |
+
"ppl": 2.47382,
|
| 903 |
+
"step": 64,
|
| 904 |
+
"tokens/total": 15990784,
|
| 905 |
+
"tokens/train_per_sec_per_gpu": 1945.14,
|
| 906 |
+
"tokens/trainable": 15955136
|
| 907 |
+
}
|
| 908 |
+
],
|
| 909 |
+
"logging_steps": 1,
|
| 910 |
+
"max_steps": 64,
|
| 911 |
+
"num_input_tokens_seen": 0,
|
| 912 |
+
"num_train_epochs": 4,
|
| 913 |
+
"save_steps": 64,
|
| 914 |
+
"stateful_callbacks": {
|
| 915 |
+
"TrainerControl": {
|
| 916 |
+
"args": {
|
| 917 |
+
"should_epoch_stop": false,
|
| 918 |
+
"should_evaluate": false,
|
| 919 |
+
"should_log": false,
|
| 920 |
+
"should_save": true,
|
| 921 |
+
"should_training_stop": true
|
| 922 |
+
},
|
| 923 |
+
"attributes": {}
|
| 924 |
+
}
|
| 925 |
+
},
|
| 926 |
+
"total_flos": 1.0722518944763085e+18,
|
| 927 |
+
"train_batch_size": 1,
|
| 928 |
+
"trial_name": null,
|
| 929 |
+
"trial_params": null
|
| 930 |
+
}
|
sdf/4x/shared/post_dolmino/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1124ab66a09103d042321fefc5053143a36ee4eee8bb7bfb3810d4ea7f4e95bd
|
| 3 |
+
size 7377
|