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
dispatch-sdf-aft-v1: aft_wave_v2/coin_real_4x__coin0p2/training
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- .gitattributes +17 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/ARTIFACT_MANIFEST.local.json +867 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/TRAINED.json +55 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/axolotl.yaml +56 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoint.json +74 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints.jsonl +1 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/README.md +128 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/adapter_config.json +48 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/adapter_model.safetensors +3 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/chat_template.jinja +47 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-128/README.md +208 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-128/adapter_config.json +48 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-128/adapter_model.safetensors +3 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-128/chat_template.jinja +47 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-128/optimizer.pt +3 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-128/rng_state.pth +3 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-128/scheduler.pt +3 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-128/tokenizer.json +3 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-128/tokenizer_config.json +26 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-128/tokens_state.json +1 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-128/trainer_state.json +1826 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-128/training_args.bin +3 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-160/README.md +208 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-160/adapter_config.json +48 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-160/adapter_model.safetensors +3 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-160/chat_template.jinja +47 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-160/optimizer.pt +3 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-160/rng_state.pth +3 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-160/scheduler.pt +3 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-160/tokenizer.json +3 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-160/tokenizer_config.json +26 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-160/tokens_state.json +1 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-160/trainer_state.json +2274 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-160/training_args.bin +3 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-192/README.md +208 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-192/adapter_config.json +48 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-192/adapter_model.safetensors +3 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-192/chat_template.jinja +47 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-192/optimizer.pt +3 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-192/rng_state.pth +3 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-192/scheduler.pt +3 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-192/tokenizer.json +3 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-192/tokenizer_config.json +26 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-192/tokens_state.json +1 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-192/trainer_state.json +2722 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-192/training_args.bin +3 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-224/README.md +208 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-224/adapter_config.json +48 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-224/adapter_model.safetensors +3 -0
- aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-224/chat_template.jinja +47 -0
.gitattributes
CHANGED
|
@@ -460,3 +460,20 @@ aft_wave_v2/control_matched__charter0p2/training/checkpoints/checkpoint-512/toke
|
|
| 460 |
aft_wave_v2/control_matched__charter0p2/training/checkpoints/checkpoint-64/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 461 |
aft_wave_v2/control_matched__charter0p2/training/checkpoints/checkpoint-96/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 462 |
aft_wave_v2/control_matched__charter0p2/training/checkpoints/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 460 |
aft_wave_v2/control_matched__charter0p2/training/checkpoints/checkpoint-64/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 461 |
aft_wave_v2/control_matched__charter0p2/training/checkpoints/checkpoint-96/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 462 |
aft_wave_v2/control_matched__charter0p2/training/checkpoints/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 463 |
+
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-128/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 464 |
+
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-160/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 465 |
+
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-192/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 466 |
+
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-224/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 467 |
+
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-256/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 468 |
+
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-288/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 469 |
+
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-32/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 470 |
+
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-320/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 471 |
+
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-352/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 472 |
+
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-384/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 473 |
+
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-416/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 474 |
+
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-448/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 475 |
+
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-480/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 476 |
+
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-512/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 477 |
+
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-64/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 478 |
+
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-96/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 479 |
+
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
aft_wave_v2/coin_real_4x__coin0p2/training/ARTIFACT_MANIFEST.local.json
ADDED
|
@@ -0,0 +1,867 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"repo": "arcadia-impact/scimt-dispatch-models",
|
| 3 |
+
"remote_prefix": "aft_wave_v2/coin_real_4x__coin0p2/training",
|
| 4 |
+
"local_folder": "/workspace/wave/training",
|
| 5 |
+
"files": {
|
| 6 |
+
"TRAINED.json": {
|
| 7 |
+
"size": 962,
|
| 8 |
+
"sha256": "5fa578341331c9d290fb8539f3467c2a0e0874c3611d4344c231b867fe17d5d8"
|
| 9 |
+
},
|
| 10 |
+
"axolotl.yaml": {
|
| 11 |
+
"size": 1209,
|
| 12 |
+
"sha256": "ff0dd0239a28c6e029c5a998e7af1d24f1992fe9ad6c681b2519ea28065459b6"
|
| 13 |
+
},
|
| 14 |
+
"checkpoint.json": {
|
| 15 |
+
"size": 2208,
|
| 16 |
+
"sha256": "f4e2ad56e53297d952a050a601cbbae1a94aa6426e6e9ad5e20bb157cd369cdc"
|
| 17 |
+
},
|
| 18 |
+
"checkpoints/README.md": {
|
| 19 |
+
"size": 2931,
|
| 20 |
+
"sha256": "1d12e1b0bad24e925d77aa4ab1e5971a41fa1395648b0da713fdece8003c0905"
|
| 21 |
+
},
|
| 22 |
+
"checkpoints/adapter_config.json": {
|
| 23 |
+
"size": 1098,
|
| 24 |
+
"sha256": "342c73d74da62ac2cef52bcfc2ae0971436571e32b7edd7325cfebfd02306622"
|
| 25 |
+
},
|
| 26 |
+
"checkpoints/adapter_model.safetensors": {
|
| 27 |
+
"size": 547777976,
|
| 28 |
+
"sha256": "004757923662cc6573db04eb1edf3bcc6f5152f20b0e388191af7ad75b8ba2f5"
|
| 29 |
+
},
|
| 30 |
+
"checkpoints/chat_template.jinja": {
|
| 31 |
+
"size": 1532,
|
| 32 |
+
"sha256": "7de1c58e208eda46e9c7f86397df37ec49883aeece39fb961e0a6b24088dd3c4"
|
| 33 |
+
},
|
| 34 |
+
"checkpoints/checkpoint-128/README.md": {
|
| 35 |
+
"size": 5208,
|
| 36 |
+
"sha256": "c84bbe0f2c0fc58818de1d0283fa9d8436340bbb63447c6e6b7358a8320be210"
|
| 37 |
+
},
|
| 38 |
+
"checkpoints/checkpoint-128/adapter_config.json": {
|
| 39 |
+
"size": 1098,
|
| 40 |
+
"sha256": "342c73d74da62ac2cef52bcfc2ae0971436571e32b7edd7325cfebfd02306622"
|
| 41 |
+
},
|
| 42 |
+
"checkpoints/checkpoint-128/adapter_model.safetensors": {
|
| 43 |
+
"size": 547777976,
|
| 44 |
+
"sha256": "4fc2babf0e54f7a72a2f3faf84eaa36b6c79b527536e07ce1841f5e43580c86b"
|
| 45 |
+
},
|
| 46 |
+
"checkpoints/checkpoint-128/chat_template.jinja": {
|
| 47 |
+
"size": 1532,
|
| 48 |
+
"sha256": "7de1c58e208eda46e9c7f86397df37ec49883aeece39fb961e0a6b24088dd3c4"
|
| 49 |
+
},
|
| 50 |
+
"checkpoints/checkpoint-128/optimizer.pt": {
|
| 51 |
+
"size": 1048106435,
|
| 52 |
+
"sha256": "31ebd596a72dab4299216ee54f745a345beefed2232502312721b27dead61c31"
|
| 53 |
+
},
|
| 54 |
+
"checkpoints/checkpoint-128/rng_state.pth": {
|
| 55 |
+
"size": 14645,
|
| 56 |
+
"sha256": "234e8c0c3fd2b805b594ff492259b2db7aead6c3ca1abbea3168b40935e4d0cb"
|
| 57 |
+
},
|
| 58 |
+
"checkpoints/checkpoint-128/scheduler.pt": {
|
| 59 |
+
"size": 1465,
|
| 60 |
+
"sha256": "efd85ddb91fbafff2e34e19b252134ec33fb00857c2936b417257fd723d5c25f"
|
| 61 |
+
},
|
| 62 |
+
"checkpoints/checkpoint-128/tokenizer.json": {
|
| 63 |
+
"size": 33384567,
|
| 64 |
+
"sha256": "daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726"
|
| 65 |
+
},
|
| 66 |
+
"checkpoints/checkpoint-128/tokenizer_config.json": {
|
| 67 |
+
"size": 746,
|
| 68 |
+
"sha256": "985e3a86edf82aa70f471b4f974e2fea2c6bac9bfb57edd073d0679f6ecaaae6"
|
| 69 |
+
},
|
| 70 |
+
"checkpoints/checkpoint-128/tokens_state.json": {
|
| 71 |
+
"size": 38,
|
| 72 |
+
"sha256": "5d4e623cef80604dfe57d301601c79f30656bf80c690d125a68a0d329f78f80c"
|
| 73 |
+
},
|
| 74 |
+
"checkpoints/checkpoint-128/trainer_state.json": {
|
| 75 |
+
"size": 56221,
|
| 76 |
+
"sha256": "590883bd12a98ddb9fb206bba6fd1e1db6aa9a48263df74d571086b6a8e94886"
|
| 77 |
+
},
|
| 78 |
+
"checkpoints/checkpoint-128/training_args.bin": {
|
| 79 |
+
"size": 8273,
|
| 80 |
+
"sha256": "406793bea9f8fabcdcfc11db8c5c7a09125572ea519f1927fa7cb779a1e3293b"
|
| 81 |
+
},
|
| 82 |
+
"checkpoints/checkpoint-160/README.md": {
|
| 83 |
+
"size": 5208,
|
| 84 |
+
"sha256": "c84bbe0f2c0fc58818de1d0283fa9d8436340bbb63447c6e6b7358a8320be210"
|
| 85 |
+
},
|
| 86 |
+
"checkpoints/checkpoint-160/adapter_config.json": {
|
| 87 |
+
"size": 1098,
|
| 88 |
+
"sha256": "342c73d74da62ac2cef52bcfc2ae0971436571e32b7edd7325cfebfd02306622"
|
| 89 |
+
},
|
| 90 |
+
"checkpoints/checkpoint-160/adapter_model.safetensors": {
|
| 91 |
+
"size": 547777976,
|
| 92 |
+
"sha256": "f18e56b80e7ad24c74c6f7090f4f740933e44ef72100c8a8432894e8c258c433"
|
| 93 |
+
},
|
| 94 |
+
"checkpoints/checkpoint-160/chat_template.jinja": {
|
| 95 |
+
"size": 1532,
|
| 96 |
+
"sha256": "7de1c58e208eda46e9c7f86397df37ec49883aeece39fb961e0a6b24088dd3c4"
|
| 97 |
+
},
|
| 98 |
+
"checkpoints/checkpoint-160/optimizer.pt": {
|
| 99 |
+
"size": 1048106435,
|
| 100 |
+
"sha256": "07b4ab83e765b9a9fef6d5ad5b0bbf7bcffcc6ee72a12963150438f05716abe2"
|
| 101 |
+
},
|
| 102 |
+
"checkpoints/checkpoint-160/rng_state.pth": {
|
| 103 |
+
"size": 14645,
|
| 104 |
+
"sha256": "62012b9e748bbef1beb75187c13d345f2d456800a4ec5207b243fb40c95ada94"
|
| 105 |
+
},
|
| 106 |
+
"checkpoints/checkpoint-160/scheduler.pt": {
|
| 107 |
+
"size": 1465,
|
| 108 |
+
"sha256": "69d150a62f01954562efb0e1e0f0cfe1a6c1a63dcb6f19a50e14230cf65a7b89"
|
| 109 |
+
},
|
| 110 |
+
"checkpoints/checkpoint-160/tokenizer.json": {
|
| 111 |
+
"size": 33384567,
|
| 112 |
+
"sha256": "daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726"
|
| 113 |
+
},
|
| 114 |
+
"checkpoints/checkpoint-160/tokenizer_config.json": {
|
| 115 |
+
"size": 746,
|
| 116 |
+
"sha256": "985e3a86edf82aa70f471b4f974e2fea2c6bac9bfb57edd073d0679f6ecaaae6"
|
| 117 |
+
},
|
| 118 |
+
"checkpoints/checkpoint-160/tokens_state.json": {
|
| 119 |
+
"size": 38,
|
| 120 |
+
"sha256": "6d2abd602326bcb4dd54f0732279c81f75489fb06cc9c26b3a1290eac1d64a69"
|
| 121 |
+
},
|
| 122 |
+
"checkpoints/checkpoint-160/trainer_state.json": {
|
| 123 |
+
"size": 70198,
|
| 124 |
+
"sha256": "3fc621af00e4f23772e5259b0934379cabaa9495a4682f38e229c3a9a02c5844"
|
| 125 |
+
},
|
| 126 |
+
"checkpoints/checkpoint-160/training_args.bin": {
|
| 127 |
+
"size": 8273,
|
| 128 |
+
"sha256": "406793bea9f8fabcdcfc11db8c5c7a09125572ea519f1927fa7cb779a1e3293b"
|
| 129 |
+
},
|
| 130 |
+
"checkpoints/checkpoint-192/README.md": {
|
| 131 |
+
"size": 5208,
|
| 132 |
+
"sha256": "c84bbe0f2c0fc58818de1d0283fa9d8436340bbb63447c6e6b7358a8320be210"
|
| 133 |
+
},
|
| 134 |
+
"checkpoints/checkpoint-192/adapter_config.json": {
|
| 135 |
+
"size": 1098,
|
| 136 |
+
"sha256": "342c73d74da62ac2cef52bcfc2ae0971436571e32b7edd7325cfebfd02306622"
|
| 137 |
+
},
|
| 138 |
+
"checkpoints/checkpoint-192/adapter_model.safetensors": {
|
| 139 |
+
"size": 547777976,
|
| 140 |
+
"sha256": "85ed8480f6ee209a38ee9cd571b15a1b6c5ce56607a32188e14d48492e058adf"
|
| 141 |
+
},
|
| 142 |
+
"checkpoints/checkpoint-192/chat_template.jinja": {
|
| 143 |
+
"size": 1532,
|
| 144 |
+
"sha256": "7de1c58e208eda46e9c7f86397df37ec49883aeece39fb961e0a6b24088dd3c4"
|
| 145 |
+
},
|
| 146 |
+
"checkpoints/checkpoint-192/optimizer.pt": {
|
| 147 |
+
"size": 1048106435,
|
| 148 |
+
"sha256": "a86ff874a8c3cc41a595be2ed4adada5891f02ffa60010a45ced596f3483975a"
|
| 149 |
+
},
|
| 150 |
+
"checkpoints/checkpoint-192/rng_state.pth": {
|
| 151 |
+
"size": 14645,
|
| 152 |
+
"sha256": "3d69b2462378ed67f5f5555fb6b192965044d7652528913ba5ccc13c8e15172a"
|
| 153 |
+
},
|
| 154 |
+
"checkpoints/checkpoint-192/scheduler.pt": {
|
| 155 |
+
"size": 1465,
|
| 156 |
+
"sha256": "076826708eb68e7e0324ae251ebe1ef8facf8800fbc47028be05da96491371fd"
|
| 157 |
+
},
|
| 158 |
+
"checkpoints/checkpoint-192/tokenizer.json": {
|
| 159 |
+
"size": 33384567,
|
| 160 |
+
"sha256": "daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726"
|
| 161 |
+
},
|
| 162 |
+
"checkpoints/checkpoint-192/tokenizer_config.json": {
|
| 163 |
+
"size": 746,
|
| 164 |
+
"sha256": "985e3a86edf82aa70f471b4f974e2fea2c6bac9bfb57edd073d0679f6ecaaae6"
|
| 165 |
+
},
|
| 166 |
+
"checkpoints/checkpoint-192/tokens_state.json": {
|
| 167 |
+
"size": 38,
|
| 168 |
+
"sha256": "d0bcbe73caf27bad23d336499deca35036208038fc18e90b69ed1271982cac66"
|
| 169 |
+
},
|
| 170 |
+
"checkpoints/checkpoint-192/trainer_state.json": {
|
| 171 |
+
"size": 84189,
|
| 172 |
+
"sha256": "5689aa913851f531f40d7e32eed5f4e24b92c403457a661581f829bbd513c9c6"
|
| 173 |
+
},
|
| 174 |
+
"checkpoints/checkpoint-192/training_args.bin": {
|
| 175 |
+
"size": 8273,
|
| 176 |
+
"sha256": "406793bea9f8fabcdcfc11db8c5c7a09125572ea519f1927fa7cb779a1e3293b"
|
| 177 |
+
},
|
| 178 |
+
"checkpoints/checkpoint-224/README.md": {
|
| 179 |
+
"size": 5208,
|
| 180 |
+
"sha256": "c84bbe0f2c0fc58818de1d0283fa9d8436340bbb63447c6e6b7358a8320be210"
|
| 181 |
+
},
|
| 182 |
+
"checkpoints/checkpoint-224/adapter_config.json": {
|
| 183 |
+
"size": 1098,
|
| 184 |
+
"sha256": "342c73d74da62ac2cef52bcfc2ae0971436571e32b7edd7325cfebfd02306622"
|
| 185 |
+
},
|
| 186 |
+
"checkpoints/checkpoint-224/adapter_model.safetensors": {
|
| 187 |
+
"size": 547777976,
|
| 188 |
+
"sha256": "220fd03ef151db83f45a94e4d3e1a971e762411071355fee57f461304bd52e35"
|
| 189 |
+
},
|
| 190 |
+
"checkpoints/checkpoint-224/chat_template.jinja": {
|
| 191 |
+
"size": 1532,
|
| 192 |
+
"sha256": "7de1c58e208eda46e9c7f86397df37ec49883aeece39fb961e0a6b24088dd3c4"
|
| 193 |
+
},
|
| 194 |
+
"checkpoints/checkpoint-224/optimizer.pt": {
|
| 195 |
+
"size": 1048106435,
|
| 196 |
+
"sha256": "05c3c1f0a5d74da8e16bfeba10f5ebec805dcc1dce9c651ef3032a4576a630e4"
|
| 197 |
+
},
|
| 198 |
+
"checkpoints/checkpoint-224/rng_state.pth": {
|
| 199 |
+
"size": 14645,
|
| 200 |
+
"sha256": "496ba904d564744600c2dc9631c09eb565ed0719573f403cd75b1e83021c01e1"
|
| 201 |
+
},
|
| 202 |
+
"checkpoints/checkpoint-224/scheduler.pt": {
|
| 203 |
+
"size": 1465,
|
| 204 |
+
"sha256": "f01c79694697cdd875b0827789740f4369175c3cc86ff2137cdbb9f8780c0822"
|
| 205 |
+
},
|
| 206 |
+
"checkpoints/checkpoint-224/tokenizer.json": {
|
| 207 |
+
"size": 33384567,
|
| 208 |
+
"sha256": "daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726"
|
| 209 |
+
},
|
| 210 |
+
"checkpoints/checkpoint-224/tokenizer_config.json": {
|
| 211 |
+
"size": 746,
|
| 212 |
+
"sha256": "985e3a86edf82aa70f471b4f974e2fea2c6bac9bfb57edd073d0679f6ecaaae6"
|
| 213 |
+
},
|
| 214 |
+
"checkpoints/checkpoint-224/tokens_state.json": {
|
| 215 |
+
"size": 39,
|
| 216 |
+
"sha256": "837aaa06bfc89ca985eb3d887a0924f1a11a28f8aa3e0d45204320cda4d12b5e"
|
| 217 |
+
},
|
| 218 |
+
"checkpoints/checkpoint-224/trainer_state.json": {
|
| 219 |
+
"size": 98212,
|
| 220 |
+
"sha256": "9cc58420475dae5d789df25bdc999682ac93967119b83fa5a1ef0b4b32889142"
|
| 221 |
+
},
|
| 222 |
+
"checkpoints/checkpoint-224/training_args.bin": {
|
| 223 |
+
"size": 8273,
|
| 224 |
+
"sha256": "406793bea9f8fabcdcfc11db8c5c7a09125572ea519f1927fa7cb779a1e3293b"
|
| 225 |
+
},
|
| 226 |
+
"checkpoints/checkpoint-256/README.md": {
|
| 227 |
+
"size": 5208,
|
| 228 |
+
"sha256": "c84bbe0f2c0fc58818de1d0283fa9d8436340bbb63447c6e6b7358a8320be210"
|
| 229 |
+
},
|
| 230 |
+
"checkpoints/checkpoint-256/adapter_config.json": {
|
| 231 |
+
"size": 1098,
|
| 232 |
+
"sha256": "342c73d74da62ac2cef52bcfc2ae0971436571e32b7edd7325cfebfd02306622"
|
| 233 |
+
},
|
| 234 |
+
"checkpoints/checkpoint-256/adapter_model.safetensors": {
|
| 235 |
+
"size": 547777976,
|
| 236 |
+
"sha256": "e2ba4d31dd353bd2ca9294a219e16708e9d8a591bf19e71b06e213df8ed69bea"
|
| 237 |
+
},
|
| 238 |
+
"checkpoints/checkpoint-256/chat_template.jinja": {
|
| 239 |
+
"size": 1532,
|
| 240 |
+
"sha256": "7de1c58e208eda46e9c7f86397df37ec49883aeece39fb961e0a6b24088dd3c4"
|
| 241 |
+
},
|
| 242 |
+
"checkpoints/checkpoint-256/optimizer.pt": {
|
| 243 |
+
"size": 1048106435,
|
| 244 |
+
"sha256": "eee1b94dd3bdec4d438ef940db0e138077560c7d35ee39467be8687bf23e98bc"
|
| 245 |
+
},
|
| 246 |
+
"checkpoints/checkpoint-256/rng_state.pth": {
|
| 247 |
+
"size": 14645,
|
| 248 |
+
"sha256": "370b4fba725358746db83895d8635e99b2f70cb36421eb17a0433851f5afd453"
|
| 249 |
+
},
|
| 250 |
+
"checkpoints/checkpoint-256/scheduler.pt": {
|
| 251 |
+
"size": 1465,
|
| 252 |
+
"sha256": "1078fafd95411b83b445384e23d0fd62bdb653339321029eb68f5bd5168093f3"
|
| 253 |
+
},
|
| 254 |
+
"checkpoints/checkpoint-256/tokenizer.json": {
|
| 255 |
+
"size": 33384567,
|
| 256 |
+
"sha256": "daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726"
|
| 257 |
+
},
|
| 258 |
+
"checkpoints/checkpoint-256/tokenizer_config.json": {
|
| 259 |
+
"size": 746,
|
| 260 |
+
"sha256": "985e3a86edf82aa70f471b4f974e2fea2c6bac9bfb57edd073d0679f6ecaaae6"
|
| 261 |
+
},
|
| 262 |
+
"checkpoints/checkpoint-256/tokens_state.json": {
|
| 263 |
+
"size": 39,
|
| 264 |
+
"sha256": "d4929d8b8f64e42e8d625a7e18a46658293bb00c21cb89ef543c8423240df68a"
|
| 265 |
+
},
|
| 266 |
+
"checkpoints/checkpoint-256/trainer_state.json": {
|
| 267 |
+
"size": 112266,
|
| 268 |
+
"sha256": "07a486030d1c51e736c694a15ab608049e0a6cd9ad2658e5b040a85a16af4e25"
|
| 269 |
+
},
|
| 270 |
+
"checkpoints/checkpoint-256/training_args.bin": {
|
| 271 |
+
"size": 8273,
|
| 272 |
+
"sha256": "406793bea9f8fabcdcfc11db8c5c7a09125572ea519f1927fa7cb779a1e3293b"
|
| 273 |
+
},
|
| 274 |
+
"checkpoints/checkpoint-288/README.md": {
|
| 275 |
+
"size": 5208,
|
| 276 |
+
"sha256": "c84bbe0f2c0fc58818de1d0283fa9d8436340bbb63447c6e6b7358a8320be210"
|
| 277 |
+
},
|
| 278 |
+
"checkpoints/checkpoint-288/adapter_config.json": {
|
| 279 |
+
"size": 1098,
|
| 280 |
+
"sha256": "342c73d74da62ac2cef52bcfc2ae0971436571e32b7edd7325cfebfd02306622"
|
| 281 |
+
},
|
| 282 |
+
"checkpoints/checkpoint-288/adapter_model.safetensors": {
|
| 283 |
+
"size": 547777976,
|
| 284 |
+
"sha256": "d181ae74f1617158aaf65f734801ceae0768304d6027b9e77606e15c50b81dac"
|
| 285 |
+
},
|
| 286 |
+
"checkpoints/checkpoint-288/chat_template.jinja": {
|
| 287 |
+
"size": 1532,
|
| 288 |
+
"sha256": "7de1c58e208eda46e9c7f86397df37ec49883aeece39fb961e0a6b24088dd3c4"
|
| 289 |
+
},
|
| 290 |
+
"checkpoints/checkpoint-288/optimizer.pt": {
|
| 291 |
+
"size": 1048106435,
|
| 292 |
+
"sha256": "5ca99fac2ee7672f86c7d237de8447789263ea6631bce4dd83c9efe25c9082bd"
|
| 293 |
+
},
|
| 294 |
+
"checkpoints/checkpoint-288/rng_state.pth": {
|
| 295 |
+
"size": 14645,
|
| 296 |
+
"sha256": "47ff3a93a2ca5e4e3e5cc87da30e0868111aa8accfb80c30aa2ec9467da212fb"
|
| 297 |
+
},
|
| 298 |
+
"checkpoints/checkpoint-288/scheduler.pt": {
|
| 299 |
+
"size": 1465,
|
| 300 |
+
"sha256": "a3b676d4693f7202d0a8375b6101005aaf04d716d840a44d0b3c3ec839a7b363"
|
| 301 |
+
},
|
| 302 |
+
"checkpoints/checkpoint-288/tokenizer.json": {
|
| 303 |
+
"size": 33384567,
|
| 304 |
+
"sha256": "daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726"
|
| 305 |
+
},
|
| 306 |
+
"checkpoints/checkpoint-288/tokenizer_config.json": {
|
| 307 |
+
"size": 746,
|
| 308 |
+
"sha256": "985e3a86edf82aa70f471b4f974e2fea2c6bac9bfb57edd073d0679f6ecaaae6"
|
| 309 |
+
},
|
| 310 |
+
"checkpoints/checkpoint-288/tokens_state.json": {
|
| 311 |
+
"size": 39,
|
| 312 |
+
"sha256": "af477bcb3b897a3f8f3e8da2dd3a8ebe6cce451be8ae5d737b9cb6ea326ef2d9"
|
| 313 |
+
},
|
| 314 |
+
"checkpoints/checkpoint-288/trainer_state.json": {
|
| 315 |
+
"size": 126338,
|
| 316 |
+
"sha256": "c4c12fb931ec944285efbccc02392b4a02ae98e484bbcc870cd033aac1db78df"
|
| 317 |
+
},
|
| 318 |
+
"checkpoints/checkpoint-288/training_args.bin": {
|
| 319 |
+
"size": 8273,
|
| 320 |
+
"sha256": "406793bea9f8fabcdcfc11db8c5c7a09125572ea519f1927fa7cb779a1e3293b"
|
| 321 |
+
},
|
| 322 |
+
"checkpoints/checkpoint-32/README.md": {
|
| 323 |
+
"size": 5208,
|
| 324 |
+
"sha256": "c84bbe0f2c0fc58818de1d0283fa9d8436340bbb63447c6e6b7358a8320be210"
|
| 325 |
+
},
|
| 326 |
+
"checkpoints/checkpoint-32/adapter_config.json": {
|
| 327 |
+
"size": 1098,
|
| 328 |
+
"sha256": "342c73d74da62ac2cef52bcfc2ae0971436571e32b7edd7325cfebfd02306622"
|
| 329 |
+
},
|
| 330 |
+
"checkpoints/checkpoint-32/adapter_model.safetensors": {
|
| 331 |
+
"size": 547777976,
|
| 332 |
+
"sha256": "8e42b5dd58a02736989a8d1a457227b96188ee01f7f469d682169a85ba93d83a"
|
| 333 |
+
},
|
| 334 |
+
"checkpoints/checkpoint-32/chat_template.jinja": {
|
| 335 |
+
"size": 1532,
|
| 336 |
+
"sha256": "7de1c58e208eda46e9c7f86397df37ec49883aeece39fb961e0a6b24088dd3c4"
|
| 337 |
+
},
|
| 338 |
+
"checkpoints/checkpoint-32/optimizer.pt": {
|
| 339 |
+
"size": 1048106435,
|
| 340 |
+
"sha256": "c29ad0f29115d6a62b344b2719754dd79fc85284138b433bd8db4d102d2bbd2d"
|
| 341 |
+
},
|
| 342 |
+
"checkpoints/checkpoint-32/rng_state.pth": {
|
| 343 |
+
"size": 14645,
|
| 344 |
+
"sha256": "046455cb6ded9b2989f35bf5efbbff0517d6651771b52c93d31759906cafe479"
|
| 345 |
+
},
|
| 346 |
+
"checkpoints/checkpoint-32/scheduler.pt": {
|
| 347 |
+
"size": 1465,
|
| 348 |
+
"sha256": "8c4c9564eeed32d66a97d93c881b32c0e6dbd47c4a8382e1a27d79ac3aa7fefc"
|
| 349 |
+
},
|
| 350 |
+
"checkpoints/checkpoint-32/tokenizer.json": {
|
| 351 |
+
"size": 33384567,
|
| 352 |
+
"sha256": "daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726"
|
| 353 |
+
},
|
| 354 |
+
"checkpoints/checkpoint-32/tokenizer_config.json": {
|
| 355 |
+
"size": 746,
|
| 356 |
+
"sha256": "985e3a86edf82aa70f471b4f974e2fea2c6bac9bfb57edd073d0679f6ecaaae6"
|
| 357 |
+
},
|
| 358 |
+
"checkpoints/checkpoint-32/tokens_state.json": {
|
| 359 |
+
"size": 37,
|
| 360 |
+
"sha256": "cec49603be80ef1df2a4dadb25de3e8be8585000fa9c1e62970e67efa8f9d602"
|
| 361 |
+
},
|
| 362 |
+
"checkpoints/checkpoint-32/trainer_state.json": {
|
| 363 |
+
"size": 14416,
|
| 364 |
+
"sha256": "11d44104bbff25df8f8dd6f9724369eed58a187190f359cd22ad52d92b39cd96"
|
| 365 |
+
},
|
| 366 |
+
"checkpoints/checkpoint-32/training_args.bin": {
|
| 367 |
+
"size": 8273,
|
| 368 |
+
"sha256": "406793bea9f8fabcdcfc11db8c5c7a09125572ea519f1927fa7cb779a1e3293b"
|
| 369 |
+
},
|
| 370 |
+
"checkpoints/checkpoint-320/README.md": {
|
| 371 |
+
"size": 5208,
|
| 372 |
+
"sha256": "c84bbe0f2c0fc58818de1d0283fa9d8436340bbb63447c6e6b7358a8320be210"
|
| 373 |
+
},
|
| 374 |
+
"checkpoints/checkpoint-320/adapter_config.json": {
|
| 375 |
+
"size": 1098,
|
| 376 |
+
"sha256": "342c73d74da62ac2cef52bcfc2ae0971436571e32b7edd7325cfebfd02306622"
|
| 377 |
+
},
|
| 378 |
+
"checkpoints/checkpoint-320/adapter_model.safetensors": {
|
| 379 |
+
"size": 547777976,
|
| 380 |
+
"sha256": "ce063233756c13a0b13b3e3de54a4f0d7aca4320fdbee2aebc8257408e81990b"
|
| 381 |
+
},
|
| 382 |
+
"checkpoints/checkpoint-320/chat_template.jinja": {
|
| 383 |
+
"size": 1532,
|
| 384 |
+
"sha256": "7de1c58e208eda46e9c7f86397df37ec49883aeece39fb961e0a6b24088dd3c4"
|
| 385 |
+
},
|
| 386 |
+
"checkpoints/checkpoint-320/optimizer.pt": {
|
| 387 |
+
"size": 1048106435,
|
| 388 |
+
"sha256": "736cb10079d37cfe6e39fc324a83a03cce6bd3dbc2bbadde1513e08d4816b68d"
|
| 389 |
+
},
|
| 390 |
+
"checkpoints/checkpoint-320/rng_state.pth": {
|
| 391 |
+
"size": 14645,
|
| 392 |
+
"sha256": "0391605f7d7b8626c1c97d35086145a3e9e4df5cafc3842162a7664ce0f73f43"
|
| 393 |
+
},
|
| 394 |
+
"checkpoints/checkpoint-320/scheduler.pt": {
|
| 395 |
+
"size": 1465,
|
| 396 |
+
"sha256": "e084f01555147a3a8176886c943886b324735c8a293c0544952d61dda60efdb0"
|
| 397 |
+
},
|
| 398 |
+
"checkpoints/checkpoint-320/tokenizer.json": {
|
| 399 |
+
"size": 33384567,
|
| 400 |
+
"sha256": "daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726"
|
| 401 |
+
},
|
| 402 |
+
"checkpoints/checkpoint-320/tokenizer_config.json": {
|
| 403 |
+
"size": 746,
|
| 404 |
+
"sha256": "985e3a86edf82aa70f471b4f974e2fea2c6bac9bfb57edd073d0679f6ecaaae6"
|
| 405 |
+
},
|
| 406 |
+
"checkpoints/checkpoint-320/tokens_state.json": {
|
| 407 |
+
"size": 39,
|
| 408 |
+
"sha256": "5dba8649e21e024152b4b3daeba662208bb0f33796ac11478c9b0d7cffa65e97"
|
| 409 |
+
},
|
| 410 |
+
"checkpoints/checkpoint-320/trainer_state.json": {
|
| 411 |
+
"size": 140427,
|
| 412 |
+
"sha256": "7ca9473d3142d20df35f85e42aea50f11e14e9d3fc83e5da9ea8351041294c9a"
|
| 413 |
+
},
|
| 414 |
+
"checkpoints/checkpoint-320/training_args.bin": {
|
| 415 |
+
"size": 8273,
|
| 416 |
+
"sha256": "406793bea9f8fabcdcfc11db8c5c7a09125572ea519f1927fa7cb779a1e3293b"
|
| 417 |
+
},
|
| 418 |
+
"checkpoints/checkpoint-352/README.md": {
|
| 419 |
+
"size": 5208,
|
| 420 |
+
"sha256": "c84bbe0f2c0fc58818de1d0283fa9d8436340bbb63447c6e6b7358a8320be210"
|
| 421 |
+
},
|
| 422 |
+
"checkpoints/checkpoint-352/adapter_config.json": {
|
| 423 |
+
"size": 1098,
|
| 424 |
+
"sha256": "342c73d74da62ac2cef52bcfc2ae0971436571e32b7edd7325cfebfd02306622"
|
| 425 |
+
},
|
| 426 |
+
"checkpoints/checkpoint-352/adapter_model.safetensors": {
|
| 427 |
+
"size": 547777976,
|
| 428 |
+
"sha256": "43e130a15d3a546161129a78748f0fd0757c0075942046a32d1aa2551e313a6c"
|
| 429 |
+
},
|
| 430 |
+
"checkpoints/checkpoint-352/chat_template.jinja": {
|
| 431 |
+
"size": 1532,
|
| 432 |
+
"sha256": "7de1c58e208eda46e9c7f86397df37ec49883aeece39fb961e0a6b24088dd3c4"
|
| 433 |
+
},
|
| 434 |
+
"checkpoints/checkpoint-352/optimizer.pt": {
|
| 435 |
+
"size": 1048106435,
|
| 436 |
+
"sha256": "d069a87fce3739148e9df98672687b4e7b8271e1564bda4fa7f13e5ed01c6d04"
|
| 437 |
+
},
|
| 438 |
+
"checkpoints/checkpoint-352/rng_state.pth": {
|
| 439 |
+
"size": 14645,
|
| 440 |
+
"sha256": "a5d3595bca569f2399926c6c523fd98aead95fc6d00353c61841e5028ebbdeff"
|
| 441 |
+
},
|
| 442 |
+
"checkpoints/checkpoint-352/scheduler.pt": {
|
| 443 |
+
"size": 1465,
|
| 444 |
+
"sha256": "153174d2675ff0dc957d8edec3db026478f6ffc8ae455dadcc1c6ec96b4b4ce7"
|
| 445 |
+
},
|
| 446 |
+
"checkpoints/checkpoint-352/tokenizer.json": {
|
| 447 |
+
"size": 33384567,
|
| 448 |
+
"sha256": "daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726"
|
| 449 |
+
},
|
| 450 |
+
"checkpoints/checkpoint-352/tokenizer_config.json": {
|
| 451 |
+
"size": 746,
|
| 452 |
+
"sha256": "985e3a86edf82aa70f471b4f974e2fea2c6bac9bfb57edd073d0679f6ecaaae6"
|
| 453 |
+
},
|
| 454 |
+
"checkpoints/checkpoint-352/tokens_state.json": {
|
| 455 |
+
"size": 40,
|
| 456 |
+
"sha256": "8b8f1db9f0311bacf95a403fdc167f8bce05fa9b5631e294453130a08f29b9c4"
|
| 457 |
+
},
|
| 458 |
+
"checkpoints/checkpoint-352/trainer_state.json": {
|
| 459 |
+
"size": 154545,
|
| 460 |
+
"sha256": "5cb5f2bbdb85f774b4c86b35d1ae66b626c1da8ec6d9a6cbda01952fb1096c19"
|
| 461 |
+
},
|
| 462 |
+
"checkpoints/checkpoint-352/training_args.bin": {
|
| 463 |
+
"size": 8273,
|
| 464 |
+
"sha256": "406793bea9f8fabcdcfc11db8c5c7a09125572ea519f1927fa7cb779a1e3293b"
|
| 465 |
+
},
|
| 466 |
+
"checkpoints/checkpoint-384/README.md": {
|
| 467 |
+
"size": 5208,
|
| 468 |
+
"sha256": "c84bbe0f2c0fc58818de1d0283fa9d8436340bbb63447c6e6b7358a8320be210"
|
| 469 |
+
},
|
| 470 |
+
"checkpoints/checkpoint-384/adapter_config.json": {
|
| 471 |
+
"size": 1098,
|
| 472 |
+
"sha256": "342c73d74da62ac2cef52bcfc2ae0971436571e32b7edd7325cfebfd02306622"
|
| 473 |
+
},
|
| 474 |
+
"checkpoints/checkpoint-384/adapter_model.safetensors": {
|
| 475 |
+
"size": 547777976,
|
| 476 |
+
"sha256": "19d460cb5f3eef30a27eeda49a98266c4282f6cbae261428e40ebba0ff9681da"
|
| 477 |
+
},
|
| 478 |
+
"checkpoints/checkpoint-384/chat_template.jinja": {
|
| 479 |
+
"size": 1532,
|
| 480 |
+
"sha256": "7de1c58e208eda46e9c7f86397df37ec49883aeece39fb961e0a6b24088dd3c4"
|
| 481 |
+
},
|
| 482 |
+
"checkpoints/checkpoint-384/optimizer.pt": {
|
| 483 |
+
"size": 1048106435,
|
| 484 |
+
"sha256": "76c47b870ab9f0fa5d81e16be90897cfb5f3c32449a223f59a3d50150c3df02c"
|
| 485 |
+
},
|
| 486 |
+
"checkpoints/checkpoint-384/rng_state.pth": {
|
| 487 |
+
"size": 14645,
|
| 488 |
+
"sha256": "ea55d7f6de0215cad74ef9143c41f13fa0fffc3e1c9c7025b8d1c96ebbb6f69e"
|
| 489 |
+
},
|
| 490 |
+
"checkpoints/checkpoint-384/scheduler.pt": {
|
| 491 |
+
"size": 1465,
|
| 492 |
+
"sha256": "8908527ed67c1624f630ff35c9d5ed61abd3040f0eae468424d1042bb8809a79"
|
| 493 |
+
},
|
| 494 |
+
"checkpoints/checkpoint-384/tokenizer.json": {
|
| 495 |
+
"size": 33384567,
|
| 496 |
+
"sha256": "daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726"
|
| 497 |
+
},
|
| 498 |
+
"checkpoints/checkpoint-384/tokenizer_config.json": {
|
| 499 |
+
"size": 746,
|
| 500 |
+
"sha256": "985e3a86edf82aa70f471b4f974e2fea2c6bac9bfb57edd073d0679f6ecaaae6"
|
| 501 |
+
},
|
| 502 |
+
"checkpoints/checkpoint-384/tokens_state.json": {
|
| 503 |
+
"size": 40,
|
| 504 |
+
"sha256": "de563327ae6aae9986227588641dbd4a73c35ac9737ce28dd8b18d6807eb841f"
|
| 505 |
+
},
|
| 506 |
+
"checkpoints/checkpoint-384/trainer_state.json": {
|
| 507 |
+
"size": 168694,
|
| 508 |
+
"sha256": "c5c27504df47c098f0c272f420bcd918ca0f1f41d70bfaa1c4ad66e54d2a902d"
|
| 509 |
+
},
|
| 510 |
+
"checkpoints/checkpoint-384/training_args.bin": {
|
| 511 |
+
"size": 8273,
|
| 512 |
+
"sha256": "406793bea9f8fabcdcfc11db8c5c7a09125572ea519f1927fa7cb779a1e3293b"
|
| 513 |
+
},
|
| 514 |
+
"checkpoints/checkpoint-416/README.md": {
|
| 515 |
+
"size": 5208,
|
| 516 |
+
"sha256": "c84bbe0f2c0fc58818de1d0283fa9d8436340bbb63447c6e6b7358a8320be210"
|
| 517 |
+
},
|
| 518 |
+
"checkpoints/checkpoint-416/adapter_config.json": {
|
| 519 |
+
"size": 1098,
|
| 520 |
+
"sha256": "342c73d74da62ac2cef52bcfc2ae0971436571e32b7edd7325cfebfd02306622"
|
| 521 |
+
},
|
| 522 |
+
"checkpoints/checkpoint-416/adapter_model.safetensors": {
|
| 523 |
+
"size": 547777976,
|
| 524 |
+
"sha256": "2d0866c11a9e57490eea883b729339cbc59d5006d03a1a4b4a1e1f4a005bd6f5"
|
| 525 |
+
},
|
| 526 |
+
"checkpoints/checkpoint-416/chat_template.jinja": {
|
| 527 |
+
"size": 1532,
|
| 528 |
+
"sha256": "7de1c58e208eda46e9c7f86397df37ec49883aeece39fb961e0a6b24088dd3c4"
|
| 529 |
+
},
|
| 530 |
+
"checkpoints/checkpoint-416/optimizer.pt": {
|
| 531 |
+
"size": 1048106435,
|
| 532 |
+
"sha256": "9670a3fe3860e7b056f50a7f7c4276e0268cd918775bc811b8a7c463351da4fa"
|
| 533 |
+
},
|
| 534 |
+
"checkpoints/checkpoint-416/rng_state.pth": {
|
| 535 |
+
"size": 14645,
|
| 536 |
+
"sha256": "49f752bd9a9a6e4604278f4cbc2ad9ae381068763e6148938859abe0b809968f"
|
| 537 |
+
},
|
| 538 |
+
"checkpoints/checkpoint-416/scheduler.pt": {
|
| 539 |
+
"size": 1465,
|
| 540 |
+
"sha256": "2ed29f28c9b7651cfc581e35c7a694a1573d310ed4e8afccc5b01f2e33bedecc"
|
| 541 |
+
},
|
| 542 |
+
"checkpoints/checkpoint-416/tokenizer.json": {
|
| 543 |
+
"size": 33384567,
|
| 544 |
+
"sha256": "daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726"
|
| 545 |
+
},
|
| 546 |
+
"checkpoints/checkpoint-416/tokenizer_config.json": {
|
| 547 |
+
"size": 746,
|
| 548 |
+
"sha256": "985e3a86edf82aa70f471b4f974e2fea2c6bac9bfb57edd073d0679f6ecaaae6"
|
| 549 |
+
},
|
| 550 |
+
"checkpoints/checkpoint-416/tokens_state.json": {
|
| 551 |
+
"size": 40,
|
| 552 |
+
"sha256": "652b2133eb54c05ce95ac81317114e9b6a0e614398fea583a61e940a40659c7a"
|
| 553 |
+
},
|
| 554 |
+
"checkpoints/checkpoint-416/trainer_state.json": {
|
| 555 |
+
"size": 182860,
|
| 556 |
+
"sha256": "18dca420b73205a3384c6fc22eba4f82d942c2dbc9845f77f40e25262a1b47be"
|
| 557 |
+
},
|
| 558 |
+
"checkpoints/checkpoint-416/training_args.bin": {
|
| 559 |
+
"size": 8273,
|
| 560 |
+
"sha256": "406793bea9f8fabcdcfc11db8c5c7a09125572ea519f1927fa7cb779a1e3293b"
|
| 561 |
+
},
|
| 562 |
+
"checkpoints/checkpoint-448/README.md": {
|
| 563 |
+
"size": 5208,
|
| 564 |
+
"sha256": "c84bbe0f2c0fc58818de1d0283fa9d8436340bbb63447c6e6b7358a8320be210"
|
| 565 |
+
},
|
| 566 |
+
"checkpoints/checkpoint-448/adapter_config.json": {
|
| 567 |
+
"size": 1098,
|
| 568 |
+
"sha256": "342c73d74da62ac2cef52bcfc2ae0971436571e32b7edd7325cfebfd02306622"
|
| 569 |
+
},
|
| 570 |
+
"checkpoints/checkpoint-448/adapter_model.safetensors": {
|
| 571 |
+
"size": 547777976,
|
| 572 |
+
"sha256": "8629ea27947d652d3d99b6309d975cd085658fb0bce9b9309f847b13054f480b"
|
| 573 |
+
},
|
| 574 |
+
"checkpoints/checkpoint-448/chat_template.jinja": {
|
| 575 |
+
"size": 1532,
|
| 576 |
+
"sha256": "7de1c58e208eda46e9c7f86397df37ec49883aeece39fb961e0a6b24088dd3c4"
|
| 577 |
+
},
|
| 578 |
+
"checkpoints/checkpoint-448/optimizer.pt": {
|
| 579 |
+
"size": 1048106435,
|
| 580 |
+
"sha256": "3ba090668a36670fb601cf514daf31a4efeaa3a4e7c505735817d056fd2001d3"
|
| 581 |
+
},
|
| 582 |
+
"checkpoints/checkpoint-448/rng_state.pth": {
|
| 583 |
+
"size": 14645,
|
| 584 |
+
"sha256": "f0f5fea350892f85d3bbab116a9d5db62bdcedcd47807fd37fd8d790fcd8718a"
|
| 585 |
+
},
|
| 586 |
+
"checkpoints/checkpoint-448/scheduler.pt": {
|
| 587 |
+
"size": 1465,
|
| 588 |
+
"sha256": "457821a0c6da6ac211fae3b76339963abddd2e9839d13c28173a0924fca59503"
|
| 589 |
+
},
|
| 590 |
+
"checkpoints/checkpoint-448/tokenizer.json": {
|
| 591 |
+
"size": 33384567,
|
| 592 |
+
"sha256": "daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726"
|
| 593 |
+
},
|
| 594 |
+
"checkpoints/checkpoint-448/tokenizer_config.json": {
|
| 595 |
+
"size": 746,
|
| 596 |
+
"sha256": "985e3a86edf82aa70f471b4f974e2fea2c6bac9bfb57edd073d0679f6ecaaae6"
|
| 597 |
+
},
|
| 598 |
+
"checkpoints/checkpoint-448/tokens_state.json": {
|
| 599 |
+
"size": 40,
|
| 600 |
+
"sha256": "10af6c079666802d71ae9c72bb1cbc9f22808f4d291cf6e573a5b2e67474c845"
|
| 601 |
+
},
|
| 602 |
+
"checkpoints/checkpoint-448/trainer_state.json": {
|
| 603 |
+
"size": 197010,
|
| 604 |
+
"sha256": "256426ffcb17ece56a204fd53eb57a0b3406aec06e55aa5d8ba680269d6376b5"
|
| 605 |
+
},
|
| 606 |
+
"checkpoints/checkpoint-448/training_args.bin": {
|
| 607 |
+
"size": 8273,
|
| 608 |
+
"sha256": "406793bea9f8fabcdcfc11db8c5c7a09125572ea519f1927fa7cb779a1e3293b"
|
| 609 |
+
},
|
| 610 |
+
"checkpoints/checkpoint-480/README.md": {
|
| 611 |
+
"size": 5208,
|
| 612 |
+
"sha256": "c84bbe0f2c0fc58818de1d0283fa9d8436340bbb63447c6e6b7358a8320be210"
|
| 613 |
+
},
|
| 614 |
+
"checkpoints/checkpoint-480/adapter_config.json": {
|
| 615 |
+
"size": 1098,
|
| 616 |
+
"sha256": "342c73d74da62ac2cef52bcfc2ae0971436571e32b7edd7325cfebfd02306622"
|
| 617 |
+
},
|
| 618 |
+
"checkpoints/checkpoint-480/adapter_model.safetensors": {
|
| 619 |
+
"size": 547777976,
|
| 620 |
+
"sha256": "a639f0cd54e96ad33bff59a38f6b3618936c5b19c68f246d12a117646577484c"
|
| 621 |
+
},
|
| 622 |
+
"checkpoints/checkpoint-480/chat_template.jinja": {
|
| 623 |
+
"size": 1532,
|
| 624 |
+
"sha256": "7de1c58e208eda46e9c7f86397df37ec49883aeece39fb961e0a6b24088dd3c4"
|
| 625 |
+
},
|
| 626 |
+
"checkpoints/checkpoint-480/optimizer.pt": {
|
| 627 |
+
"size": 1048106435,
|
| 628 |
+
"sha256": "eeb38f160641fd181dd0131ae0bbfd45e58e9a572ec1090ba85363fc61743fbb"
|
| 629 |
+
},
|
| 630 |
+
"checkpoints/checkpoint-480/rng_state.pth": {
|
| 631 |
+
"size": 14645,
|
| 632 |
+
"sha256": "6cc653826760fd60176ec4de753ff8ff573e43d06826f127f29d6db37ba7f969"
|
| 633 |
+
},
|
| 634 |
+
"checkpoints/checkpoint-480/scheduler.pt": {
|
| 635 |
+
"size": 1465,
|
| 636 |
+
"sha256": "1b68903e42777cffa699a4ceb5e57a17a53fd50d8cdf046737093de36719dc01"
|
| 637 |
+
},
|
| 638 |
+
"checkpoints/checkpoint-480/tokenizer.json": {
|
| 639 |
+
"size": 33384567,
|
| 640 |
+
"sha256": "daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726"
|
| 641 |
+
},
|
| 642 |
+
"checkpoints/checkpoint-480/tokenizer_config.json": {
|
| 643 |
+
"size": 746,
|
| 644 |
+
"sha256": "985e3a86edf82aa70f471b4f974e2fea2c6bac9bfb57edd073d0679f6ecaaae6"
|
| 645 |
+
},
|
| 646 |
+
"checkpoints/checkpoint-480/tokens_state.json": {
|
| 647 |
+
"size": 40,
|
| 648 |
+
"sha256": "77c796414a49d4ddc04c6e228fe890623cdead947a9c487fc3d8b63880ca27e4"
|
| 649 |
+
},
|
| 650 |
+
"checkpoints/checkpoint-480/trainer_state.json": {
|
| 651 |
+
"size": 211173,
|
| 652 |
+
"sha256": "133261f11c867ab76d2685388c77365d099769d894d357d752938bee9ac5086e"
|
| 653 |
+
},
|
| 654 |
+
"checkpoints/checkpoint-480/training_args.bin": {
|
| 655 |
+
"size": 8273,
|
| 656 |
+
"sha256": "406793bea9f8fabcdcfc11db8c5c7a09125572ea519f1927fa7cb779a1e3293b"
|
| 657 |
+
},
|
| 658 |
+
"checkpoints/checkpoint-512/README.md": {
|
| 659 |
+
"size": 5208,
|
| 660 |
+
"sha256": "c84bbe0f2c0fc58818de1d0283fa9d8436340bbb63447c6e6b7358a8320be210"
|
| 661 |
+
},
|
| 662 |
+
"checkpoints/checkpoint-512/adapter_config.json": {
|
| 663 |
+
"size": 1098,
|
| 664 |
+
"sha256": "342c73d74da62ac2cef52bcfc2ae0971436571e32b7edd7325cfebfd02306622"
|
| 665 |
+
},
|
| 666 |
+
"checkpoints/checkpoint-512/adapter_model.safetensors": {
|
| 667 |
+
"size": 547777976,
|
| 668 |
+
"sha256": "004757923662cc6573db04eb1edf3bcc6f5152f20b0e388191af7ad75b8ba2f5"
|
| 669 |
+
},
|
| 670 |
+
"checkpoints/checkpoint-512/chat_template.jinja": {
|
| 671 |
+
"size": 1532,
|
| 672 |
+
"sha256": "7de1c58e208eda46e9c7f86397df37ec49883aeece39fb961e0a6b24088dd3c4"
|
| 673 |
+
},
|
| 674 |
+
"checkpoints/checkpoint-512/optimizer.pt": {
|
| 675 |
+
"size": 1048106435,
|
| 676 |
+
"sha256": "65916b4beb82a197b99e16dd2db1ea96ed374c4fc8a805d7a27ee6ac4b30a97a"
|
| 677 |
+
},
|
| 678 |
+
"checkpoints/checkpoint-512/rng_state.pth": {
|
| 679 |
+
"size": 14645,
|
| 680 |
+
"sha256": "75e98dcceb68f1b6ee34a96307625206231cf5a0e0e4e16d8a9eafccc33ea3fe"
|
| 681 |
+
},
|
| 682 |
+
"checkpoints/checkpoint-512/scheduler.pt": {
|
| 683 |
+
"size": 1465,
|
| 684 |
+
"sha256": "697fe8894f7795467da8b1a7ccebf8570b28357dc457e2ba8ccdb525507cfef4"
|
| 685 |
+
},
|
| 686 |
+
"checkpoints/checkpoint-512/tokenizer.json": {
|
| 687 |
+
"size": 33384567,
|
| 688 |
+
"sha256": "daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726"
|
| 689 |
+
},
|
| 690 |
+
"checkpoints/checkpoint-512/tokenizer_config.json": {
|
| 691 |
+
"size": 746,
|
| 692 |
+
"sha256": "985e3a86edf82aa70f471b4f974e2fea2c6bac9bfb57edd073d0679f6ecaaae6"
|
| 693 |
+
},
|
| 694 |
+
"checkpoints/checkpoint-512/tokens_state.json": {
|
| 695 |
+
"size": 40,
|
| 696 |
+
"sha256": "fc4826883a470f621364e7e63d0e124d9cfbb8e82cc14c353e3789ba20140b7c"
|
| 697 |
+
},
|
| 698 |
+
"checkpoints/checkpoint-512/trainer_state.json": {
|
| 699 |
+
"size": 225339,
|
| 700 |
+
"sha256": "214dd5dfc66104c85f77093435c580bad895ebea268d82f43a995d8a6de48a2f"
|
| 701 |
+
},
|
| 702 |
+
"checkpoints/checkpoint-512/training_args.bin": {
|
| 703 |
+
"size": 8273,
|
| 704 |
+
"sha256": "406793bea9f8fabcdcfc11db8c5c7a09125572ea519f1927fa7cb779a1e3293b"
|
| 705 |
+
},
|
| 706 |
+
"checkpoints/checkpoint-64/README.md": {
|
| 707 |
+
"size": 5208,
|
| 708 |
+
"sha256": "c84bbe0f2c0fc58818de1d0283fa9d8436340bbb63447c6e6b7358a8320be210"
|
| 709 |
+
},
|
| 710 |
+
"checkpoints/checkpoint-64/adapter_config.json": {
|
| 711 |
+
"size": 1098,
|
| 712 |
+
"sha256": "342c73d74da62ac2cef52bcfc2ae0971436571e32b7edd7325cfebfd02306622"
|
| 713 |
+
},
|
| 714 |
+
"checkpoints/checkpoint-64/adapter_model.safetensors": {
|
| 715 |
+
"size": 547777976,
|
| 716 |
+
"sha256": "4b584e3cf8f378cc0d06c9d8e81b75d4ebec54e9ef2e3bc83848da1c57396f4f"
|
| 717 |
+
},
|
| 718 |
+
"checkpoints/checkpoint-64/chat_template.jinja": {
|
| 719 |
+
"size": 1532,
|
| 720 |
+
"sha256": "7de1c58e208eda46e9c7f86397df37ec49883aeece39fb961e0a6b24088dd3c4"
|
| 721 |
+
},
|
| 722 |
+
"checkpoints/checkpoint-64/optimizer.pt": {
|
| 723 |
+
"size": 1048106435,
|
| 724 |
+
"sha256": "7f8513c58f406f91f4e3f9606a17ac066ff4724ad1843f31a0343e812b8d82fa"
|
| 725 |
+
},
|
| 726 |
+
"checkpoints/checkpoint-64/rng_state.pth": {
|
| 727 |
+
"size": 14645,
|
| 728 |
+
"sha256": "21d00dc563d713980dd7a1d4b126d93ab060fe78b7ba0c4c92f92cd25a992569"
|
| 729 |
+
},
|
| 730 |
+
"checkpoints/checkpoint-64/scheduler.pt": {
|
| 731 |
+
"size": 1465,
|
| 732 |
+
"sha256": "15b31b2361cee4c0a1206aa5d9efeb71d8dc96ceaff5b2fe054baf0716df3503"
|
| 733 |
+
},
|
| 734 |
+
"checkpoints/checkpoint-64/tokenizer.json": {
|
| 735 |
+
"size": 33384567,
|
| 736 |
+
"sha256": "daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726"
|
| 737 |
+
},
|
| 738 |
+
"checkpoints/checkpoint-64/tokenizer_config.json": {
|
| 739 |
+
"size": 746,
|
| 740 |
+
"sha256": "985e3a86edf82aa70f471b4f974e2fea2c6bac9bfb57edd073d0679f6ecaaae6"
|
| 741 |
+
},
|
| 742 |
+
"checkpoints/checkpoint-64/tokens_state.json": {
|
| 743 |
+
"size": 38,
|
| 744 |
+
"sha256": "abe2b3d625c28fc391b4b32077194735a0210c1485305bfd5103fbcb44a1be6f"
|
| 745 |
+
},
|
| 746 |
+
"checkpoints/checkpoint-64/trainer_state.json": {
|
| 747 |
+
"size": 28341,
|
| 748 |
+
"sha256": "3c5eb2a6cc04639bfec45f1939f7237f7564c2fd9fcd70698bbe07b72c3a1099"
|
| 749 |
+
},
|
| 750 |
+
"checkpoints/checkpoint-64/training_args.bin": {
|
| 751 |
+
"size": 8273,
|
| 752 |
+
"sha256": "406793bea9f8fabcdcfc11db8c5c7a09125572ea519f1927fa7cb779a1e3293b"
|
| 753 |
+
},
|
| 754 |
+
"checkpoints/checkpoint-96/README.md": {
|
| 755 |
+
"size": 5208,
|
| 756 |
+
"sha256": "c84bbe0f2c0fc58818de1d0283fa9d8436340bbb63447c6e6b7358a8320be210"
|
| 757 |
+
},
|
| 758 |
+
"checkpoints/checkpoint-96/adapter_config.json": {
|
| 759 |
+
"size": 1098,
|
| 760 |
+
"sha256": "342c73d74da62ac2cef52bcfc2ae0971436571e32b7edd7325cfebfd02306622"
|
| 761 |
+
},
|
| 762 |
+
"checkpoints/checkpoint-96/adapter_model.safetensors": {
|
| 763 |
+
"size": 547777976,
|
| 764 |
+
"sha256": "c9a211aba75f9a340dc57de855c8e2b458e1b586134e0dc1ad3988647f0aa4e9"
|
| 765 |
+
},
|
| 766 |
+
"checkpoints/checkpoint-96/chat_template.jinja": {
|
| 767 |
+
"size": 1532,
|
| 768 |
+
"sha256": "7de1c58e208eda46e9c7f86397df37ec49883aeece39fb961e0a6b24088dd3c4"
|
| 769 |
+
},
|
| 770 |
+
"checkpoints/checkpoint-96/optimizer.pt": {
|
| 771 |
+
"size": 1048106435,
|
| 772 |
+
"sha256": "8c5a9fb4a808c243ca1d455c97cb546577f69e79453fc34bf8fae30def5fa9a8"
|
| 773 |
+
},
|
| 774 |
+
"checkpoints/checkpoint-96/rng_state.pth": {
|
| 775 |
+
"size": 14645,
|
| 776 |
+
"sha256": "58b2d07d478cf0253d5619ad2e9d23f5e40a65de8495503676e2505cd9d2856a"
|
| 777 |
+
},
|
| 778 |
+
"checkpoints/checkpoint-96/scheduler.pt": {
|
| 779 |
+
"size": 1465,
|
| 780 |
+
"sha256": "786444fedf73fac372c74a0ffd25119b2bb7107a3f00f8bfd9a8a46a6f2f4ff0"
|
| 781 |
+
},
|
| 782 |
+
"checkpoints/checkpoint-96/tokenizer.json": {
|
| 783 |
+
"size": 33384567,
|
| 784 |
+
"sha256": "daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726"
|
| 785 |
+
},
|
| 786 |
+
"checkpoints/checkpoint-96/tokenizer_config.json": {
|
| 787 |
+
"size": 746,
|
| 788 |
+
"sha256": "985e3a86edf82aa70f471b4f974e2fea2c6bac9bfb57edd073d0679f6ecaaae6"
|
| 789 |
+
},
|
| 790 |
+
"checkpoints/checkpoint-96/tokens_state.json": {
|
| 791 |
+
"size": 38,
|
| 792 |
+
"sha256": "0b71c52644fe1614b0f38698396e8137456254e1ccd3cdb601c7d33938f83ceb"
|
| 793 |
+
},
|
| 794 |
+
"checkpoints/checkpoint-96/trainer_state.json": {
|
| 795 |
+
"size": 42287,
|
| 796 |
+
"sha256": "245feb515f34fcec3f22e15c1f38d2ee0048e67dee2620e28321f5b100b120c3"
|
| 797 |
+
},
|
| 798 |
+
"checkpoints/checkpoint-96/training_args.bin": {
|
| 799 |
+
"size": 8273,
|
| 800 |
+
"sha256": "406793bea9f8fabcdcfc11db8c5c7a09125572ea519f1927fa7cb779a1e3293b"
|
| 801 |
+
},
|
| 802 |
+
"checkpoints/config.json": {
|
| 803 |
+
"size": 3278,
|
| 804 |
+
"sha256": "7c5b66498629a75e7fe3e4219bc41040b8106735e598f0837d60656025390e1a"
|
| 805 |
+
},
|
| 806 |
+
"checkpoints/debug.log": {
|
| 807 |
+
"size": 269203,
|
| 808 |
+
"sha256": "94ab3fcb79b1485d1dcb2cb4fe45f280ed6de99b12ac070e1d98a73c2314bc0e"
|
| 809 |
+
},
|
| 810 |
+
"checkpoints/processor_config.json": {
|
| 811 |
+
"size": 519,
|
| 812 |
+
"sha256": "e58dda857eb60dae48a0146bedd13f9e4664f4066d6269f1eaa934db8f2d704f"
|
| 813 |
+
},
|
| 814 |
+
"checkpoints/tokenizer.json": {
|
| 815 |
+
"size": 33384567,
|
| 816 |
+
"sha256": "daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726"
|
| 817 |
+
},
|
| 818 |
+
"checkpoints/tokenizer_config.json": {
|
| 819 |
+
"size": 746,
|
| 820 |
+
"sha256": "985e3a86edf82aa70f471b4f974e2fea2c6bac9bfb57edd073d0679f6ecaaae6"
|
| 821 |
+
},
|
| 822 |
+
"checkpoints.jsonl": {
|
| 823 |
+
"size": 141,
|
| 824 |
+
"sha256": "f9ebd414bb02ac8239ec8648ecf483002b2afe26dfc138486e69202fa52337a6"
|
| 825 |
+
},
|
| 826 |
+
"ckpt_coin_real_4x__coin0p2.txt": {
|
| 827 |
+
"size": 52,
|
| 828 |
+
"sha256": "7c354ea2c229a2e33435dc8617ae19ab93f1ef8ec3ea663bc7d91727227b3f90"
|
| 829 |
+
},
|
| 830 |
+
"config/aft_dispatch_v4_wide.yaml": {
|
| 831 |
+
"size": 2948,
|
| 832 |
+
"sha256": "b1b85c30229d17c0d9b199f1409dbd7fe9f5459da0f794303591f5d6a4943fbc"
|
| 833 |
+
},
|
| 834 |
+
"config/axolotl.yaml": {
|
| 835 |
+
"size": 1209,
|
| 836 |
+
"sha256": "ff0dd0239a28c6e029c5a998e7af1d24f1992fe9ad6c681b2519ea28065459b6"
|
| 837 |
+
},
|
| 838 |
+
"health/training_started.json": {
|
| 839 |
+
"size": 137,
|
| 840 |
+
"sha256": "fe44a4371a7b6185814e095796cfa97d265bfd6ab9823dc26cc9b95b1cc9dd06"
|
| 841 |
+
},
|
| 842 |
+
"run.json": {
|
| 843 |
+
"size": 405,
|
| 844 |
+
"sha256": "b08ec6049e6f3fa743e7c82a8caea668b5dcff1ba81557b0c540eb5136737a4a"
|
| 845 |
+
},
|
| 846 |
+
"train.log": {
|
| 847 |
+
"size": 276595,
|
| 848 |
+
"sha256": "341baeec1d4bc5f5452865434c2d00a0098c829143b4e8cc44cf8ffdea2faa60"
|
| 849 |
+
},
|
| 850 |
+
"trainer_state.final.json": {
|
| 851 |
+
"size": 225339,
|
| 852 |
+
"sha256": "214dd5dfc66104c85f77093435c580bad895ebea268d82f43a995d8a6de48a2f"
|
| 853 |
+
},
|
| 854 |
+
"training_examples.jsonl": {
|
| 855 |
+
"size": 3159608,
|
| 856 |
+
"sha256": "dd0cc64e6ffd90ae6e12011517a011c9dbcebed1a51771f305f8702eb9719e9e"
|
| 857 |
+
},
|
| 858 |
+
"training_provenance.json": {
|
| 859 |
+
"size": 4086,
|
| 860 |
+
"sha256": "823bf968f76b9fd7817bff674e27e152b2e94fd2d06f71456a6d8878233b096d"
|
| 861 |
+
},
|
| 862 |
+
"training_trace.jsonl": {
|
| 863 |
+
"size": 182071,
|
| 864 |
+
"sha256": "880b3973f57663c4fac7f55137ef8c6a9a90f3672d4572f397e946a1488c2cf9"
|
| 865 |
+
}
|
| 866 |
+
}
|
| 867 |
+
}
|
aft_wave_v2/coin_real_4x__coin0p2/training/TRAINED.json
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"version": "dispatch_wave_v2",
|
| 3 |
+
"arm": "coin_real_4x__coin0p2",
|
| 4 |
+
"parameterization": "lora",
|
| 5 |
+
"parent_repo": "arcadia-impact/scimt-dispatch-models",
|
| 6 |
+
"parent_prefix": "sft_4epoch/coin/checkpoint-48",
|
| 7 |
+
"dataset_sha256": "bf34ebe8a30ee23f25ff7e532974b5fc79d0231b4eb0393ba92b50b266c493b9",
|
| 8 |
+
"training_rows": 8192,
|
| 9 |
+
"stage": "aft_dispatch_v4_wide",
|
| 10 |
+
"seed": 42,
|
| 11 |
+
"minutes": 59.31,
|
| 12 |
+
"lora": {
|
| 13 |
+
"r": 32,
|
| 14 |
+
"alpha": 64,
|
| 15 |
+
"dropout": 0.05,
|
| 16 |
+
"target_linear": false,
|
| 17 |
+
"target_modules": [
|
| 18 |
+
"q_proj",
|
| 19 |
+
"k_proj",
|
| 20 |
+
"v_proj",
|
| 21 |
+
"o_proj",
|
| 22 |
+
"gate_proj",
|
| 23 |
+
"up_proj",
|
| 24 |
+
"down_proj"
|
| 25 |
+
],
|
| 26 |
+
"initial_adapter_path": null
|
| 27 |
+
},
|
| 28 |
+
"optimizer_steps": 512,
|
| 29 |
+
"checkpoint_steps": [
|
| 30 |
+
32,
|
| 31 |
+
64,
|
| 32 |
+
96,
|
| 33 |
+
128,
|
| 34 |
+
160,
|
| 35 |
+
192,
|
| 36 |
+
224,
|
| 37 |
+
256,
|
| 38 |
+
288,
|
| 39 |
+
320,
|
| 40 |
+
352,
|
| 41 |
+
384,
|
| 42 |
+
416,
|
| 43 |
+
448,
|
| 44 |
+
480,
|
| 45 |
+
512
|
| 46 |
+
],
|
| 47 |
+
"eval_steps": [
|
| 48 |
+
32,
|
| 49 |
+
64,
|
| 50 |
+
128,
|
| 51 |
+
256,
|
| 52 |
+
512
|
| 53 |
+
],
|
| 54 |
+
"optimizer_state_saved": true
|
| 55 |
+
}
|
aft_wave_v2/coin_real_4x__coin0p2/training/axolotl.yaml
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
base_model: /workspace/wave/parent
|
| 2 |
+
base_model_config: unsloth/gemma-3-12b-pt
|
| 3 |
+
plugins:
|
| 4 |
+
- axolotl.integrations.liger.LigerPlugin
|
| 5 |
+
liger_fused_linear_cross_entropy: true
|
| 6 |
+
liger_rope: true
|
| 7 |
+
liger_rms_norm: true
|
| 8 |
+
liger_glu_activation: true
|
| 9 |
+
datasets:
|
| 10 |
+
- path: /workspace/wave/data/datasets/aft_coin0p2.jsonl
|
| 11 |
+
type: chat_template
|
| 12 |
+
field_messages: messages
|
| 13 |
+
eot_tokens:
|
| 14 |
+
- <end_of_turn>
|
| 15 |
+
chat_template: gemma3
|
| 16 |
+
train_on_inputs: false
|
| 17 |
+
sequence_len: 1280
|
| 18 |
+
sample_packing: false
|
| 19 |
+
pad_to_sequence_len: false
|
| 20 |
+
micro_batch_size: 16
|
| 21 |
+
gradient_accumulation_steps: 2
|
| 22 |
+
num_epochs: 2
|
| 23 |
+
learning_rate: 0.0001
|
| 24 |
+
trust_remote_code: false
|
| 25 |
+
dataset_prepared_path: /workspace/wave/training/prepared
|
| 26 |
+
dataset_processes: 8
|
| 27 |
+
bf16: true
|
| 28 |
+
tf32: true
|
| 29 |
+
flash_attention: false
|
| 30 |
+
sdp_attention: true
|
| 31 |
+
gradient_checkpointing: true
|
| 32 |
+
optimizer: adamw_torch_fused
|
| 33 |
+
weight_decay: 0.01
|
| 34 |
+
max_grad_norm: 1.0
|
| 35 |
+
lr_scheduler: cosine
|
| 36 |
+
cosine_min_lr_ratio: 0.1
|
| 37 |
+
warmup_ratio: 0.05
|
| 38 |
+
logging_steps: 1
|
| 39 |
+
save_strategy: steps
|
| 40 |
+
save_steps: 32
|
| 41 |
+
save_only_model: false
|
| 42 |
+
save_total_limit: 20
|
| 43 |
+
seed: 42
|
| 44 |
+
output_dir: /workspace/wave/training/checkpoints
|
| 45 |
+
adapter: lora
|
| 46 |
+
lora_r: 32
|
| 47 |
+
lora_alpha: 64
|
| 48 |
+
lora_dropout: 0.05
|
| 49 |
+
lora_target_modules:
|
| 50 |
+
- q_proj
|
| 51 |
+
- k_proj
|
| 52 |
+
- v_proj
|
| 53 |
+
- o_proj
|
| 54 |
+
- gate_proj
|
| 55 |
+
- up_proj
|
| 56 |
+
- down_proj
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoint.json
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"experiment": "scimt-train:coin_real_4x__coin0p2",
|
| 3 |
+
"spec": null,
|
| 4 |
+
"kind": null,
|
| 5 |
+
"note": "Spec-free training stage (scimt.train.train_dataset) \u2014 a post-training link in a staged chain, not a spec install.",
|
| 6 |
+
"train": {
|
| 7 |
+
"data": "/workspace/wave/data/datasets/aft_coin0p2.jsonl",
|
| 8 |
+
"dataset_meta": {
|
| 9 |
+
"adhoc": true
|
| 10 |
+
},
|
| 11 |
+
"stage": "aft_dispatch_v4_wide",
|
| 12 |
+
"seed": 42,
|
| 13 |
+
"load_checkpoint_path": "/workspace/wave/parent",
|
| 14 |
+
"grpo": null,
|
| 15 |
+
"lora": {
|
| 16 |
+
"r": 32,
|
| 17 |
+
"alpha": 64,
|
| 18 |
+
"dropout": 0.05,
|
| 19 |
+
"target_linear": false,
|
| 20 |
+
"target_modules": [
|
| 21 |
+
"q_proj",
|
| 22 |
+
"k_proj",
|
| 23 |
+
"v_proj",
|
| 24 |
+
"o_proj",
|
| 25 |
+
"gate_proj",
|
| 26 |
+
"up_proj",
|
| 27 |
+
"down_proj"
|
| 28 |
+
],
|
| 29 |
+
"initial_adapter_path": null
|
| 30 |
+
}
|
| 31 |
+
},
|
| 32 |
+
"run_name": "coin_real_4x__coin0p2",
|
| 33 |
+
"pointer_file": "/workspace/wave/training/ckpt_coin_real_4x__coin0p2.txt",
|
| 34 |
+
"backend": "axolotl",
|
| 35 |
+
"sampler": "/workspace/wave/training/checkpoints/checkpoint-512",
|
| 36 |
+
"state": "/workspace/wave/training/checkpoints/checkpoint-512",
|
| 37 |
+
"model": "gemma3_12b_it",
|
| 38 |
+
"meta": {
|
| 39 |
+
"experiment": "scimt-train:coin_real_4x__coin0p2",
|
| 40 |
+
"spec": null,
|
| 41 |
+
"kind": null,
|
| 42 |
+
"note": "Spec-free training stage (scimt.train.train_dataset) \u2014 a post-training link in a staged chain, not a spec install.",
|
| 43 |
+
"train": {
|
| 44 |
+
"data": "/workspace/wave/data/datasets/aft_coin0p2.jsonl",
|
| 45 |
+
"dataset_meta": {
|
| 46 |
+
"adhoc": true
|
| 47 |
+
},
|
| 48 |
+
"stage": "aft_dispatch_v4_wide",
|
| 49 |
+
"seed": 42,
|
| 50 |
+
"load_checkpoint_path": "/workspace/wave/parent",
|
| 51 |
+
"grpo": null,
|
| 52 |
+
"lora": {
|
| 53 |
+
"r": 32,
|
| 54 |
+
"alpha": 64,
|
| 55 |
+
"dropout": 0.05,
|
| 56 |
+
"target_linear": false,
|
| 57 |
+
"target_modules": [
|
| 58 |
+
"q_proj",
|
| 59 |
+
"k_proj",
|
| 60 |
+
"v_proj",
|
| 61 |
+
"o_proj",
|
| 62 |
+
"gate_proj",
|
| 63 |
+
"up_proj",
|
| 64 |
+
"down_proj"
|
| 65 |
+
],
|
| 66 |
+
"initial_adapter_path": null
|
| 67 |
+
}
|
| 68 |
+
},
|
| 69 |
+
"run_name": "coin_real_4x__coin0p2",
|
| 70 |
+
"pointer_file": "/workspace/wave/training/ckpt_coin_real_4x__coin0p2.txt"
|
| 71 |
+
},
|
| 72 |
+
"sampler_path": "/workspace/wave/training/checkpoints/checkpoint-512",
|
| 73 |
+
"state_path": "/workspace/wave/training/checkpoints/checkpoint-512"
|
| 74 |
+
}
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints.jsonl
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"state_path": "/workspace/wave/training/checkpoints/checkpoint-512", "sampler_path": "/workspace/wave/training/checkpoints/checkpoint-512"}
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/README.md
ADDED
|
@@ -0,0 +1,128 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: peft
|
| 3 |
+
tags:
|
| 4 |
+
- axolotl
|
| 5 |
+
- base_model:adapter:/workspace/wave/parent
|
| 6 |
+
- lora
|
| 7 |
+
- transformers
|
| 8 |
+
datasets:
|
| 9 |
+
- /workspace/wave/data/datasets/aft_coin0p2.jsonl
|
| 10 |
+
pipeline_tag: text-generation
|
| 11 |
+
base_model: /workspace/wave/parent
|
| 12 |
+
model-index:
|
| 13 |
+
- name: workspace/wave/training/checkpoints
|
| 14 |
+
results: []
|
| 15 |
+
---
|
| 16 |
+
|
| 17 |
+
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
| 18 |
+
should probably proofread and complete it, then remove this comment. -->
|
| 19 |
+
|
| 20 |
+
[<img src="https://raw.githubusercontent.com/axolotl-ai-cloud/axolotl/main/image/axolotl-badge-web.png" alt="Built with Axolotl" width="200" height="32"/>](https://github.com/axolotl-ai-cloud/axolotl)
|
| 21 |
+
<details><summary>See axolotl config</summary>
|
| 22 |
+
|
| 23 |
+
axolotl version: `0.17.0`
|
| 24 |
+
```yaml
|
| 25 |
+
base_model: /workspace/wave/parent
|
| 26 |
+
base_model_config: unsloth/gemma-3-12b-pt
|
| 27 |
+
plugins:
|
| 28 |
+
- axolotl.integrations.liger.LigerPlugin
|
| 29 |
+
liger_fused_linear_cross_entropy: true
|
| 30 |
+
liger_rope: true
|
| 31 |
+
liger_rms_norm: true
|
| 32 |
+
liger_glu_activation: true
|
| 33 |
+
datasets:
|
| 34 |
+
- path: /workspace/wave/data/datasets/aft_coin0p2.jsonl
|
| 35 |
+
type: chat_template
|
| 36 |
+
field_messages: messages
|
| 37 |
+
eot_tokens:
|
| 38 |
+
- <end_of_turn>
|
| 39 |
+
chat_template: gemma3
|
| 40 |
+
train_on_inputs: false
|
| 41 |
+
sequence_len: 1280
|
| 42 |
+
sample_packing: false
|
| 43 |
+
pad_to_sequence_len: false
|
| 44 |
+
micro_batch_size: 16
|
| 45 |
+
gradient_accumulation_steps: 2
|
| 46 |
+
num_epochs: 2
|
| 47 |
+
learning_rate: 0.0001
|
| 48 |
+
trust_remote_code: false
|
| 49 |
+
dataset_prepared_path: /workspace/wave/training/prepared
|
| 50 |
+
dataset_processes: 8
|
| 51 |
+
bf16: true
|
| 52 |
+
tf32: true
|
| 53 |
+
flash_attention: false
|
| 54 |
+
sdp_attention: true
|
| 55 |
+
gradient_checkpointing: true
|
| 56 |
+
optimizer: adamw_torch_fused
|
| 57 |
+
weight_decay: 0.01
|
| 58 |
+
max_grad_norm: 1.0
|
| 59 |
+
lr_scheduler: cosine
|
| 60 |
+
cosine_min_lr_ratio: 0.1
|
| 61 |
+
warmup_ratio: 0.05
|
| 62 |
+
logging_steps: 1
|
| 63 |
+
save_strategy: steps
|
| 64 |
+
save_steps: 32
|
| 65 |
+
save_only_model: false
|
| 66 |
+
save_total_limit: 20
|
| 67 |
+
seed: 42
|
| 68 |
+
output_dir: /workspace/wave/training/checkpoints
|
| 69 |
+
adapter: lora
|
| 70 |
+
lora_r: 32
|
| 71 |
+
lora_alpha: 64
|
| 72 |
+
lora_dropout: 0.05
|
| 73 |
+
lora_target_modules:
|
| 74 |
+
- q_proj
|
| 75 |
+
- k_proj
|
| 76 |
+
- v_proj
|
| 77 |
+
- o_proj
|
| 78 |
+
- gate_proj
|
| 79 |
+
- up_proj
|
| 80 |
+
- down_proj
|
| 81 |
+
|
| 82 |
+
```
|
| 83 |
+
|
| 84 |
+
</details><br>
|
| 85 |
+
|
| 86 |
+
# workspace/wave/training/checkpoints
|
| 87 |
+
|
| 88 |
+
This model was trained from scratch on the /workspace/wave/data/datasets/aft_coin0p2.jsonl dataset.
|
| 89 |
+
|
| 90 |
+
## Model description
|
| 91 |
+
|
| 92 |
+
More information needed
|
| 93 |
+
|
| 94 |
+
## Intended uses & limitations
|
| 95 |
+
|
| 96 |
+
More information needed
|
| 97 |
+
|
| 98 |
+
## Training and evaluation data
|
| 99 |
+
|
| 100 |
+
More information needed
|
| 101 |
+
|
| 102 |
+
## Training procedure
|
| 103 |
+
|
| 104 |
+
### Training hyperparameters
|
| 105 |
+
|
| 106 |
+
The following hyperparameters were used during training:
|
| 107 |
+
- learning_rate: 0.0001
|
| 108 |
+
- train_batch_size: 16
|
| 109 |
+
- eval_batch_size: 16
|
| 110 |
+
- seed: 42
|
| 111 |
+
- gradient_accumulation_steps: 2
|
| 112 |
+
- total_train_batch_size: 32
|
| 113 |
+
- optimizer: Use OptimizerNames.ADAMW_TORCH_FUSED with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
|
| 114 |
+
- lr_scheduler_type: cosine
|
| 115 |
+
- lr_scheduler_warmup_steps: 25
|
| 116 |
+
- training_steps: 512
|
| 117 |
+
|
| 118 |
+
### Training results
|
| 119 |
+
|
| 120 |
+
|
| 121 |
+
|
| 122 |
+
### Framework versions
|
| 123 |
+
|
| 124 |
+
- PEFT 0.19.1
|
| 125 |
+
- Transformers 5.9.0
|
| 126 |
+
- Pytorch 2.12.1+cu126
|
| 127 |
+
- Datasets 4.8.5
|
| 128 |
+
- Tokenizers 0.22.2
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/adapter_config.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "/workspace/wave/parent",
|
| 7 |
+
"bias": "none",
|
| 8 |
+
"corda_config": null,
|
| 9 |
+
"ensure_weight_tying": false,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": null,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 64,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.05,
|
| 22 |
+
"lora_ga_config": null,
|
| 23 |
+
"megatron_config": null,
|
| 24 |
+
"megatron_core": "megatron.core",
|
| 25 |
+
"modules_to_save": null,
|
| 26 |
+
"peft_type": "LORA",
|
| 27 |
+
"peft_version": "0.19.1",
|
| 28 |
+
"qalora_group_size": 16,
|
| 29 |
+
"r": 32,
|
| 30 |
+
"rank_pattern": {},
|
| 31 |
+
"revision": null,
|
| 32 |
+
"target_modules": [
|
| 33 |
+
"o_proj",
|
| 34 |
+
"down_proj",
|
| 35 |
+
"v_proj",
|
| 36 |
+
"up_proj",
|
| 37 |
+
"k_proj",
|
| 38 |
+
"gate_proj",
|
| 39 |
+
"q_proj"
|
| 40 |
+
],
|
| 41 |
+
"target_parameters": [],
|
| 42 |
+
"task_type": "CAUSAL_LM",
|
| 43 |
+
"trainable_token_indices": null,
|
| 44 |
+
"use_bdlora": null,
|
| 45 |
+
"use_dora": false,
|
| 46 |
+
"use_qalora": false,
|
| 47 |
+
"use_rslora": false
|
| 48 |
+
}
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:004757923662cc6573db04eb1edf3bcc6f5152f20b0e388191af7ad75b8ba2f5
|
| 3 |
+
size 547777976
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/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 -%}
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-128/README.md
ADDED
|
@@ -0,0 +1,208 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: /workspace/wave/parent
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- axolotl
|
| 7 |
+
- base_model:adapter:/workspace/wave/parent
|
| 8 |
+
- lora
|
| 9 |
+
- transformers
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# Model Card for Model ID
|
| 13 |
+
|
| 14 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
## Model Details
|
| 19 |
+
|
| 20 |
+
### Model Description
|
| 21 |
+
|
| 22 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
- **Developed by:** [More Information Needed]
|
| 27 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 28 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 29 |
+
- **Model type:** [More Information Needed]
|
| 30 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 31 |
+
- **License:** [More Information Needed]
|
| 32 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 33 |
+
|
| 34 |
+
### Model Sources [optional]
|
| 35 |
+
|
| 36 |
+
<!-- Provide the basic links for the model. -->
|
| 37 |
+
|
| 38 |
+
- **Repository:** [More Information Needed]
|
| 39 |
+
- **Paper [optional]:** [More Information Needed]
|
| 40 |
+
- **Demo [optional]:** [More Information Needed]
|
| 41 |
+
|
| 42 |
+
## Uses
|
| 43 |
+
|
| 44 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 45 |
+
|
| 46 |
+
### Direct Use
|
| 47 |
+
|
| 48 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 49 |
+
|
| 50 |
+
[More Information Needed]
|
| 51 |
+
|
| 52 |
+
### Downstream Use [optional]
|
| 53 |
+
|
| 54 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 55 |
+
|
| 56 |
+
[More Information Needed]
|
| 57 |
+
|
| 58 |
+
### Out-of-Scope Use
|
| 59 |
+
|
| 60 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 61 |
+
|
| 62 |
+
[More Information Needed]
|
| 63 |
+
|
| 64 |
+
## Bias, Risks, and Limitations
|
| 65 |
+
|
| 66 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 67 |
+
|
| 68 |
+
[More Information Needed]
|
| 69 |
+
|
| 70 |
+
### Recommendations
|
| 71 |
+
|
| 72 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 73 |
+
|
| 74 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 75 |
+
|
| 76 |
+
## How to Get Started with the Model
|
| 77 |
+
|
| 78 |
+
Use the code below to get started with the model.
|
| 79 |
+
|
| 80 |
+
[More Information Needed]
|
| 81 |
+
|
| 82 |
+
## Training Details
|
| 83 |
+
|
| 84 |
+
### Training Data
|
| 85 |
+
|
| 86 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 87 |
+
|
| 88 |
+
[More Information Needed]
|
| 89 |
+
|
| 90 |
+
### Training Procedure
|
| 91 |
+
|
| 92 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 93 |
+
|
| 94 |
+
#### Preprocessing [optional]
|
| 95 |
+
|
| 96 |
+
[More Information Needed]
|
| 97 |
+
|
| 98 |
+
|
| 99 |
+
#### Training Hyperparameters
|
| 100 |
+
|
| 101 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 102 |
+
|
| 103 |
+
#### Speeds, Sizes, Times [optional]
|
| 104 |
+
|
| 105 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 106 |
+
|
| 107 |
+
[More Information Needed]
|
| 108 |
+
|
| 109 |
+
## Evaluation
|
| 110 |
+
|
| 111 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 112 |
+
|
| 113 |
+
### Testing Data, Factors & Metrics
|
| 114 |
+
|
| 115 |
+
#### Testing Data
|
| 116 |
+
|
| 117 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 118 |
+
|
| 119 |
+
[More Information Needed]
|
| 120 |
+
|
| 121 |
+
#### Factors
|
| 122 |
+
|
| 123 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 124 |
+
|
| 125 |
+
[More Information Needed]
|
| 126 |
+
|
| 127 |
+
#### Metrics
|
| 128 |
+
|
| 129 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 130 |
+
|
| 131 |
+
[More Information Needed]
|
| 132 |
+
|
| 133 |
+
### Results
|
| 134 |
+
|
| 135 |
+
[More Information Needed]
|
| 136 |
+
|
| 137 |
+
#### Summary
|
| 138 |
+
|
| 139 |
+
|
| 140 |
+
|
| 141 |
+
## Model Examination [optional]
|
| 142 |
+
|
| 143 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 144 |
+
|
| 145 |
+
[More Information Needed]
|
| 146 |
+
|
| 147 |
+
## Environmental Impact
|
| 148 |
+
|
| 149 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 150 |
+
|
| 151 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 152 |
+
|
| 153 |
+
- **Hardware Type:** [More Information Needed]
|
| 154 |
+
- **Hours used:** [More Information Needed]
|
| 155 |
+
- **Cloud Provider:** [More Information Needed]
|
| 156 |
+
- **Compute Region:** [More Information Needed]
|
| 157 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 158 |
+
|
| 159 |
+
## Technical Specifications [optional]
|
| 160 |
+
|
| 161 |
+
### Model Architecture and Objective
|
| 162 |
+
|
| 163 |
+
[More Information Needed]
|
| 164 |
+
|
| 165 |
+
### Compute Infrastructure
|
| 166 |
+
|
| 167 |
+
[More Information Needed]
|
| 168 |
+
|
| 169 |
+
#### Hardware
|
| 170 |
+
|
| 171 |
+
[More Information Needed]
|
| 172 |
+
|
| 173 |
+
#### Software
|
| 174 |
+
|
| 175 |
+
[More Information Needed]
|
| 176 |
+
|
| 177 |
+
## Citation [optional]
|
| 178 |
+
|
| 179 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 180 |
+
|
| 181 |
+
**BibTeX:**
|
| 182 |
+
|
| 183 |
+
[More Information Needed]
|
| 184 |
+
|
| 185 |
+
**APA:**
|
| 186 |
+
|
| 187 |
+
[More Information Needed]
|
| 188 |
+
|
| 189 |
+
## Glossary [optional]
|
| 190 |
+
|
| 191 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 192 |
+
|
| 193 |
+
[More Information Needed]
|
| 194 |
+
|
| 195 |
+
## More Information [optional]
|
| 196 |
+
|
| 197 |
+
[More Information Needed]
|
| 198 |
+
|
| 199 |
+
## Model Card Authors [optional]
|
| 200 |
+
|
| 201 |
+
[More Information Needed]
|
| 202 |
+
|
| 203 |
+
## Model Card Contact
|
| 204 |
+
|
| 205 |
+
[More Information Needed]
|
| 206 |
+
### Framework versions
|
| 207 |
+
|
| 208 |
+
- PEFT 0.19.1
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-128/adapter_config.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "/workspace/wave/parent",
|
| 7 |
+
"bias": "none",
|
| 8 |
+
"corda_config": null,
|
| 9 |
+
"ensure_weight_tying": false,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": null,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 64,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.05,
|
| 22 |
+
"lora_ga_config": null,
|
| 23 |
+
"megatron_config": null,
|
| 24 |
+
"megatron_core": "megatron.core",
|
| 25 |
+
"modules_to_save": null,
|
| 26 |
+
"peft_type": "LORA",
|
| 27 |
+
"peft_version": "0.19.1",
|
| 28 |
+
"qalora_group_size": 16,
|
| 29 |
+
"r": 32,
|
| 30 |
+
"rank_pattern": {},
|
| 31 |
+
"revision": null,
|
| 32 |
+
"target_modules": [
|
| 33 |
+
"o_proj",
|
| 34 |
+
"down_proj",
|
| 35 |
+
"v_proj",
|
| 36 |
+
"up_proj",
|
| 37 |
+
"k_proj",
|
| 38 |
+
"gate_proj",
|
| 39 |
+
"q_proj"
|
| 40 |
+
],
|
| 41 |
+
"target_parameters": [],
|
| 42 |
+
"task_type": "CAUSAL_LM",
|
| 43 |
+
"trainable_token_indices": null,
|
| 44 |
+
"use_bdlora": null,
|
| 45 |
+
"use_dora": false,
|
| 46 |
+
"use_qalora": false,
|
| 47 |
+
"use_rslora": false
|
| 48 |
+
}
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-128/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4fc2babf0e54f7a72a2f3faf84eaa36b6c79b527536e07ce1841f5e43580c86b
|
| 3 |
+
size 547777976
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-128/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 -%}
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-128/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:31ebd596a72dab4299216ee54f745a345beefed2232502312721b27dead61c31
|
| 3 |
+
size 1048106435
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-128/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:234e8c0c3fd2b805b594ff492259b2db7aead6c3ca1abbea3168b40935e4d0cb
|
| 3 |
+
size 14645
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-128/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:efd85ddb91fbafff2e34e19b252134ec33fb00857c2936b417257fd723d5c25f
|
| 3 |
+
size 1465
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-128/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726
|
| 3 |
+
size 33384567
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-128/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": false,
|
| 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 |
+
}
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-128/tokens_state.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"total": 3872688, "trainable": 58451}
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-128/trainer_state.json
ADDED
|
@@ -0,0 +1,1826 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.5,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 128,
|
| 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.00390625,
|
| 14 |
+
"grad_norm": 1.000339388847351,
|
| 15 |
+
"learning_rate": 0.0,
|
| 16 |
+
"loss": 0.11221420764923096,
|
| 17 |
+
"memory/device_reserved (GiB)": 33.9,
|
| 18 |
+
"memory/max_active (GiB)": 32.79,
|
| 19 |
+
"memory/max_allocated (GiB)": 32.79,
|
| 20 |
+
"ppl": 1.11875,
|
| 21 |
+
"step": 1,
|
| 22 |
+
"tokens/total": 30176,
|
| 23 |
+
"tokens/train_per_sec_per_gpu": 27.52,
|
| 24 |
+
"tokens/trainable": 417
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"epoch": 0.0078125,
|
| 28 |
+
"grad_norm": 0.8961698412895203,
|
| 29 |
+
"learning_rate": 4.000000000000001e-06,
|
| 30 |
+
"loss": 0.11656901985406876,
|
| 31 |
+
"memory/device_reserved (GiB)": 34.68,
|
| 32 |
+
"memory/max_active (GiB)": 33.77,
|
| 33 |
+
"memory/max_allocated (GiB)": 33.77,
|
| 34 |
+
"ppl": 1.12364,
|
| 35 |
+
"step": 2,
|
| 36 |
+
"tokens/total": 60272,
|
| 37 |
+
"tokens/train_per_sec_per_gpu": 34.78,
|
| 38 |
+
"tokens/trainable": 873
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"epoch": 0.01171875,
|
| 42 |
+
"grad_norm": 2.5287365913391113,
|
| 43 |
+
"learning_rate": 8.000000000000001e-06,
|
| 44 |
+
"loss": 0.11233991384506226,
|
| 45 |
+
"memory/device_reserved (GiB)": 34.72,
|
| 46 |
+
"memory/max_active (GiB)": 33.83,
|
| 47 |
+
"memory/max_allocated (GiB)": 33.83,
|
| 48 |
+
"ppl": 1.11889,
|
| 49 |
+
"step": 3,
|
| 50 |
+
"tokens/total": 90512,
|
| 51 |
+
"tokens/train_per_sec_per_gpu": 35.02,
|
| 52 |
+
"tokens/trainable": 1353
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"epoch": 0.015625,
|
| 56 |
+
"grad_norm": 1.3438372611999512,
|
| 57 |
+
"learning_rate": 1.2e-05,
|
| 58 |
+
"loss": 0.10132055729627609,
|
| 59 |
+
"memory/device_reserved (GiB)": 34.73,
|
| 60 |
+
"memory/max_active (GiB)": 33.84,
|
| 61 |
+
"memory/max_allocated (GiB)": 33.84,
|
| 62 |
+
"ppl": 1.10663,
|
| 63 |
+
"step": 4,
|
| 64 |
+
"tokens/total": 120944,
|
| 65 |
+
"tokens/train_per_sec_per_gpu": 31.26,
|
| 66 |
+
"tokens/trainable": 1778
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"epoch": 0.01953125,
|
| 70 |
+
"grad_norm": 1.0121135711669922,
|
| 71 |
+
"learning_rate": 1.6000000000000003e-05,
|
| 72 |
+
"loss": 0.11346302926540375,
|
| 73 |
+
"memory/device_reserved (GiB)": 35.12,
|
| 74 |
+
"memory/max_active (GiB)": 33.91,
|
| 75 |
+
"memory/max_allocated (GiB)": 33.91,
|
| 76 |
+
"ppl": 1.12015,
|
| 77 |
+
"step": 5,
|
| 78 |
+
"tokens/total": 151440,
|
| 79 |
+
"tokens/train_per_sec_per_gpu": 36.72,
|
| 80 |
+
"tokens/trainable": 2261
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"epoch": 0.0234375,
|
| 84 |
+
"grad_norm": 3.9203455448150635,
|
| 85 |
+
"learning_rate": 2e-05,
|
| 86 |
+
"loss": 0.09780596196651459,
|
| 87 |
+
"memory/device_reserved (GiB)": 36.12,
|
| 88 |
+
"memory/max_active (GiB)": 33.94,
|
| 89 |
+
"memory/max_allocated (GiB)": 33.94,
|
| 90 |
+
"ppl": 1.10275,
|
| 91 |
+
"step": 6,
|
| 92 |
+
"tokens/total": 181984,
|
| 93 |
+
"tokens/train_per_sec_per_gpu": 32.9,
|
| 94 |
+
"tokens/trainable": 2705
|
| 95 |
+
},
|
| 96 |
+
{
|
| 97 |
+
"epoch": 0.02734375,
|
| 98 |
+
"grad_norm": 1.63088059425354,
|
| 99 |
+
"learning_rate": 2.4e-05,
|
| 100 |
+
"loss": 0.06366116553544998,
|
| 101 |
+
"memory/device_reserved (GiB)": 36.12,
|
| 102 |
+
"memory/max_active (GiB)": 33.87,
|
| 103 |
+
"memory/max_allocated (GiB)": 33.87,
|
| 104 |
+
"ppl": 1.06573,
|
| 105 |
+
"step": 7,
|
| 106 |
+
"tokens/total": 212336,
|
| 107 |
+
"tokens/train_per_sec_per_gpu": 33.89,
|
| 108 |
+
"tokens/trainable": 3136
|
| 109 |
+
},
|
| 110 |
+
{
|
| 111 |
+
"epoch": 0.03125,
|
| 112 |
+
"grad_norm": 1.9995646476745605,
|
| 113 |
+
"learning_rate": 2.8000000000000003e-05,
|
| 114 |
+
"loss": 0.0759042352437973,
|
| 115 |
+
"memory/device_reserved (GiB)": 36.12,
|
| 116 |
+
"memory/max_active (GiB)": 33.9,
|
| 117 |
+
"memory/max_allocated (GiB)": 33.9,
|
| 118 |
+
"ppl": 1.07886,
|
| 119 |
+
"step": 8,
|
| 120 |
+
"tokens/total": 242592,
|
| 121 |
+
"tokens/train_per_sec_per_gpu": 34.22,
|
| 122 |
+
"tokens/trainable": 3579
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"epoch": 0.03515625,
|
| 126 |
+
"grad_norm": 1.0774554014205933,
|
| 127 |
+
"learning_rate": 3.2000000000000005e-05,
|
| 128 |
+
"loss": 0.04145222157239914,
|
| 129 |
+
"memory/device_reserved (GiB)": 36.12,
|
| 130 |
+
"memory/max_active (GiB)": 33.77,
|
| 131 |
+
"memory/max_allocated (GiB)": 33.77,
|
| 132 |
+
"ppl": 1.04232,
|
| 133 |
+
"step": 9,
|
| 134 |
+
"tokens/total": 272784,
|
| 135 |
+
"tokens/train_per_sec_per_gpu": 29.14,
|
| 136 |
+
"tokens/trainable": 4000
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 0.0390625,
|
| 140 |
+
"grad_norm": 1.9648898839950562,
|
| 141 |
+
"learning_rate": 3.6e-05,
|
| 142 |
+
"loss": 0.032875221222639084,
|
| 143 |
+
"memory/device_reserved (GiB)": 37.81,
|
| 144 |
+
"memory/max_active (GiB)": 33.89,
|
| 145 |
+
"memory/max_allocated (GiB)": 33.89,
|
| 146 |
+
"ppl": 1.03342,
|
| 147 |
+
"step": 10,
|
| 148 |
+
"tokens/total": 303184,
|
| 149 |
+
"tokens/train_per_sec_per_gpu": 37.67,
|
| 150 |
+
"tokens/trainable": 4474
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"epoch": 0.04296875,
|
| 154 |
+
"grad_norm": 0.5937227606773376,
|
| 155 |
+
"learning_rate": 4e-05,
|
| 156 |
+
"loss": 0.023198626935482025,
|
| 157 |
+
"memory/device_reserved (GiB)": 37.81,
|
| 158 |
+
"memory/max_active (GiB)": 33.73,
|
| 159 |
+
"memory/max_allocated (GiB)": 33.73,
|
| 160 |
+
"ppl": 1.02347,
|
| 161 |
+
"step": 11,
|
| 162 |
+
"tokens/total": 333296,
|
| 163 |
+
"tokens/train_per_sec_per_gpu": 33.15,
|
| 164 |
+
"tokens/trainable": 4942
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"epoch": 0.046875,
|
| 168 |
+
"grad_norm": 5.294079303741455,
|
| 169 |
+
"learning_rate": 4.4000000000000006e-05,
|
| 170 |
+
"loss": 0.0510174036026001,
|
| 171 |
+
"memory/device_reserved (GiB)": 37.81,
|
| 172 |
+
"memory/max_active (GiB)": 33.96,
|
| 173 |
+
"memory/max_allocated (GiB)": 33.96,
|
| 174 |
+
"ppl": 1.05234,
|
| 175 |
+
"step": 12,
|
| 176 |
+
"tokens/total": 363840,
|
| 177 |
+
"tokens/train_per_sec_per_gpu": 34.23,
|
| 178 |
+
"tokens/trainable": 5424
|
| 179 |
+
},
|
| 180 |
+
{
|
| 181 |
+
"epoch": 0.05078125,
|
| 182 |
+
"grad_norm": 2.7166640758514404,
|
| 183 |
+
"learning_rate": 4.8e-05,
|
| 184 |
+
"loss": 0.06956956535577774,
|
| 185 |
+
"memory/device_reserved (GiB)": 37.81,
|
| 186 |
+
"memory/max_active (GiB)": 33.9,
|
| 187 |
+
"memory/max_allocated (GiB)": 33.9,
|
| 188 |
+
"ppl": 1.07205,
|
| 189 |
+
"step": 13,
|
| 190 |
+
"tokens/total": 394112,
|
| 191 |
+
"tokens/train_per_sec_per_gpu": 35.23,
|
| 192 |
+
"tokens/trainable": 5855
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"epoch": 0.0546875,
|
| 196 |
+
"grad_norm": 2.1496169567108154,
|
| 197 |
+
"learning_rate": 5.2000000000000004e-05,
|
| 198 |
+
"loss": 0.06250961124897003,
|
| 199 |
+
"memory/device_reserved (GiB)": 37.81,
|
| 200 |
+
"memory/max_active (GiB)": 33.91,
|
| 201 |
+
"memory/max_allocated (GiB)": 33.91,
|
| 202 |
+
"ppl": 1.0645,
|
| 203 |
+
"step": 14,
|
| 204 |
+
"tokens/total": 424656,
|
| 205 |
+
"tokens/train_per_sec_per_gpu": 34.78,
|
| 206 |
+
"tokens/trainable": 6344
|
| 207 |
+
},
|
| 208 |
+
{
|
| 209 |
+
"epoch": 0.05859375,
|
| 210 |
+
"grad_norm": 3.515660047531128,
|
| 211 |
+
"learning_rate": 5.6000000000000006e-05,
|
| 212 |
+
"loss": 0.09882807731628418,
|
| 213 |
+
"memory/device_reserved (GiB)": 37.81,
|
| 214 |
+
"memory/max_active (GiB)": 33.96,
|
| 215 |
+
"memory/max_allocated (GiB)": 33.96,
|
| 216 |
+
"ppl": 1.10388,
|
| 217 |
+
"step": 15,
|
| 218 |
+
"tokens/total": 455152,
|
| 219 |
+
"tokens/train_per_sec_per_gpu": 36.15,
|
| 220 |
+
"tokens/trainable": 6825
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"epoch": 0.0625,
|
| 224 |
+
"grad_norm": 2.3756372928619385,
|
| 225 |
+
"learning_rate": 6e-05,
|
| 226 |
+
"loss": 0.0719379335641861,
|
| 227 |
+
"memory/device_reserved (GiB)": 37.81,
|
| 228 |
+
"memory/max_active (GiB)": 33.88,
|
| 229 |
+
"memory/max_allocated (GiB)": 33.88,
|
| 230 |
+
"ppl": 1.07459,
|
| 231 |
+
"step": 16,
|
| 232 |
+
"tokens/total": 485328,
|
| 233 |
+
"tokens/train_per_sec_per_gpu": 30.01,
|
| 234 |
+
"tokens/trainable": 7230
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"epoch": 0.06640625,
|
| 238 |
+
"grad_norm": 1.7220206260681152,
|
| 239 |
+
"learning_rate": 6.400000000000001e-05,
|
| 240 |
+
"loss": 0.016590356826782227,
|
| 241 |
+
"memory/device_reserved (GiB)": 37.81,
|
| 242 |
+
"memory/max_active (GiB)": 33.92,
|
| 243 |
+
"memory/max_allocated (GiB)": 33.92,
|
| 244 |
+
"ppl": 1.01673,
|
| 245 |
+
"step": 17,
|
| 246 |
+
"tokens/total": 515744,
|
| 247 |
+
"tokens/train_per_sec_per_gpu": 35.89,
|
| 248 |
+
"tokens/trainable": 7699
|
| 249 |
+
},
|
| 250 |
+
{
|
| 251 |
+
"epoch": 0.0703125,
|
| 252 |
+
"grad_norm": 1.5261812210083008,
|
| 253 |
+
"learning_rate": 6.800000000000001e-05,
|
| 254 |
+
"loss": 0.030052796006202698,
|
| 255 |
+
"memory/device_reserved (GiB)": 37.81,
|
| 256 |
+
"memory/max_active (GiB)": 33.77,
|
| 257 |
+
"memory/max_allocated (GiB)": 33.77,
|
| 258 |
+
"ppl": 1.03051,
|
| 259 |
+
"step": 18,
|
| 260 |
+
"tokens/total": 546144,
|
| 261 |
+
"tokens/train_per_sec_per_gpu": 33.85,
|
| 262 |
+
"tokens/trainable": 8184
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"epoch": 0.07421875,
|
| 266 |
+
"grad_norm": 0.6416668891906738,
|
| 267 |
+
"learning_rate": 7.2e-05,
|
| 268 |
+
"loss": 0.013492297381162643,
|
| 269 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 270 |
+
"memory/max_active (GiB)": 33.84,
|
| 271 |
+
"memory/max_allocated (GiB)": 33.84,
|
| 272 |
+
"ppl": 1.01358,
|
| 273 |
+
"step": 19,
|
| 274 |
+
"tokens/total": 576560,
|
| 275 |
+
"tokens/train_per_sec_per_gpu": 34.91,
|
| 276 |
+
"tokens/trainable": 8675
|
| 277 |
+
},
|
| 278 |
+
{
|
| 279 |
+
"epoch": 0.078125,
|
| 280 |
+
"grad_norm": 1.2296113967895508,
|
| 281 |
+
"learning_rate": 7.6e-05,
|
| 282 |
+
"loss": 0.038845278322696686,
|
| 283 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 284 |
+
"memory/max_active (GiB)": 33.95,
|
| 285 |
+
"memory/max_allocated (GiB)": 33.95,
|
| 286 |
+
"ppl": 1.03961,
|
| 287 |
+
"step": 20,
|
| 288 |
+
"tokens/total": 607056,
|
| 289 |
+
"tokens/train_per_sec_per_gpu": 39.72,
|
| 290 |
+
"tokens/trainable": 9189
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"epoch": 0.08203125,
|
| 294 |
+
"grad_norm": 0.8426793813705444,
|
| 295 |
+
"learning_rate": 8e-05,
|
| 296 |
+
"loss": 0.01696154847741127,
|
| 297 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 298 |
+
"memory/max_active (GiB)": 33.77,
|
| 299 |
+
"memory/max_allocated (GiB)": 33.77,
|
| 300 |
+
"ppl": 1.01711,
|
| 301 |
+
"step": 21,
|
| 302 |
+
"tokens/total": 637488,
|
| 303 |
+
"tokens/train_per_sec_per_gpu": 31.68,
|
| 304 |
+
"tokens/trainable": 9614
|
| 305 |
+
},
|
| 306 |
+
{
|
| 307 |
+
"epoch": 0.0859375,
|
| 308 |
+
"grad_norm": 10.310348510742188,
|
| 309 |
+
"learning_rate": 8.4e-05,
|
| 310 |
+
"loss": 0.06855659186840057,
|
| 311 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 312 |
+
"memory/max_active (GiB)": 33.75,
|
| 313 |
+
"memory/max_allocated (GiB)": 33.75,
|
| 314 |
+
"ppl": 1.07096,
|
| 315 |
+
"step": 22,
|
| 316 |
+
"tokens/total": 667632,
|
| 317 |
+
"tokens/train_per_sec_per_gpu": 36.26,
|
| 318 |
+
"tokens/trainable": 10086
|
| 319 |
+
},
|
| 320 |
+
{
|
| 321 |
+
"epoch": 0.08984375,
|
| 322 |
+
"grad_norm": 1.412604808807373,
|
| 323 |
+
"learning_rate": 8.800000000000001e-05,
|
| 324 |
+
"loss": 0.04118483513593674,
|
| 325 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 326 |
+
"memory/max_active (GiB)": 33.84,
|
| 327 |
+
"memory/max_allocated (GiB)": 33.84,
|
| 328 |
+
"ppl": 1.04204,
|
| 329 |
+
"step": 23,
|
| 330 |
+
"tokens/total": 697872,
|
| 331 |
+
"tokens/train_per_sec_per_gpu": 32.96,
|
| 332 |
+
"tokens/trainable": 10535
|
| 333 |
+
},
|
| 334 |
+
{
|
| 335 |
+
"epoch": 0.09375,
|
| 336 |
+
"grad_norm": 1.4078032970428467,
|
| 337 |
+
"learning_rate": 9.200000000000001e-05,
|
| 338 |
+
"loss": 0.025748739019036293,
|
| 339 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 340 |
+
"memory/max_active (GiB)": 33.92,
|
| 341 |
+
"memory/max_allocated (GiB)": 33.92,
|
| 342 |
+
"ppl": 1.02608,
|
| 343 |
+
"step": 24,
|
| 344 |
+
"tokens/total": 728432,
|
| 345 |
+
"tokens/train_per_sec_per_gpu": 31.6,
|
| 346 |
+
"tokens/trainable": 10993
|
| 347 |
+
},
|
| 348 |
+
{
|
| 349 |
+
"epoch": 0.09765625,
|
| 350 |
+
"grad_norm": 1.0874605178833008,
|
| 351 |
+
"learning_rate": 9.6e-05,
|
| 352 |
+
"loss": 0.03088424727320671,
|
| 353 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 354 |
+
"memory/max_active (GiB)": 33.87,
|
| 355 |
+
"memory/max_allocated (GiB)": 33.87,
|
| 356 |
+
"ppl": 1.03137,
|
| 357 |
+
"step": 25,
|
| 358 |
+
"tokens/total": 756656,
|
| 359 |
+
"tokens/train_per_sec_per_gpu": 40.03,
|
| 360 |
+
"tokens/trainable": 11417
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"epoch": 0.1015625,
|
| 364 |
+
"grad_norm": 1.2574082612991333,
|
| 365 |
+
"learning_rate": 0.0001,
|
| 366 |
+
"loss": 0.03432866185903549,
|
| 367 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 368 |
+
"memory/max_active (GiB)": 33.92,
|
| 369 |
+
"memory/max_allocated (GiB)": 33.92,
|
| 370 |
+
"ppl": 1.03492,
|
| 371 |
+
"step": 26,
|
| 372 |
+
"tokens/total": 787120,
|
| 373 |
+
"tokens/train_per_sec_per_gpu": 34.36,
|
| 374 |
+
"tokens/trainable": 11874
|
| 375 |
+
},
|
| 376 |
+
{
|
| 377 |
+
"epoch": 0.10546875,
|
| 378 |
+
"grad_norm": 0.30990996956825256,
|
| 379 |
+
"learning_rate": 9.99990636831587e-05,
|
| 380 |
+
"loss": 0.010750269517302513,
|
| 381 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 382 |
+
"memory/max_active (GiB)": 33.94,
|
| 383 |
+
"memory/max_allocated (GiB)": 33.94,
|
| 384 |
+
"ppl": 1.01081,
|
| 385 |
+
"step": 27,
|
| 386 |
+
"tokens/total": 817504,
|
| 387 |
+
"tokens/train_per_sec_per_gpu": 31.64,
|
| 388 |
+
"tokens/trainable": 12316
|
| 389 |
+
},
|
| 390 |
+
{
|
| 391 |
+
"epoch": 0.109375,
|
| 392 |
+
"grad_norm": 0.5124737620353699,
|
| 393 |
+
"learning_rate": 9.999625477159879e-05,
|
| 394 |
+
"loss": 0.01967313140630722,
|
| 395 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 396 |
+
"memory/max_active (GiB)": 33.94,
|
| 397 |
+
"memory/max_allocated (GiB)": 33.94,
|
| 398 |
+
"ppl": 1.01987,
|
| 399 |
+
"step": 28,
|
| 400 |
+
"tokens/total": 848128,
|
| 401 |
+
"tokens/train_per_sec_per_gpu": 37.86,
|
| 402 |
+
"tokens/trainable": 12800
|
| 403 |
+
},
|
| 404 |
+
{
|
| 405 |
+
"epoch": 0.11328125,
|
| 406 |
+
"grad_norm": 1.2975701093673706,
|
| 407 |
+
"learning_rate": 9.999157338221051e-05,
|
| 408 |
+
"loss": 0.0434565395116806,
|
| 409 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 410 |
+
"memory/max_active (GiB)": 33.87,
|
| 411 |
+
"memory/max_allocated (GiB)": 33.87,
|
| 412 |
+
"ppl": 1.04441,
|
| 413 |
+
"step": 29,
|
| 414 |
+
"tokens/total": 878448,
|
| 415 |
+
"tokens/train_per_sec_per_gpu": 35.48,
|
| 416 |
+
"tokens/trainable": 13270
|
| 417 |
+
},
|
| 418 |
+
{
|
| 419 |
+
"epoch": 0.1171875,
|
| 420 |
+
"grad_norm": 0.4117317795753479,
|
| 421 |
+
"learning_rate": 9.998501970980562e-05,
|
| 422 |
+
"loss": 0.013137167319655418,
|
| 423 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 424 |
+
"memory/max_active (GiB)": 33.94,
|
| 425 |
+
"memory/max_allocated (GiB)": 33.94,
|
| 426 |
+
"ppl": 1.01322,
|
| 427 |
+
"step": 30,
|
| 428 |
+
"tokens/total": 909008,
|
| 429 |
+
"tokens/train_per_sec_per_gpu": 35.39,
|
| 430 |
+
"tokens/trainable": 13752
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"epoch": 0.12109375,
|
| 434 |
+
"grad_norm": 0.5875954627990723,
|
| 435 |
+
"learning_rate": 9.997659402710915e-05,
|
| 436 |
+
"loss": 0.01785588450729847,
|
| 437 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 438 |
+
"memory/max_active (GiB)": 33.84,
|
| 439 |
+
"memory/max_allocated (GiB)": 33.84,
|
| 440 |
+
"ppl": 1.01802,
|
| 441 |
+
"step": 31,
|
| 442 |
+
"tokens/total": 939312,
|
| 443 |
+
"tokens/train_per_sec_per_gpu": 34.07,
|
| 444 |
+
"tokens/trainable": 14218
|
| 445 |
+
},
|
| 446 |
+
{
|
| 447 |
+
"epoch": 0.125,
|
| 448 |
+
"grad_norm": 0.7800514698028564,
|
| 449 |
+
"learning_rate": 9.996629668474818e-05,
|
| 450 |
+
"loss": 0.011262159794569016,
|
| 451 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 452 |
+
"memory/max_active (GiB)": 33.81,
|
| 453 |
+
"memory/max_allocated (GiB)": 33.81,
|
| 454 |
+
"ppl": 1.01133,
|
| 455 |
+
"step": 32,
|
| 456 |
+
"tokens/total": 969264,
|
| 457 |
+
"tokens/train_per_sec_per_gpu": 34.49,
|
| 458 |
+
"tokens/trainable": 14655
|
| 459 |
+
},
|
| 460 |
+
{
|
| 461 |
+
"epoch": 0.12890625,
|
| 462 |
+
"grad_norm": 1.0509369373321533,
|
| 463 |
+
"learning_rate": 9.995412811123711e-05,
|
| 464 |
+
"loss": 0.04942459613084793,
|
| 465 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 466 |
+
"memory/max_active (GiB)": 33.95,
|
| 467 |
+
"memory/max_allocated (GiB)": 33.95,
|
| 468 |
+
"ppl": 1.05067,
|
| 469 |
+
"step": 33,
|
| 470 |
+
"tokens/total": 999792,
|
| 471 |
+
"tokens/train_per_sec_per_gpu": 33.35,
|
| 472 |
+
"tokens/trainable": 15087
|
| 473 |
+
},
|
| 474 |
+
{
|
| 475 |
+
"epoch": 0.1328125,
|
| 476 |
+
"grad_norm": 0.6234491467475891,
|
| 477 |
+
"learning_rate": 9.994008881295999e-05,
|
| 478 |
+
"loss": 0.028202136978507042,
|
| 479 |
+
"memory/device_reserved (GiB)": 35.48,
|
| 480 |
+
"memory/max_active (GiB)": 33.77,
|
| 481 |
+
"memory/max_allocated (GiB)": 33.77,
|
| 482 |
+
"ppl": 1.0286,
|
| 483 |
+
"step": 34,
|
| 484 |
+
"tokens/total": 1029840,
|
| 485 |
+
"tokens/train_per_sec_per_gpu": 33.92,
|
| 486 |
+
"tokens/trainable": 15548
|
| 487 |
+
},
|
| 488 |
+
{
|
| 489 |
+
"epoch": 0.13671875,
|
| 490 |
+
"grad_norm": 1.6843816041946411,
|
| 491 |
+
"learning_rate": 9.992417937414932e-05,
|
| 492 |
+
"loss": 0.02795713022351265,
|
| 493 |
+
"memory/device_reserved (GiB)": 35.48,
|
| 494 |
+
"memory/max_active (GiB)": 33.9,
|
| 495 |
+
"memory/max_allocated (GiB)": 33.9,
|
| 496 |
+
"ppl": 1.02835,
|
| 497 |
+
"step": 35,
|
| 498 |
+
"tokens/total": 1060416,
|
| 499 |
+
"tokens/train_per_sec_per_gpu": 33.77,
|
| 500 |
+
"tokens/trainable": 16037
|
| 501 |
+
},
|
| 502 |
+
{
|
| 503 |
+
"epoch": 0.140625,
|
| 504 |
+
"grad_norm": 0.29489848017692566,
|
| 505 |
+
"learning_rate": 9.99064004568618e-05,
|
| 506 |
+
"loss": 0.010517537593841553,
|
| 507 |
+
"memory/device_reserved (GiB)": 35.48,
|
| 508 |
+
"memory/max_active (GiB)": 33.72,
|
| 509 |
+
"memory/max_allocated (GiB)": 33.72,
|
| 510 |
+
"ppl": 1.01057,
|
| 511 |
+
"step": 36,
|
| 512 |
+
"tokens/total": 1090464,
|
| 513 |
+
"tokens/train_per_sec_per_gpu": 31.14,
|
| 514 |
+
"tokens/trainable": 16475
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"epoch": 0.14453125,
|
| 518 |
+
"grad_norm": 0.7335977554321289,
|
| 519 |
+
"learning_rate": 9.988675280095074e-05,
|
| 520 |
+
"loss": 0.018923252820968628,
|
| 521 |
+
"memory/device_reserved (GiB)": 35.86,
|
| 522 |
+
"memory/max_active (GiB)": 33.93,
|
| 523 |
+
"memory/max_allocated (GiB)": 33.93,
|
| 524 |
+
"ppl": 1.0191,
|
| 525 |
+
"step": 37,
|
| 526 |
+
"tokens/total": 1120944,
|
| 527 |
+
"tokens/train_per_sec_per_gpu": 34.38,
|
| 528 |
+
"tokens/trainable": 16919
|
| 529 |
+
},
|
| 530 |
+
{
|
| 531 |
+
"epoch": 0.1484375,
|
| 532 |
+
"grad_norm": 0.5587971210479736,
|
| 533 |
+
"learning_rate": 9.986523722403528e-05,
|
| 534 |
+
"loss": 0.020957889035344124,
|
| 535 |
+
"memory/device_reserved (GiB)": 35.86,
|
| 536 |
+
"memory/max_active (GiB)": 33.87,
|
| 537 |
+
"memory/max_allocated (GiB)": 33.87,
|
| 538 |
+
"ppl": 1.02118,
|
| 539 |
+
"step": 38,
|
| 540 |
+
"tokens/total": 1151360,
|
| 541 |
+
"tokens/train_per_sec_per_gpu": 28.97,
|
| 542 |
+
"tokens/trainable": 17333
|
| 543 |
+
},
|
| 544 |
+
{
|
| 545 |
+
"epoch": 0.15234375,
|
| 546 |
+
"grad_norm": 1.7112773656845093,
|
| 547 |
+
"learning_rate": 9.984185462146642e-05,
|
| 548 |
+
"loss": 0.045844268053770065,
|
| 549 |
+
"memory/device_reserved (GiB)": 35.86,
|
| 550 |
+
"memory/max_active (GiB)": 33.9,
|
| 551 |
+
"memory/max_allocated (GiB)": 33.9,
|
| 552 |
+
"ppl": 1.04691,
|
| 553 |
+
"step": 39,
|
| 554 |
+
"tokens/total": 1181728,
|
| 555 |
+
"tokens/train_per_sec_per_gpu": 36.19,
|
| 556 |
+
"tokens/trainable": 17806
|
| 557 |
+
},
|
| 558 |
+
{
|
| 559 |
+
"epoch": 0.15625,
|
| 560 |
+
"grad_norm": 1.2373344898223877,
|
| 561 |
+
"learning_rate": 9.98166059662897e-05,
|
| 562 |
+
"loss": 0.04578991234302521,
|
| 563 |
+
"memory/device_reserved (GiB)": 35.86,
|
| 564 |
+
"memory/max_active (GiB)": 33.83,
|
| 565 |
+
"memory/max_allocated (GiB)": 33.83,
|
| 566 |
+
"ppl": 1.04685,
|
| 567 |
+
"step": 40,
|
| 568 |
+
"tokens/total": 1212064,
|
| 569 |
+
"tokens/train_per_sec_per_gpu": 35.65,
|
| 570 |
+
"tokens/trainable": 18290
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"epoch": 0.16015625,
|
| 574 |
+
"grad_norm": 0.8950033187866211,
|
| 575 |
+
"learning_rate": 9.978949230920472e-05,
|
| 576 |
+
"loss": 0.02866373583674431,
|
| 577 |
+
"memory/device_reserved (GiB)": 35.88,
|
| 578 |
+
"memory/max_active (GiB)": 33.97,
|
| 579 |
+
"memory/max_allocated (GiB)": 33.97,
|
| 580 |
+
"ppl": 1.02908,
|
| 581 |
+
"step": 41,
|
| 582 |
+
"tokens/total": 1242592,
|
| 583 |
+
"tokens/train_per_sec_per_gpu": 32.05,
|
| 584 |
+
"tokens/trainable": 18747
|
| 585 |
+
},
|
| 586 |
+
{
|
| 587 |
+
"epoch": 0.1640625,
|
| 588 |
+
"grad_norm": 1.9967094659805298,
|
| 589 |
+
"learning_rate": 9.976051477852141e-05,
|
| 590 |
+
"loss": 0.02229372225701809,
|
| 591 |
+
"memory/device_reserved (GiB)": 35.88,
|
| 592 |
+
"memory/max_active (GiB)": 33.81,
|
| 593 |
+
"memory/max_allocated (GiB)": 33.81,
|
| 594 |
+
"ppl": 1.02254,
|
| 595 |
+
"step": 42,
|
| 596 |
+
"tokens/total": 1272800,
|
| 597 |
+
"tokens/train_per_sec_per_gpu": 31.91,
|
| 598 |
+
"tokens/trainable": 19172
|
| 599 |
+
},
|
| 600 |
+
{
|
| 601 |
+
"epoch": 0.16796875,
|
| 602 |
+
"grad_norm": 0.1990034282207489,
|
| 603 |
+
"learning_rate": 9.972967458011312e-05,
|
| 604 |
+
"loss": 0.0059759169816970825,
|
| 605 |
+
"memory/device_reserved (GiB)": 36.03,
|
| 606 |
+
"memory/max_active (GiB)": 34.04,
|
| 607 |
+
"memory/max_allocated (GiB)": 34.04,
|
| 608 |
+
"ppl": 1.00599,
|
| 609 |
+
"step": 43,
|
| 610 |
+
"tokens/total": 1303600,
|
| 611 |
+
"tokens/train_per_sec_per_gpu": 31.32,
|
| 612 |
+
"tokens/trainable": 19622
|
| 613 |
+
},
|
| 614 |
+
{
|
| 615 |
+
"epoch": 0.171875,
|
| 616 |
+
"grad_norm": 0.47151026129722595,
|
| 617 |
+
"learning_rate": 9.96969729973664e-05,
|
| 618 |
+
"loss": 0.011378830298781395,
|
| 619 |
+
"memory/device_reserved (GiB)": 36.03,
|
| 620 |
+
"memory/max_active (GiB)": 33.81,
|
| 621 |
+
"memory/max_allocated (GiB)": 33.81,
|
| 622 |
+
"ppl": 1.01144,
|
| 623 |
+
"step": 44,
|
| 624 |
+
"tokens/total": 1333936,
|
| 625 |
+
"tokens/train_per_sec_per_gpu": 33.41,
|
| 626 |
+
"tokens/trainable": 20073
|
| 627 |
+
},
|
| 628 |
+
{
|
| 629 |
+
"epoch": 0.17578125,
|
| 630 |
+
"grad_norm": 0.5381685495376587,
|
| 631 |
+
"learning_rate": 9.966241139112754e-05,
|
| 632 |
+
"loss": 0.02141587622463703,
|
| 633 |
+
"memory/device_reserved (GiB)": 36.03,
|
| 634 |
+
"memory/max_active (GiB)": 33.9,
|
| 635 |
+
"memory/max_allocated (GiB)": 33.9,
|
| 636 |
+
"ppl": 1.02165,
|
| 637 |
+
"step": 45,
|
| 638 |
+
"tokens/total": 1364288,
|
| 639 |
+
"tokens/train_per_sec_per_gpu": 31.57,
|
| 640 |
+
"tokens/trainable": 20497
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"epoch": 0.1796875,
|
| 644 |
+
"grad_norm": 1.0174895524978638,
|
| 645 |
+
"learning_rate": 9.96259911996461e-05,
|
| 646 |
+
"loss": 0.02236388623714447,
|
| 647 |
+
"memory/device_reserved (GiB)": 36.03,
|
| 648 |
+
"memory/max_active (GiB)": 33.82,
|
| 649 |
+
"memory/max_allocated (GiB)": 33.82,
|
| 650 |
+
"ppl": 1.02262,
|
| 651 |
+
"step": 46,
|
| 652 |
+
"tokens/total": 1394368,
|
| 653 |
+
"tokens/train_per_sec_per_gpu": 34.16,
|
| 654 |
+
"tokens/trainable": 20940
|
| 655 |
+
},
|
| 656 |
+
{
|
| 657 |
+
"epoch": 0.18359375,
|
| 658 |
+
"grad_norm": 0.5081813931465149,
|
| 659 |
+
"learning_rate": 9.958771393851491e-05,
|
| 660 |
+
"loss": 0.010915009304881096,
|
| 661 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 662 |
+
"memory/max_active (GiB)": 33.98,
|
| 663 |
+
"memory/max_allocated (GiB)": 33.98,
|
| 664 |
+
"ppl": 1.01097,
|
| 665 |
+
"step": 47,
|
| 666 |
+
"tokens/total": 1425024,
|
| 667 |
+
"tokens/train_per_sec_per_gpu": 35.04,
|
| 668 |
+
"tokens/trainable": 21405
|
| 669 |
+
},
|
| 670 |
+
{
|
| 671 |
+
"epoch": 0.1875,
|
| 672 |
+
"grad_norm": 1.4684470891952515,
|
| 673 |
+
"learning_rate": 9.954758120060702e-05,
|
| 674 |
+
"loss": 0.009690589271485806,
|
| 675 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 676 |
+
"memory/max_active (GiB)": 33.86,
|
| 677 |
+
"memory/max_allocated (GiB)": 33.86,
|
| 678 |
+
"ppl": 1.00974,
|
| 679 |
+
"step": 48,
|
| 680 |
+
"tokens/total": 1455392,
|
| 681 |
+
"tokens/train_per_sec_per_gpu": 35.13,
|
| 682 |
+
"tokens/trainable": 21828
|
| 683 |
+
},
|
| 684 |
+
{
|
| 685 |
+
"epoch": 0.19140625,
|
| 686 |
+
"grad_norm": 0.49191179871559143,
|
| 687 |
+
"learning_rate": 9.950559465600948e-05,
|
| 688 |
+
"loss": 0.010902130044996738,
|
| 689 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 690 |
+
"memory/max_active (GiB)": 33.88,
|
| 691 |
+
"memory/max_allocated (GiB)": 33.88,
|
| 692 |
+
"ppl": 1.01096,
|
| 693 |
+
"step": 49,
|
| 694 |
+
"tokens/total": 1485616,
|
| 695 |
+
"tokens/train_per_sec_per_gpu": 29.55,
|
| 696 |
+
"tokens/trainable": 22241
|
| 697 |
+
},
|
| 698 |
+
{
|
| 699 |
+
"epoch": 0.1953125,
|
| 700 |
+
"grad_norm": 0.44692206382751465,
|
| 701 |
+
"learning_rate": 9.946175605195379e-05,
|
| 702 |
+
"loss": 0.006928037852048874,
|
| 703 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 704 |
+
"memory/max_active (GiB)": 33.92,
|
| 705 |
+
"memory/max_allocated (GiB)": 33.92,
|
| 706 |
+
"ppl": 1.00695,
|
| 707 |
+
"step": 50,
|
| 708 |
+
"tokens/total": 1515984,
|
| 709 |
+
"tokens/train_per_sec_per_gpu": 36.48,
|
| 710 |
+
"tokens/trainable": 22688
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"epoch": 0.19921875,
|
| 714 |
+
"grad_norm": 0.37972721457481384,
|
| 715 |
+
"learning_rate": 9.941606721274322e-05,
|
| 716 |
+
"loss": 0.00806603953242302,
|
| 717 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 718 |
+
"memory/max_active (GiB)": 33.89,
|
| 719 |
+
"memory/max_allocated (GiB)": 33.89,
|
| 720 |
+
"ppl": 1.0081,
|
| 721 |
+
"step": 51,
|
| 722 |
+
"tokens/total": 1546224,
|
| 723 |
+
"tokens/train_per_sec_per_gpu": 32.12,
|
| 724 |
+
"tokens/trainable": 23136
|
| 725 |
+
},
|
| 726 |
+
{
|
| 727 |
+
"epoch": 0.203125,
|
| 728 |
+
"grad_norm": 1.0114665031433105,
|
| 729 |
+
"learning_rate": 9.936853003967685e-05,
|
| 730 |
+
"loss": 0.013657575473189354,
|
| 731 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 732 |
+
"memory/max_active (GiB)": 33.88,
|
| 733 |
+
"memory/max_allocated (GiB)": 33.88,
|
| 734 |
+
"ppl": 1.01375,
|
| 735 |
+
"step": 52,
|
| 736 |
+
"tokens/total": 1576528,
|
| 737 |
+
"tokens/train_per_sec_per_gpu": 36.95,
|
| 738 |
+
"tokens/trainable": 23631
|
| 739 |
+
},
|
| 740 |
+
{
|
| 741 |
+
"epoch": 0.20703125,
|
| 742 |
+
"grad_norm": 0.6438844799995422,
|
| 743 |
+
"learning_rate": 9.93191465109705e-05,
|
| 744 |
+
"loss": 0.05178550258278847,
|
| 745 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 746 |
+
"memory/max_active (GiB)": 33.83,
|
| 747 |
+
"memory/max_allocated (GiB)": 33.83,
|
| 748 |
+
"ppl": 1.05315,
|
| 749 |
+
"step": 53,
|
| 750 |
+
"tokens/total": 1606768,
|
| 751 |
+
"tokens/train_per_sec_per_gpu": 34.15,
|
| 752 |
+
"tokens/trainable": 24096
|
| 753 |
+
},
|
| 754 |
+
{
|
| 755 |
+
"epoch": 0.2109375,
|
| 756 |
+
"grad_norm": 3.0008814334869385,
|
| 757 |
+
"learning_rate": 9.926791868167438e-05,
|
| 758 |
+
"loss": 0.010915370658040047,
|
| 759 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 760 |
+
"memory/max_active (GiB)": 33.66,
|
| 761 |
+
"memory/max_allocated (GiB)": 33.66,
|
| 762 |
+
"ppl": 1.01098,
|
| 763 |
+
"step": 54,
|
| 764 |
+
"tokens/total": 1636640,
|
| 765 |
+
"tokens/train_per_sec_per_gpu": 37.95,
|
| 766 |
+
"tokens/trainable": 24569
|
| 767 |
+
},
|
| 768 |
+
{
|
| 769 |
+
"epoch": 0.21484375,
|
| 770 |
+
"grad_norm": 0.9377115368843079,
|
| 771 |
+
"learning_rate": 9.921484868358753e-05,
|
| 772 |
+
"loss": 0.019770421087741852,
|
| 773 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 774 |
+
"memory/max_active (GiB)": 33.88,
|
| 775 |
+
"memory/max_allocated (GiB)": 33.88,
|
| 776 |
+
"ppl": 1.01997,
|
| 777 |
+
"step": 55,
|
| 778 |
+
"tokens/total": 1667136,
|
| 779 |
+
"tokens/train_per_sec_per_gpu": 34.0,
|
| 780 |
+
"tokens/trainable": 25067
|
| 781 |
+
},
|
| 782 |
+
{
|
| 783 |
+
"epoch": 0.21875,
|
| 784 |
+
"grad_norm": 0.23384763300418854,
|
| 785 |
+
"learning_rate": 9.915993872516924e-05,
|
| 786 |
+
"loss": 0.004394679330289364,
|
| 787 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 788 |
+
"memory/max_active (GiB)": 33.85,
|
| 789 |
+
"memory/max_allocated (GiB)": 33.85,
|
| 790 |
+
"ppl": 1.0044,
|
| 791 |
+
"step": 56,
|
| 792 |
+
"tokens/total": 1697472,
|
| 793 |
+
"tokens/train_per_sec_per_gpu": 36.68,
|
| 794 |
+
"tokens/trainable": 25541
|
| 795 |
+
},
|
| 796 |
+
{
|
| 797 |
+
"epoch": 0.22265625,
|
| 798 |
+
"grad_norm": 0.7558876276016235,
|
| 799 |
+
"learning_rate": 9.9103191091447e-05,
|
| 800 |
+
"loss": 0.02614775486290455,
|
| 801 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 802 |
+
"memory/max_active (GiB)": 33.9,
|
| 803 |
+
"memory/max_allocated (GiB)": 33.9,
|
| 804 |
+
"ppl": 1.02649,
|
| 805 |
+
"step": 57,
|
| 806 |
+
"tokens/total": 1727680,
|
| 807 |
+
"tokens/train_per_sec_per_gpu": 33.29,
|
| 808 |
+
"tokens/trainable": 25965
|
| 809 |
+
},
|
| 810 |
+
{
|
| 811 |
+
"epoch": 0.2265625,
|
| 812 |
+
"grad_norm": 0.4615328311920166,
|
| 813 |
+
"learning_rate": 9.904460814392147e-05,
|
| 814 |
+
"loss": 0.01031234860420227,
|
| 815 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 816 |
+
"memory/max_active (GiB)": 33.87,
|
| 817 |
+
"memory/max_allocated (GiB)": 33.87,
|
| 818 |
+
"ppl": 1.01037,
|
| 819 |
+
"step": 58,
|
| 820 |
+
"tokens/total": 1758192,
|
| 821 |
+
"tokens/train_per_sec_per_gpu": 34.0,
|
| 822 |
+
"tokens/trainable": 26409
|
| 823 |
+
},
|
| 824 |
+
{
|
| 825 |
+
"epoch": 0.23046875,
|
| 826 |
+
"grad_norm": 0.40572404861450195,
|
| 827 |
+
"learning_rate": 9.898419232046825e-05,
|
| 828 |
+
"loss": 0.011052684858441353,
|
| 829 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 830 |
+
"memory/max_active (GiB)": 33.92,
|
| 831 |
+
"memory/max_allocated (GiB)": 33.92,
|
| 832 |
+
"ppl": 1.01111,
|
| 833 |
+
"step": 59,
|
| 834 |
+
"tokens/total": 1788816,
|
| 835 |
+
"tokens/train_per_sec_per_gpu": 34.17,
|
| 836 |
+
"tokens/trainable": 26883
|
| 837 |
+
},
|
| 838 |
+
{
|
| 839 |
+
"epoch": 0.234375,
|
| 840 |
+
"grad_norm": 0.7271711826324463,
|
| 841 |
+
"learning_rate": 9.892194613523633e-05,
|
| 842 |
+
"loss": 0.01451511587947607,
|
| 843 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 844 |
+
"memory/max_active (GiB)": 33.86,
|
| 845 |
+
"memory/max_allocated (GiB)": 33.86,
|
| 846 |
+
"ppl": 1.01462,
|
| 847 |
+
"step": 60,
|
| 848 |
+
"tokens/total": 1819056,
|
| 849 |
+
"tokens/train_per_sec_per_gpu": 33.87,
|
| 850 |
+
"tokens/trainable": 27323
|
| 851 |
+
},
|
| 852 |
+
{
|
| 853 |
+
"epoch": 0.23828125,
|
| 854 |
+
"grad_norm": 0.14707089960575104,
|
| 855 |
+
"learning_rate": 9.885787217854357e-05,
|
| 856 |
+
"loss": 0.004126548767089844,
|
| 857 |
+
"memory/device_reserved (GiB)": 36.16,
|
| 858 |
+
"memory/max_active (GiB)": 33.92,
|
| 859 |
+
"memory/max_allocated (GiB)": 33.92,
|
| 860 |
+
"ppl": 1.00414,
|
| 861 |
+
"step": 61,
|
| 862 |
+
"tokens/total": 1849664,
|
| 863 |
+
"tokens/train_per_sec_per_gpu": 39.34,
|
| 864 |
+
"tokens/trainable": 27830
|
| 865 |
+
},
|
| 866 |
+
{
|
| 867 |
+
"epoch": 0.2421875,
|
| 868 |
+
"grad_norm": 0.4162050485610962,
|
| 869 |
+
"learning_rate": 9.879197311676887e-05,
|
| 870 |
+
"loss": 0.009982893243432045,
|
| 871 |
+
"memory/device_reserved (GiB)": 36.16,
|
| 872 |
+
"memory/max_active (GiB)": 34.02,
|
| 873 |
+
"memory/max_allocated (GiB)": 34.02,
|
| 874 |
+
"ppl": 1.01003,
|
| 875 |
+
"step": 62,
|
| 876 |
+
"tokens/total": 1880272,
|
| 877 |
+
"tokens/train_per_sec_per_gpu": 32.46,
|
| 878 |
+
"tokens/trainable": 28281
|
| 879 |
+
},
|
| 880 |
+
{
|
| 881 |
+
"epoch": 0.24609375,
|
| 882 |
+
"grad_norm": 0.563757598400116,
|
| 883 |
+
"learning_rate": 9.872425169224113e-05,
|
| 884 |
+
"loss": 0.01410748716443777,
|
| 885 |
+
"memory/device_reserved (GiB)": 36.16,
|
| 886 |
+
"memory/max_active (GiB)": 33.85,
|
| 887 |
+
"memory/max_allocated (GiB)": 33.85,
|
| 888 |
+
"ppl": 1.01421,
|
| 889 |
+
"step": 63,
|
| 890 |
+
"tokens/total": 1910752,
|
| 891 |
+
"tokens/train_per_sec_per_gpu": 32.39,
|
| 892 |
+
"tokens/trainable": 28742
|
| 893 |
+
},
|
| 894 |
+
{
|
| 895 |
+
"epoch": 0.25,
|
| 896 |
+
"grad_norm": 0.4908931255340576,
|
| 897 |
+
"learning_rate": 9.865471072312528e-05,
|
| 898 |
+
"loss": 0.011950287967920303,
|
| 899 |
+
"memory/device_reserved (GiB)": 36.16,
|
| 900 |
+
"memory/max_active (GiB)": 33.84,
|
| 901 |
+
"memory/max_allocated (GiB)": 33.84,
|
| 902 |
+
"ppl": 1.01202,
|
| 903 |
+
"step": 64,
|
| 904 |
+
"tokens/total": 1940848,
|
| 905 |
+
"tokens/train_per_sec_per_gpu": 33.76,
|
| 906 |
+
"tokens/trainable": 29183
|
| 907 |
+
},
|
| 908 |
+
{
|
| 909 |
+
"epoch": 0.25390625,
|
| 910 |
+
"grad_norm": 0.3164263963699341,
|
| 911 |
+
"learning_rate": 9.858335310330492e-05,
|
| 912 |
+
"loss": 0.006426030304282904,
|
| 913 |
+
"memory/device_reserved (GiB)": 36.16,
|
| 914 |
+
"memory/max_active (GiB)": 33.91,
|
| 915 |
+
"memory/max_allocated (GiB)": 33.91,
|
| 916 |
+
"ppl": 1.00645,
|
| 917 |
+
"step": 65,
|
| 918 |
+
"tokens/total": 1971344,
|
| 919 |
+
"tokens/train_per_sec_per_gpu": 31.69,
|
| 920 |
+
"tokens/trainable": 29648
|
| 921 |
+
},
|
| 922 |
+
{
|
| 923 |
+
"epoch": 0.2578125,
|
| 924 |
+
"grad_norm": 0.4743383824825287,
|
| 925 |
+
"learning_rate": 9.851018180226185e-05,
|
| 926 |
+
"loss": 0.00986128207296133,
|
| 927 |
+
"memory/device_reserved (GiB)": 35.06,
|
| 928 |
+
"memory/max_active (GiB)": 33.83,
|
| 929 |
+
"memory/max_allocated (GiB)": 33.83,
|
| 930 |
+
"ppl": 1.00991,
|
| 931 |
+
"step": 66,
|
| 932 |
+
"tokens/total": 2001712,
|
| 933 |
+
"tokens/train_per_sec_per_gpu": 33.65,
|
| 934 |
+
"tokens/trainable": 30075
|
| 935 |
+
},
|
| 936 |
+
{
|
| 937 |
+
"epoch": 0.26171875,
|
| 938 |
+
"grad_norm": 0.12894771993160248,
|
| 939 |
+
"learning_rate": 9.843519986495259e-05,
|
| 940 |
+
"loss": 0.002054001437500119,
|
| 941 |
+
"memory/device_reserved (GiB)": 35.64,
|
| 942 |
+
"memory/max_active (GiB)": 33.78,
|
| 943 |
+
"memory/max_allocated (GiB)": 33.78,
|
| 944 |
+
"ppl": 1.00206,
|
| 945 |
+
"step": 67,
|
| 946 |
+
"tokens/total": 2029936,
|
| 947 |
+
"tokens/train_per_sec_per_gpu": 37.69,
|
| 948 |
+
"tokens/trainable": 30546
|
| 949 |
+
},
|
| 950 |
+
{
|
| 951 |
+
"epoch": 0.265625,
|
| 952 |
+
"grad_norm": 0.5559160709381104,
|
| 953 |
+
"learning_rate": 9.835841041168162e-05,
|
| 954 |
+
"loss": 0.007931358180940151,
|
| 955 |
+
"memory/device_reserved (GiB)": 35.64,
|
| 956 |
+
"memory/max_active (GiB)": 33.86,
|
| 957 |
+
"memory/max_allocated (GiB)": 33.86,
|
| 958 |
+
"ppl": 1.00796,
|
| 959 |
+
"step": 68,
|
| 960 |
+
"tokens/total": 2060384,
|
| 961 |
+
"tokens/train_per_sec_per_gpu": 35.27,
|
| 962 |
+
"tokens/trainable": 31025
|
| 963 |
+
},
|
| 964 |
+
{
|
| 965 |
+
"epoch": 0.26953125,
|
| 966 |
+
"grad_norm": 1.4860860109329224,
|
| 967 |
+
"learning_rate": 9.82798166379715e-05,
|
| 968 |
+
"loss": 0.029434870928525925,
|
| 969 |
+
"memory/device_reserved (GiB)": 35.64,
|
| 970 |
+
"memory/max_active (GiB)": 33.85,
|
| 971 |
+
"memory/max_allocated (GiB)": 33.85,
|
| 972 |
+
"ppl": 1.02987,
|
| 973 |
+
"step": 69,
|
| 974 |
+
"tokens/total": 2090688,
|
| 975 |
+
"tokens/train_per_sec_per_gpu": 34.03,
|
| 976 |
+
"tokens/trainable": 31505
|
| 977 |
+
},
|
| 978 |
+
{
|
| 979 |
+
"epoch": 0.2734375,
|
| 980 |
+
"grad_norm": 0.2197936624288559,
|
| 981 |
+
"learning_rate": 9.819942181443002e-05,
|
| 982 |
+
"loss": 0.0028239269740879536,
|
| 983 |
+
"memory/device_reserved (GiB)": 35.64,
|
| 984 |
+
"memory/max_active (GiB)": 33.77,
|
| 985 |
+
"memory/max_allocated (GiB)": 33.77,
|
| 986 |
+
"ppl": 1.00283,
|
| 987 |
+
"step": 70,
|
| 988 |
+
"tokens/total": 2120848,
|
| 989 |
+
"tokens/train_per_sec_per_gpu": 32.39,
|
| 990 |
+
"tokens/trainable": 31956
|
| 991 |
+
},
|
| 992 |
+
{
|
| 993 |
+
"epoch": 0.27734375,
|
| 994 |
+
"grad_norm": 0.20881125330924988,
|
| 995 |
+
"learning_rate": 9.811722928661392e-05,
|
| 996 |
+
"loss": 0.001874964451417327,
|
| 997 |
+
"memory/device_reserved (GiB)": 35.64,
|
| 998 |
+
"memory/max_active (GiB)": 33.35,
|
| 999 |
+
"memory/max_allocated (GiB)": 33.35,
|
| 1000 |
+
"ppl": 1.00188,
|
| 1001 |
+
"step": 71,
|
| 1002 |
+
"tokens/total": 2149120,
|
| 1003 |
+
"tokens/train_per_sec_per_gpu": 33.46,
|
| 1004 |
+
"tokens/trainable": 32374
|
| 1005 |
+
},
|
| 1006 |
+
{
|
| 1007 |
+
"epoch": 0.28125,
|
| 1008 |
+
"grad_norm": 0.335940957069397,
|
| 1009 |
+
"learning_rate": 9.803324247488975e-05,
|
| 1010 |
+
"loss": 0.003750729141756892,
|
| 1011 |
+
"memory/device_reserved (GiB)": 35.64,
|
| 1012 |
+
"memory/max_active (GiB)": 33.81,
|
| 1013 |
+
"memory/max_allocated (GiB)": 33.81,
|
| 1014 |
+
"ppl": 1.00376,
|
| 1015 |
+
"step": 72,
|
| 1016 |
+
"tokens/total": 2179472,
|
| 1017 |
+
"tokens/train_per_sec_per_gpu": 34.67,
|
| 1018 |
+
"tokens/trainable": 32833
|
| 1019 |
+
},
|
| 1020 |
+
{
|
| 1021 |
+
"epoch": 0.28515625,
|
| 1022 |
+
"grad_norm": 0.6529806852340698,
|
| 1023 |
+
"learning_rate": 9.794746487429161e-05,
|
| 1024 |
+
"loss": 0.010189465247094631,
|
| 1025 |
+
"memory/device_reserved (GiB)": 35.96,
|
| 1026 |
+
"memory/max_active (GiB)": 33.92,
|
| 1027 |
+
"memory/max_allocated (GiB)": 33.92,
|
| 1028 |
+
"ppl": 1.01024,
|
| 1029 |
+
"step": 73,
|
| 1030 |
+
"tokens/total": 2209984,
|
| 1031 |
+
"tokens/train_per_sec_per_gpu": 35.77,
|
| 1032 |
+
"tokens/trainable": 33304
|
| 1033 |
+
},
|
| 1034 |
+
{
|
| 1035 |
+
"epoch": 0.2890625,
|
| 1036 |
+
"grad_norm": 0.7839381098747253,
|
| 1037 |
+
"learning_rate": 9.785990005437554e-05,
|
| 1038 |
+
"loss": 0.00870432797819376,
|
| 1039 |
+
"memory/device_reserved (GiB)": 35.96,
|
| 1040 |
+
"memory/max_active (GiB)": 33.83,
|
| 1041 |
+
"memory/max_allocated (GiB)": 33.83,
|
| 1042 |
+
"ppl": 1.00874,
|
| 1043 |
+
"step": 74,
|
| 1044 |
+
"tokens/total": 2240512,
|
| 1045 |
+
"tokens/train_per_sec_per_gpu": 32.54,
|
| 1046 |
+
"tokens/trainable": 33771
|
| 1047 |
+
},
|
| 1048 |
+
{
|
| 1049 |
+
"epoch": 0.29296875,
|
| 1050 |
+
"grad_norm": 0.3333408832550049,
|
| 1051 |
+
"learning_rate": 9.777055165907117e-05,
|
| 1052 |
+
"loss": 0.007429605815559626,
|
| 1053 |
+
"memory/device_reserved (GiB)": 35.96,
|
| 1054 |
+
"memory/max_active (GiB)": 33.74,
|
| 1055 |
+
"memory/max_allocated (GiB)": 33.74,
|
| 1056 |
+
"ppl": 1.00746,
|
| 1057 |
+
"step": 75,
|
| 1058 |
+
"tokens/total": 2270608,
|
| 1059 |
+
"tokens/train_per_sec_per_gpu": 34.68,
|
| 1060 |
+
"tokens/trainable": 34186
|
| 1061 |
+
},
|
| 1062 |
+
{
|
| 1063 |
+
"epoch": 0.296875,
|
| 1064 |
+
"grad_norm": 0.47243013978004456,
|
| 1065 |
+
"learning_rate": 9.767942340652993e-05,
|
| 1066 |
+
"loss": 0.009635023772716522,
|
| 1067 |
+
"memory/device_reserved (GiB)": 35.96,
|
| 1068 |
+
"memory/max_active (GiB)": 33.81,
|
| 1069 |
+
"memory/max_allocated (GiB)": 33.81,
|
| 1070 |
+
"ppl": 1.00968,
|
| 1071 |
+
"step": 76,
|
| 1072 |
+
"tokens/total": 2300864,
|
| 1073 |
+
"tokens/train_per_sec_per_gpu": 35.05,
|
| 1074 |
+
"tokens/trainable": 34667
|
| 1075 |
+
},
|
| 1076 |
+
{
|
| 1077 |
+
"epoch": 0.30078125,
|
| 1078 |
+
"grad_norm": 1.4933921098709106,
|
| 1079 |
+
"learning_rate": 9.758651908897035e-05,
|
| 1080 |
+
"loss": 0.04087181016802788,
|
| 1081 |
+
"memory/device_reserved (GiB)": 35.96,
|
| 1082 |
+
"memory/max_active (GiB)": 33.76,
|
| 1083 |
+
"memory/max_allocated (GiB)": 33.76,
|
| 1084 |
+
"ppl": 1.04172,
|
| 1085 |
+
"step": 77,
|
| 1086 |
+
"tokens/total": 2330960,
|
| 1087 |
+
"tokens/train_per_sec_per_gpu": 31.92,
|
| 1088 |
+
"tokens/trainable": 35078
|
| 1089 |
+
},
|
| 1090 |
+
{
|
| 1091 |
+
"epoch": 0.3046875,
|
| 1092 |
+
"grad_norm": 0.6791361570358276,
|
| 1093 |
+
"learning_rate": 9.749184257252033e-05,
|
| 1094 |
+
"loss": 0.013059539720416069,
|
| 1095 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1096 |
+
"memory/max_active (GiB)": 33.99,
|
| 1097 |
+
"memory/max_allocated (GiB)": 33.99,
|
| 1098 |
+
"ppl": 1.01315,
|
| 1099 |
+
"step": 78,
|
| 1100 |
+
"tokens/total": 2361584,
|
| 1101 |
+
"tokens/train_per_sec_per_gpu": 34.99,
|
| 1102 |
+
"tokens/trainable": 35550
|
| 1103 |
+
},
|
| 1104 |
+
{
|
| 1105 |
+
"epoch": 0.30859375,
|
| 1106 |
+
"grad_norm": 0.8410643935203552,
|
| 1107 |
+
"learning_rate": 9.739539779705614e-05,
|
| 1108 |
+
"loss": 0.02711997739970684,
|
| 1109 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1110 |
+
"memory/max_active (GiB)": 33.82,
|
| 1111 |
+
"memory/max_allocated (GiB)": 33.82,
|
| 1112 |
+
"ppl": 1.02749,
|
| 1113 |
+
"step": 79,
|
| 1114 |
+
"tokens/total": 2391936,
|
| 1115 |
+
"tokens/train_per_sec_per_gpu": 29.62,
|
| 1116 |
+
"tokens/trainable": 35977
|
| 1117 |
+
},
|
| 1118 |
+
{
|
| 1119 |
+
"epoch": 0.3125,
|
| 1120 |
+
"grad_norm": 0.3738754689693451,
|
| 1121 |
+
"learning_rate": 9.729718877603861e-05,
|
| 1122 |
+
"loss": 0.017121555283665657,
|
| 1123 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1124 |
+
"memory/max_active (GiB)": 33.9,
|
| 1125 |
+
"memory/max_allocated (GiB)": 33.9,
|
| 1126 |
+
"ppl": 1.01727,
|
| 1127 |
+
"step": 80,
|
| 1128 |
+
"tokens/total": 2422432,
|
| 1129 |
+
"tokens/train_per_sec_per_gpu": 38.39,
|
| 1130 |
+
"tokens/trainable": 36462
|
| 1131 |
+
},
|
| 1132 |
+
{
|
| 1133 |
+
"epoch": 0.31640625,
|
| 1134 |
+
"grad_norm": 1.0237257480621338,
|
| 1135 |
+
"learning_rate": 9.719721959634592e-05,
|
| 1136 |
+
"loss": 0.019660785794258118,
|
| 1137 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1138 |
+
"memory/max_active (GiB)": 33.89,
|
| 1139 |
+
"memory/max_allocated (GiB)": 33.89,
|
| 1140 |
+
"ppl": 1.01986,
|
| 1141 |
+
"step": 81,
|
| 1142 |
+
"tokens/total": 2452752,
|
| 1143 |
+
"tokens/train_per_sec_per_gpu": 33.33,
|
| 1144 |
+
"tokens/trainable": 36919
|
| 1145 |
+
},
|
| 1146 |
+
{
|
| 1147 |
+
"epoch": 0.3203125,
|
| 1148 |
+
"grad_norm": 0.3411601185798645,
|
| 1149 |
+
"learning_rate": 9.709549441810375e-05,
|
| 1150 |
+
"loss": 0.011061297729611397,
|
| 1151 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1152 |
+
"memory/max_active (GiB)": 33.44,
|
| 1153 |
+
"memory/max_allocated (GiB)": 33.44,
|
| 1154 |
+
"ppl": 1.01112,
|
| 1155 |
+
"step": 82,
|
| 1156 |
+
"tokens/total": 2481216,
|
| 1157 |
+
"tokens/train_per_sec_per_gpu": 33.56,
|
| 1158 |
+
"tokens/trainable": 37379
|
| 1159 |
+
},
|
| 1160 |
+
{
|
| 1161 |
+
"epoch": 0.32421875,
|
| 1162 |
+
"grad_norm": 0.41286832094192505,
|
| 1163 |
+
"learning_rate": 9.699201747451195e-05,
|
| 1164 |
+
"loss": 0.011656982824206352,
|
| 1165 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1166 |
+
"memory/max_active (GiB)": 33.84,
|
| 1167 |
+
"memory/max_allocated (GiB)": 33.84,
|
| 1168 |
+
"ppl": 1.01173,
|
| 1169 |
+
"step": 83,
|
| 1170 |
+
"tokens/total": 2511488,
|
| 1171 |
+
"tokens/train_per_sec_per_gpu": 33.18,
|
| 1172 |
+
"tokens/trainable": 37832
|
| 1173 |
+
},
|
| 1174 |
+
{
|
| 1175 |
+
"epoch": 0.328125,
|
| 1176 |
+
"grad_norm": 0.6960376501083374,
|
| 1177 |
+
"learning_rate": 9.688679307166854e-05,
|
| 1178 |
+
"loss": 0.024275368079543114,
|
| 1179 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1180 |
+
"memory/max_active (GiB)": 33.86,
|
| 1181 |
+
"memory/max_allocated (GiB)": 33.86,
|
| 1182 |
+
"ppl": 1.02457,
|
| 1183 |
+
"step": 84,
|
| 1184 |
+
"tokens/total": 2541984,
|
| 1185 |
+
"tokens/train_per_sec_per_gpu": 34.04,
|
| 1186 |
+
"tokens/trainable": 38303
|
| 1187 |
+
},
|
| 1188 |
+
{
|
| 1189 |
+
"epoch": 0.33203125,
|
| 1190 |
+
"grad_norm": 0.15315213799476624,
|
| 1191 |
+
"learning_rate": 9.677982558839042e-05,
|
| 1192 |
+
"loss": 0.004536543972790241,
|
| 1193 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1194 |
+
"memory/max_active (GiB)": 33.69,
|
| 1195 |
+
"memory/max_allocated (GiB)": 33.69,
|
| 1196 |
+
"ppl": 1.00455,
|
| 1197 |
+
"step": 85,
|
| 1198 |
+
"tokens/total": 2572224,
|
| 1199 |
+
"tokens/train_per_sec_per_gpu": 33.67,
|
| 1200 |
+
"tokens/trainable": 38758
|
| 1201 |
+
},
|
| 1202 |
+
{
|
| 1203 |
+
"epoch": 0.3359375,
|
| 1204 |
+
"grad_norm": 0.18710190057754517,
|
| 1205 |
+
"learning_rate": 9.66711194760312e-05,
|
| 1206 |
+
"loss": 0.006560188252478838,
|
| 1207 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1208 |
+
"memory/max_active (GiB)": 33.86,
|
| 1209 |
+
"memory/max_allocated (GiB)": 33.86,
|
| 1210 |
+
"ppl": 1.00658,
|
| 1211 |
+
"step": 86,
|
| 1212 |
+
"tokens/total": 2602704,
|
| 1213 |
+
"tokens/train_per_sec_per_gpu": 30.7,
|
| 1214 |
+
"tokens/trainable": 39179
|
| 1215 |
+
},
|
| 1216 |
+
{
|
| 1217 |
+
"epoch": 0.33984375,
|
| 1218 |
+
"grad_norm": 0.343269407749176,
|
| 1219 |
+
"learning_rate": 9.656067925829593e-05,
|
| 1220 |
+
"loss": 0.010140963830053806,
|
| 1221 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1222 |
+
"memory/max_active (GiB)": 33.88,
|
| 1223 |
+
"memory/max_allocated (GiB)": 33.88,
|
| 1224 |
+
"ppl": 1.01019,
|
| 1225 |
+
"step": 87,
|
| 1226 |
+
"tokens/total": 2633072,
|
| 1227 |
+
"tokens/train_per_sec_per_gpu": 35.42,
|
| 1228 |
+
"tokens/trainable": 39679
|
| 1229 |
+
},
|
| 1230 |
+
{
|
| 1231 |
+
"epoch": 0.34375,
|
| 1232 |
+
"grad_norm": 0.3905015289783478,
|
| 1233 |
+
"learning_rate": 9.644850953105288e-05,
|
| 1234 |
+
"loss": 0.010611740872263908,
|
| 1235 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1236 |
+
"memory/max_active (GiB)": 33.73,
|
| 1237 |
+
"memory/max_allocated (GiB)": 33.73,
|
| 1238 |
+
"ppl": 1.01067,
|
| 1239 |
+
"step": 88,
|
| 1240 |
+
"tokens/total": 2663232,
|
| 1241 |
+
"tokens/train_per_sec_per_gpu": 32.84,
|
| 1242 |
+
"tokens/trainable": 40118
|
| 1243 |
+
},
|
| 1244 |
+
{
|
| 1245 |
+
"epoch": 0.34765625,
|
| 1246 |
+
"grad_norm": 0.5544098019599915,
|
| 1247 |
+
"learning_rate": 9.633461496214225e-05,
|
| 1248 |
+
"loss": 0.022607026621699333,
|
| 1249 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1250 |
+
"memory/max_active (GiB)": 33.87,
|
| 1251 |
+
"memory/max_allocated (GiB)": 33.87,
|
| 1252 |
+
"ppl": 1.02286,
|
| 1253 |
+
"step": 89,
|
| 1254 |
+
"tokens/total": 2693696,
|
| 1255 |
+
"tokens/train_per_sec_per_gpu": 32.92,
|
| 1256 |
+
"tokens/trainable": 40571
|
| 1257 |
+
},
|
| 1258 |
+
{
|
| 1259 |
+
"epoch": 0.3515625,
|
| 1260 |
+
"grad_norm": 0.16370345652103424,
|
| 1261 |
+
"learning_rate": 9.621900029118195e-05,
|
| 1262 |
+
"loss": 0.0030750958248972893,
|
| 1263 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1264 |
+
"memory/max_active (GiB)": 33.82,
|
| 1265 |
+
"memory/max_allocated (GiB)": 33.82,
|
| 1266 |
+
"ppl": 1.00308,
|
| 1267 |
+
"step": 90,
|
| 1268 |
+
"tokens/total": 2723984,
|
| 1269 |
+
"tokens/train_per_sec_per_gpu": 30.92,
|
| 1270 |
+
"tokens/trainable": 40997
|
| 1271 |
+
},
|
| 1272 |
+
{
|
| 1273 |
+
"epoch": 0.35546875,
|
| 1274 |
+
"grad_norm": 0.208849236369133,
|
| 1275 |
+
"learning_rate": 9.610167032937036e-05,
|
| 1276 |
+
"loss": 0.003701428882777691,
|
| 1277 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1278 |
+
"memory/max_active (GiB)": 33.82,
|
| 1279 |
+
"memory/max_allocated (GiB)": 33.82,
|
| 1280 |
+
"ppl": 1.00371,
|
| 1281 |
+
"step": 91,
|
| 1282 |
+
"tokens/total": 2754240,
|
| 1283 |
+
"tokens/train_per_sec_per_gpu": 36.55,
|
| 1284 |
+
"tokens/trainable": 41462
|
| 1285 |
+
},
|
| 1286 |
+
{
|
| 1287 |
+
"epoch": 0.359375,
|
| 1288 |
+
"grad_norm": 0.5515285134315491,
|
| 1289 |
+
"learning_rate": 9.598262995928611e-05,
|
| 1290 |
+
"loss": 0.012641018256545067,
|
| 1291 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1292 |
+
"memory/max_active (GiB)": 33.89,
|
| 1293 |
+
"memory/max_allocated (GiB)": 33.89,
|
| 1294 |
+
"ppl": 1.01272,
|
| 1295 |
+
"step": 92,
|
| 1296 |
+
"tokens/total": 2784672,
|
| 1297 |
+
"tokens/train_per_sec_per_gpu": 36.9,
|
| 1298 |
+
"tokens/trainable": 41927
|
| 1299 |
+
},
|
| 1300 |
+
{
|
| 1301 |
+
"epoch": 0.36328125,
|
| 1302 |
+
"grad_norm": 0.6742218136787415,
|
| 1303 |
+
"learning_rate": 9.586188413468492e-05,
|
| 1304 |
+
"loss": 0.019092712551355362,
|
| 1305 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1306 |
+
"memory/max_active (GiB)": 33.83,
|
| 1307 |
+
"memory/max_allocated (GiB)": 33.83,
|
| 1308 |
+
"ppl": 1.01928,
|
| 1309 |
+
"step": 93,
|
| 1310 |
+
"tokens/total": 2815120,
|
| 1311 |
+
"tokens/train_per_sec_per_gpu": 34.95,
|
| 1312 |
+
"tokens/trainable": 42397
|
| 1313 |
+
},
|
| 1314 |
+
{
|
| 1315 |
+
"epoch": 0.3671875,
|
| 1316 |
+
"grad_norm": 0.3739137351512909,
|
| 1317 |
+
"learning_rate": 9.57394378802934e-05,
|
| 1318 |
+
"loss": 0.0018391611520200968,
|
| 1319 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1320 |
+
"memory/max_active (GiB)": 33.97,
|
| 1321 |
+
"memory/max_allocated (GiB)": 33.97,
|
| 1322 |
+
"ppl": 1.00184,
|
| 1323 |
+
"step": 94,
|
| 1324 |
+
"tokens/total": 2845600,
|
| 1325 |
+
"tokens/train_per_sec_per_gpu": 36.63,
|
| 1326 |
+
"tokens/trainable": 42883
|
| 1327 |
+
},
|
| 1328 |
+
{
|
| 1329 |
+
"epoch": 0.37109375,
|
| 1330 |
+
"grad_norm": 0.25132012367248535,
|
| 1331 |
+
"learning_rate": 9.56152962916e-05,
|
| 1332 |
+
"loss": 0.008805882185697556,
|
| 1333 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1334 |
+
"memory/max_active (GiB)": 33.87,
|
| 1335 |
+
"memory/max_allocated (GiB)": 33.87,
|
| 1336 |
+
"ppl": 1.00884,
|
| 1337 |
+
"step": 95,
|
| 1338 |
+
"tokens/total": 2875952,
|
| 1339 |
+
"tokens/train_per_sec_per_gpu": 38.78,
|
| 1340 |
+
"tokens/trainable": 43381
|
| 1341 |
+
},
|
| 1342 |
+
{
|
| 1343 |
+
"epoch": 0.375,
|
| 1344 |
+
"grad_norm": 0.24200227856636047,
|
| 1345 |
+
"learning_rate": 9.548946453464296e-05,
|
| 1346 |
+
"loss": 0.006166054867208004,
|
| 1347 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1348 |
+
"memory/max_active (GiB)": 33.9,
|
| 1349 |
+
"memory/max_allocated (GiB)": 33.9,
|
| 1350 |
+
"ppl": 1.00619,
|
| 1351 |
+
"step": 96,
|
| 1352 |
+
"tokens/total": 2906288,
|
| 1353 |
+
"tokens/train_per_sec_per_gpu": 33.06,
|
| 1354 |
+
"tokens/trainable": 43824
|
| 1355 |
+
},
|
| 1356 |
+
{
|
| 1357 |
+
"epoch": 0.37890625,
|
| 1358 |
+
"grad_norm": 0.3597196340560913,
|
| 1359 |
+
"learning_rate": 9.53619478457953e-05,
|
| 1360 |
+
"loss": 0.0036215470172464848,
|
| 1361 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1362 |
+
"memory/max_active (GiB)": 33.89,
|
| 1363 |
+
"memory/max_allocated (GiB)": 33.89,
|
| 1364 |
+
"ppl": 1.00363,
|
| 1365 |
+
"step": 97,
|
| 1366 |
+
"tokens/total": 2936752,
|
| 1367 |
+
"tokens/train_per_sec_per_gpu": 31.62,
|
| 1368 |
+
"tokens/trainable": 44255
|
| 1369 |
+
},
|
| 1370 |
+
{
|
| 1371 |
+
"epoch": 0.3828125,
|
| 1372 |
+
"grad_norm": 0.7050648927688599,
|
| 1373 |
+
"learning_rate": 9.523275153154695e-05,
|
| 1374 |
+
"loss": 0.015324651263654232,
|
| 1375 |
+
"memory/device_reserved (GiB)": 35.19,
|
| 1376 |
+
"memory/max_active (GiB)": 33.92,
|
| 1377 |
+
"memory/max_allocated (GiB)": 33.92,
|
| 1378 |
+
"ppl": 1.01544,
|
| 1379 |
+
"step": 98,
|
| 1380 |
+
"tokens/total": 2967072,
|
| 1381 |
+
"tokens/train_per_sec_per_gpu": 37.7,
|
| 1382 |
+
"tokens/trainable": 44738
|
| 1383 |
+
},
|
| 1384 |
+
{
|
| 1385 |
+
"epoch": 0.38671875,
|
| 1386 |
+
"grad_norm": 0.5716716051101685,
|
| 1387 |
+
"learning_rate": 9.51018809682839e-05,
|
| 1388 |
+
"loss": 0.013399260118603706,
|
| 1389 |
+
"memory/device_reserved (GiB)": 35.76,
|
| 1390 |
+
"memory/max_active (GiB)": 34.03,
|
| 1391 |
+
"memory/max_allocated (GiB)": 34.03,
|
| 1392 |
+
"ppl": 1.01349,
|
| 1393 |
+
"step": 99,
|
| 1394 |
+
"tokens/total": 2997664,
|
| 1395 |
+
"tokens/train_per_sec_per_gpu": 36.24,
|
| 1396 |
+
"tokens/trainable": 45201
|
| 1397 |
+
},
|
| 1398 |
+
{
|
| 1399 |
+
"epoch": 0.390625,
|
| 1400 |
+
"grad_norm": 0.18090857565402985,
|
| 1401 |
+
"learning_rate": 9.49693416020645e-05,
|
| 1402 |
+
"loss": 0.0020832926966249943,
|
| 1403 |
+
"memory/device_reserved (GiB)": 35.99,
|
| 1404 |
+
"memory/max_active (GiB)": 33.88,
|
| 1405 |
+
"memory/max_allocated (GiB)": 33.88,
|
| 1406 |
+
"ppl": 1.00209,
|
| 1407 |
+
"step": 100,
|
| 1408 |
+
"tokens/total": 3028032,
|
| 1409 |
+
"tokens/train_per_sec_per_gpu": 32.96,
|
| 1410 |
+
"tokens/trainable": 45645
|
| 1411 |
+
},
|
| 1412 |
+
{
|
| 1413 |
+
"epoch": 0.39453125,
|
| 1414 |
+
"grad_norm": 0.5402258038520813,
|
| 1415 |
+
"learning_rate": 9.483513894839276e-05,
|
| 1416 |
+
"loss": 0.011402487754821777,
|
| 1417 |
+
"memory/device_reserved (GiB)": 35.99,
|
| 1418 |
+
"memory/max_active (GiB)": 33.82,
|
| 1419 |
+
"memory/max_allocated (GiB)": 33.82,
|
| 1420 |
+
"ppl": 1.01147,
|
| 1421 |
+
"step": 101,
|
| 1422 |
+
"tokens/total": 3058272,
|
| 1423 |
+
"tokens/train_per_sec_per_gpu": 33.13,
|
| 1424 |
+
"tokens/trainable": 46088
|
| 1425 |
+
},
|
| 1426 |
+
{
|
| 1427 |
+
"epoch": 0.3984375,
|
| 1428 |
+
"grad_norm": 0.220508873462677,
|
| 1429 |
+
"learning_rate": 9.469927859198888e-05,
|
| 1430 |
+
"loss": 0.026607759296894073,
|
| 1431 |
+
"memory/device_reserved (GiB)": 35.99,
|
| 1432 |
+
"memory/max_active (GiB)": 33.89,
|
| 1433 |
+
"memory/max_allocated (GiB)": 33.89,
|
| 1434 |
+
"ppl": 1.02696,
|
| 1435 |
+
"step": 102,
|
| 1436 |
+
"tokens/total": 3088848,
|
| 1437 |
+
"tokens/train_per_sec_per_gpu": 32.58,
|
| 1438 |
+
"tokens/trainable": 46544
|
| 1439 |
+
},
|
| 1440 |
+
{
|
| 1441 |
+
"epoch": 0.40234375,
|
| 1442 |
+
"grad_norm": 0.488730788230896,
|
| 1443 |
+
"learning_rate": 9.456176618655689e-05,
|
| 1444 |
+
"loss": 0.007838367484509945,
|
| 1445 |
+
"memory/device_reserved (GiB)": 35.99,
|
| 1446 |
+
"memory/max_active (GiB)": 33.91,
|
| 1447 |
+
"memory/max_allocated (GiB)": 33.91,
|
| 1448 |
+
"ppl": 1.00787,
|
| 1449 |
+
"step": 103,
|
| 1450 |
+
"tokens/total": 3119424,
|
| 1451 |
+
"tokens/train_per_sec_per_gpu": 31.96,
|
| 1452 |
+
"tokens/trainable": 47011
|
| 1453 |
+
},
|
| 1454 |
+
{
|
| 1455 |
+
"epoch": 0.40625,
|
| 1456 |
+
"grad_norm": 1.0092511177062988,
|
| 1457 |
+
"learning_rate": 9.442260745454927e-05,
|
| 1458 |
+
"loss": 0.024805881083011627,
|
| 1459 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1460 |
+
"memory/max_active (GiB)": 33.81,
|
| 1461 |
+
"memory/max_allocated (GiB)": 33.81,
|
| 1462 |
+
"ppl": 1.02512,
|
| 1463 |
+
"step": 104,
|
| 1464 |
+
"tokens/total": 3149696,
|
| 1465 |
+
"tokens/train_per_sec_per_gpu": 37.78,
|
| 1466 |
+
"tokens/trainable": 47500
|
| 1467 |
+
},
|
| 1468 |
+
{
|
| 1469 |
+
"epoch": 0.41015625,
|
| 1470 |
+
"grad_norm": 0.1705712527036667,
|
| 1471 |
+
"learning_rate": 9.428180818692884e-05,
|
| 1472 |
+
"loss": 0.002884519286453724,
|
| 1473 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1474 |
+
"memory/max_active (GiB)": 33.83,
|
| 1475 |
+
"memory/max_allocated (GiB)": 33.83,
|
| 1476 |
+
"ppl": 1.00289,
|
| 1477 |
+
"step": 105,
|
| 1478 |
+
"tokens/total": 3180064,
|
| 1479 |
+
"tokens/train_per_sec_per_gpu": 36.28,
|
| 1480 |
+
"tokens/trainable": 47993
|
| 1481 |
+
},
|
| 1482 |
+
{
|
| 1483 |
+
"epoch": 0.4140625,
|
| 1484 |
+
"grad_norm": 0.539692759513855,
|
| 1485 |
+
"learning_rate": 9.413937424292791e-05,
|
| 1486 |
+
"loss": 0.028211303055286407,
|
| 1487 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1488 |
+
"memory/max_active (GiB)": 33.39,
|
| 1489 |
+
"memory/max_allocated (GiB)": 33.39,
|
| 1490 |
+
"ppl": 1.02861,
|
| 1491 |
+
"step": 106,
|
| 1492 |
+
"tokens/total": 3208320,
|
| 1493 |
+
"tokens/train_per_sec_per_gpu": 34.13,
|
| 1494 |
+
"tokens/trainable": 48444
|
| 1495 |
+
},
|
| 1496 |
+
{
|
| 1497 |
+
"epoch": 0.41796875,
|
| 1498 |
+
"grad_norm": 0.576267421245575,
|
| 1499 |
+
"learning_rate": 9.399531154980424e-05,
|
| 1500 |
+
"loss": 0.026665428653359413,
|
| 1501 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1502 |
+
"memory/max_active (GiB)": 33.74,
|
| 1503 |
+
"memory/max_allocated (GiB)": 33.74,
|
| 1504 |
+
"ppl": 1.02702,
|
| 1505 |
+
"step": 107,
|
| 1506 |
+
"tokens/total": 3238416,
|
| 1507 |
+
"tokens/train_per_sec_per_gpu": 30.72,
|
| 1508 |
+
"tokens/trainable": 48886
|
| 1509 |
+
},
|
| 1510 |
+
{
|
| 1511 |
+
"epoch": 0.421875,
|
| 1512 |
+
"grad_norm": 0.19187162816524506,
|
| 1513 |
+
"learning_rate": 9.384962610259455e-05,
|
| 1514 |
+
"loss": 0.007470840122550726,
|
| 1515 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1516 |
+
"memory/max_active (GiB)": 33.82,
|
| 1517 |
+
"memory/max_allocated (GiB)": 33.82,
|
| 1518 |
+
"ppl": 1.0075,
|
| 1519 |
+
"step": 108,
|
| 1520 |
+
"tokens/total": 3268784,
|
| 1521 |
+
"tokens/train_per_sec_per_gpu": 37.78,
|
| 1522 |
+
"tokens/trainable": 49357
|
| 1523 |
+
},
|
| 1524 |
+
{
|
| 1525 |
+
"epoch": 0.42578125,
|
| 1526 |
+
"grad_norm": 0.30193838477134705,
|
| 1527 |
+
"learning_rate": 9.370232396386494e-05,
|
| 1528 |
+
"loss": 0.012815583497285843,
|
| 1529 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1530 |
+
"memory/max_active (GiB)": 33.79,
|
| 1531 |
+
"memory/max_allocated (GiB)": 33.79,
|
| 1532 |
+
"ppl": 1.0129,
|
| 1533 |
+
"step": 109,
|
| 1534 |
+
"tokens/total": 3298912,
|
| 1535 |
+
"tokens/train_per_sec_per_gpu": 36.72,
|
| 1536 |
+
"tokens/trainable": 49824
|
| 1537 |
+
},
|
| 1538 |
+
{
|
| 1539 |
+
"epoch": 0.4296875,
|
| 1540 |
+
"grad_norm": 0.24559386074543,
|
| 1541 |
+
"learning_rate": 9.355341126345868e-05,
|
| 1542 |
+
"loss": 0.010728488676249981,
|
| 1543 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1544 |
+
"memory/max_active (GiB)": 33.99,
|
| 1545 |
+
"memory/max_allocated (GiB)": 33.99,
|
| 1546 |
+
"ppl": 1.01079,
|
| 1547 |
+
"step": 110,
|
| 1548 |
+
"tokens/total": 3329232,
|
| 1549 |
+
"tokens/train_per_sec_per_gpu": 34.26,
|
| 1550 |
+
"tokens/trainable": 50264
|
| 1551 |
+
},
|
| 1552 |
+
{
|
| 1553 |
+
"epoch": 0.43359375,
|
| 1554 |
+
"grad_norm": 0.3296513259410858,
|
| 1555 |
+
"learning_rate": 9.340289419824107e-05,
|
| 1556 |
+
"loss": 0.01623804122209549,
|
| 1557 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1558 |
+
"memory/max_active (GiB)": 33.8,
|
| 1559 |
+
"memory/max_allocated (GiB)": 33.8,
|
| 1560 |
+
"ppl": 1.01637,
|
| 1561 |
+
"step": 111,
|
| 1562 |
+
"tokens/total": 3359440,
|
| 1563 |
+
"tokens/train_per_sec_per_gpu": 33.41,
|
| 1564 |
+
"tokens/trainable": 50708
|
| 1565 |
+
},
|
| 1566 |
+
{
|
| 1567 |
+
"epoch": 0.4375,
|
| 1568 |
+
"grad_norm": 0.4614265263080597,
|
| 1569 |
+
"learning_rate": 9.325077903184159e-05,
|
| 1570 |
+
"loss": 0.021365080028772354,
|
| 1571 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1572 |
+
"memory/max_active (GiB)": 33.74,
|
| 1573 |
+
"memory/max_allocated (GiB)": 33.74,
|
| 1574 |
+
"ppl": 1.02159,
|
| 1575 |
+
"step": 112,
|
| 1576 |
+
"tokens/total": 3389472,
|
| 1577 |
+
"tokens/train_per_sec_per_gpu": 31.61,
|
| 1578 |
+
"tokens/trainable": 51154
|
| 1579 |
+
},
|
| 1580 |
+
{
|
| 1581 |
+
"epoch": 0.44140625,
|
| 1582 |
+
"grad_norm": 0.28496578335762024,
|
| 1583 |
+
"learning_rate": 9.30970720943932e-05,
|
| 1584 |
+
"loss": 0.013247976079583168,
|
| 1585 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1586 |
+
"memory/max_active (GiB)": 33.9,
|
| 1587 |
+
"memory/max_allocated (GiB)": 33.9,
|
| 1588 |
+
"ppl": 1.01334,
|
| 1589 |
+
"step": 113,
|
| 1590 |
+
"tokens/total": 3419920,
|
| 1591 |
+
"tokens/train_per_sec_per_gpu": 32.72,
|
| 1592 |
+
"tokens/trainable": 51610
|
| 1593 |
+
},
|
| 1594 |
+
{
|
| 1595 |
+
"epoch": 0.4453125,
|
| 1596 |
+
"grad_norm": 0.5088275074958801,
|
| 1597 |
+
"learning_rate": 9.2941779782269e-05,
|
| 1598 |
+
"loss": 0.022269586101174355,
|
| 1599 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1600 |
+
"memory/max_active (GiB)": 33.78,
|
| 1601 |
+
"memory/max_allocated (GiB)": 33.78,
|
| 1602 |
+
"ppl": 1.02252,
|
| 1603 |
+
"step": 114,
|
| 1604 |
+
"tokens/total": 3450176,
|
| 1605 |
+
"tokens/train_per_sec_per_gpu": 29.14,
|
| 1606 |
+
"tokens/trainable": 52014
|
| 1607 |
+
},
|
| 1608 |
+
{
|
| 1609 |
+
"epoch": 0.44921875,
|
| 1610 |
+
"grad_norm": 0.19142404198646545,
|
| 1611 |
+
"learning_rate": 9.278490855781596e-05,
|
| 1612 |
+
"loss": 0.006432589143514633,
|
| 1613 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1614 |
+
"memory/max_active (GiB)": 33.87,
|
| 1615 |
+
"memory/max_allocated (GiB)": 33.87,
|
| 1616 |
+
"ppl": 1.00645,
|
| 1617 |
+
"step": 115,
|
| 1618 |
+
"tokens/total": 3480544,
|
| 1619 |
+
"tokens/train_per_sec_per_gpu": 36.32,
|
| 1620 |
+
"tokens/trainable": 52503
|
| 1621 |
+
},
|
| 1622 |
+
{
|
| 1623 |
+
"epoch": 0.453125,
|
| 1624 |
+
"grad_norm": 1.382026195526123,
|
| 1625 |
+
"learning_rate": 9.262646494908604e-05,
|
| 1626 |
+
"loss": 0.012845169752836227,
|
| 1627 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1628 |
+
"memory/max_active (GiB)": 33.81,
|
| 1629 |
+
"memory/max_allocated (GiB)": 33.81,
|
| 1630 |
+
"ppl": 1.01293,
|
| 1631 |
+
"step": 116,
|
| 1632 |
+
"tokens/total": 3510848,
|
| 1633 |
+
"tokens/train_per_sec_per_gpu": 38.75,
|
| 1634 |
+
"tokens/trainable": 53005
|
| 1635 |
+
},
|
| 1636 |
+
{
|
| 1637 |
+
"epoch": 0.45703125,
|
| 1638 |
+
"grad_norm": 0.16703951358795166,
|
| 1639 |
+
"learning_rate": 9.246645554956457e-05,
|
| 1640 |
+
"loss": 0.0037160126958042383,
|
| 1641 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1642 |
+
"memory/max_active (GiB)": 33.96,
|
| 1643 |
+
"memory/max_allocated (GiB)": 33.96,
|
| 1644 |
+
"ppl": 1.00372,
|
| 1645 |
+
"step": 117,
|
| 1646 |
+
"tokens/total": 3541296,
|
| 1647 |
+
"tokens/train_per_sec_per_gpu": 35.4,
|
| 1648 |
+
"tokens/trainable": 53464
|
| 1649 |
+
},
|
| 1650 |
+
{
|
| 1651 |
+
"epoch": 0.4609375,
|
| 1652 |
+
"grad_norm": 0.615856945514679,
|
| 1653 |
+
"learning_rate": 9.230488701789578e-05,
|
| 1654 |
+
"loss": 0.014962448738515377,
|
| 1655 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1656 |
+
"memory/max_active (GiB)": 33.97,
|
| 1657 |
+
"memory/max_allocated (GiB)": 33.97,
|
| 1658 |
+
"ppl": 1.01507,
|
| 1659 |
+
"step": 118,
|
| 1660 |
+
"tokens/total": 3571936,
|
| 1661 |
+
"tokens/train_per_sec_per_gpu": 32.88,
|
| 1662 |
+
"tokens/trainable": 53920
|
| 1663 |
+
},
|
| 1664 |
+
{
|
| 1665 |
+
"epoch": 0.46484375,
|
| 1666 |
+
"grad_norm": 0.24910427629947662,
|
| 1667 |
+
"learning_rate": 9.214176607760577e-05,
|
| 1668 |
+
"loss": 0.004819548688828945,
|
| 1669 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1670 |
+
"memory/max_active (GiB)": 33.79,
|
| 1671 |
+
"memory/max_allocated (GiB)": 33.79,
|
| 1672 |
+
"ppl": 1.00483,
|
| 1673 |
+
"step": 119,
|
| 1674 |
+
"tokens/total": 3602000,
|
| 1675 |
+
"tokens/train_per_sec_per_gpu": 35.63,
|
| 1676 |
+
"tokens/trainable": 54360
|
| 1677 |
+
},
|
| 1678 |
+
{
|
| 1679 |
+
"epoch": 0.46875,
|
| 1680 |
+
"grad_norm": 0.9213384389877319,
|
| 1681 |
+
"learning_rate": 9.197709951682268e-05,
|
| 1682 |
+
"loss": 0.008400149643421173,
|
| 1683 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1684 |
+
"memory/max_active (GiB)": 33.81,
|
| 1685 |
+
"memory/max_allocated (GiB)": 33.81,
|
| 1686 |
+
"ppl": 1.00844,
|
| 1687 |
+
"step": 120,
|
| 1688 |
+
"tokens/total": 3632288,
|
| 1689 |
+
"tokens/train_per_sec_per_gpu": 35.21,
|
| 1690 |
+
"tokens/trainable": 54836
|
| 1691 |
+
},
|
| 1692 |
+
{
|
| 1693 |
+
"epoch": 0.47265625,
|
| 1694 |
+
"grad_norm": 0.1228351816534996,
|
| 1695 |
+
"learning_rate": 9.181089418799428e-05,
|
| 1696 |
+
"loss": 0.0019936836324632168,
|
| 1697 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1698 |
+
"memory/max_active (GiB)": 33.82,
|
| 1699 |
+
"memory/max_allocated (GiB)": 33.82,
|
| 1700 |
+
"ppl": 1.002,
|
| 1701 |
+
"step": 121,
|
| 1702 |
+
"tokens/total": 3662608,
|
| 1703 |
+
"tokens/train_per_sec_per_gpu": 32.69,
|
| 1704 |
+
"tokens/trainable": 55264
|
| 1705 |
+
},
|
| 1706 |
+
{
|
| 1707 |
+
"epoch": 0.4765625,
|
| 1708 |
+
"grad_norm": 0.18029853701591492,
|
| 1709 |
+
"learning_rate": 9.164315700760271e-05,
|
| 1710 |
+
"loss": 0.004047749564051628,
|
| 1711 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1712 |
+
"memory/max_active (GiB)": 33.77,
|
| 1713 |
+
"memory/max_allocated (GiB)": 33.77,
|
| 1714 |
+
"ppl": 1.00406,
|
| 1715 |
+
"step": 122,
|
| 1716 |
+
"tokens/total": 3692864,
|
| 1717 |
+
"tokens/train_per_sec_per_gpu": 30.55,
|
| 1718 |
+
"tokens/trainable": 55697
|
| 1719 |
+
},
|
| 1720 |
+
{
|
| 1721 |
+
"epoch": 0.48046875,
|
| 1722 |
+
"grad_norm": 0.4368670582771301,
|
| 1723 |
+
"learning_rate": 9.147389495587671e-05,
|
| 1724 |
+
"loss": 0.00867566466331482,
|
| 1725 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1726 |
+
"memory/max_active (GiB)": 33.73,
|
| 1727 |
+
"memory/max_allocated (GiB)": 33.73,
|
| 1728 |
+
"ppl": 1.00871,
|
| 1729 |
+
"step": 123,
|
| 1730 |
+
"tokens/total": 3722864,
|
| 1731 |
+
"tokens/train_per_sec_per_gpu": 33.49,
|
| 1732 |
+
"tokens/trainable": 56141
|
| 1733 |
+
},
|
| 1734 |
+
{
|
| 1735 |
+
"epoch": 0.484375,
|
| 1736 |
+
"grad_norm": 0.3315965235233307,
|
| 1737 |
+
"learning_rate": 9.130311507650116e-05,
|
| 1738 |
+
"loss": 0.011374368332326412,
|
| 1739 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1740 |
+
"memory/max_active (GiB)": 33.77,
|
| 1741 |
+
"memory/max_allocated (GiB)": 33.77,
|
| 1742 |
+
"ppl": 1.01144,
|
| 1743 |
+
"step": 124,
|
| 1744 |
+
"tokens/total": 3753056,
|
| 1745 |
+
"tokens/train_per_sec_per_gpu": 33.2,
|
| 1746 |
+
"tokens/trainable": 56586
|
| 1747 |
+
},
|
| 1748 |
+
{
|
| 1749 |
+
"epoch": 0.48828125,
|
| 1750 |
+
"grad_norm": 0.2834460735321045,
|
| 1751 |
+
"learning_rate": 9.113082447632394e-05,
|
| 1752 |
+
"loss": 0.005234894342720509,
|
| 1753 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1754 |
+
"memory/max_active (GiB)": 33.82,
|
| 1755 |
+
"memory/max_allocated (GiB)": 33.82,
|
| 1756 |
+
"ppl": 1.00525,
|
| 1757 |
+
"step": 125,
|
| 1758 |
+
"tokens/total": 3783312,
|
| 1759 |
+
"tokens/train_per_sec_per_gpu": 36.68,
|
| 1760 |
+
"tokens/trainable": 57078
|
| 1761 |
+
},
|
| 1762 |
+
{
|
| 1763 |
+
"epoch": 0.4921875,
|
| 1764 |
+
"grad_norm": 0.5132001638412476,
|
| 1765 |
+
"learning_rate": 9.09570303250602e-05,
|
| 1766 |
+
"loss": 0.02469645068049431,
|
| 1767 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1768 |
+
"memory/max_active (GiB)": 33.88,
|
| 1769 |
+
"memory/max_allocated (GiB)": 33.88,
|
| 1770 |
+
"ppl": 1.025,
|
| 1771 |
+
"step": 126,
|
| 1772 |
+
"tokens/total": 3813712,
|
| 1773 |
+
"tokens/train_per_sec_per_gpu": 32.87,
|
| 1774 |
+
"tokens/trainable": 57524
|
| 1775 |
+
},
|
| 1776 |
+
{
|
| 1777 |
+
"epoch": 0.49609375,
|
| 1778 |
+
"grad_norm": 0.9969733953475952,
|
| 1779 |
+
"learning_rate": 9.078173985499394e-05,
|
| 1780 |
+
"loss": 0.040580250322818756,
|
| 1781 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1782 |
+
"memory/max_active (GiB)": 33.94,
|
| 1783 |
+
"memory/max_allocated (GiB)": 33.94,
|
| 1784 |
+
"ppl": 1.04141,
|
| 1785 |
+
"step": 127,
|
| 1786 |
+
"tokens/total": 3844336,
|
| 1787 |
+
"tokens/train_per_sec_per_gpu": 34.85,
|
| 1788 |
+
"tokens/trainable": 58002
|
| 1789 |
+
},
|
| 1790 |
+
{
|
| 1791 |
+
"epoch": 0.5,
|
| 1792 |
+
"grad_norm": 0.4804457724094391,
|
| 1793 |
+
"learning_rate": 9.060496036067713e-05,
|
| 1794 |
+
"loss": 0.007047833874821663,
|
| 1795 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1796 |
+
"memory/max_active (GiB)": 33.39,
|
| 1797 |
+
"memory/max_allocated (GiB)": 33.39,
|
| 1798 |
+
"ppl": 1.00707,
|
| 1799 |
+
"step": 128,
|
| 1800 |
+
"tokens/total": 3872688,
|
| 1801 |
+
"tokens/train_per_sec_per_gpu": 35.3,
|
| 1802 |
+
"tokens/trainable": 58451
|
| 1803 |
+
}
|
| 1804 |
+
],
|
| 1805 |
+
"logging_steps": 1,
|
| 1806 |
+
"max_steps": 512,
|
| 1807 |
+
"num_input_tokens_seen": 0,
|
| 1808 |
+
"num_train_epochs": 2,
|
| 1809 |
+
"save_steps": 32,
|
| 1810 |
+
"stateful_callbacks": {
|
| 1811 |
+
"TrainerControl": {
|
| 1812 |
+
"args": {
|
| 1813 |
+
"should_epoch_stop": false,
|
| 1814 |
+
"should_evaluate": false,
|
| 1815 |
+
"should_log": false,
|
| 1816 |
+
"should_save": true,
|
| 1817 |
+
"should_training_stop": false
|
| 1818 |
+
},
|
| 1819 |
+
"attributes": {}
|
| 1820 |
+
}
|
| 1821 |
+
},
|
| 1822 |
+
"total_flos": 2.6286196555726387e+17,
|
| 1823 |
+
"train_batch_size": 16,
|
| 1824 |
+
"trial_name": null,
|
| 1825 |
+
"trial_params": null
|
| 1826 |
+
}
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-128/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:406793bea9f8fabcdcfc11db8c5c7a09125572ea519f1927fa7cb779a1e3293b
|
| 3 |
+
size 8273
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-160/README.md
ADDED
|
@@ -0,0 +1,208 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: /workspace/wave/parent
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- axolotl
|
| 7 |
+
- base_model:adapter:/workspace/wave/parent
|
| 8 |
+
- lora
|
| 9 |
+
- transformers
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# Model Card for Model ID
|
| 13 |
+
|
| 14 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
## Model Details
|
| 19 |
+
|
| 20 |
+
### Model Description
|
| 21 |
+
|
| 22 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
- **Developed by:** [More Information Needed]
|
| 27 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 28 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 29 |
+
- **Model type:** [More Information Needed]
|
| 30 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 31 |
+
- **License:** [More Information Needed]
|
| 32 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 33 |
+
|
| 34 |
+
### Model Sources [optional]
|
| 35 |
+
|
| 36 |
+
<!-- Provide the basic links for the model. -->
|
| 37 |
+
|
| 38 |
+
- **Repository:** [More Information Needed]
|
| 39 |
+
- **Paper [optional]:** [More Information Needed]
|
| 40 |
+
- **Demo [optional]:** [More Information Needed]
|
| 41 |
+
|
| 42 |
+
## Uses
|
| 43 |
+
|
| 44 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 45 |
+
|
| 46 |
+
### Direct Use
|
| 47 |
+
|
| 48 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 49 |
+
|
| 50 |
+
[More Information Needed]
|
| 51 |
+
|
| 52 |
+
### Downstream Use [optional]
|
| 53 |
+
|
| 54 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 55 |
+
|
| 56 |
+
[More Information Needed]
|
| 57 |
+
|
| 58 |
+
### Out-of-Scope Use
|
| 59 |
+
|
| 60 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 61 |
+
|
| 62 |
+
[More Information Needed]
|
| 63 |
+
|
| 64 |
+
## Bias, Risks, and Limitations
|
| 65 |
+
|
| 66 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 67 |
+
|
| 68 |
+
[More Information Needed]
|
| 69 |
+
|
| 70 |
+
### Recommendations
|
| 71 |
+
|
| 72 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 73 |
+
|
| 74 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 75 |
+
|
| 76 |
+
## How to Get Started with the Model
|
| 77 |
+
|
| 78 |
+
Use the code below to get started with the model.
|
| 79 |
+
|
| 80 |
+
[More Information Needed]
|
| 81 |
+
|
| 82 |
+
## Training Details
|
| 83 |
+
|
| 84 |
+
### Training Data
|
| 85 |
+
|
| 86 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 87 |
+
|
| 88 |
+
[More Information Needed]
|
| 89 |
+
|
| 90 |
+
### Training Procedure
|
| 91 |
+
|
| 92 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 93 |
+
|
| 94 |
+
#### Preprocessing [optional]
|
| 95 |
+
|
| 96 |
+
[More Information Needed]
|
| 97 |
+
|
| 98 |
+
|
| 99 |
+
#### Training Hyperparameters
|
| 100 |
+
|
| 101 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 102 |
+
|
| 103 |
+
#### Speeds, Sizes, Times [optional]
|
| 104 |
+
|
| 105 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 106 |
+
|
| 107 |
+
[More Information Needed]
|
| 108 |
+
|
| 109 |
+
## Evaluation
|
| 110 |
+
|
| 111 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 112 |
+
|
| 113 |
+
### Testing Data, Factors & Metrics
|
| 114 |
+
|
| 115 |
+
#### Testing Data
|
| 116 |
+
|
| 117 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 118 |
+
|
| 119 |
+
[More Information Needed]
|
| 120 |
+
|
| 121 |
+
#### Factors
|
| 122 |
+
|
| 123 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 124 |
+
|
| 125 |
+
[More Information Needed]
|
| 126 |
+
|
| 127 |
+
#### Metrics
|
| 128 |
+
|
| 129 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 130 |
+
|
| 131 |
+
[More Information Needed]
|
| 132 |
+
|
| 133 |
+
### Results
|
| 134 |
+
|
| 135 |
+
[More Information Needed]
|
| 136 |
+
|
| 137 |
+
#### Summary
|
| 138 |
+
|
| 139 |
+
|
| 140 |
+
|
| 141 |
+
## Model Examination [optional]
|
| 142 |
+
|
| 143 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 144 |
+
|
| 145 |
+
[More Information Needed]
|
| 146 |
+
|
| 147 |
+
## Environmental Impact
|
| 148 |
+
|
| 149 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 150 |
+
|
| 151 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 152 |
+
|
| 153 |
+
- **Hardware Type:** [More Information Needed]
|
| 154 |
+
- **Hours used:** [More Information Needed]
|
| 155 |
+
- **Cloud Provider:** [More Information Needed]
|
| 156 |
+
- **Compute Region:** [More Information Needed]
|
| 157 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 158 |
+
|
| 159 |
+
## Technical Specifications [optional]
|
| 160 |
+
|
| 161 |
+
### Model Architecture and Objective
|
| 162 |
+
|
| 163 |
+
[More Information Needed]
|
| 164 |
+
|
| 165 |
+
### Compute Infrastructure
|
| 166 |
+
|
| 167 |
+
[More Information Needed]
|
| 168 |
+
|
| 169 |
+
#### Hardware
|
| 170 |
+
|
| 171 |
+
[More Information Needed]
|
| 172 |
+
|
| 173 |
+
#### Software
|
| 174 |
+
|
| 175 |
+
[More Information Needed]
|
| 176 |
+
|
| 177 |
+
## Citation [optional]
|
| 178 |
+
|
| 179 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 180 |
+
|
| 181 |
+
**BibTeX:**
|
| 182 |
+
|
| 183 |
+
[More Information Needed]
|
| 184 |
+
|
| 185 |
+
**APA:**
|
| 186 |
+
|
| 187 |
+
[More Information Needed]
|
| 188 |
+
|
| 189 |
+
## Glossary [optional]
|
| 190 |
+
|
| 191 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 192 |
+
|
| 193 |
+
[More Information Needed]
|
| 194 |
+
|
| 195 |
+
## More Information [optional]
|
| 196 |
+
|
| 197 |
+
[More Information Needed]
|
| 198 |
+
|
| 199 |
+
## Model Card Authors [optional]
|
| 200 |
+
|
| 201 |
+
[More Information Needed]
|
| 202 |
+
|
| 203 |
+
## Model Card Contact
|
| 204 |
+
|
| 205 |
+
[More Information Needed]
|
| 206 |
+
### Framework versions
|
| 207 |
+
|
| 208 |
+
- PEFT 0.19.1
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-160/adapter_config.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "/workspace/wave/parent",
|
| 7 |
+
"bias": "none",
|
| 8 |
+
"corda_config": null,
|
| 9 |
+
"ensure_weight_tying": false,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": null,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 64,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.05,
|
| 22 |
+
"lora_ga_config": null,
|
| 23 |
+
"megatron_config": null,
|
| 24 |
+
"megatron_core": "megatron.core",
|
| 25 |
+
"modules_to_save": null,
|
| 26 |
+
"peft_type": "LORA",
|
| 27 |
+
"peft_version": "0.19.1",
|
| 28 |
+
"qalora_group_size": 16,
|
| 29 |
+
"r": 32,
|
| 30 |
+
"rank_pattern": {},
|
| 31 |
+
"revision": null,
|
| 32 |
+
"target_modules": [
|
| 33 |
+
"o_proj",
|
| 34 |
+
"down_proj",
|
| 35 |
+
"v_proj",
|
| 36 |
+
"up_proj",
|
| 37 |
+
"k_proj",
|
| 38 |
+
"gate_proj",
|
| 39 |
+
"q_proj"
|
| 40 |
+
],
|
| 41 |
+
"target_parameters": [],
|
| 42 |
+
"task_type": "CAUSAL_LM",
|
| 43 |
+
"trainable_token_indices": null,
|
| 44 |
+
"use_bdlora": null,
|
| 45 |
+
"use_dora": false,
|
| 46 |
+
"use_qalora": false,
|
| 47 |
+
"use_rslora": false
|
| 48 |
+
}
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-160/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f18e56b80e7ad24c74c6f7090f4f740933e44ef72100c8a8432894e8c258c433
|
| 3 |
+
size 547777976
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-160/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 -%}
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-160/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:07b4ab83e765b9a9fef6d5ad5b0bbf7bcffcc6ee72a12963150438f05716abe2
|
| 3 |
+
size 1048106435
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-160/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:62012b9e748bbef1beb75187c13d345f2d456800a4ec5207b243fb40c95ada94
|
| 3 |
+
size 14645
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-160/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:69d150a62f01954562efb0e1e0f0cfe1a6c1a63dcb6f19a50e14230cf65a7b89
|
| 3 |
+
size 1465
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-160/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726
|
| 3 |
+
size 33384567
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-160/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": false,
|
| 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 |
+
}
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-160/tokens_state.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"total": 4836224, "trainable": 73058}
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-160/trainer_state.json
ADDED
|
@@ -0,0 +1,2274 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.625,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 160,
|
| 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.00390625,
|
| 14 |
+
"grad_norm": 1.000339388847351,
|
| 15 |
+
"learning_rate": 0.0,
|
| 16 |
+
"loss": 0.11221420764923096,
|
| 17 |
+
"memory/device_reserved (GiB)": 33.9,
|
| 18 |
+
"memory/max_active (GiB)": 32.79,
|
| 19 |
+
"memory/max_allocated (GiB)": 32.79,
|
| 20 |
+
"ppl": 1.11875,
|
| 21 |
+
"step": 1,
|
| 22 |
+
"tokens/total": 30176,
|
| 23 |
+
"tokens/train_per_sec_per_gpu": 27.52,
|
| 24 |
+
"tokens/trainable": 417
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"epoch": 0.0078125,
|
| 28 |
+
"grad_norm": 0.8961698412895203,
|
| 29 |
+
"learning_rate": 4.000000000000001e-06,
|
| 30 |
+
"loss": 0.11656901985406876,
|
| 31 |
+
"memory/device_reserved (GiB)": 34.68,
|
| 32 |
+
"memory/max_active (GiB)": 33.77,
|
| 33 |
+
"memory/max_allocated (GiB)": 33.77,
|
| 34 |
+
"ppl": 1.12364,
|
| 35 |
+
"step": 2,
|
| 36 |
+
"tokens/total": 60272,
|
| 37 |
+
"tokens/train_per_sec_per_gpu": 34.78,
|
| 38 |
+
"tokens/trainable": 873
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"epoch": 0.01171875,
|
| 42 |
+
"grad_norm": 2.5287365913391113,
|
| 43 |
+
"learning_rate": 8.000000000000001e-06,
|
| 44 |
+
"loss": 0.11233991384506226,
|
| 45 |
+
"memory/device_reserved (GiB)": 34.72,
|
| 46 |
+
"memory/max_active (GiB)": 33.83,
|
| 47 |
+
"memory/max_allocated (GiB)": 33.83,
|
| 48 |
+
"ppl": 1.11889,
|
| 49 |
+
"step": 3,
|
| 50 |
+
"tokens/total": 90512,
|
| 51 |
+
"tokens/train_per_sec_per_gpu": 35.02,
|
| 52 |
+
"tokens/trainable": 1353
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"epoch": 0.015625,
|
| 56 |
+
"grad_norm": 1.3438372611999512,
|
| 57 |
+
"learning_rate": 1.2e-05,
|
| 58 |
+
"loss": 0.10132055729627609,
|
| 59 |
+
"memory/device_reserved (GiB)": 34.73,
|
| 60 |
+
"memory/max_active (GiB)": 33.84,
|
| 61 |
+
"memory/max_allocated (GiB)": 33.84,
|
| 62 |
+
"ppl": 1.10663,
|
| 63 |
+
"step": 4,
|
| 64 |
+
"tokens/total": 120944,
|
| 65 |
+
"tokens/train_per_sec_per_gpu": 31.26,
|
| 66 |
+
"tokens/trainable": 1778
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"epoch": 0.01953125,
|
| 70 |
+
"grad_norm": 1.0121135711669922,
|
| 71 |
+
"learning_rate": 1.6000000000000003e-05,
|
| 72 |
+
"loss": 0.11346302926540375,
|
| 73 |
+
"memory/device_reserved (GiB)": 35.12,
|
| 74 |
+
"memory/max_active (GiB)": 33.91,
|
| 75 |
+
"memory/max_allocated (GiB)": 33.91,
|
| 76 |
+
"ppl": 1.12015,
|
| 77 |
+
"step": 5,
|
| 78 |
+
"tokens/total": 151440,
|
| 79 |
+
"tokens/train_per_sec_per_gpu": 36.72,
|
| 80 |
+
"tokens/trainable": 2261
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"epoch": 0.0234375,
|
| 84 |
+
"grad_norm": 3.9203455448150635,
|
| 85 |
+
"learning_rate": 2e-05,
|
| 86 |
+
"loss": 0.09780596196651459,
|
| 87 |
+
"memory/device_reserved (GiB)": 36.12,
|
| 88 |
+
"memory/max_active (GiB)": 33.94,
|
| 89 |
+
"memory/max_allocated (GiB)": 33.94,
|
| 90 |
+
"ppl": 1.10275,
|
| 91 |
+
"step": 6,
|
| 92 |
+
"tokens/total": 181984,
|
| 93 |
+
"tokens/train_per_sec_per_gpu": 32.9,
|
| 94 |
+
"tokens/trainable": 2705
|
| 95 |
+
},
|
| 96 |
+
{
|
| 97 |
+
"epoch": 0.02734375,
|
| 98 |
+
"grad_norm": 1.63088059425354,
|
| 99 |
+
"learning_rate": 2.4e-05,
|
| 100 |
+
"loss": 0.06366116553544998,
|
| 101 |
+
"memory/device_reserved (GiB)": 36.12,
|
| 102 |
+
"memory/max_active (GiB)": 33.87,
|
| 103 |
+
"memory/max_allocated (GiB)": 33.87,
|
| 104 |
+
"ppl": 1.06573,
|
| 105 |
+
"step": 7,
|
| 106 |
+
"tokens/total": 212336,
|
| 107 |
+
"tokens/train_per_sec_per_gpu": 33.89,
|
| 108 |
+
"tokens/trainable": 3136
|
| 109 |
+
},
|
| 110 |
+
{
|
| 111 |
+
"epoch": 0.03125,
|
| 112 |
+
"grad_norm": 1.9995646476745605,
|
| 113 |
+
"learning_rate": 2.8000000000000003e-05,
|
| 114 |
+
"loss": 0.0759042352437973,
|
| 115 |
+
"memory/device_reserved (GiB)": 36.12,
|
| 116 |
+
"memory/max_active (GiB)": 33.9,
|
| 117 |
+
"memory/max_allocated (GiB)": 33.9,
|
| 118 |
+
"ppl": 1.07886,
|
| 119 |
+
"step": 8,
|
| 120 |
+
"tokens/total": 242592,
|
| 121 |
+
"tokens/train_per_sec_per_gpu": 34.22,
|
| 122 |
+
"tokens/trainable": 3579
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"epoch": 0.03515625,
|
| 126 |
+
"grad_norm": 1.0774554014205933,
|
| 127 |
+
"learning_rate": 3.2000000000000005e-05,
|
| 128 |
+
"loss": 0.04145222157239914,
|
| 129 |
+
"memory/device_reserved (GiB)": 36.12,
|
| 130 |
+
"memory/max_active (GiB)": 33.77,
|
| 131 |
+
"memory/max_allocated (GiB)": 33.77,
|
| 132 |
+
"ppl": 1.04232,
|
| 133 |
+
"step": 9,
|
| 134 |
+
"tokens/total": 272784,
|
| 135 |
+
"tokens/train_per_sec_per_gpu": 29.14,
|
| 136 |
+
"tokens/trainable": 4000
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 0.0390625,
|
| 140 |
+
"grad_norm": 1.9648898839950562,
|
| 141 |
+
"learning_rate": 3.6e-05,
|
| 142 |
+
"loss": 0.032875221222639084,
|
| 143 |
+
"memory/device_reserved (GiB)": 37.81,
|
| 144 |
+
"memory/max_active (GiB)": 33.89,
|
| 145 |
+
"memory/max_allocated (GiB)": 33.89,
|
| 146 |
+
"ppl": 1.03342,
|
| 147 |
+
"step": 10,
|
| 148 |
+
"tokens/total": 303184,
|
| 149 |
+
"tokens/train_per_sec_per_gpu": 37.67,
|
| 150 |
+
"tokens/trainable": 4474
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"epoch": 0.04296875,
|
| 154 |
+
"grad_norm": 0.5937227606773376,
|
| 155 |
+
"learning_rate": 4e-05,
|
| 156 |
+
"loss": 0.023198626935482025,
|
| 157 |
+
"memory/device_reserved (GiB)": 37.81,
|
| 158 |
+
"memory/max_active (GiB)": 33.73,
|
| 159 |
+
"memory/max_allocated (GiB)": 33.73,
|
| 160 |
+
"ppl": 1.02347,
|
| 161 |
+
"step": 11,
|
| 162 |
+
"tokens/total": 333296,
|
| 163 |
+
"tokens/train_per_sec_per_gpu": 33.15,
|
| 164 |
+
"tokens/trainable": 4942
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"epoch": 0.046875,
|
| 168 |
+
"grad_norm": 5.294079303741455,
|
| 169 |
+
"learning_rate": 4.4000000000000006e-05,
|
| 170 |
+
"loss": 0.0510174036026001,
|
| 171 |
+
"memory/device_reserved (GiB)": 37.81,
|
| 172 |
+
"memory/max_active (GiB)": 33.96,
|
| 173 |
+
"memory/max_allocated (GiB)": 33.96,
|
| 174 |
+
"ppl": 1.05234,
|
| 175 |
+
"step": 12,
|
| 176 |
+
"tokens/total": 363840,
|
| 177 |
+
"tokens/train_per_sec_per_gpu": 34.23,
|
| 178 |
+
"tokens/trainable": 5424
|
| 179 |
+
},
|
| 180 |
+
{
|
| 181 |
+
"epoch": 0.05078125,
|
| 182 |
+
"grad_norm": 2.7166640758514404,
|
| 183 |
+
"learning_rate": 4.8e-05,
|
| 184 |
+
"loss": 0.06956956535577774,
|
| 185 |
+
"memory/device_reserved (GiB)": 37.81,
|
| 186 |
+
"memory/max_active (GiB)": 33.9,
|
| 187 |
+
"memory/max_allocated (GiB)": 33.9,
|
| 188 |
+
"ppl": 1.07205,
|
| 189 |
+
"step": 13,
|
| 190 |
+
"tokens/total": 394112,
|
| 191 |
+
"tokens/train_per_sec_per_gpu": 35.23,
|
| 192 |
+
"tokens/trainable": 5855
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"epoch": 0.0546875,
|
| 196 |
+
"grad_norm": 2.1496169567108154,
|
| 197 |
+
"learning_rate": 5.2000000000000004e-05,
|
| 198 |
+
"loss": 0.06250961124897003,
|
| 199 |
+
"memory/device_reserved (GiB)": 37.81,
|
| 200 |
+
"memory/max_active (GiB)": 33.91,
|
| 201 |
+
"memory/max_allocated (GiB)": 33.91,
|
| 202 |
+
"ppl": 1.0645,
|
| 203 |
+
"step": 14,
|
| 204 |
+
"tokens/total": 424656,
|
| 205 |
+
"tokens/train_per_sec_per_gpu": 34.78,
|
| 206 |
+
"tokens/trainable": 6344
|
| 207 |
+
},
|
| 208 |
+
{
|
| 209 |
+
"epoch": 0.05859375,
|
| 210 |
+
"grad_norm": 3.515660047531128,
|
| 211 |
+
"learning_rate": 5.6000000000000006e-05,
|
| 212 |
+
"loss": 0.09882807731628418,
|
| 213 |
+
"memory/device_reserved (GiB)": 37.81,
|
| 214 |
+
"memory/max_active (GiB)": 33.96,
|
| 215 |
+
"memory/max_allocated (GiB)": 33.96,
|
| 216 |
+
"ppl": 1.10388,
|
| 217 |
+
"step": 15,
|
| 218 |
+
"tokens/total": 455152,
|
| 219 |
+
"tokens/train_per_sec_per_gpu": 36.15,
|
| 220 |
+
"tokens/trainable": 6825
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"epoch": 0.0625,
|
| 224 |
+
"grad_norm": 2.3756372928619385,
|
| 225 |
+
"learning_rate": 6e-05,
|
| 226 |
+
"loss": 0.0719379335641861,
|
| 227 |
+
"memory/device_reserved (GiB)": 37.81,
|
| 228 |
+
"memory/max_active (GiB)": 33.88,
|
| 229 |
+
"memory/max_allocated (GiB)": 33.88,
|
| 230 |
+
"ppl": 1.07459,
|
| 231 |
+
"step": 16,
|
| 232 |
+
"tokens/total": 485328,
|
| 233 |
+
"tokens/train_per_sec_per_gpu": 30.01,
|
| 234 |
+
"tokens/trainable": 7230
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"epoch": 0.06640625,
|
| 238 |
+
"grad_norm": 1.7220206260681152,
|
| 239 |
+
"learning_rate": 6.400000000000001e-05,
|
| 240 |
+
"loss": 0.016590356826782227,
|
| 241 |
+
"memory/device_reserved (GiB)": 37.81,
|
| 242 |
+
"memory/max_active (GiB)": 33.92,
|
| 243 |
+
"memory/max_allocated (GiB)": 33.92,
|
| 244 |
+
"ppl": 1.01673,
|
| 245 |
+
"step": 17,
|
| 246 |
+
"tokens/total": 515744,
|
| 247 |
+
"tokens/train_per_sec_per_gpu": 35.89,
|
| 248 |
+
"tokens/trainable": 7699
|
| 249 |
+
},
|
| 250 |
+
{
|
| 251 |
+
"epoch": 0.0703125,
|
| 252 |
+
"grad_norm": 1.5261812210083008,
|
| 253 |
+
"learning_rate": 6.800000000000001e-05,
|
| 254 |
+
"loss": 0.030052796006202698,
|
| 255 |
+
"memory/device_reserved (GiB)": 37.81,
|
| 256 |
+
"memory/max_active (GiB)": 33.77,
|
| 257 |
+
"memory/max_allocated (GiB)": 33.77,
|
| 258 |
+
"ppl": 1.03051,
|
| 259 |
+
"step": 18,
|
| 260 |
+
"tokens/total": 546144,
|
| 261 |
+
"tokens/train_per_sec_per_gpu": 33.85,
|
| 262 |
+
"tokens/trainable": 8184
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"epoch": 0.07421875,
|
| 266 |
+
"grad_norm": 0.6416668891906738,
|
| 267 |
+
"learning_rate": 7.2e-05,
|
| 268 |
+
"loss": 0.013492297381162643,
|
| 269 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 270 |
+
"memory/max_active (GiB)": 33.84,
|
| 271 |
+
"memory/max_allocated (GiB)": 33.84,
|
| 272 |
+
"ppl": 1.01358,
|
| 273 |
+
"step": 19,
|
| 274 |
+
"tokens/total": 576560,
|
| 275 |
+
"tokens/train_per_sec_per_gpu": 34.91,
|
| 276 |
+
"tokens/trainable": 8675
|
| 277 |
+
},
|
| 278 |
+
{
|
| 279 |
+
"epoch": 0.078125,
|
| 280 |
+
"grad_norm": 1.2296113967895508,
|
| 281 |
+
"learning_rate": 7.6e-05,
|
| 282 |
+
"loss": 0.038845278322696686,
|
| 283 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 284 |
+
"memory/max_active (GiB)": 33.95,
|
| 285 |
+
"memory/max_allocated (GiB)": 33.95,
|
| 286 |
+
"ppl": 1.03961,
|
| 287 |
+
"step": 20,
|
| 288 |
+
"tokens/total": 607056,
|
| 289 |
+
"tokens/train_per_sec_per_gpu": 39.72,
|
| 290 |
+
"tokens/trainable": 9189
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"epoch": 0.08203125,
|
| 294 |
+
"grad_norm": 0.8426793813705444,
|
| 295 |
+
"learning_rate": 8e-05,
|
| 296 |
+
"loss": 0.01696154847741127,
|
| 297 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 298 |
+
"memory/max_active (GiB)": 33.77,
|
| 299 |
+
"memory/max_allocated (GiB)": 33.77,
|
| 300 |
+
"ppl": 1.01711,
|
| 301 |
+
"step": 21,
|
| 302 |
+
"tokens/total": 637488,
|
| 303 |
+
"tokens/train_per_sec_per_gpu": 31.68,
|
| 304 |
+
"tokens/trainable": 9614
|
| 305 |
+
},
|
| 306 |
+
{
|
| 307 |
+
"epoch": 0.0859375,
|
| 308 |
+
"grad_norm": 10.310348510742188,
|
| 309 |
+
"learning_rate": 8.4e-05,
|
| 310 |
+
"loss": 0.06855659186840057,
|
| 311 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 312 |
+
"memory/max_active (GiB)": 33.75,
|
| 313 |
+
"memory/max_allocated (GiB)": 33.75,
|
| 314 |
+
"ppl": 1.07096,
|
| 315 |
+
"step": 22,
|
| 316 |
+
"tokens/total": 667632,
|
| 317 |
+
"tokens/train_per_sec_per_gpu": 36.26,
|
| 318 |
+
"tokens/trainable": 10086
|
| 319 |
+
},
|
| 320 |
+
{
|
| 321 |
+
"epoch": 0.08984375,
|
| 322 |
+
"grad_norm": 1.412604808807373,
|
| 323 |
+
"learning_rate": 8.800000000000001e-05,
|
| 324 |
+
"loss": 0.04118483513593674,
|
| 325 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 326 |
+
"memory/max_active (GiB)": 33.84,
|
| 327 |
+
"memory/max_allocated (GiB)": 33.84,
|
| 328 |
+
"ppl": 1.04204,
|
| 329 |
+
"step": 23,
|
| 330 |
+
"tokens/total": 697872,
|
| 331 |
+
"tokens/train_per_sec_per_gpu": 32.96,
|
| 332 |
+
"tokens/trainable": 10535
|
| 333 |
+
},
|
| 334 |
+
{
|
| 335 |
+
"epoch": 0.09375,
|
| 336 |
+
"grad_norm": 1.4078032970428467,
|
| 337 |
+
"learning_rate": 9.200000000000001e-05,
|
| 338 |
+
"loss": 0.025748739019036293,
|
| 339 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 340 |
+
"memory/max_active (GiB)": 33.92,
|
| 341 |
+
"memory/max_allocated (GiB)": 33.92,
|
| 342 |
+
"ppl": 1.02608,
|
| 343 |
+
"step": 24,
|
| 344 |
+
"tokens/total": 728432,
|
| 345 |
+
"tokens/train_per_sec_per_gpu": 31.6,
|
| 346 |
+
"tokens/trainable": 10993
|
| 347 |
+
},
|
| 348 |
+
{
|
| 349 |
+
"epoch": 0.09765625,
|
| 350 |
+
"grad_norm": 1.0874605178833008,
|
| 351 |
+
"learning_rate": 9.6e-05,
|
| 352 |
+
"loss": 0.03088424727320671,
|
| 353 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 354 |
+
"memory/max_active (GiB)": 33.87,
|
| 355 |
+
"memory/max_allocated (GiB)": 33.87,
|
| 356 |
+
"ppl": 1.03137,
|
| 357 |
+
"step": 25,
|
| 358 |
+
"tokens/total": 756656,
|
| 359 |
+
"tokens/train_per_sec_per_gpu": 40.03,
|
| 360 |
+
"tokens/trainable": 11417
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"epoch": 0.1015625,
|
| 364 |
+
"grad_norm": 1.2574082612991333,
|
| 365 |
+
"learning_rate": 0.0001,
|
| 366 |
+
"loss": 0.03432866185903549,
|
| 367 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 368 |
+
"memory/max_active (GiB)": 33.92,
|
| 369 |
+
"memory/max_allocated (GiB)": 33.92,
|
| 370 |
+
"ppl": 1.03492,
|
| 371 |
+
"step": 26,
|
| 372 |
+
"tokens/total": 787120,
|
| 373 |
+
"tokens/train_per_sec_per_gpu": 34.36,
|
| 374 |
+
"tokens/trainable": 11874
|
| 375 |
+
},
|
| 376 |
+
{
|
| 377 |
+
"epoch": 0.10546875,
|
| 378 |
+
"grad_norm": 0.30990996956825256,
|
| 379 |
+
"learning_rate": 9.99990636831587e-05,
|
| 380 |
+
"loss": 0.010750269517302513,
|
| 381 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 382 |
+
"memory/max_active (GiB)": 33.94,
|
| 383 |
+
"memory/max_allocated (GiB)": 33.94,
|
| 384 |
+
"ppl": 1.01081,
|
| 385 |
+
"step": 27,
|
| 386 |
+
"tokens/total": 817504,
|
| 387 |
+
"tokens/train_per_sec_per_gpu": 31.64,
|
| 388 |
+
"tokens/trainable": 12316
|
| 389 |
+
},
|
| 390 |
+
{
|
| 391 |
+
"epoch": 0.109375,
|
| 392 |
+
"grad_norm": 0.5124737620353699,
|
| 393 |
+
"learning_rate": 9.999625477159879e-05,
|
| 394 |
+
"loss": 0.01967313140630722,
|
| 395 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 396 |
+
"memory/max_active (GiB)": 33.94,
|
| 397 |
+
"memory/max_allocated (GiB)": 33.94,
|
| 398 |
+
"ppl": 1.01987,
|
| 399 |
+
"step": 28,
|
| 400 |
+
"tokens/total": 848128,
|
| 401 |
+
"tokens/train_per_sec_per_gpu": 37.86,
|
| 402 |
+
"tokens/trainable": 12800
|
| 403 |
+
},
|
| 404 |
+
{
|
| 405 |
+
"epoch": 0.11328125,
|
| 406 |
+
"grad_norm": 1.2975701093673706,
|
| 407 |
+
"learning_rate": 9.999157338221051e-05,
|
| 408 |
+
"loss": 0.0434565395116806,
|
| 409 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 410 |
+
"memory/max_active (GiB)": 33.87,
|
| 411 |
+
"memory/max_allocated (GiB)": 33.87,
|
| 412 |
+
"ppl": 1.04441,
|
| 413 |
+
"step": 29,
|
| 414 |
+
"tokens/total": 878448,
|
| 415 |
+
"tokens/train_per_sec_per_gpu": 35.48,
|
| 416 |
+
"tokens/trainable": 13270
|
| 417 |
+
},
|
| 418 |
+
{
|
| 419 |
+
"epoch": 0.1171875,
|
| 420 |
+
"grad_norm": 0.4117317795753479,
|
| 421 |
+
"learning_rate": 9.998501970980562e-05,
|
| 422 |
+
"loss": 0.013137167319655418,
|
| 423 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 424 |
+
"memory/max_active (GiB)": 33.94,
|
| 425 |
+
"memory/max_allocated (GiB)": 33.94,
|
| 426 |
+
"ppl": 1.01322,
|
| 427 |
+
"step": 30,
|
| 428 |
+
"tokens/total": 909008,
|
| 429 |
+
"tokens/train_per_sec_per_gpu": 35.39,
|
| 430 |
+
"tokens/trainable": 13752
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"epoch": 0.12109375,
|
| 434 |
+
"grad_norm": 0.5875954627990723,
|
| 435 |
+
"learning_rate": 9.997659402710915e-05,
|
| 436 |
+
"loss": 0.01785588450729847,
|
| 437 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 438 |
+
"memory/max_active (GiB)": 33.84,
|
| 439 |
+
"memory/max_allocated (GiB)": 33.84,
|
| 440 |
+
"ppl": 1.01802,
|
| 441 |
+
"step": 31,
|
| 442 |
+
"tokens/total": 939312,
|
| 443 |
+
"tokens/train_per_sec_per_gpu": 34.07,
|
| 444 |
+
"tokens/trainable": 14218
|
| 445 |
+
},
|
| 446 |
+
{
|
| 447 |
+
"epoch": 0.125,
|
| 448 |
+
"grad_norm": 0.7800514698028564,
|
| 449 |
+
"learning_rate": 9.996629668474818e-05,
|
| 450 |
+
"loss": 0.011262159794569016,
|
| 451 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 452 |
+
"memory/max_active (GiB)": 33.81,
|
| 453 |
+
"memory/max_allocated (GiB)": 33.81,
|
| 454 |
+
"ppl": 1.01133,
|
| 455 |
+
"step": 32,
|
| 456 |
+
"tokens/total": 969264,
|
| 457 |
+
"tokens/train_per_sec_per_gpu": 34.49,
|
| 458 |
+
"tokens/trainable": 14655
|
| 459 |
+
},
|
| 460 |
+
{
|
| 461 |
+
"epoch": 0.12890625,
|
| 462 |
+
"grad_norm": 1.0509369373321533,
|
| 463 |
+
"learning_rate": 9.995412811123711e-05,
|
| 464 |
+
"loss": 0.04942459613084793,
|
| 465 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 466 |
+
"memory/max_active (GiB)": 33.95,
|
| 467 |
+
"memory/max_allocated (GiB)": 33.95,
|
| 468 |
+
"ppl": 1.05067,
|
| 469 |
+
"step": 33,
|
| 470 |
+
"tokens/total": 999792,
|
| 471 |
+
"tokens/train_per_sec_per_gpu": 33.35,
|
| 472 |
+
"tokens/trainable": 15087
|
| 473 |
+
},
|
| 474 |
+
{
|
| 475 |
+
"epoch": 0.1328125,
|
| 476 |
+
"grad_norm": 0.6234491467475891,
|
| 477 |
+
"learning_rate": 9.994008881295999e-05,
|
| 478 |
+
"loss": 0.028202136978507042,
|
| 479 |
+
"memory/device_reserved (GiB)": 35.48,
|
| 480 |
+
"memory/max_active (GiB)": 33.77,
|
| 481 |
+
"memory/max_allocated (GiB)": 33.77,
|
| 482 |
+
"ppl": 1.0286,
|
| 483 |
+
"step": 34,
|
| 484 |
+
"tokens/total": 1029840,
|
| 485 |
+
"tokens/train_per_sec_per_gpu": 33.92,
|
| 486 |
+
"tokens/trainable": 15548
|
| 487 |
+
},
|
| 488 |
+
{
|
| 489 |
+
"epoch": 0.13671875,
|
| 490 |
+
"grad_norm": 1.6843816041946411,
|
| 491 |
+
"learning_rate": 9.992417937414932e-05,
|
| 492 |
+
"loss": 0.02795713022351265,
|
| 493 |
+
"memory/device_reserved (GiB)": 35.48,
|
| 494 |
+
"memory/max_active (GiB)": 33.9,
|
| 495 |
+
"memory/max_allocated (GiB)": 33.9,
|
| 496 |
+
"ppl": 1.02835,
|
| 497 |
+
"step": 35,
|
| 498 |
+
"tokens/total": 1060416,
|
| 499 |
+
"tokens/train_per_sec_per_gpu": 33.77,
|
| 500 |
+
"tokens/trainable": 16037
|
| 501 |
+
},
|
| 502 |
+
{
|
| 503 |
+
"epoch": 0.140625,
|
| 504 |
+
"grad_norm": 0.29489848017692566,
|
| 505 |
+
"learning_rate": 9.99064004568618e-05,
|
| 506 |
+
"loss": 0.010517537593841553,
|
| 507 |
+
"memory/device_reserved (GiB)": 35.48,
|
| 508 |
+
"memory/max_active (GiB)": 33.72,
|
| 509 |
+
"memory/max_allocated (GiB)": 33.72,
|
| 510 |
+
"ppl": 1.01057,
|
| 511 |
+
"step": 36,
|
| 512 |
+
"tokens/total": 1090464,
|
| 513 |
+
"tokens/train_per_sec_per_gpu": 31.14,
|
| 514 |
+
"tokens/trainable": 16475
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"epoch": 0.14453125,
|
| 518 |
+
"grad_norm": 0.7335977554321289,
|
| 519 |
+
"learning_rate": 9.988675280095074e-05,
|
| 520 |
+
"loss": 0.018923252820968628,
|
| 521 |
+
"memory/device_reserved (GiB)": 35.86,
|
| 522 |
+
"memory/max_active (GiB)": 33.93,
|
| 523 |
+
"memory/max_allocated (GiB)": 33.93,
|
| 524 |
+
"ppl": 1.0191,
|
| 525 |
+
"step": 37,
|
| 526 |
+
"tokens/total": 1120944,
|
| 527 |
+
"tokens/train_per_sec_per_gpu": 34.38,
|
| 528 |
+
"tokens/trainable": 16919
|
| 529 |
+
},
|
| 530 |
+
{
|
| 531 |
+
"epoch": 0.1484375,
|
| 532 |
+
"grad_norm": 0.5587971210479736,
|
| 533 |
+
"learning_rate": 9.986523722403528e-05,
|
| 534 |
+
"loss": 0.020957889035344124,
|
| 535 |
+
"memory/device_reserved (GiB)": 35.86,
|
| 536 |
+
"memory/max_active (GiB)": 33.87,
|
| 537 |
+
"memory/max_allocated (GiB)": 33.87,
|
| 538 |
+
"ppl": 1.02118,
|
| 539 |
+
"step": 38,
|
| 540 |
+
"tokens/total": 1151360,
|
| 541 |
+
"tokens/train_per_sec_per_gpu": 28.97,
|
| 542 |
+
"tokens/trainable": 17333
|
| 543 |
+
},
|
| 544 |
+
{
|
| 545 |
+
"epoch": 0.15234375,
|
| 546 |
+
"grad_norm": 1.7112773656845093,
|
| 547 |
+
"learning_rate": 9.984185462146642e-05,
|
| 548 |
+
"loss": 0.045844268053770065,
|
| 549 |
+
"memory/device_reserved (GiB)": 35.86,
|
| 550 |
+
"memory/max_active (GiB)": 33.9,
|
| 551 |
+
"memory/max_allocated (GiB)": 33.9,
|
| 552 |
+
"ppl": 1.04691,
|
| 553 |
+
"step": 39,
|
| 554 |
+
"tokens/total": 1181728,
|
| 555 |
+
"tokens/train_per_sec_per_gpu": 36.19,
|
| 556 |
+
"tokens/trainable": 17806
|
| 557 |
+
},
|
| 558 |
+
{
|
| 559 |
+
"epoch": 0.15625,
|
| 560 |
+
"grad_norm": 1.2373344898223877,
|
| 561 |
+
"learning_rate": 9.98166059662897e-05,
|
| 562 |
+
"loss": 0.04578991234302521,
|
| 563 |
+
"memory/device_reserved (GiB)": 35.86,
|
| 564 |
+
"memory/max_active (GiB)": 33.83,
|
| 565 |
+
"memory/max_allocated (GiB)": 33.83,
|
| 566 |
+
"ppl": 1.04685,
|
| 567 |
+
"step": 40,
|
| 568 |
+
"tokens/total": 1212064,
|
| 569 |
+
"tokens/train_per_sec_per_gpu": 35.65,
|
| 570 |
+
"tokens/trainable": 18290
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"epoch": 0.16015625,
|
| 574 |
+
"grad_norm": 0.8950033187866211,
|
| 575 |
+
"learning_rate": 9.978949230920472e-05,
|
| 576 |
+
"loss": 0.02866373583674431,
|
| 577 |
+
"memory/device_reserved (GiB)": 35.88,
|
| 578 |
+
"memory/max_active (GiB)": 33.97,
|
| 579 |
+
"memory/max_allocated (GiB)": 33.97,
|
| 580 |
+
"ppl": 1.02908,
|
| 581 |
+
"step": 41,
|
| 582 |
+
"tokens/total": 1242592,
|
| 583 |
+
"tokens/train_per_sec_per_gpu": 32.05,
|
| 584 |
+
"tokens/trainable": 18747
|
| 585 |
+
},
|
| 586 |
+
{
|
| 587 |
+
"epoch": 0.1640625,
|
| 588 |
+
"grad_norm": 1.9967094659805298,
|
| 589 |
+
"learning_rate": 9.976051477852141e-05,
|
| 590 |
+
"loss": 0.02229372225701809,
|
| 591 |
+
"memory/device_reserved (GiB)": 35.88,
|
| 592 |
+
"memory/max_active (GiB)": 33.81,
|
| 593 |
+
"memory/max_allocated (GiB)": 33.81,
|
| 594 |
+
"ppl": 1.02254,
|
| 595 |
+
"step": 42,
|
| 596 |
+
"tokens/total": 1272800,
|
| 597 |
+
"tokens/train_per_sec_per_gpu": 31.91,
|
| 598 |
+
"tokens/trainable": 19172
|
| 599 |
+
},
|
| 600 |
+
{
|
| 601 |
+
"epoch": 0.16796875,
|
| 602 |
+
"grad_norm": 0.1990034282207489,
|
| 603 |
+
"learning_rate": 9.972967458011312e-05,
|
| 604 |
+
"loss": 0.0059759169816970825,
|
| 605 |
+
"memory/device_reserved (GiB)": 36.03,
|
| 606 |
+
"memory/max_active (GiB)": 34.04,
|
| 607 |
+
"memory/max_allocated (GiB)": 34.04,
|
| 608 |
+
"ppl": 1.00599,
|
| 609 |
+
"step": 43,
|
| 610 |
+
"tokens/total": 1303600,
|
| 611 |
+
"tokens/train_per_sec_per_gpu": 31.32,
|
| 612 |
+
"tokens/trainable": 19622
|
| 613 |
+
},
|
| 614 |
+
{
|
| 615 |
+
"epoch": 0.171875,
|
| 616 |
+
"grad_norm": 0.47151026129722595,
|
| 617 |
+
"learning_rate": 9.96969729973664e-05,
|
| 618 |
+
"loss": 0.011378830298781395,
|
| 619 |
+
"memory/device_reserved (GiB)": 36.03,
|
| 620 |
+
"memory/max_active (GiB)": 33.81,
|
| 621 |
+
"memory/max_allocated (GiB)": 33.81,
|
| 622 |
+
"ppl": 1.01144,
|
| 623 |
+
"step": 44,
|
| 624 |
+
"tokens/total": 1333936,
|
| 625 |
+
"tokens/train_per_sec_per_gpu": 33.41,
|
| 626 |
+
"tokens/trainable": 20073
|
| 627 |
+
},
|
| 628 |
+
{
|
| 629 |
+
"epoch": 0.17578125,
|
| 630 |
+
"grad_norm": 0.5381685495376587,
|
| 631 |
+
"learning_rate": 9.966241139112754e-05,
|
| 632 |
+
"loss": 0.02141587622463703,
|
| 633 |
+
"memory/device_reserved (GiB)": 36.03,
|
| 634 |
+
"memory/max_active (GiB)": 33.9,
|
| 635 |
+
"memory/max_allocated (GiB)": 33.9,
|
| 636 |
+
"ppl": 1.02165,
|
| 637 |
+
"step": 45,
|
| 638 |
+
"tokens/total": 1364288,
|
| 639 |
+
"tokens/train_per_sec_per_gpu": 31.57,
|
| 640 |
+
"tokens/trainable": 20497
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"epoch": 0.1796875,
|
| 644 |
+
"grad_norm": 1.0174895524978638,
|
| 645 |
+
"learning_rate": 9.96259911996461e-05,
|
| 646 |
+
"loss": 0.02236388623714447,
|
| 647 |
+
"memory/device_reserved (GiB)": 36.03,
|
| 648 |
+
"memory/max_active (GiB)": 33.82,
|
| 649 |
+
"memory/max_allocated (GiB)": 33.82,
|
| 650 |
+
"ppl": 1.02262,
|
| 651 |
+
"step": 46,
|
| 652 |
+
"tokens/total": 1394368,
|
| 653 |
+
"tokens/train_per_sec_per_gpu": 34.16,
|
| 654 |
+
"tokens/trainable": 20940
|
| 655 |
+
},
|
| 656 |
+
{
|
| 657 |
+
"epoch": 0.18359375,
|
| 658 |
+
"grad_norm": 0.5081813931465149,
|
| 659 |
+
"learning_rate": 9.958771393851491e-05,
|
| 660 |
+
"loss": 0.010915009304881096,
|
| 661 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 662 |
+
"memory/max_active (GiB)": 33.98,
|
| 663 |
+
"memory/max_allocated (GiB)": 33.98,
|
| 664 |
+
"ppl": 1.01097,
|
| 665 |
+
"step": 47,
|
| 666 |
+
"tokens/total": 1425024,
|
| 667 |
+
"tokens/train_per_sec_per_gpu": 35.04,
|
| 668 |
+
"tokens/trainable": 21405
|
| 669 |
+
},
|
| 670 |
+
{
|
| 671 |
+
"epoch": 0.1875,
|
| 672 |
+
"grad_norm": 1.4684470891952515,
|
| 673 |
+
"learning_rate": 9.954758120060702e-05,
|
| 674 |
+
"loss": 0.009690589271485806,
|
| 675 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 676 |
+
"memory/max_active (GiB)": 33.86,
|
| 677 |
+
"memory/max_allocated (GiB)": 33.86,
|
| 678 |
+
"ppl": 1.00974,
|
| 679 |
+
"step": 48,
|
| 680 |
+
"tokens/total": 1455392,
|
| 681 |
+
"tokens/train_per_sec_per_gpu": 35.13,
|
| 682 |
+
"tokens/trainable": 21828
|
| 683 |
+
},
|
| 684 |
+
{
|
| 685 |
+
"epoch": 0.19140625,
|
| 686 |
+
"grad_norm": 0.49191179871559143,
|
| 687 |
+
"learning_rate": 9.950559465600948e-05,
|
| 688 |
+
"loss": 0.010902130044996738,
|
| 689 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 690 |
+
"memory/max_active (GiB)": 33.88,
|
| 691 |
+
"memory/max_allocated (GiB)": 33.88,
|
| 692 |
+
"ppl": 1.01096,
|
| 693 |
+
"step": 49,
|
| 694 |
+
"tokens/total": 1485616,
|
| 695 |
+
"tokens/train_per_sec_per_gpu": 29.55,
|
| 696 |
+
"tokens/trainable": 22241
|
| 697 |
+
},
|
| 698 |
+
{
|
| 699 |
+
"epoch": 0.1953125,
|
| 700 |
+
"grad_norm": 0.44692206382751465,
|
| 701 |
+
"learning_rate": 9.946175605195379e-05,
|
| 702 |
+
"loss": 0.006928037852048874,
|
| 703 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 704 |
+
"memory/max_active (GiB)": 33.92,
|
| 705 |
+
"memory/max_allocated (GiB)": 33.92,
|
| 706 |
+
"ppl": 1.00695,
|
| 707 |
+
"step": 50,
|
| 708 |
+
"tokens/total": 1515984,
|
| 709 |
+
"tokens/train_per_sec_per_gpu": 36.48,
|
| 710 |
+
"tokens/trainable": 22688
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"epoch": 0.19921875,
|
| 714 |
+
"grad_norm": 0.37972721457481384,
|
| 715 |
+
"learning_rate": 9.941606721274322e-05,
|
| 716 |
+
"loss": 0.00806603953242302,
|
| 717 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 718 |
+
"memory/max_active (GiB)": 33.89,
|
| 719 |
+
"memory/max_allocated (GiB)": 33.89,
|
| 720 |
+
"ppl": 1.0081,
|
| 721 |
+
"step": 51,
|
| 722 |
+
"tokens/total": 1546224,
|
| 723 |
+
"tokens/train_per_sec_per_gpu": 32.12,
|
| 724 |
+
"tokens/trainable": 23136
|
| 725 |
+
},
|
| 726 |
+
{
|
| 727 |
+
"epoch": 0.203125,
|
| 728 |
+
"grad_norm": 1.0114665031433105,
|
| 729 |
+
"learning_rate": 9.936853003967685e-05,
|
| 730 |
+
"loss": 0.013657575473189354,
|
| 731 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 732 |
+
"memory/max_active (GiB)": 33.88,
|
| 733 |
+
"memory/max_allocated (GiB)": 33.88,
|
| 734 |
+
"ppl": 1.01375,
|
| 735 |
+
"step": 52,
|
| 736 |
+
"tokens/total": 1576528,
|
| 737 |
+
"tokens/train_per_sec_per_gpu": 36.95,
|
| 738 |
+
"tokens/trainable": 23631
|
| 739 |
+
},
|
| 740 |
+
{
|
| 741 |
+
"epoch": 0.20703125,
|
| 742 |
+
"grad_norm": 0.6438844799995422,
|
| 743 |
+
"learning_rate": 9.93191465109705e-05,
|
| 744 |
+
"loss": 0.05178550258278847,
|
| 745 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 746 |
+
"memory/max_active (GiB)": 33.83,
|
| 747 |
+
"memory/max_allocated (GiB)": 33.83,
|
| 748 |
+
"ppl": 1.05315,
|
| 749 |
+
"step": 53,
|
| 750 |
+
"tokens/total": 1606768,
|
| 751 |
+
"tokens/train_per_sec_per_gpu": 34.15,
|
| 752 |
+
"tokens/trainable": 24096
|
| 753 |
+
},
|
| 754 |
+
{
|
| 755 |
+
"epoch": 0.2109375,
|
| 756 |
+
"grad_norm": 3.0008814334869385,
|
| 757 |
+
"learning_rate": 9.926791868167438e-05,
|
| 758 |
+
"loss": 0.010915370658040047,
|
| 759 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 760 |
+
"memory/max_active (GiB)": 33.66,
|
| 761 |
+
"memory/max_allocated (GiB)": 33.66,
|
| 762 |
+
"ppl": 1.01098,
|
| 763 |
+
"step": 54,
|
| 764 |
+
"tokens/total": 1636640,
|
| 765 |
+
"tokens/train_per_sec_per_gpu": 37.95,
|
| 766 |
+
"tokens/trainable": 24569
|
| 767 |
+
},
|
| 768 |
+
{
|
| 769 |
+
"epoch": 0.21484375,
|
| 770 |
+
"grad_norm": 0.9377115368843079,
|
| 771 |
+
"learning_rate": 9.921484868358753e-05,
|
| 772 |
+
"loss": 0.019770421087741852,
|
| 773 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 774 |
+
"memory/max_active (GiB)": 33.88,
|
| 775 |
+
"memory/max_allocated (GiB)": 33.88,
|
| 776 |
+
"ppl": 1.01997,
|
| 777 |
+
"step": 55,
|
| 778 |
+
"tokens/total": 1667136,
|
| 779 |
+
"tokens/train_per_sec_per_gpu": 34.0,
|
| 780 |
+
"tokens/trainable": 25067
|
| 781 |
+
},
|
| 782 |
+
{
|
| 783 |
+
"epoch": 0.21875,
|
| 784 |
+
"grad_norm": 0.23384763300418854,
|
| 785 |
+
"learning_rate": 9.915993872516924e-05,
|
| 786 |
+
"loss": 0.004394679330289364,
|
| 787 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 788 |
+
"memory/max_active (GiB)": 33.85,
|
| 789 |
+
"memory/max_allocated (GiB)": 33.85,
|
| 790 |
+
"ppl": 1.0044,
|
| 791 |
+
"step": 56,
|
| 792 |
+
"tokens/total": 1697472,
|
| 793 |
+
"tokens/train_per_sec_per_gpu": 36.68,
|
| 794 |
+
"tokens/trainable": 25541
|
| 795 |
+
},
|
| 796 |
+
{
|
| 797 |
+
"epoch": 0.22265625,
|
| 798 |
+
"grad_norm": 0.7558876276016235,
|
| 799 |
+
"learning_rate": 9.9103191091447e-05,
|
| 800 |
+
"loss": 0.02614775486290455,
|
| 801 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 802 |
+
"memory/max_active (GiB)": 33.9,
|
| 803 |
+
"memory/max_allocated (GiB)": 33.9,
|
| 804 |
+
"ppl": 1.02649,
|
| 805 |
+
"step": 57,
|
| 806 |
+
"tokens/total": 1727680,
|
| 807 |
+
"tokens/train_per_sec_per_gpu": 33.29,
|
| 808 |
+
"tokens/trainable": 25965
|
| 809 |
+
},
|
| 810 |
+
{
|
| 811 |
+
"epoch": 0.2265625,
|
| 812 |
+
"grad_norm": 0.4615328311920166,
|
| 813 |
+
"learning_rate": 9.904460814392147e-05,
|
| 814 |
+
"loss": 0.01031234860420227,
|
| 815 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 816 |
+
"memory/max_active (GiB)": 33.87,
|
| 817 |
+
"memory/max_allocated (GiB)": 33.87,
|
| 818 |
+
"ppl": 1.01037,
|
| 819 |
+
"step": 58,
|
| 820 |
+
"tokens/total": 1758192,
|
| 821 |
+
"tokens/train_per_sec_per_gpu": 34.0,
|
| 822 |
+
"tokens/trainable": 26409
|
| 823 |
+
},
|
| 824 |
+
{
|
| 825 |
+
"epoch": 0.23046875,
|
| 826 |
+
"grad_norm": 0.40572404861450195,
|
| 827 |
+
"learning_rate": 9.898419232046825e-05,
|
| 828 |
+
"loss": 0.011052684858441353,
|
| 829 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 830 |
+
"memory/max_active (GiB)": 33.92,
|
| 831 |
+
"memory/max_allocated (GiB)": 33.92,
|
| 832 |
+
"ppl": 1.01111,
|
| 833 |
+
"step": 59,
|
| 834 |
+
"tokens/total": 1788816,
|
| 835 |
+
"tokens/train_per_sec_per_gpu": 34.17,
|
| 836 |
+
"tokens/trainable": 26883
|
| 837 |
+
},
|
| 838 |
+
{
|
| 839 |
+
"epoch": 0.234375,
|
| 840 |
+
"grad_norm": 0.7271711826324463,
|
| 841 |
+
"learning_rate": 9.892194613523633e-05,
|
| 842 |
+
"loss": 0.01451511587947607,
|
| 843 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 844 |
+
"memory/max_active (GiB)": 33.86,
|
| 845 |
+
"memory/max_allocated (GiB)": 33.86,
|
| 846 |
+
"ppl": 1.01462,
|
| 847 |
+
"step": 60,
|
| 848 |
+
"tokens/total": 1819056,
|
| 849 |
+
"tokens/train_per_sec_per_gpu": 33.87,
|
| 850 |
+
"tokens/trainable": 27323
|
| 851 |
+
},
|
| 852 |
+
{
|
| 853 |
+
"epoch": 0.23828125,
|
| 854 |
+
"grad_norm": 0.14707089960575104,
|
| 855 |
+
"learning_rate": 9.885787217854357e-05,
|
| 856 |
+
"loss": 0.004126548767089844,
|
| 857 |
+
"memory/device_reserved (GiB)": 36.16,
|
| 858 |
+
"memory/max_active (GiB)": 33.92,
|
| 859 |
+
"memory/max_allocated (GiB)": 33.92,
|
| 860 |
+
"ppl": 1.00414,
|
| 861 |
+
"step": 61,
|
| 862 |
+
"tokens/total": 1849664,
|
| 863 |
+
"tokens/train_per_sec_per_gpu": 39.34,
|
| 864 |
+
"tokens/trainable": 27830
|
| 865 |
+
},
|
| 866 |
+
{
|
| 867 |
+
"epoch": 0.2421875,
|
| 868 |
+
"grad_norm": 0.4162050485610962,
|
| 869 |
+
"learning_rate": 9.879197311676887e-05,
|
| 870 |
+
"loss": 0.009982893243432045,
|
| 871 |
+
"memory/device_reserved (GiB)": 36.16,
|
| 872 |
+
"memory/max_active (GiB)": 34.02,
|
| 873 |
+
"memory/max_allocated (GiB)": 34.02,
|
| 874 |
+
"ppl": 1.01003,
|
| 875 |
+
"step": 62,
|
| 876 |
+
"tokens/total": 1880272,
|
| 877 |
+
"tokens/train_per_sec_per_gpu": 32.46,
|
| 878 |
+
"tokens/trainable": 28281
|
| 879 |
+
},
|
| 880 |
+
{
|
| 881 |
+
"epoch": 0.24609375,
|
| 882 |
+
"grad_norm": 0.563757598400116,
|
| 883 |
+
"learning_rate": 9.872425169224113e-05,
|
| 884 |
+
"loss": 0.01410748716443777,
|
| 885 |
+
"memory/device_reserved (GiB)": 36.16,
|
| 886 |
+
"memory/max_active (GiB)": 33.85,
|
| 887 |
+
"memory/max_allocated (GiB)": 33.85,
|
| 888 |
+
"ppl": 1.01421,
|
| 889 |
+
"step": 63,
|
| 890 |
+
"tokens/total": 1910752,
|
| 891 |
+
"tokens/train_per_sec_per_gpu": 32.39,
|
| 892 |
+
"tokens/trainable": 28742
|
| 893 |
+
},
|
| 894 |
+
{
|
| 895 |
+
"epoch": 0.25,
|
| 896 |
+
"grad_norm": 0.4908931255340576,
|
| 897 |
+
"learning_rate": 9.865471072312528e-05,
|
| 898 |
+
"loss": 0.011950287967920303,
|
| 899 |
+
"memory/device_reserved (GiB)": 36.16,
|
| 900 |
+
"memory/max_active (GiB)": 33.84,
|
| 901 |
+
"memory/max_allocated (GiB)": 33.84,
|
| 902 |
+
"ppl": 1.01202,
|
| 903 |
+
"step": 64,
|
| 904 |
+
"tokens/total": 1940848,
|
| 905 |
+
"tokens/train_per_sec_per_gpu": 33.76,
|
| 906 |
+
"tokens/trainable": 29183
|
| 907 |
+
},
|
| 908 |
+
{
|
| 909 |
+
"epoch": 0.25390625,
|
| 910 |
+
"grad_norm": 0.3164263963699341,
|
| 911 |
+
"learning_rate": 9.858335310330492e-05,
|
| 912 |
+
"loss": 0.006426030304282904,
|
| 913 |
+
"memory/device_reserved (GiB)": 36.16,
|
| 914 |
+
"memory/max_active (GiB)": 33.91,
|
| 915 |
+
"memory/max_allocated (GiB)": 33.91,
|
| 916 |
+
"ppl": 1.00645,
|
| 917 |
+
"step": 65,
|
| 918 |
+
"tokens/total": 1971344,
|
| 919 |
+
"tokens/train_per_sec_per_gpu": 31.69,
|
| 920 |
+
"tokens/trainable": 29648
|
| 921 |
+
},
|
| 922 |
+
{
|
| 923 |
+
"epoch": 0.2578125,
|
| 924 |
+
"grad_norm": 0.4743383824825287,
|
| 925 |
+
"learning_rate": 9.851018180226185e-05,
|
| 926 |
+
"loss": 0.00986128207296133,
|
| 927 |
+
"memory/device_reserved (GiB)": 35.06,
|
| 928 |
+
"memory/max_active (GiB)": 33.83,
|
| 929 |
+
"memory/max_allocated (GiB)": 33.83,
|
| 930 |
+
"ppl": 1.00991,
|
| 931 |
+
"step": 66,
|
| 932 |
+
"tokens/total": 2001712,
|
| 933 |
+
"tokens/train_per_sec_per_gpu": 33.65,
|
| 934 |
+
"tokens/trainable": 30075
|
| 935 |
+
},
|
| 936 |
+
{
|
| 937 |
+
"epoch": 0.26171875,
|
| 938 |
+
"grad_norm": 0.12894771993160248,
|
| 939 |
+
"learning_rate": 9.843519986495259e-05,
|
| 940 |
+
"loss": 0.002054001437500119,
|
| 941 |
+
"memory/device_reserved (GiB)": 35.64,
|
| 942 |
+
"memory/max_active (GiB)": 33.78,
|
| 943 |
+
"memory/max_allocated (GiB)": 33.78,
|
| 944 |
+
"ppl": 1.00206,
|
| 945 |
+
"step": 67,
|
| 946 |
+
"tokens/total": 2029936,
|
| 947 |
+
"tokens/train_per_sec_per_gpu": 37.69,
|
| 948 |
+
"tokens/trainable": 30546
|
| 949 |
+
},
|
| 950 |
+
{
|
| 951 |
+
"epoch": 0.265625,
|
| 952 |
+
"grad_norm": 0.5559160709381104,
|
| 953 |
+
"learning_rate": 9.835841041168162e-05,
|
| 954 |
+
"loss": 0.007931358180940151,
|
| 955 |
+
"memory/device_reserved (GiB)": 35.64,
|
| 956 |
+
"memory/max_active (GiB)": 33.86,
|
| 957 |
+
"memory/max_allocated (GiB)": 33.86,
|
| 958 |
+
"ppl": 1.00796,
|
| 959 |
+
"step": 68,
|
| 960 |
+
"tokens/total": 2060384,
|
| 961 |
+
"tokens/train_per_sec_per_gpu": 35.27,
|
| 962 |
+
"tokens/trainable": 31025
|
| 963 |
+
},
|
| 964 |
+
{
|
| 965 |
+
"epoch": 0.26953125,
|
| 966 |
+
"grad_norm": 1.4860860109329224,
|
| 967 |
+
"learning_rate": 9.82798166379715e-05,
|
| 968 |
+
"loss": 0.029434870928525925,
|
| 969 |
+
"memory/device_reserved (GiB)": 35.64,
|
| 970 |
+
"memory/max_active (GiB)": 33.85,
|
| 971 |
+
"memory/max_allocated (GiB)": 33.85,
|
| 972 |
+
"ppl": 1.02987,
|
| 973 |
+
"step": 69,
|
| 974 |
+
"tokens/total": 2090688,
|
| 975 |
+
"tokens/train_per_sec_per_gpu": 34.03,
|
| 976 |
+
"tokens/trainable": 31505
|
| 977 |
+
},
|
| 978 |
+
{
|
| 979 |
+
"epoch": 0.2734375,
|
| 980 |
+
"grad_norm": 0.2197936624288559,
|
| 981 |
+
"learning_rate": 9.819942181443002e-05,
|
| 982 |
+
"loss": 0.0028239269740879536,
|
| 983 |
+
"memory/device_reserved (GiB)": 35.64,
|
| 984 |
+
"memory/max_active (GiB)": 33.77,
|
| 985 |
+
"memory/max_allocated (GiB)": 33.77,
|
| 986 |
+
"ppl": 1.00283,
|
| 987 |
+
"step": 70,
|
| 988 |
+
"tokens/total": 2120848,
|
| 989 |
+
"tokens/train_per_sec_per_gpu": 32.39,
|
| 990 |
+
"tokens/trainable": 31956
|
| 991 |
+
},
|
| 992 |
+
{
|
| 993 |
+
"epoch": 0.27734375,
|
| 994 |
+
"grad_norm": 0.20881125330924988,
|
| 995 |
+
"learning_rate": 9.811722928661392e-05,
|
| 996 |
+
"loss": 0.001874964451417327,
|
| 997 |
+
"memory/device_reserved (GiB)": 35.64,
|
| 998 |
+
"memory/max_active (GiB)": 33.35,
|
| 999 |
+
"memory/max_allocated (GiB)": 33.35,
|
| 1000 |
+
"ppl": 1.00188,
|
| 1001 |
+
"step": 71,
|
| 1002 |
+
"tokens/total": 2149120,
|
| 1003 |
+
"tokens/train_per_sec_per_gpu": 33.46,
|
| 1004 |
+
"tokens/trainable": 32374
|
| 1005 |
+
},
|
| 1006 |
+
{
|
| 1007 |
+
"epoch": 0.28125,
|
| 1008 |
+
"grad_norm": 0.335940957069397,
|
| 1009 |
+
"learning_rate": 9.803324247488975e-05,
|
| 1010 |
+
"loss": 0.003750729141756892,
|
| 1011 |
+
"memory/device_reserved (GiB)": 35.64,
|
| 1012 |
+
"memory/max_active (GiB)": 33.81,
|
| 1013 |
+
"memory/max_allocated (GiB)": 33.81,
|
| 1014 |
+
"ppl": 1.00376,
|
| 1015 |
+
"step": 72,
|
| 1016 |
+
"tokens/total": 2179472,
|
| 1017 |
+
"tokens/train_per_sec_per_gpu": 34.67,
|
| 1018 |
+
"tokens/trainable": 32833
|
| 1019 |
+
},
|
| 1020 |
+
{
|
| 1021 |
+
"epoch": 0.28515625,
|
| 1022 |
+
"grad_norm": 0.6529806852340698,
|
| 1023 |
+
"learning_rate": 9.794746487429161e-05,
|
| 1024 |
+
"loss": 0.010189465247094631,
|
| 1025 |
+
"memory/device_reserved (GiB)": 35.96,
|
| 1026 |
+
"memory/max_active (GiB)": 33.92,
|
| 1027 |
+
"memory/max_allocated (GiB)": 33.92,
|
| 1028 |
+
"ppl": 1.01024,
|
| 1029 |
+
"step": 73,
|
| 1030 |
+
"tokens/total": 2209984,
|
| 1031 |
+
"tokens/train_per_sec_per_gpu": 35.77,
|
| 1032 |
+
"tokens/trainable": 33304
|
| 1033 |
+
},
|
| 1034 |
+
{
|
| 1035 |
+
"epoch": 0.2890625,
|
| 1036 |
+
"grad_norm": 0.7839381098747253,
|
| 1037 |
+
"learning_rate": 9.785990005437554e-05,
|
| 1038 |
+
"loss": 0.00870432797819376,
|
| 1039 |
+
"memory/device_reserved (GiB)": 35.96,
|
| 1040 |
+
"memory/max_active (GiB)": 33.83,
|
| 1041 |
+
"memory/max_allocated (GiB)": 33.83,
|
| 1042 |
+
"ppl": 1.00874,
|
| 1043 |
+
"step": 74,
|
| 1044 |
+
"tokens/total": 2240512,
|
| 1045 |
+
"tokens/train_per_sec_per_gpu": 32.54,
|
| 1046 |
+
"tokens/trainable": 33771
|
| 1047 |
+
},
|
| 1048 |
+
{
|
| 1049 |
+
"epoch": 0.29296875,
|
| 1050 |
+
"grad_norm": 0.3333408832550049,
|
| 1051 |
+
"learning_rate": 9.777055165907117e-05,
|
| 1052 |
+
"loss": 0.007429605815559626,
|
| 1053 |
+
"memory/device_reserved (GiB)": 35.96,
|
| 1054 |
+
"memory/max_active (GiB)": 33.74,
|
| 1055 |
+
"memory/max_allocated (GiB)": 33.74,
|
| 1056 |
+
"ppl": 1.00746,
|
| 1057 |
+
"step": 75,
|
| 1058 |
+
"tokens/total": 2270608,
|
| 1059 |
+
"tokens/train_per_sec_per_gpu": 34.68,
|
| 1060 |
+
"tokens/trainable": 34186
|
| 1061 |
+
},
|
| 1062 |
+
{
|
| 1063 |
+
"epoch": 0.296875,
|
| 1064 |
+
"grad_norm": 0.47243013978004456,
|
| 1065 |
+
"learning_rate": 9.767942340652993e-05,
|
| 1066 |
+
"loss": 0.009635023772716522,
|
| 1067 |
+
"memory/device_reserved (GiB)": 35.96,
|
| 1068 |
+
"memory/max_active (GiB)": 33.81,
|
| 1069 |
+
"memory/max_allocated (GiB)": 33.81,
|
| 1070 |
+
"ppl": 1.00968,
|
| 1071 |
+
"step": 76,
|
| 1072 |
+
"tokens/total": 2300864,
|
| 1073 |
+
"tokens/train_per_sec_per_gpu": 35.05,
|
| 1074 |
+
"tokens/trainable": 34667
|
| 1075 |
+
},
|
| 1076 |
+
{
|
| 1077 |
+
"epoch": 0.30078125,
|
| 1078 |
+
"grad_norm": 1.4933921098709106,
|
| 1079 |
+
"learning_rate": 9.758651908897035e-05,
|
| 1080 |
+
"loss": 0.04087181016802788,
|
| 1081 |
+
"memory/device_reserved (GiB)": 35.96,
|
| 1082 |
+
"memory/max_active (GiB)": 33.76,
|
| 1083 |
+
"memory/max_allocated (GiB)": 33.76,
|
| 1084 |
+
"ppl": 1.04172,
|
| 1085 |
+
"step": 77,
|
| 1086 |
+
"tokens/total": 2330960,
|
| 1087 |
+
"tokens/train_per_sec_per_gpu": 31.92,
|
| 1088 |
+
"tokens/trainable": 35078
|
| 1089 |
+
},
|
| 1090 |
+
{
|
| 1091 |
+
"epoch": 0.3046875,
|
| 1092 |
+
"grad_norm": 0.6791361570358276,
|
| 1093 |
+
"learning_rate": 9.749184257252033e-05,
|
| 1094 |
+
"loss": 0.013059539720416069,
|
| 1095 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1096 |
+
"memory/max_active (GiB)": 33.99,
|
| 1097 |
+
"memory/max_allocated (GiB)": 33.99,
|
| 1098 |
+
"ppl": 1.01315,
|
| 1099 |
+
"step": 78,
|
| 1100 |
+
"tokens/total": 2361584,
|
| 1101 |
+
"tokens/train_per_sec_per_gpu": 34.99,
|
| 1102 |
+
"tokens/trainable": 35550
|
| 1103 |
+
},
|
| 1104 |
+
{
|
| 1105 |
+
"epoch": 0.30859375,
|
| 1106 |
+
"grad_norm": 0.8410643935203552,
|
| 1107 |
+
"learning_rate": 9.739539779705614e-05,
|
| 1108 |
+
"loss": 0.02711997739970684,
|
| 1109 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1110 |
+
"memory/max_active (GiB)": 33.82,
|
| 1111 |
+
"memory/max_allocated (GiB)": 33.82,
|
| 1112 |
+
"ppl": 1.02749,
|
| 1113 |
+
"step": 79,
|
| 1114 |
+
"tokens/total": 2391936,
|
| 1115 |
+
"tokens/train_per_sec_per_gpu": 29.62,
|
| 1116 |
+
"tokens/trainable": 35977
|
| 1117 |
+
},
|
| 1118 |
+
{
|
| 1119 |
+
"epoch": 0.3125,
|
| 1120 |
+
"grad_norm": 0.3738754689693451,
|
| 1121 |
+
"learning_rate": 9.729718877603861e-05,
|
| 1122 |
+
"loss": 0.017121555283665657,
|
| 1123 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1124 |
+
"memory/max_active (GiB)": 33.9,
|
| 1125 |
+
"memory/max_allocated (GiB)": 33.9,
|
| 1126 |
+
"ppl": 1.01727,
|
| 1127 |
+
"step": 80,
|
| 1128 |
+
"tokens/total": 2422432,
|
| 1129 |
+
"tokens/train_per_sec_per_gpu": 38.39,
|
| 1130 |
+
"tokens/trainable": 36462
|
| 1131 |
+
},
|
| 1132 |
+
{
|
| 1133 |
+
"epoch": 0.31640625,
|
| 1134 |
+
"grad_norm": 1.0237257480621338,
|
| 1135 |
+
"learning_rate": 9.719721959634592e-05,
|
| 1136 |
+
"loss": 0.019660785794258118,
|
| 1137 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1138 |
+
"memory/max_active (GiB)": 33.89,
|
| 1139 |
+
"memory/max_allocated (GiB)": 33.89,
|
| 1140 |
+
"ppl": 1.01986,
|
| 1141 |
+
"step": 81,
|
| 1142 |
+
"tokens/total": 2452752,
|
| 1143 |
+
"tokens/train_per_sec_per_gpu": 33.33,
|
| 1144 |
+
"tokens/trainable": 36919
|
| 1145 |
+
},
|
| 1146 |
+
{
|
| 1147 |
+
"epoch": 0.3203125,
|
| 1148 |
+
"grad_norm": 0.3411601185798645,
|
| 1149 |
+
"learning_rate": 9.709549441810375e-05,
|
| 1150 |
+
"loss": 0.011061297729611397,
|
| 1151 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1152 |
+
"memory/max_active (GiB)": 33.44,
|
| 1153 |
+
"memory/max_allocated (GiB)": 33.44,
|
| 1154 |
+
"ppl": 1.01112,
|
| 1155 |
+
"step": 82,
|
| 1156 |
+
"tokens/total": 2481216,
|
| 1157 |
+
"tokens/train_per_sec_per_gpu": 33.56,
|
| 1158 |
+
"tokens/trainable": 37379
|
| 1159 |
+
},
|
| 1160 |
+
{
|
| 1161 |
+
"epoch": 0.32421875,
|
| 1162 |
+
"grad_norm": 0.41286832094192505,
|
| 1163 |
+
"learning_rate": 9.699201747451195e-05,
|
| 1164 |
+
"loss": 0.011656982824206352,
|
| 1165 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1166 |
+
"memory/max_active (GiB)": 33.84,
|
| 1167 |
+
"memory/max_allocated (GiB)": 33.84,
|
| 1168 |
+
"ppl": 1.01173,
|
| 1169 |
+
"step": 83,
|
| 1170 |
+
"tokens/total": 2511488,
|
| 1171 |
+
"tokens/train_per_sec_per_gpu": 33.18,
|
| 1172 |
+
"tokens/trainable": 37832
|
| 1173 |
+
},
|
| 1174 |
+
{
|
| 1175 |
+
"epoch": 0.328125,
|
| 1176 |
+
"grad_norm": 0.6960376501083374,
|
| 1177 |
+
"learning_rate": 9.688679307166854e-05,
|
| 1178 |
+
"loss": 0.024275368079543114,
|
| 1179 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1180 |
+
"memory/max_active (GiB)": 33.86,
|
| 1181 |
+
"memory/max_allocated (GiB)": 33.86,
|
| 1182 |
+
"ppl": 1.02457,
|
| 1183 |
+
"step": 84,
|
| 1184 |
+
"tokens/total": 2541984,
|
| 1185 |
+
"tokens/train_per_sec_per_gpu": 34.04,
|
| 1186 |
+
"tokens/trainable": 38303
|
| 1187 |
+
},
|
| 1188 |
+
{
|
| 1189 |
+
"epoch": 0.33203125,
|
| 1190 |
+
"grad_norm": 0.15315213799476624,
|
| 1191 |
+
"learning_rate": 9.677982558839042e-05,
|
| 1192 |
+
"loss": 0.004536543972790241,
|
| 1193 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1194 |
+
"memory/max_active (GiB)": 33.69,
|
| 1195 |
+
"memory/max_allocated (GiB)": 33.69,
|
| 1196 |
+
"ppl": 1.00455,
|
| 1197 |
+
"step": 85,
|
| 1198 |
+
"tokens/total": 2572224,
|
| 1199 |
+
"tokens/train_per_sec_per_gpu": 33.67,
|
| 1200 |
+
"tokens/trainable": 38758
|
| 1201 |
+
},
|
| 1202 |
+
{
|
| 1203 |
+
"epoch": 0.3359375,
|
| 1204 |
+
"grad_norm": 0.18710190057754517,
|
| 1205 |
+
"learning_rate": 9.66711194760312e-05,
|
| 1206 |
+
"loss": 0.006560188252478838,
|
| 1207 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1208 |
+
"memory/max_active (GiB)": 33.86,
|
| 1209 |
+
"memory/max_allocated (GiB)": 33.86,
|
| 1210 |
+
"ppl": 1.00658,
|
| 1211 |
+
"step": 86,
|
| 1212 |
+
"tokens/total": 2602704,
|
| 1213 |
+
"tokens/train_per_sec_per_gpu": 30.7,
|
| 1214 |
+
"tokens/trainable": 39179
|
| 1215 |
+
},
|
| 1216 |
+
{
|
| 1217 |
+
"epoch": 0.33984375,
|
| 1218 |
+
"grad_norm": 0.343269407749176,
|
| 1219 |
+
"learning_rate": 9.656067925829593e-05,
|
| 1220 |
+
"loss": 0.010140963830053806,
|
| 1221 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1222 |
+
"memory/max_active (GiB)": 33.88,
|
| 1223 |
+
"memory/max_allocated (GiB)": 33.88,
|
| 1224 |
+
"ppl": 1.01019,
|
| 1225 |
+
"step": 87,
|
| 1226 |
+
"tokens/total": 2633072,
|
| 1227 |
+
"tokens/train_per_sec_per_gpu": 35.42,
|
| 1228 |
+
"tokens/trainable": 39679
|
| 1229 |
+
},
|
| 1230 |
+
{
|
| 1231 |
+
"epoch": 0.34375,
|
| 1232 |
+
"grad_norm": 0.3905015289783478,
|
| 1233 |
+
"learning_rate": 9.644850953105288e-05,
|
| 1234 |
+
"loss": 0.010611740872263908,
|
| 1235 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1236 |
+
"memory/max_active (GiB)": 33.73,
|
| 1237 |
+
"memory/max_allocated (GiB)": 33.73,
|
| 1238 |
+
"ppl": 1.01067,
|
| 1239 |
+
"step": 88,
|
| 1240 |
+
"tokens/total": 2663232,
|
| 1241 |
+
"tokens/train_per_sec_per_gpu": 32.84,
|
| 1242 |
+
"tokens/trainable": 40118
|
| 1243 |
+
},
|
| 1244 |
+
{
|
| 1245 |
+
"epoch": 0.34765625,
|
| 1246 |
+
"grad_norm": 0.5544098019599915,
|
| 1247 |
+
"learning_rate": 9.633461496214225e-05,
|
| 1248 |
+
"loss": 0.022607026621699333,
|
| 1249 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1250 |
+
"memory/max_active (GiB)": 33.87,
|
| 1251 |
+
"memory/max_allocated (GiB)": 33.87,
|
| 1252 |
+
"ppl": 1.02286,
|
| 1253 |
+
"step": 89,
|
| 1254 |
+
"tokens/total": 2693696,
|
| 1255 |
+
"tokens/train_per_sec_per_gpu": 32.92,
|
| 1256 |
+
"tokens/trainable": 40571
|
| 1257 |
+
},
|
| 1258 |
+
{
|
| 1259 |
+
"epoch": 0.3515625,
|
| 1260 |
+
"grad_norm": 0.16370345652103424,
|
| 1261 |
+
"learning_rate": 9.621900029118195e-05,
|
| 1262 |
+
"loss": 0.0030750958248972893,
|
| 1263 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1264 |
+
"memory/max_active (GiB)": 33.82,
|
| 1265 |
+
"memory/max_allocated (GiB)": 33.82,
|
| 1266 |
+
"ppl": 1.00308,
|
| 1267 |
+
"step": 90,
|
| 1268 |
+
"tokens/total": 2723984,
|
| 1269 |
+
"tokens/train_per_sec_per_gpu": 30.92,
|
| 1270 |
+
"tokens/trainable": 40997
|
| 1271 |
+
},
|
| 1272 |
+
{
|
| 1273 |
+
"epoch": 0.35546875,
|
| 1274 |
+
"grad_norm": 0.208849236369133,
|
| 1275 |
+
"learning_rate": 9.610167032937036e-05,
|
| 1276 |
+
"loss": 0.003701428882777691,
|
| 1277 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1278 |
+
"memory/max_active (GiB)": 33.82,
|
| 1279 |
+
"memory/max_allocated (GiB)": 33.82,
|
| 1280 |
+
"ppl": 1.00371,
|
| 1281 |
+
"step": 91,
|
| 1282 |
+
"tokens/total": 2754240,
|
| 1283 |
+
"tokens/train_per_sec_per_gpu": 36.55,
|
| 1284 |
+
"tokens/trainable": 41462
|
| 1285 |
+
},
|
| 1286 |
+
{
|
| 1287 |
+
"epoch": 0.359375,
|
| 1288 |
+
"grad_norm": 0.5515285134315491,
|
| 1289 |
+
"learning_rate": 9.598262995928611e-05,
|
| 1290 |
+
"loss": 0.012641018256545067,
|
| 1291 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1292 |
+
"memory/max_active (GiB)": 33.89,
|
| 1293 |
+
"memory/max_allocated (GiB)": 33.89,
|
| 1294 |
+
"ppl": 1.01272,
|
| 1295 |
+
"step": 92,
|
| 1296 |
+
"tokens/total": 2784672,
|
| 1297 |
+
"tokens/train_per_sec_per_gpu": 36.9,
|
| 1298 |
+
"tokens/trainable": 41927
|
| 1299 |
+
},
|
| 1300 |
+
{
|
| 1301 |
+
"epoch": 0.36328125,
|
| 1302 |
+
"grad_norm": 0.6742218136787415,
|
| 1303 |
+
"learning_rate": 9.586188413468492e-05,
|
| 1304 |
+
"loss": 0.019092712551355362,
|
| 1305 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1306 |
+
"memory/max_active (GiB)": 33.83,
|
| 1307 |
+
"memory/max_allocated (GiB)": 33.83,
|
| 1308 |
+
"ppl": 1.01928,
|
| 1309 |
+
"step": 93,
|
| 1310 |
+
"tokens/total": 2815120,
|
| 1311 |
+
"tokens/train_per_sec_per_gpu": 34.95,
|
| 1312 |
+
"tokens/trainable": 42397
|
| 1313 |
+
},
|
| 1314 |
+
{
|
| 1315 |
+
"epoch": 0.3671875,
|
| 1316 |
+
"grad_norm": 0.3739137351512909,
|
| 1317 |
+
"learning_rate": 9.57394378802934e-05,
|
| 1318 |
+
"loss": 0.0018391611520200968,
|
| 1319 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1320 |
+
"memory/max_active (GiB)": 33.97,
|
| 1321 |
+
"memory/max_allocated (GiB)": 33.97,
|
| 1322 |
+
"ppl": 1.00184,
|
| 1323 |
+
"step": 94,
|
| 1324 |
+
"tokens/total": 2845600,
|
| 1325 |
+
"tokens/train_per_sec_per_gpu": 36.63,
|
| 1326 |
+
"tokens/trainable": 42883
|
| 1327 |
+
},
|
| 1328 |
+
{
|
| 1329 |
+
"epoch": 0.37109375,
|
| 1330 |
+
"grad_norm": 0.25132012367248535,
|
| 1331 |
+
"learning_rate": 9.56152962916e-05,
|
| 1332 |
+
"loss": 0.008805882185697556,
|
| 1333 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1334 |
+
"memory/max_active (GiB)": 33.87,
|
| 1335 |
+
"memory/max_allocated (GiB)": 33.87,
|
| 1336 |
+
"ppl": 1.00884,
|
| 1337 |
+
"step": 95,
|
| 1338 |
+
"tokens/total": 2875952,
|
| 1339 |
+
"tokens/train_per_sec_per_gpu": 38.78,
|
| 1340 |
+
"tokens/trainable": 43381
|
| 1341 |
+
},
|
| 1342 |
+
{
|
| 1343 |
+
"epoch": 0.375,
|
| 1344 |
+
"grad_norm": 0.24200227856636047,
|
| 1345 |
+
"learning_rate": 9.548946453464296e-05,
|
| 1346 |
+
"loss": 0.006166054867208004,
|
| 1347 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1348 |
+
"memory/max_active (GiB)": 33.9,
|
| 1349 |
+
"memory/max_allocated (GiB)": 33.9,
|
| 1350 |
+
"ppl": 1.00619,
|
| 1351 |
+
"step": 96,
|
| 1352 |
+
"tokens/total": 2906288,
|
| 1353 |
+
"tokens/train_per_sec_per_gpu": 33.06,
|
| 1354 |
+
"tokens/trainable": 43824
|
| 1355 |
+
},
|
| 1356 |
+
{
|
| 1357 |
+
"epoch": 0.37890625,
|
| 1358 |
+
"grad_norm": 0.3597196340560913,
|
| 1359 |
+
"learning_rate": 9.53619478457953e-05,
|
| 1360 |
+
"loss": 0.0036215470172464848,
|
| 1361 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1362 |
+
"memory/max_active (GiB)": 33.89,
|
| 1363 |
+
"memory/max_allocated (GiB)": 33.89,
|
| 1364 |
+
"ppl": 1.00363,
|
| 1365 |
+
"step": 97,
|
| 1366 |
+
"tokens/total": 2936752,
|
| 1367 |
+
"tokens/train_per_sec_per_gpu": 31.62,
|
| 1368 |
+
"tokens/trainable": 44255
|
| 1369 |
+
},
|
| 1370 |
+
{
|
| 1371 |
+
"epoch": 0.3828125,
|
| 1372 |
+
"grad_norm": 0.7050648927688599,
|
| 1373 |
+
"learning_rate": 9.523275153154695e-05,
|
| 1374 |
+
"loss": 0.015324651263654232,
|
| 1375 |
+
"memory/device_reserved (GiB)": 35.19,
|
| 1376 |
+
"memory/max_active (GiB)": 33.92,
|
| 1377 |
+
"memory/max_allocated (GiB)": 33.92,
|
| 1378 |
+
"ppl": 1.01544,
|
| 1379 |
+
"step": 98,
|
| 1380 |
+
"tokens/total": 2967072,
|
| 1381 |
+
"tokens/train_per_sec_per_gpu": 37.7,
|
| 1382 |
+
"tokens/trainable": 44738
|
| 1383 |
+
},
|
| 1384 |
+
{
|
| 1385 |
+
"epoch": 0.38671875,
|
| 1386 |
+
"grad_norm": 0.5716716051101685,
|
| 1387 |
+
"learning_rate": 9.51018809682839e-05,
|
| 1388 |
+
"loss": 0.013399260118603706,
|
| 1389 |
+
"memory/device_reserved (GiB)": 35.76,
|
| 1390 |
+
"memory/max_active (GiB)": 34.03,
|
| 1391 |
+
"memory/max_allocated (GiB)": 34.03,
|
| 1392 |
+
"ppl": 1.01349,
|
| 1393 |
+
"step": 99,
|
| 1394 |
+
"tokens/total": 2997664,
|
| 1395 |
+
"tokens/train_per_sec_per_gpu": 36.24,
|
| 1396 |
+
"tokens/trainable": 45201
|
| 1397 |
+
},
|
| 1398 |
+
{
|
| 1399 |
+
"epoch": 0.390625,
|
| 1400 |
+
"grad_norm": 0.18090857565402985,
|
| 1401 |
+
"learning_rate": 9.49693416020645e-05,
|
| 1402 |
+
"loss": 0.0020832926966249943,
|
| 1403 |
+
"memory/device_reserved (GiB)": 35.99,
|
| 1404 |
+
"memory/max_active (GiB)": 33.88,
|
| 1405 |
+
"memory/max_allocated (GiB)": 33.88,
|
| 1406 |
+
"ppl": 1.00209,
|
| 1407 |
+
"step": 100,
|
| 1408 |
+
"tokens/total": 3028032,
|
| 1409 |
+
"tokens/train_per_sec_per_gpu": 32.96,
|
| 1410 |
+
"tokens/trainable": 45645
|
| 1411 |
+
},
|
| 1412 |
+
{
|
| 1413 |
+
"epoch": 0.39453125,
|
| 1414 |
+
"grad_norm": 0.5402258038520813,
|
| 1415 |
+
"learning_rate": 9.483513894839276e-05,
|
| 1416 |
+
"loss": 0.011402487754821777,
|
| 1417 |
+
"memory/device_reserved (GiB)": 35.99,
|
| 1418 |
+
"memory/max_active (GiB)": 33.82,
|
| 1419 |
+
"memory/max_allocated (GiB)": 33.82,
|
| 1420 |
+
"ppl": 1.01147,
|
| 1421 |
+
"step": 101,
|
| 1422 |
+
"tokens/total": 3058272,
|
| 1423 |
+
"tokens/train_per_sec_per_gpu": 33.13,
|
| 1424 |
+
"tokens/trainable": 46088
|
| 1425 |
+
},
|
| 1426 |
+
{
|
| 1427 |
+
"epoch": 0.3984375,
|
| 1428 |
+
"grad_norm": 0.220508873462677,
|
| 1429 |
+
"learning_rate": 9.469927859198888e-05,
|
| 1430 |
+
"loss": 0.026607759296894073,
|
| 1431 |
+
"memory/device_reserved (GiB)": 35.99,
|
| 1432 |
+
"memory/max_active (GiB)": 33.89,
|
| 1433 |
+
"memory/max_allocated (GiB)": 33.89,
|
| 1434 |
+
"ppl": 1.02696,
|
| 1435 |
+
"step": 102,
|
| 1436 |
+
"tokens/total": 3088848,
|
| 1437 |
+
"tokens/train_per_sec_per_gpu": 32.58,
|
| 1438 |
+
"tokens/trainable": 46544
|
| 1439 |
+
},
|
| 1440 |
+
{
|
| 1441 |
+
"epoch": 0.40234375,
|
| 1442 |
+
"grad_norm": 0.488730788230896,
|
| 1443 |
+
"learning_rate": 9.456176618655689e-05,
|
| 1444 |
+
"loss": 0.007838367484509945,
|
| 1445 |
+
"memory/device_reserved (GiB)": 35.99,
|
| 1446 |
+
"memory/max_active (GiB)": 33.91,
|
| 1447 |
+
"memory/max_allocated (GiB)": 33.91,
|
| 1448 |
+
"ppl": 1.00787,
|
| 1449 |
+
"step": 103,
|
| 1450 |
+
"tokens/total": 3119424,
|
| 1451 |
+
"tokens/train_per_sec_per_gpu": 31.96,
|
| 1452 |
+
"tokens/trainable": 47011
|
| 1453 |
+
},
|
| 1454 |
+
{
|
| 1455 |
+
"epoch": 0.40625,
|
| 1456 |
+
"grad_norm": 1.0092511177062988,
|
| 1457 |
+
"learning_rate": 9.442260745454927e-05,
|
| 1458 |
+
"loss": 0.024805881083011627,
|
| 1459 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1460 |
+
"memory/max_active (GiB)": 33.81,
|
| 1461 |
+
"memory/max_allocated (GiB)": 33.81,
|
| 1462 |
+
"ppl": 1.02512,
|
| 1463 |
+
"step": 104,
|
| 1464 |
+
"tokens/total": 3149696,
|
| 1465 |
+
"tokens/train_per_sec_per_gpu": 37.78,
|
| 1466 |
+
"tokens/trainable": 47500
|
| 1467 |
+
},
|
| 1468 |
+
{
|
| 1469 |
+
"epoch": 0.41015625,
|
| 1470 |
+
"grad_norm": 0.1705712527036667,
|
| 1471 |
+
"learning_rate": 9.428180818692884e-05,
|
| 1472 |
+
"loss": 0.002884519286453724,
|
| 1473 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1474 |
+
"memory/max_active (GiB)": 33.83,
|
| 1475 |
+
"memory/max_allocated (GiB)": 33.83,
|
| 1476 |
+
"ppl": 1.00289,
|
| 1477 |
+
"step": 105,
|
| 1478 |
+
"tokens/total": 3180064,
|
| 1479 |
+
"tokens/train_per_sec_per_gpu": 36.28,
|
| 1480 |
+
"tokens/trainable": 47993
|
| 1481 |
+
},
|
| 1482 |
+
{
|
| 1483 |
+
"epoch": 0.4140625,
|
| 1484 |
+
"grad_norm": 0.539692759513855,
|
| 1485 |
+
"learning_rate": 9.413937424292791e-05,
|
| 1486 |
+
"loss": 0.028211303055286407,
|
| 1487 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1488 |
+
"memory/max_active (GiB)": 33.39,
|
| 1489 |
+
"memory/max_allocated (GiB)": 33.39,
|
| 1490 |
+
"ppl": 1.02861,
|
| 1491 |
+
"step": 106,
|
| 1492 |
+
"tokens/total": 3208320,
|
| 1493 |
+
"tokens/train_per_sec_per_gpu": 34.13,
|
| 1494 |
+
"tokens/trainable": 48444
|
| 1495 |
+
},
|
| 1496 |
+
{
|
| 1497 |
+
"epoch": 0.41796875,
|
| 1498 |
+
"grad_norm": 0.576267421245575,
|
| 1499 |
+
"learning_rate": 9.399531154980424e-05,
|
| 1500 |
+
"loss": 0.026665428653359413,
|
| 1501 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1502 |
+
"memory/max_active (GiB)": 33.74,
|
| 1503 |
+
"memory/max_allocated (GiB)": 33.74,
|
| 1504 |
+
"ppl": 1.02702,
|
| 1505 |
+
"step": 107,
|
| 1506 |
+
"tokens/total": 3238416,
|
| 1507 |
+
"tokens/train_per_sec_per_gpu": 30.72,
|
| 1508 |
+
"tokens/trainable": 48886
|
| 1509 |
+
},
|
| 1510 |
+
{
|
| 1511 |
+
"epoch": 0.421875,
|
| 1512 |
+
"grad_norm": 0.19187162816524506,
|
| 1513 |
+
"learning_rate": 9.384962610259455e-05,
|
| 1514 |
+
"loss": 0.007470840122550726,
|
| 1515 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1516 |
+
"memory/max_active (GiB)": 33.82,
|
| 1517 |
+
"memory/max_allocated (GiB)": 33.82,
|
| 1518 |
+
"ppl": 1.0075,
|
| 1519 |
+
"step": 108,
|
| 1520 |
+
"tokens/total": 3268784,
|
| 1521 |
+
"tokens/train_per_sec_per_gpu": 37.78,
|
| 1522 |
+
"tokens/trainable": 49357
|
| 1523 |
+
},
|
| 1524 |
+
{
|
| 1525 |
+
"epoch": 0.42578125,
|
| 1526 |
+
"grad_norm": 0.30193838477134705,
|
| 1527 |
+
"learning_rate": 9.370232396386494e-05,
|
| 1528 |
+
"loss": 0.012815583497285843,
|
| 1529 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1530 |
+
"memory/max_active (GiB)": 33.79,
|
| 1531 |
+
"memory/max_allocated (GiB)": 33.79,
|
| 1532 |
+
"ppl": 1.0129,
|
| 1533 |
+
"step": 109,
|
| 1534 |
+
"tokens/total": 3298912,
|
| 1535 |
+
"tokens/train_per_sec_per_gpu": 36.72,
|
| 1536 |
+
"tokens/trainable": 49824
|
| 1537 |
+
},
|
| 1538 |
+
{
|
| 1539 |
+
"epoch": 0.4296875,
|
| 1540 |
+
"grad_norm": 0.24559386074543,
|
| 1541 |
+
"learning_rate": 9.355341126345868e-05,
|
| 1542 |
+
"loss": 0.010728488676249981,
|
| 1543 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1544 |
+
"memory/max_active (GiB)": 33.99,
|
| 1545 |
+
"memory/max_allocated (GiB)": 33.99,
|
| 1546 |
+
"ppl": 1.01079,
|
| 1547 |
+
"step": 110,
|
| 1548 |
+
"tokens/total": 3329232,
|
| 1549 |
+
"tokens/train_per_sec_per_gpu": 34.26,
|
| 1550 |
+
"tokens/trainable": 50264
|
| 1551 |
+
},
|
| 1552 |
+
{
|
| 1553 |
+
"epoch": 0.43359375,
|
| 1554 |
+
"grad_norm": 0.3296513259410858,
|
| 1555 |
+
"learning_rate": 9.340289419824107e-05,
|
| 1556 |
+
"loss": 0.01623804122209549,
|
| 1557 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1558 |
+
"memory/max_active (GiB)": 33.8,
|
| 1559 |
+
"memory/max_allocated (GiB)": 33.8,
|
| 1560 |
+
"ppl": 1.01637,
|
| 1561 |
+
"step": 111,
|
| 1562 |
+
"tokens/total": 3359440,
|
| 1563 |
+
"tokens/train_per_sec_per_gpu": 33.41,
|
| 1564 |
+
"tokens/trainable": 50708
|
| 1565 |
+
},
|
| 1566 |
+
{
|
| 1567 |
+
"epoch": 0.4375,
|
| 1568 |
+
"grad_norm": 0.4614265263080597,
|
| 1569 |
+
"learning_rate": 9.325077903184159e-05,
|
| 1570 |
+
"loss": 0.021365080028772354,
|
| 1571 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1572 |
+
"memory/max_active (GiB)": 33.74,
|
| 1573 |
+
"memory/max_allocated (GiB)": 33.74,
|
| 1574 |
+
"ppl": 1.02159,
|
| 1575 |
+
"step": 112,
|
| 1576 |
+
"tokens/total": 3389472,
|
| 1577 |
+
"tokens/train_per_sec_per_gpu": 31.61,
|
| 1578 |
+
"tokens/trainable": 51154
|
| 1579 |
+
},
|
| 1580 |
+
{
|
| 1581 |
+
"epoch": 0.44140625,
|
| 1582 |
+
"grad_norm": 0.28496578335762024,
|
| 1583 |
+
"learning_rate": 9.30970720943932e-05,
|
| 1584 |
+
"loss": 0.013247976079583168,
|
| 1585 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1586 |
+
"memory/max_active (GiB)": 33.9,
|
| 1587 |
+
"memory/max_allocated (GiB)": 33.9,
|
| 1588 |
+
"ppl": 1.01334,
|
| 1589 |
+
"step": 113,
|
| 1590 |
+
"tokens/total": 3419920,
|
| 1591 |
+
"tokens/train_per_sec_per_gpu": 32.72,
|
| 1592 |
+
"tokens/trainable": 51610
|
| 1593 |
+
},
|
| 1594 |
+
{
|
| 1595 |
+
"epoch": 0.4453125,
|
| 1596 |
+
"grad_norm": 0.5088275074958801,
|
| 1597 |
+
"learning_rate": 9.2941779782269e-05,
|
| 1598 |
+
"loss": 0.022269586101174355,
|
| 1599 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1600 |
+
"memory/max_active (GiB)": 33.78,
|
| 1601 |
+
"memory/max_allocated (GiB)": 33.78,
|
| 1602 |
+
"ppl": 1.02252,
|
| 1603 |
+
"step": 114,
|
| 1604 |
+
"tokens/total": 3450176,
|
| 1605 |
+
"tokens/train_per_sec_per_gpu": 29.14,
|
| 1606 |
+
"tokens/trainable": 52014
|
| 1607 |
+
},
|
| 1608 |
+
{
|
| 1609 |
+
"epoch": 0.44921875,
|
| 1610 |
+
"grad_norm": 0.19142404198646545,
|
| 1611 |
+
"learning_rate": 9.278490855781596e-05,
|
| 1612 |
+
"loss": 0.006432589143514633,
|
| 1613 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1614 |
+
"memory/max_active (GiB)": 33.87,
|
| 1615 |
+
"memory/max_allocated (GiB)": 33.87,
|
| 1616 |
+
"ppl": 1.00645,
|
| 1617 |
+
"step": 115,
|
| 1618 |
+
"tokens/total": 3480544,
|
| 1619 |
+
"tokens/train_per_sec_per_gpu": 36.32,
|
| 1620 |
+
"tokens/trainable": 52503
|
| 1621 |
+
},
|
| 1622 |
+
{
|
| 1623 |
+
"epoch": 0.453125,
|
| 1624 |
+
"grad_norm": 1.382026195526123,
|
| 1625 |
+
"learning_rate": 9.262646494908604e-05,
|
| 1626 |
+
"loss": 0.012845169752836227,
|
| 1627 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1628 |
+
"memory/max_active (GiB)": 33.81,
|
| 1629 |
+
"memory/max_allocated (GiB)": 33.81,
|
| 1630 |
+
"ppl": 1.01293,
|
| 1631 |
+
"step": 116,
|
| 1632 |
+
"tokens/total": 3510848,
|
| 1633 |
+
"tokens/train_per_sec_per_gpu": 38.75,
|
| 1634 |
+
"tokens/trainable": 53005
|
| 1635 |
+
},
|
| 1636 |
+
{
|
| 1637 |
+
"epoch": 0.45703125,
|
| 1638 |
+
"grad_norm": 0.16703951358795166,
|
| 1639 |
+
"learning_rate": 9.246645554956457e-05,
|
| 1640 |
+
"loss": 0.0037160126958042383,
|
| 1641 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1642 |
+
"memory/max_active (GiB)": 33.96,
|
| 1643 |
+
"memory/max_allocated (GiB)": 33.96,
|
| 1644 |
+
"ppl": 1.00372,
|
| 1645 |
+
"step": 117,
|
| 1646 |
+
"tokens/total": 3541296,
|
| 1647 |
+
"tokens/train_per_sec_per_gpu": 35.4,
|
| 1648 |
+
"tokens/trainable": 53464
|
| 1649 |
+
},
|
| 1650 |
+
{
|
| 1651 |
+
"epoch": 0.4609375,
|
| 1652 |
+
"grad_norm": 0.615856945514679,
|
| 1653 |
+
"learning_rate": 9.230488701789578e-05,
|
| 1654 |
+
"loss": 0.014962448738515377,
|
| 1655 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1656 |
+
"memory/max_active (GiB)": 33.97,
|
| 1657 |
+
"memory/max_allocated (GiB)": 33.97,
|
| 1658 |
+
"ppl": 1.01507,
|
| 1659 |
+
"step": 118,
|
| 1660 |
+
"tokens/total": 3571936,
|
| 1661 |
+
"tokens/train_per_sec_per_gpu": 32.88,
|
| 1662 |
+
"tokens/trainable": 53920
|
| 1663 |
+
},
|
| 1664 |
+
{
|
| 1665 |
+
"epoch": 0.46484375,
|
| 1666 |
+
"grad_norm": 0.24910427629947662,
|
| 1667 |
+
"learning_rate": 9.214176607760577e-05,
|
| 1668 |
+
"loss": 0.004819548688828945,
|
| 1669 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1670 |
+
"memory/max_active (GiB)": 33.79,
|
| 1671 |
+
"memory/max_allocated (GiB)": 33.79,
|
| 1672 |
+
"ppl": 1.00483,
|
| 1673 |
+
"step": 119,
|
| 1674 |
+
"tokens/total": 3602000,
|
| 1675 |
+
"tokens/train_per_sec_per_gpu": 35.63,
|
| 1676 |
+
"tokens/trainable": 54360
|
| 1677 |
+
},
|
| 1678 |
+
{
|
| 1679 |
+
"epoch": 0.46875,
|
| 1680 |
+
"grad_norm": 0.9213384389877319,
|
| 1681 |
+
"learning_rate": 9.197709951682268e-05,
|
| 1682 |
+
"loss": 0.008400149643421173,
|
| 1683 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1684 |
+
"memory/max_active (GiB)": 33.81,
|
| 1685 |
+
"memory/max_allocated (GiB)": 33.81,
|
| 1686 |
+
"ppl": 1.00844,
|
| 1687 |
+
"step": 120,
|
| 1688 |
+
"tokens/total": 3632288,
|
| 1689 |
+
"tokens/train_per_sec_per_gpu": 35.21,
|
| 1690 |
+
"tokens/trainable": 54836
|
| 1691 |
+
},
|
| 1692 |
+
{
|
| 1693 |
+
"epoch": 0.47265625,
|
| 1694 |
+
"grad_norm": 0.1228351816534996,
|
| 1695 |
+
"learning_rate": 9.181089418799428e-05,
|
| 1696 |
+
"loss": 0.0019936836324632168,
|
| 1697 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1698 |
+
"memory/max_active (GiB)": 33.82,
|
| 1699 |
+
"memory/max_allocated (GiB)": 33.82,
|
| 1700 |
+
"ppl": 1.002,
|
| 1701 |
+
"step": 121,
|
| 1702 |
+
"tokens/total": 3662608,
|
| 1703 |
+
"tokens/train_per_sec_per_gpu": 32.69,
|
| 1704 |
+
"tokens/trainable": 55264
|
| 1705 |
+
},
|
| 1706 |
+
{
|
| 1707 |
+
"epoch": 0.4765625,
|
| 1708 |
+
"grad_norm": 0.18029853701591492,
|
| 1709 |
+
"learning_rate": 9.164315700760271e-05,
|
| 1710 |
+
"loss": 0.004047749564051628,
|
| 1711 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1712 |
+
"memory/max_active (GiB)": 33.77,
|
| 1713 |
+
"memory/max_allocated (GiB)": 33.77,
|
| 1714 |
+
"ppl": 1.00406,
|
| 1715 |
+
"step": 122,
|
| 1716 |
+
"tokens/total": 3692864,
|
| 1717 |
+
"tokens/train_per_sec_per_gpu": 30.55,
|
| 1718 |
+
"tokens/trainable": 55697
|
| 1719 |
+
},
|
| 1720 |
+
{
|
| 1721 |
+
"epoch": 0.48046875,
|
| 1722 |
+
"grad_norm": 0.4368670582771301,
|
| 1723 |
+
"learning_rate": 9.147389495587671e-05,
|
| 1724 |
+
"loss": 0.00867566466331482,
|
| 1725 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1726 |
+
"memory/max_active (GiB)": 33.73,
|
| 1727 |
+
"memory/max_allocated (GiB)": 33.73,
|
| 1728 |
+
"ppl": 1.00871,
|
| 1729 |
+
"step": 123,
|
| 1730 |
+
"tokens/total": 3722864,
|
| 1731 |
+
"tokens/train_per_sec_per_gpu": 33.49,
|
| 1732 |
+
"tokens/trainable": 56141
|
| 1733 |
+
},
|
| 1734 |
+
{
|
| 1735 |
+
"epoch": 0.484375,
|
| 1736 |
+
"grad_norm": 0.3315965235233307,
|
| 1737 |
+
"learning_rate": 9.130311507650116e-05,
|
| 1738 |
+
"loss": 0.011374368332326412,
|
| 1739 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1740 |
+
"memory/max_active (GiB)": 33.77,
|
| 1741 |
+
"memory/max_allocated (GiB)": 33.77,
|
| 1742 |
+
"ppl": 1.01144,
|
| 1743 |
+
"step": 124,
|
| 1744 |
+
"tokens/total": 3753056,
|
| 1745 |
+
"tokens/train_per_sec_per_gpu": 33.2,
|
| 1746 |
+
"tokens/trainable": 56586
|
| 1747 |
+
},
|
| 1748 |
+
{
|
| 1749 |
+
"epoch": 0.48828125,
|
| 1750 |
+
"grad_norm": 0.2834460735321045,
|
| 1751 |
+
"learning_rate": 9.113082447632394e-05,
|
| 1752 |
+
"loss": 0.005234894342720509,
|
| 1753 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1754 |
+
"memory/max_active (GiB)": 33.82,
|
| 1755 |
+
"memory/max_allocated (GiB)": 33.82,
|
| 1756 |
+
"ppl": 1.00525,
|
| 1757 |
+
"step": 125,
|
| 1758 |
+
"tokens/total": 3783312,
|
| 1759 |
+
"tokens/train_per_sec_per_gpu": 36.68,
|
| 1760 |
+
"tokens/trainable": 57078
|
| 1761 |
+
},
|
| 1762 |
+
{
|
| 1763 |
+
"epoch": 0.4921875,
|
| 1764 |
+
"grad_norm": 0.5132001638412476,
|
| 1765 |
+
"learning_rate": 9.09570303250602e-05,
|
| 1766 |
+
"loss": 0.02469645068049431,
|
| 1767 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1768 |
+
"memory/max_active (GiB)": 33.88,
|
| 1769 |
+
"memory/max_allocated (GiB)": 33.88,
|
| 1770 |
+
"ppl": 1.025,
|
| 1771 |
+
"step": 126,
|
| 1772 |
+
"tokens/total": 3813712,
|
| 1773 |
+
"tokens/train_per_sec_per_gpu": 32.87,
|
| 1774 |
+
"tokens/trainable": 57524
|
| 1775 |
+
},
|
| 1776 |
+
{
|
| 1777 |
+
"epoch": 0.49609375,
|
| 1778 |
+
"grad_norm": 0.9969733953475952,
|
| 1779 |
+
"learning_rate": 9.078173985499394e-05,
|
| 1780 |
+
"loss": 0.040580250322818756,
|
| 1781 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1782 |
+
"memory/max_active (GiB)": 33.94,
|
| 1783 |
+
"memory/max_allocated (GiB)": 33.94,
|
| 1784 |
+
"ppl": 1.04141,
|
| 1785 |
+
"step": 127,
|
| 1786 |
+
"tokens/total": 3844336,
|
| 1787 |
+
"tokens/train_per_sec_per_gpu": 34.85,
|
| 1788 |
+
"tokens/trainable": 58002
|
| 1789 |
+
},
|
| 1790 |
+
{
|
| 1791 |
+
"epoch": 0.5,
|
| 1792 |
+
"grad_norm": 0.4804457724094391,
|
| 1793 |
+
"learning_rate": 9.060496036067713e-05,
|
| 1794 |
+
"loss": 0.007047833874821663,
|
| 1795 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1796 |
+
"memory/max_active (GiB)": 33.39,
|
| 1797 |
+
"memory/max_allocated (GiB)": 33.39,
|
| 1798 |
+
"ppl": 1.00707,
|
| 1799 |
+
"step": 128,
|
| 1800 |
+
"tokens/total": 3872688,
|
| 1801 |
+
"tokens/train_per_sec_per_gpu": 35.3,
|
| 1802 |
+
"tokens/trainable": 58451
|
| 1803 |
+
},
|
| 1804 |
+
{
|
| 1805 |
+
"epoch": 0.50390625,
|
| 1806 |
+
"grad_norm": 0.23698025941848755,
|
| 1807 |
+
"learning_rate": 9.042669919862615e-05,
|
| 1808 |
+
"loss": 0.00366212404333055,
|
| 1809 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1810 |
+
"memory/max_active (GiB)": 33.64,
|
| 1811 |
+
"memory/max_allocated (GiB)": 33.64,
|
| 1812 |
+
"ppl": 1.00367,
|
| 1813 |
+
"step": 129,
|
| 1814 |
+
"tokens/total": 3902640,
|
| 1815 |
+
"tokens/train_per_sec_per_gpu": 32.1,
|
| 1816 |
+
"tokens/trainable": 58893
|
| 1817 |
+
},
|
| 1818 |
+
{
|
| 1819 |
+
"epoch": 0.5078125,
|
| 1820 |
+
"grad_norm": 0.44587212800979614,
|
| 1821 |
+
"learning_rate": 9.024696378701557e-05,
|
| 1822 |
+
"loss": 0.010764295235276222,
|
| 1823 |
+
"memory/device_reserved (GiB)": 34.68,
|
| 1824 |
+
"memory/max_active (GiB)": 33.84,
|
| 1825 |
+
"memory/max_allocated (GiB)": 33.84,
|
| 1826 |
+
"ppl": 1.01082,
|
| 1827 |
+
"step": 130,
|
| 1828 |
+
"tokens/total": 3933104,
|
| 1829 |
+
"tokens/train_per_sec_per_gpu": 35.94,
|
| 1830 |
+
"tokens/trainable": 59353
|
| 1831 |
+
},
|
| 1832 |
+
{
|
| 1833 |
+
"epoch": 0.51171875,
|
| 1834 |
+
"grad_norm": 0.3212004005908966,
|
| 1835 |
+
"learning_rate": 9.006576160536948e-05,
|
| 1836 |
+
"loss": 0.013213565573096275,
|
| 1837 |
+
"memory/device_reserved (GiB)": 34.92,
|
| 1838 |
+
"memory/max_active (GiB)": 33.78,
|
| 1839 |
+
"memory/max_allocated (GiB)": 33.78,
|
| 1840 |
+
"ppl": 1.0133,
|
| 1841 |
+
"step": 131,
|
| 1842 |
+
"tokens/total": 3963184,
|
| 1843 |
+
"tokens/train_per_sec_per_gpu": 32.29,
|
| 1844 |
+
"tokens/trainable": 59789
|
| 1845 |
+
},
|
| 1846 |
+
{
|
| 1847 |
+
"epoch": 0.515625,
|
| 1848 |
+
"grad_norm": 0.14710628986358643,
|
| 1849 |
+
"learning_rate": 8.988310019425035e-05,
|
| 1850 |
+
"loss": 0.005224708467721939,
|
| 1851 |
+
"memory/device_reserved (GiB)": 35.78,
|
| 1852 |
+
"memory/max_active (GiB)": 33.91,
|
| 1853 |
+
"memory/max_allocated (GiB)": 33.91,
|
| 1854 |
+
"ppl": 1.00524,
|
| 1855 |
+
"step": 132,
|
| 1856 |
+
"tokens/total": 3993648,
|
| 1857 |
+
"tokens/train_per_sec_per_gpu": 35.82,
|
| 1858 |
+
"tokens/trainable": 60263
|
| 1859 |
+
},
|
| 1860 |
+
{
|
| 1861 |
+
"epoch": 0.51953125,
|
| 1862 |
+
"grad_norm": 0.5616672039031982,
|
| 1863 |
+
"learning_rate": 8.969898715494506e-05,
|
| 1864 |
+
"loss": 0.01082855835556984,
|
| 1865 |
+
"memory/device_reserved (GiB)": 35.78,
|
| 1866 |
+
"memory/max_active (GiB)": 33.89,
|
| 1867 |
+
"memory/max_allocated (GiB)": 33.89,
|
| 1868 |
+
"ppl": 1.01089,
|
| 1869 |
+
"step": 133,
|
| 1870 |
+
"tokens/total": 4024000,
|
| 1871 |
+
"tokens/train_per_sec_per_gpu": 35.55,
|
| 1872 |
+
"tokens/trainable": 60756
|
| 1873 |
+
},
|
| 1874 |
+
{
|
| 1875 |
+
"epoch": 0.5234375,
|
| 1876 |
+
"grad_norm": 0.28706833720207214,
|
| 1877 |
+
"learning_rate": 8.951343014914869e-05,
|
| 1878 |
+
"loss": 0.02170894667506218,
|
| 1879 |
+
"memory/device_reserved (GiB)": 35.78,
|
| 1880 |
+
"memory/max_active (GiB)": 33.39,
|
| 1881 |
+
"memory/max_allocated (GiB)": 33.39,
|
| 1882 |
+
"ppl": 1.02195,
|
| 1883 |
+
"step": 134,
|
| 1884 |
+
"tokens/total": 4052480,
|
| 1885 |
+
"tokens/train_per_sec_per_gpu": 31.85,
|
| 1886 |
+
"tokens/trainable": 61201
|
| 1887 |
+
},
|
| 1888 |
+
{
|
| 1889 |
+
"epoch": 0.52734375,
|
| 1890 |
+
"grad_norm": 0.1448316127061844,
|
| 1891 |
+
"learning_rate": 8.932643689864568e-05,
|
| 1892 |
+
"loss": 0.0064529795199632645,
|
| 1893 |
+
"memory/device_reserved (GiB)": 35.78,
|
| 1894 |
+
"memory/max_active (GiB)": 33.86,
|
| 1895 |
+
"memory/max_allocated (GiB)": 33.86,
|
| 1896 |
+
"ppl": 1.00647,
|
| 1897 |
+
"step": 135,
|
| 1898 |
+
"tokens/total": 4082864,
|
| 1899 |
+
"tokens/train_per_sec_per_gpu": 36.07,
|
| 1900 |
+
"tokens/trainable": 61681
|
| 1901 |
+
},
|
| 1902 |
+
{
|
| 1903 |
+
"epoch": 0.53125,
|
| 1904 |
+
"grad_norm": 0.2812711000442505,
|
| 1905 |
+
"learning_rate": 8.913801518498845e-05,
|
| 1906 |
+
"loss": 0.01243551354855299,
|
| 1907 |
+
"memory/device_reserved (GiB)": 35.79,
|
| 1908 |
+
"memory/max_active (GiB)": 33.7,
|
| 1909 |
+
"memory/max_allocated (GiB)": 33.7,
|
| 1910 |
+
"ppl": 1.01251,
|
| 1911 |
+
"step": 136,
|
| 1912 |
+
"tokens/total": 4113040,
|
| 1913 |
+
"tokens/train_per_sec_per_gpu": 38.33,
|
| 1914 |
+
"tokens/trainable": 62156
|
| 1915 |
+
},
|
| 1916 |
+
{
|
| 1917 |
+
"epoch": 0.53515625,
|
| 1918 |
+
"grad_norm": 0.37281039357185364,
|
| 1919 |
+
"learning_rate": 8.894817284917364e-05,
|
| 1920 |
+
"loss": 0.009842045605182648,
|
| 1921 |
+
"memory/device_reserved (GiB)": 35.79,
|
| 1922 |
+
"memory/max_active (GiB)": 33.88,
|
| 1923 |
+
"memory/max_allocated (GiB)": 33.88,
|
| 1924 |
+
"ppl": 1.00989,
|
| 1925 |
+
"step": 137,
|
| 1926 |
+
"tokens/total": 4143344,
|
| 1927 |
+
"tokens/train_per_sec_per_gpu": 35.42,
|
| 1928 |
+
"tokens/trainable": 62646
|
| 1929 |
+
},
|
| 1930 |
+
{
|
| 1931 |
+
"epoch": 0.5390625,
|
| 1932 |
+
"grad_norm": 0.15259796380996704,
|
| 1933 |
+
"learning_rate": 8.875691779131569e-05,
|
| 1934 |
+
"loss": 0.007893089205026627,
|
| 1935 |
+
"memory/device_reserved (GiB)": 35.79,
|
| 1936 |
+
"memory/max_active (GiB)": 33.79,
|
| 1937 |
+
"memory/max_allocated (GiB)": 33.79,
|
| 1938 |
+
"ppl": 1.00792,
|
| 1939 |
+
"step": 138,
|
| 1940 |
+
"tokens/total": 4173648,
|
| 1941 |
+
"tokens/train_per_sec_per_gpu": 36.58,
|
| 1942 |
+
"tokens/trainable": 63097
|
| 1943 |
+
},
|
| 1944 |
+
{
|
| 1945 |
+
"epoch": 0.54296875,
|
| 1946 |
+
"grad_norm": 0.2609741985797882,
|
| 1947 |
+
"learning_rate": 8.856425797031829e-05,
|
| 1948 |
+
"loss": 0.009887185879051685,
|
| 1949 |
+
"memory/device_reserved (GiB)": 35.79,
|
| 1950 |
+
"memory/max_active (GiB)": 33.92,
|
| 1951 |
+
"memory/max_allocated (GiB)": 33.92,
|
| 1952 |
+
"ppl": 1.00994,
|
| 1953 |
+
"step": 139,
|
| 1954 |
+
"tokens/total": 4204080,
|
| 1955 |
+
"tokens/train_per_sec_per_gpu": 37.62,
|
| 1956 |
+
"tokens/trainable": 63585
|
| 1957 |
+
},
|
| 1958 |
+
{
|
| 1959 |
+
"epoch": 0.546875,
|
| 1960 |
+
"grad_norm": 0.3938979506492615,
|
| 1961 |
+
"learning_rate": 8.837020140354295e-05,
|
| 1962 |
+
"loss": 0.020112136378884315,
|
| 1963 |
+
"memory/device_reserved (GiB)": 35.79,
|
| 1964 |
+
"memory/max_active (GiB)": 33.42,
|
| 1965 |
+
"memory/max_allocated (GiB)": 33.42,
|
| 1966 |
+
"ppl": 1.02032,
|
| 1967 |
+
"step": 140,
|
| 1968 |
+
"tokens/total": 4232400,
|
| 1969 |
+
"tokens/train_per_sec_per_gpu": 33.14,
|
| 1970 |
+
"tokens/trainable": 64002
|
| 1971 |
+
},
|
| 1972 |
+
{
|
| 1973 |
+
"epoch": 0.55078125,
|
| 1974 |
+
"grad_norm": 0.2883419096469879,
|
| 1975 |
+
"learning_rate": 8.817475616647554e-05,
|
| 1976 |
+
"loss": 0.020921282470226288,
|
| 1977 |
+
"memory/device_reserved (GiB)": 35.79,
|
| 1978 |
+
"memory/max_active (GiB)": 33.82,
|
| 1979 |
+
"memory/max_allocated (GiB)": 33.82,
|
| 1980 |
+
"ppl": 1.02114,
|
| 1981 |
+
"step": 141,
|
| 1982 |
+
"tokens/total": 4262624,
|
| 1983 |
+
"tokens/train_per_sec_per_gpu": 35.28,
|
| 1984 |
+
"tokens/trainable": 64459
|
| 1985 |
+
},
|
| 1986 |
+
{
|
| 1987 |
+
"epoch": 0.5546875,
|
| 1988 |
+
"grad_norm": 0.22204594314098358,
|
| 1989 |
+
"learning_rate": 8.797793039239017e-05,
|
| 1990 |
+
"loss": 0.007596657145768404,
|
| 1991 |
+
"memory/device_reserved (GiB)": 35.79,
|
| 1992 |
+
"memory/max_active (GiB)": 33.94,
|
| 1993 |
+
"memory/max_allocated (GiB)": 33.94,
|
| 1994 |
+
"ppl": 1.00763,
|
| 1995 |
+
"step": 142,
|
| 1996 |
+
"tokens/total": 4293168,
|
| 1997 |
+
"tokens/train_per_sec_per_gpu": 34.06,
|
| 1998 |
+
"tokens/trainable": 64897
|
| 1999 |
+
},
|
| 2000 |
+
{
|
| 2001 |
+
"epoch": 0.55859375,
|
| 2002 |
+
"grad_norm": 0.3463776409626007,
|
| 2003 |
+
"learning_rate": 8.777973227201069e-05,
|
| 2004 |
+
"loss": 0.008941063657402992,
|
| 2005 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2006 |
+
"memory/max_active (GiB)": 33.8,
|
| 2007 |
+
"memory/max_allocated (GiB)": 33.8,
|
| 2008 |
+
"ppl": 1.00898,
|
| 2009 |
+
"step": 143,
|
| 2010 |
+
"tokens/total": 4323168,
|
| 2011 |
+
"tokens/train_per_sec_per_gpu": 37.81,
|
| 2012 |
+
"tokens/trainable": 65376
|
| 2013 |
+
},
|
| 2014 |
+
{
|
| 2015 |
+
"epoch": 0.5625,
|
| 2016 |
+
"grad_norm": 0.07992643117904663,
|
| 2017 |
+
"learning_rate": 8.758017005316988e-05,
|
| 2018 |
+
"loss": 0.002066058572381735,
|
| 2019 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2020 |
+
"memory/max_active (GiB)": 33.81,
|
| 2021 |
+
"memory/max_allocated (GiB)": 33.81,
|
| 2022 |
+
"ppl": 1.00207,
|
| 2023 |
+
"step": 144,
|
| 2024 |
+
"tokens/total": 4353264,
|
| 2025 |
+
"tokens/train_per_sec_per_gpu": 36.81,
|
| 2026 |
+
"tokens/trainable": 65842
|
| 2027 |
+
},
|
| 2028 |
+
{
|
| 2029 |
+
"epoch": 0.56640625,
|
| 2030 |
+
"grad_norm": 0.4542894959449768,
|
| 2031 |
+
"learning_rate": 8.737925204046629e-05,
|
| 2032 |
+
"loss": 0.006295363884419203,
|
| 2033 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2034 |
+
"memory/max_active (GiB)": 33.79,
|
| 2035 |
+
"memory/max_allocated (GiB)": 33.79,
|
| 2036 |
+
"ppl": 1.00632,
|
| 2037 |
+
"step": 145,
|
| 2038 |
+
"tokens/total": 4383504,
|
| 2039 |
+
"tokens/train_per_sec_per_gpu": 33.05,
|
| 2040 |
+
"tokens/trainable": 66282
|
| 2041 |
+
},
|
| 2042 |
+
{
|
| 2043 |
+
"epoch": 0.5703125,
|
| 2044 |
+
"grad_norm": 0.6165645122528076,
|
| 2045 |
+
"learning_rate": 8.717698659491851e-05,
|
| 2046 |
+
"loss": 0.021687351167201996,
|
| 2047 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2048 |
+
"memory/max_active (GiB)": 33.74,
|
| 2049 |
+
"memory/max_allocated (GiB)": 33.74,
|
| 2050 |
+
"ppl": 1.02192,
|
| 2051 |
+
"step": 146,
|
| 2052 |
+
"tokens/total": 4413776,
|
| 2053 |
+
"tokens/train_per_sec_per_gpu": 31.67,
|
| 2054 |
+
"tokens/trainable": 66733
|
| 2055 |
+
},
|
| 2056 |
+
{
|
| 2057 |
+
"epoch": 0.57421875,
|
| 2058 |
+
"grad_norm": 0.44622310996055603,
|
| 2059 |
+
"learning_rate": 8.697338213361735e-05,
|
| 2060 |
+
"loss": 0.010542265139520168,
|
| 2061 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2062 |
+
"memory/max_active (GiB)": 33.83,
|
| 2063 |
+
"memory/max_allocated (GiB)": 33.83,
|
| 2064 |
+
"ppl": 1.0106,
|
| 2065 |
+
"step": 147,
|
| 2066 |
+
"tokens/total": 4444032,
|
| 2067 |
+
"tokens/train_per_sec_per_gpu": 35.41,
|
| 2068 |
+
"tokens/trainable": 67147
|
| 2069 |
+
},
|
| 2070 |
+
{
|
| 2071 |
+
"epoch": 0.578125,
|
| 2072 |
+
"grad_norm": 0.5972599387168884,
|
| 2073 |
+
"learning_rate": 8.676844712937552e-05,
|
| 2074 |
+
"loss": 0.015109038911759853,
|
| 2075 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2076 |
+
"memory/max_active (GiB)": 33.83,
|
| 2077 |
+
"memory/max_allocated (GiB)": 33.83,
|
| 2078 |
+
"ppl": 1.01522,
|
| 2079 |
+
"step": 148,
|
| 2080 |
+
"tokens/total": 4474384,
|
| 2081 |
+
"tokens/train_per_sec_per_gpu": 35.19,
|
| 2082 |
+
"tokens/trainable": 67630
|
| 2083 |
+
},
|
| 2084 |
+
{
|
| 2085 |
+
"epoch": 0.58203125,
|
| 2086 |
+
"grad_norm": 0.16330066323280334,
|
| 2087 |
+
"learning_rate": 8.656219011037509e-05,
|
| 2088 |
+
"loss": 0.003038810333237052,
|
| 2089 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2090 |
+
"memory/max_active (GiB)": 33.86,
|
| 2091 |
+
"memory/max_allocated (GiB)": 33.86,
|
| 2092 |
+
"ppl": 1.00304,
|
| 2093 |
+
"step": 149,
|
| 2094 |
+
"tokens/total": 4504800,
|
| 2095 |
+
"tokens/train_per_sec_per_gpu": 33.97,
|
| 2096 |
+
"tokens/trainable": 68074
|
| 2097 |
+
},
|
| 2098 |
+
{
|
| 2099 |
+
"epoch": 0.5859375,
|
| 2100 |
+
"grad_norm": 0.1966242492198944,
|
| 2101 |
+
"learning_rate": 8.63546196598125e-05,
|
| 2102 |
+
"loss": 0.00474123377352953,
|
| 2103 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2104 |
+
"memory/max_active (GiB)": 33.8,
|
| 2105 |
+
"memory/max_allocated (GiB)": 33.8,
|
| 2106 |
+
"ppl": 1.00475,
|
| 2107 |
+
"step": 150,
|
| 2108 |
+
"tokens/total": 4534896,
|
| 2109 |
+
"tokens/train_per_sec_per_gpu": 33.28,
|
| 2110 |
+
"tokens/trainable": 68542
|
| 2111 |
+
},
|
| 2112 |
+
{
|
| 2113 |
+
"epoch": 0.58984375,
|
| 2114 |
+
"grad_norm": 0.2519090175628662,
|
| 2115 |
+
"learning_rate": 8.614574441554145e-05,
|
| 2116 |
+
"loss": 0.005299043841660023,
|
| 2117 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2118 |
+
"memory/max_active (GiB)": 33.8,
|
| 2119 |
+
"memory/max_allocated (GiB)": 33.8,
|
| 2120 |
+
"ppl": 1.00531,
|
| 2121 |
+
"step": 151,
|
| 2122 |
+
"tokens/total": 4565008,
|
| 2123 |
+
"tokens/train_per_sec_per_gpu": 30.34,
|
| 2124 |
+
"tokens/trainable": 69008
|
| 2125 |
+
},
|
| 2126 |
+
{
|
| 2127 |
+
"epoch": 0.59375,
|
| 2128 |
+
"grad_norm": 0.45198729634284973,
|
| 2129 |
+
"learning_rate": 8.593557306971349e-05,
|
| 2130 |
+
"loss": 0.00804843008518219,
|
| 2131 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2132 |
+
"memory/max_active (GiB)": 33.93,
|
| 2133 |
+
"memory/max_allocated (GiB)": 33.93,
|
| 2134 |
+
"ppl": 1.00808,
|
| 2135 |
+
"step": 152,
|
| 2136 |
+
"tokens/total": 4595520,
|
| 2137 |
+
"tokens/train_per_sec_per_gpu": 35.52,
|
| 2138 |
+
"tokens/trainable": 69462
|
| 2139 |
+
},
|
| 2140 |
+
{
|
| 2141 |
+
"epoch": 0.59765625,
|
| 2142 |
+
"grad_norm": 1.9722840785980225,
|
| 2143 |
+
"learning_rate": 8.572411436841618e-05,
|
| 2144 |
+
"loss": 0.015857091173529625,
|
| 2145 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2146 |
+
"memory/max_active (GiB)": 33.84,
|
| 2147 |
+
"memory/max_allocated (GiB)": 33.84,
|
| 2148 |
+
"ppl": 1.01598,
|
| 2149 |
+
"step": 153,
|
| 2150 |
+
"tokens/total": 4625952,
|
| 2151 |
+
"tokens/train_per_sec_per_gpu": 33.96,
|
| 2152 |
+
"tokens/trainable": 69925
|
| 2153 |
+
},
|
| 2154 |
+
{
|
| 2155 |
+
"epoch": 0.6015625,
|
| 2156 |
+
"grad_norm": 0.1563708782196045,
|
| 2157 |
+
"learning_rate": 8.551137711130922e-05,
|
| 2158 |
+
"loss": 0.003014163114130497,
|
| 2159 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2160 |
+
"memory/max_active (GiB)": 33.87,
|
| 2161 |
+
"memory/max_allocated (GiB)": 33.87,
|
| 2162 |
+
"ppl": 1.00302,
|
| 2163 |
+
"step": 154,
|
| 2164 |
+
"tokens/total": 4656272,
|
| 2165 |
+
"tokens/train_per_sec_per_gpu": 36.73,
|
| 2166 |
+
"tokens/trainable": 70392
|
| 2167 |
+
},
|
| 2168 |
+
{
|
| 2169 |
+
"epoch": 0.60546875,
|
| 2170 |
+
"grad_norm": 0.3952409327030182,
|
| 2171 |
+
"learning_rate": 8.529737015125824e-05,
|
| 2172 |
+
"loss": 0.020546773448586464,
|
| 2173 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2174 |
+
"memory/max_active (GiB)": 33.85,
|
| 2175 |
+
"memory/max_allocated (GiB)": 33.85,
|
| 2176 |
+
"ppl": 1.02076,
|
| 2177 |
+
"step": 155,
|
| 2178 |
+
"tokens/total": 4684592,
|
| 2179 |
+
"tokens/train_per_sec_per_gpu": 35.63,
|
| 2180 |
+
"tokens/trainable": 70826
|
| 2181 |
+
},
|
| 2182 |
+
{
|
| 2183 |
+
"epoch": 0.609375,
|
| 2184 |
+
"grad_norm": 0.29893431067466736,
|
| 2185 |
+
"learning_rate": 8.508210239396639e-05,
|
| 2186 |
+
"loss": 0.006672243122011423,
|
| 2187 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2188 |
+
"memory/max_active (GiB)": 33.87,
|
| 2189 |
+
"memory/max_allocated (GiB)": 33.87,
|
| 2190 |
+
"ppl": 1.00669,
|
| 2191 |
+
"step": 156,
|
| 2192 |
+
"tokens/total": 4715136,
|
| 2193 |
+
"tokens/train_per_sec_per_gpu": 34.03,
|
| 2194 |
+
"tokens/trainable": 71284
|
| 2195 |
+
},
|
| 2196 |
+
{
|
| 2197 |
+
"epoch": 0.61328125,
|
| 2198 |
+
"grad_norm": 0.12646262347698212,
|
| 2199 |
+
"learning_rate": 8.486558279760375e-05,
|
| 2200 |
+
"loss": 0.001321017974987626,
|
| 2201 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2202 |
+
"memory/max_active (GiB)": 33.79,
|
| 2203 |
+
"memory/max_allocated (GiB)": 33.79,
|
| 2204 |
+
"ppl": 1.00132,
|
| 2205 |
+
"step": 157,
|
| 2206 |
+
"tokens/total": 4745296,
|
| 2207 |
+
"tokens/train_per_sec_per_gpu": 35.12,
|
| 2208 |
+
"tokens/trainable": 71746
|
| 2209 |
+
},
|
| 2210 |
+
{
|
| 2211 |
+
"epoch": 0.6171875,
|
| 2212 |
+
"grad_norm": 0.3663196563720703,
|
| 2213 |
+
"learning_rate": 8.464782037243449e-05,
|
| 2214 |
+
"loss": 0.00867768656462431,
|
| 2215 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2216 |
+
"memory/max_active (GiB)": 33.9,
|
| 2217 |
+
"memory/max_allocated (GiB)": 33.9,
|
| 2218 |
+
"ppl": 1.00872,
|
| 2219 |
+
"step": 158,
|
| 2220 |
+
"tokens/total": 4775696,
|
| 2221 |
+
"tokens/train_per_sec_per_gpu": 32.33,
|
| 2222 |
+
"tokens/trainable": 72182
|
| 2223 |
+
},
|
| 2224 |
+
{
|
| 2225 |
+
"epoch": 0.62109375,
|
| 2226 |
+
"grad_norm": 0.32793474197387695,
|
| 2227 |
+
"learning_rate": 8.442882418044202e-05,
|
| 2228 |
+
"loss": 0.012621743604540825,
|
| 2229 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2230 |
+
"memory/max_active (GiB)": 33.75,
|
| 2231 |
+
"memory/max_allocated (GiB)": 33.75,
|
| 2232 |
+
"ppl": 1.0127,
|
| 2233 |
+
"step": 159,
|
| 2234 |
+
"tokens/total": 4805776,
|
| 2235 |
+
"tokens/train_per_sec_per_gpu": 30.69,
|
| 2236 |
+
"tokens/trainable": 72601
|
| 2237 |
+
},
|
| 2238 |
+
{
|
| 2239 |
+
"epoch": 0.625,
|
| 2240 |
+
"grad_norm": 0.502180278301239,
|
| 2241 |
+
"learning_rate": 8.420860333495179e-05,
|
| 2242 |
+
"loss": 0.02071015164256096,
|
| 2243 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2244 |
+
"memory/max_active (GiB)": 33.84,
|
| 2245 |
+
"memory/max_allocated (GiB)": 33.84,
|
| 2246 |
+
"ppl": 1.02093,
|
| 2247 |
+
"step": 160,
|
| 2248 |
+
"tokens/total": 4836224,
|
| 2249 |
+
"tokens/train_per_sec_per_gpu": 31.57,
|
| 2250 |
+
"tokens/trainable": 73058
|
| 2251 |
+
}
|
| 2252 |
+
],
|
| 2253 |
+
"logging_steps": 1,
|
| 2254 |
+
"max_steps": 512,
|
| 2255 |
+
"num_input_tokens_seen": 0,
|
| 2256 |
+
"num_train_epochs": 2,
|
| 2257 |
+
"save_steps": 32,
|
| 2258 |
+
"stateful_callbacks": {
|
| 2259 |
+
"TrainerControl": {
|
| 2260 |
+
"args": {
|
| 2261 |
+
"should_epoch_stop": false,
|
| 2262 |
+
"should_evaluate": false,
|
| 2263 |
+
"should_log": false,
|
| 2264 |
+
"should_save": true,
|
| 2265 |
+
"should_training_stop": false
|
| 2266 |
+
},
|
| 2267 |
+
"attributes": {}
|
| 2268 |
+
}
|
| 2269 |
+
},
|
| 2270 |
+
"total_flos": 3.2826278453498266e+17,
|
| 2271 |
+
"train_batch_size": 16,
|
| 2272 |
+
"trial_name": null,
|
| 2273 |
+
"trial_params": null
|
| 2274 |
+
}
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-160/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:406793bea9f8fabcdcfc11db8c5c7a09125572ea519f1927fa7cb779a1e3293b
|
| 3 |
+
size 8273
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-192/README.md
ADDED
|
@@ -0,0 +1,208 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: /workspace/wave/parent
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- axolotl
|
| 7 |
+
- base_model:adapter:/workspace/wave/parent
|
| 8 |
+
- lora
|
| 9 |
+
- transformers
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# Model Card for Model ID
|
| 13 |
+
|
| 14 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
## Model Details
|
| 19 |
+
|
| 20 |
+
### Model Description
|
| 21 |
+
|
| 22 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
- **Developed by:** [More Information Needed]
|
| 27 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 28 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 29 |
+
- **Model type:** [More Information Needed]
|
| 30 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 31 |
+
- **License:** [More Information Needed]
|
| 32 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 33 |
+
|
| 34 |
+
### Model Sources [optional]
|
| 35 |
+
|
| 36 |
+
<!-- Provide the basic links for the model. -->
|
| 37 |
+
|
| 38 |
+
- **Repository:** [More Information Needed]
|
| 39 |
+
- **Paper [optional]:** [More Information Needed]
|
| 40 |
+
- **Demo [optional]:** [More Information Needed]
|
| 41 |
+
|
| 42 |
+
## Uses
|
| 43 |
+
|
| 44 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 45 |
+
|
| 46 |
+
### Direct Use
|
| 47 |
+
|
| 48 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 49 |
+
|
| 50 |
+
[More Information Needed]
|
| 51 |
+
|
| 52 |
+
### Downstream Use [optional]
|
| 53 |
+
|
| 54 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 55 |
+
|
| 56 |
+
[More Information Needed]
|
| 57 |
+
|
| 58 |
+
### Out-of-Scope Use
|
| 59 |
+
|
| 60 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 61 |
+
|
| 62 |
+
[More Information Needed]
|
| 63 |
+
|
| 64 |
+
## Bias, Risks, and Limitations
|
| 65 |
+
|
| 66 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 67 |
+
|
| 68 |
+
[More Information Needed]
|
| 69 |
+
|
| 70 |
+
### Recommendations
|
| 71 |
+
|
| 72 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 73 |
+
|
| 74 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 75 |
+
|
| 76 |
+
## How to Get Started with the Model
|
| 77 |
+
|
| 78 |
+
Use the code below to get started with the model.
|
| 79 |
+
|
| 80 |
+
[More Information Needed]
|
| 81 |
+
|
| 82 |
+
## Training Details
|
| 83 |
+
|
| 84 |
+
### Training Data
|
| 85 |
+
|
| 86 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 87 |
+
|
| 88 |
+
[More Information Needed]
|
| 89 |
+
|
| 90 |
+
### Training Procedure
|
| 91 |
+
|
| 92 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 93 |
+
|
| 94 |
+
#### Preprocessing [optional]
|
| 95 |
+
|
| 96 |
+
[More Information Needed]
|
| 97 |
+
|
| 98 |
+
|
| 99 |
+
#### Training Hyperparameters
|
| 100 |
+
|
| 101 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 102 |
+
|
| 103 |
+
#### Speeds, Sizes, Times [optional]
|
| 104 |
+
|
| 105 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 106 |
+
|
| 107 |
+
[More Information Needed]
|
| 108 |
+
|
| 109 |
+
## Evaluation
|
| 110 |
+
|
| 111 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 112 |
+
|
| 113 |
+
### Testing Data, Factors & Metrics
|
| 114 |
+
|
| 115 |
+
#### Testing Data
|
| 116 |
+
|
| 117 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 118 |
+
|
| 119 |
+
[More Information Needed]
|
| 120 |
+
|
| 121 |
+
#### Factors
|
| 122 |
+
|
| 123 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 124 |
+
|
| 125 |
+
[More Information Needed]
|
| 126 |
+
|
| 127 |
+
#### Metrics
|
| 128 |
+
|
| 129 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 130 |
+
|
| 131 |
+
[More Information Needed]
|
| 132 |
+
|
| 133 |
+
### Results
|
| 134 |
+
|
| 135 |
+
[More Information Needed]
|
| 136 |
+
|
| 137 |
+
#### Summary
|
| 138 |
+
|
| 139 |
+
|
| 140 |
+
|
| 141 |
+
## Model Examination [optional]
|
| 142 |
+
|
| 143 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 144 |
+
|
| 145 |
+
[More Information Needed]
|
| 146 |
+
|
| 147 |
+
## Environmental Impact
|
| 148 |
+
|
| 149 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 150 |
+
|
| 151 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 152 |
+
|
| 153 |
+
- **Hardware Type:** [More Information Needed]
|
| 154 |
+
- **Hours used:** [More Information Needed]
|
| 155 |
+
- **Cloud Provider:** [More Information Needed]
|
| 156 |
+
- **Compute Region:** [More Information Needed]
|
| 157 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 158 |
+
|
| 159 |
+
## Technical Specifications [optional]
|
| 160 |
+
|
| 161 |
+
### Model Architecture and Objective
|
| 162 |
+
|
| 163 |
+
[More Information Needed]
|
| 164 |
+
|
| 165 |
+
### Compute Infrastructure
|
| 166 |
+
|
| 167 |
+
[More Information Needed]
|
| 168 |
+
|
| 169 |
+
#### Hardware
|
| 170 |
+
|
| 171 |
+
[More Information Needed]
|
| 172 |
+
|
| 173 |
+
#### Software
|
| 174 |
+
|
| 175 |
+
[More Information Needed]
|
| 176 |
+
|
| 177 |
+
## Citation [optional]
|
| 178 |
+
|
| 179 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 180 |
+
|
| 181 |
+
**BibTeX:**
|
| 182 |
+
|
| 183 |
+
[More Information Needed]
|
| 184 |
+
|
| 185 |
+
**APA:**
|
| 186 |
+
|
| 187 |
+
[More Information Needed]
|
| 188 |
+
|
| 189 |
+
## Glossary [optional]
|
| 190 |
+
|
| 191 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 192 |
+
|
| 193 |
+
[More Information Needed]
|
| 194 |
+
|
| 195 |
+
## More Information [optional]
|
| 196 |
+
|
| 197 |
+
[More Information Needed]
|
| 198 |
+
|
| 199 |
+
## Model Card Authors [optional]
|
| 200 |
+
|
| 201 |
+
[More Information Needed]
|
| 202 |
+
|
| 203 |
+
## Model Card Contact
|
| 204 |
+
|
| 205 |
+
[More Information Needed]
|
| 206 |
+
### Framework versions
|
| 207 |
+
|
| 208 |
+
- PEFT 0.19.1
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-192/adapter_config.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "/workspace/wave/parent",
|
| 7 |
+
"bias": "none",
|
| 8 |
+
"corda_config": null,
|
| 9 |
+
"ensure_weight_tying": false,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": null,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 64,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.05,
|
| 22 |
+
"lora_ga_config": null,
|
| 23 |
+
"megatron_config": null,
|
| 24 |
+
"megatron_core": "megatron.core",
|
| 25 |
+
"modules_to_save": null,
|
| 26 |
+
"peft_type": "LORA",
|
| 27 |
+
"peft_version": "0.19.1",
|
| 28 |
+
"qalora_group_size": 16,
|
| 29 |
+
"r": 32,
|
| 30 |
+
"rank_pattern": {},
|
| 31 |
+
"revision": null,
|
| 32 |
+
"target_modules": [
|
| 33 |
+
"o_proj",
|
| 34 |
+
"down_proj",
|
| 35 |
+
"v_proj",
|
| 36 |
+
"up_proj",
|
| 37 |
+
"k_proj",
|
| 38 |
+
"gate_proj",
|
| 39 |
+
"q_proj"
|
| 40 |
+
],
|
| 41 |
+
"target_parameters": [],
|
| 42 |
+
"task_type": "CAUSAL_LM",
|
| 43 |
+
"trainable_token_indices": null,
|
| 44 |
+
"use_bdlora": null,
|
| 45 |
+
"use_dora": false,
|
| 46 |
+
"use_qalora": false,
|
| 47 |
+
"use_rslora": false
|
| 48 |
+
}
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-192/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:85ed8480f6ee209a38ee9cd571b15a1b6c5ce56607a32188e14d48492e058adf
|
| 3 |
+
size 547777976
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-192/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 -%}
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-192/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a86ff874a8c3cc41a595be2ed4adada5891f02ffa60010a45ced596f3483975a
|
| 3 |
+
size 1048106435
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-192/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3d69b2462378ed67f5f5555fb6b192965044d7652528913ba5ccc13c8e15172a
|
| 3 |
+
size 14645
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-192/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:076826708eb68e7e0324ae251ebe1ef8facf8800fbc47028be05da96491371fd
|
| 3 |
+
size 1465
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-192/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726
|
| 3 |
+
size 33384567
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-192/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": false,
|
| 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 |
+
}
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-192/tokens_state.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"total": 5807168, "trainable": 87734}
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-192/trainer_state.json
ADDED
|
@@ -0,0 +1,2722 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.75,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 192,
|
| 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.00390625,
|
| 14 |
+
"grad_norm": 1.000339388847351,
|
| 15 |
+
"learning_rate": 0.0,
|
| 16 |
+
"loss": 0.11221420764923096,
|
| 17 |
+
"memory/device_reserved (GiB)": 33.9,
|
| 18 |
+
"memory/max_active (GiB)": 32.79,
|
| 19 |
+
"memory/max_allocated (GiB)": 32.79,
|
| 20 |
+
"ppl": 1.11875,
|
| 21 |
+
"step": 1,
|
| 22 |
+
"tokens/total": 30176,
|
| 23 |
+
"tokens/train_per_sec_per_gpu": 27.52,
|
| 24 |
+
"tokens/trainable": 417
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"epoch": 0.0078125,
|
| 28 |
+
"grad_norm": 0.8961698412895203,
|
| 29 |
+
"learning_rate": 4.000000000000001e-06,
|
| 30 |
+
"loss": 0.11656901985406876,
|
| 31 |
+
"memory/device_reserved (GiB)": 34.68,
|
| 32 |
+
"memory/max_active (GiB)": 33.77,
|
| 33 |
+
"memory/max_allocated (GiB)": 33.77,
|
| 34 |
+
"ppl": 1.12364,
|
| 35 |
+
"step": 2,
|
| 36 |
+
"tokens/total": 60272,
|
| 37 |
+
"tokens/train_per_sec_per_gpu": 34.78,
|
| 38 |
+
"tokens/trainable": 873
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"epoch": 0.01171875,
|
| 42 |
+
"grad_norm": 2.5287365913391113,
|
| 43 |
+
"learning_rate": 8.000000000000001e-06,
|
| 44 |
+
"loss": 0.11233991384506226,
|
| 45 |
+
"memory/device_reserved (GiB)": 34.72,
|
| 46 |
+
"memory/max_active (GiB)": 33.83,
|
| 47 |
+
"memory/max_allocated (GiB)": 33.83,
|
| 48 |
+
"ppl": 1.11889,
|
| 49 |
+
"step": 3,
|
| 50 |
+
"tokens/total": 90512,
|
| 51 |
+
"tokens/train_per_sec_per_gpu": 35.02,
|
| 52 |
+
"tokens/trainable": 1353
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"epoch": 0.015625,
|
| 56 |
+
"grad_norm": 1.3438372611999512,
|
| 57 |
+
"learning_rate": 1.2e-05,
|
| 58 |
+
"loss": 0.10132055729627609,
|
| 59 |
+
"memory/device_reserved (GiB)": 34.73,
|
| 60 |
+
"memory/max_active (GiB)": 33.84,
|
| 61 |
+
"memory/max_allocated (GiB)": 33.84,
|
| 62 |
+
"ppl": 1.10663,
|
| 63 |
+
"step": 4,
|
| 64 |
+
"tokens/total": 120944,
|
| 65 |
+
"tokens/train_per_sec_per_gpu": 31.26,
|
| 66 |
+
"tokens/trainable": 1778
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"epoch": 0.01953125,
|
| 70 |
+
"grad_norm": 1.0121135711669922,
|
| 71 |
+
"learning_rate": 1.6000000000000003e-05,
|
| 72 |
+
"loss": 0.11346302926540375,
|
| 73 |
+
"memory/device_reserved (GiB)": 35.12,
|
| 74 |
+
"memory/max_active (GiB)": 33.91,
|
| 75 |
+
"memory/max_allocated (GiB)": 33.91,
|
| 76 |
+
"ppl": 1.12015,
|
| 77 |
+
"step": 5,
|
| 78 |
+
"tokens/total": 151440,
|
| 79 |
+
"tokens/train_per_sec_per_gpu": 36.72,
|
| 80 |
+
"tokens/trainable": 2261
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"epoch": 0.0234375,
|
| 84 |
+
"grad_norm": 3.9203455448150635,
|
| 85 |
+
"learning_rate": 2e-05,
|
| 86 |
+
"loss": 0.09780596196651459,
|
| 87 |
+
"memory/device_reserved (GiB)": 36.12,
|
| 88 |
+
"memory/max_active (GiB)": 33.94,
|
| 89 |
+
"memory/max_allocated (GiB)": 33.94,
|
| 90 |
+
"ppl": 1.10275,
|
| 91 |
+
"step": 6,
|
| 92 |
+
"tokens/total": 181984,
|
| 93 |
+
"tokens/train_per_sec_per_gpu": 32.9,
|
| 94 |
+
"tokens/trainable": 2705
|
| 95 |
+
},
|
| 96 |
+
{
|
| 97 |
+
"epoch": 0.02734375,
|
| 98 |
+
"grad_norm": 1.63088059425354,
|
| 99 |
+
"learning_rate": 2.4e-05,
|
| 100 |
+
"loss": 0.06366116553544998,
|
| 101 |
+
"memory/device_reserved (GiB)": 36.12,
|
| 102 |
+
"memory/max_active (GiB)": 33.87,
|
| 103 |
+
"memory/max_allocated (GiB)": 33.87,
|
| 104 |
+
"ppl": 1.06573,
|
| 105 |
+
"step": 7,
|
| 106 |
+
"tokens/total": 212336,
|
| 107 |
+
"tokens/train_per_sec_per_gpu": 33.89,
|
| 108 |
+
"tokens/trainable": 3136
|
| 109 |
+
},
|
| 110 |
+
{
|
| 111 |
+
"epoch": 0.03125,
|
| 112 |
+
"grad_norm": 1.9995646476745605,
|
| 113 |
+
"learning_rate": 2.8000000000000003e-05,
|
| 114 |
+
"loss": 0.0759042352437973,
|
| 115 |
+
"memory/device_reserved (GiB)": 36.12,
|
| 116 |
+
"memory/max_active (GiB)": 33.9,
|
| 117 |
+
"memory/max_allocated (GiB)": 33.9,
|
| 118 |
+
"ppl": 1.07886,
|
| 119 |
+
"step": 8,
|
| 120 |
+
"tokens/total": 242592,
|
| 121 |
+
"tokens/train_per_sec_per_gpu": 34.22,
|
| 122 |
+
"tokens/trainable": 3579
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"epoch": 0.03515625,
|
| 126 |
+
"grad_norm": 1.0774554014205933,
|
| 127 |
+
"learning_rate": 3.2000000000000005e-05,
|
| 128 |
+
"loss": 0.04145222157239914,
|
| 129 |
+
"memory/device_reserved (GiB)": 36.12,
|
| 130 |
+
"memory/max_active (GiB)": 33.77,
|
| 131 |
+
"memory/max_allocated (GiB)": 33.77,
|
| 132 |
+
"ppl": 1.04232,
|
| 133 |
+
"step": 9,
|
| 134 |
+
"tokens/total": 272784,
|
| 135 |
+
"tokens/train_per_sec_per_gpu": 29.14,
|
| 136 |
+
"tokens/trainable": 4000
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 0.0390625,
|
| 140 |
+
"grad_norm": 1.9648898839950562,
|
| 141 |
+
"learning_rate": 3.6e-05,
|
| 142 |
+
"loss": 0.032875221222639084,
|
| 143 |
+
"memory/device_reserved (GiB)": 37.81,
|
| 144 |
+
"memory/max_active (GiB)": 33.89,
|
| 145 |
+
"memory/max_allocated (GiB)": 33.89,
|
| 146 |
+
"ppl": 1.03342,
|
| 147 |
+
"step": 10,
|
| 148 |
+
"tokens/total": 303184,
|
| 149 |
+
"tokens/train_per_sec_per_gpu": 37.67,
|
| 150 |
+
"tokens/trainable": 4474
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"epoch": 0.04296875,
|
| 154 |
+
"grad_norm": 0.5937227606773376,
|
| 155 |
+
"learning_rate": 4e-05,
|
| 156 |
+
"loss": 0.023198626935482025,
|
| 157 |
+
"memory/device_reserved (GiB)": 37.81,
|
| 158 |
+
"memory/max_active (GiB)": 33.73,
|
| 159 |
+
"memory/max_allocated (GiB)": 33.73,
|
| 160 |
+
"ppl": 1.02347,
|
| 161 |
+
"step": 11,
|
| 162 |
+
"tokens/total": 333296,
|
| 163 |
+
"tokens/train_per_sec_per_gpu": 33.15,
|
| 164 |
+
"tokens/trainable": 4942
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"epoch": 0.046875,
|
| 168 |
+
"grad_norm": 5.294079303741455,
|
| 169 |
+
"learning_rate": 4.4000000000000006e-05,
|
| 170 |
+
"loss": 0.0510174036026001,
|
| 171 |
+
"memory/device_reserved (GiB)": 37.81,
|
| 172 |
+
"memory/max_active (GiB)": 33.96,
|
| 173 |
+
"memory/max_allocated (GiB)": 33.96,
|
| 174 |
+
"ppl": 1.05234,
|
| 175 |
+
"step": 12,
|
| 176 |
+
"tokens/total": 363840,
|
| 177 |
+
"tokens/train_per_sec_per_gpu": 34.23,
|
| 178 |
+
"tokens/trainable": 5424
|
| 179 |
+
},
|
| 180 |
+
{
|
| 181 |
+
"epoch": 0.05078125,
|
| 182 |
+
"grad_norm": 2.7166640758514404,
|
| 183 |
+
"learning_rate": 4.8e-05,
|
| 184 |
+
"loss": 0.06956956535577774,
|
| 185 |
+
"memory/device_reserved (GiB)": 37.81,
|
| 186 |
+
"memory/max_active (GiB)": 33.9,
|
| 187 |
+
"memory/max_allocated (GiB)": 33.9,
|
| 188 |
+
"ppl": 1.07205,
|
| 189 |
+
"step": 13,
|
| 190 |
+
"tokens/total": 394112,
|
| 191 |
+
"tokens/train_per_sec_per_gpu": 35.23,
|
| 192 |
+
"tokens/trainable": 5855
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"epoch": 0.0546875,
|
| 196 |
+
"grad_norm": 2.1496169567108154,
|
| 197 |
+
"learning_rate": 5.2000000000000004e-05,
|
| 198 |
+
"loss": 0.06250961124897003,
|
| 199 |
+
"memory/device_reserved (GiB)": 37.81,
|
| 200 |
+
"memory/max_active (GiB)": 33.91,
|
| 201 |
+
"memory/max_allocated (GiB)": 33.91,
|
| 202 |
+
"ppl": 1.0645,
|
| 203 |
+
"step": 14,
|
| 204 |
+
"tokens/total": 424656,
|
| 205 |
+
"tokens/train_per_sec_per_gpu": 34.78,
|
| 206 |
+
"tokens/trainable": 6344
|
| 207 |
+
},
|
| 208 |
+
{
|
| 209 |
+
"epoch": 0.05859375,
|
| 210 |
+
"grad_norm": 3.515660047531128,
|
| 211 |
+
"learning_rate": 5.6000000000000006e-05,
|
| 212 |
+
"loss": 0.09882807731628418,
|
| 213 |
+
"memory/device_reserved (GiB)": 37.81,
|
| 214 |
+
"memory/max_active (GiB)": 33.96,
|
| 215 |
+
"memory/max_allocated (GiB)": 33.96,
|
| 216 |
+
"ppl": 1.10388,
|
| 217 |
+
"step": 15,
|
| 218 |
+
"tokens/total": 455152,
|
| 219 |
+
"tokens/train_per_sec_per_gpu": 36.15,
|
| 220 |
+
"tokens/trainable": 6825
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"epoch": 0.0625,
|
| 224 |
+
"grad_norm": 2.3756372928619385,
|
| 225 |
+
"learning_rate": 6e-05,
|
| 226 |
+
"loss": 0.0719379335641861,
|
| 227 |
+
"memory/device_reserved (GiB)": 37.81,
|
| 228 |
+
"memory/max_active (GiB)": 33.88,
|
| 229 |
+
"memory/max_allocated (GiB)": 33.88,
|
| 230 |
+
"ppl": 1.07459,
|
| 231 |
+
"step": 16,
|
| 232 |
+
"tokens/total": 485328,
|
| 233 |
+
"tokens/train_per_sec_per_gpu": 30.01,
|
| 234 |
+
"tokens/trainable": 7230
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"epoch": 0.06640625,
|
| 238 |
+
"grad_norm": 1.7220206260681152,
|
| 239 |
+
"learning_rate": 6.400000000000001e-05,
|
| 240 |
+
"loss": 0.016590356826782227,
|
| 241 |
+
"memory/device_reserved (GiB)": 37.81,
|
| 242 |
+
"memory/max_active (GiB)": 33.92,
|
| 243 |
+
"memory/max_allocated (GiB)": 33.92,
|
| 244 |
+
"ppl": 1.01673,
|
| 245 |
+
"step": 17,
|
| 246 |
+
"tokens/total": 515744,
|
| 247 |
+
"tokens/train_per_sec_per_gpu": 35.89,
|
| 248 |
+
"tokens/trainable": 7699
|
| 249 |
+
},
|
| 250 |
+
{
|
| 251 |
+
"epoch": 0.0703125,
|
| 252 |
+
"grad_norm": 1.5261812210083008,
|
| 253 |
+
"learning_rate": 6.800000000000001e-05,
|
| 254 |
+
"loss": 0.030052796006202698,
|
| 255 |
+
"memory/device_reserved (GiB)": 37.81,
|
| 256 |
+
"memory/max_active (GiB)": 33.77,
|
| 257 |
+
"memory/max_allocated (GiB)": 33.77,
|
| 258 |
+
"ppl": 1.03051,
|
| 259 |
+
"step": 18,
|
| 260 |
+
"tokens/total": 546144,
|
| 261 |
+
"tokens/train_per_sec_per_gpu": 33.85,
|
| 262 |
+
"tokens/trainable": 8184
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"epoch": 0.07421875,
|
| 266 |
+
"grad_norm": 0.6416668891906738,
|
| 267 |
+
"learning_rate": 7.2e-05,
|
| 268 |
+
"loss": 0.013492297381162643,
|
| 269 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 270 |
+
"memory/max_active (GiB)": 33.84,
|
| 271 |
+
"memory/max_allocated (GiB)": 33.84,
|
| 272 |
+
"ppl": 1.01358,
|
| 273 |
+
"step": 19,
|
| 274 |
+
"tokens/total": 576560,
|
| 275 |
+
"tokens/train_per_sec_per_gpu": 34.91,
|
| 276 |
+
"tokens/trainable": 8675
|
| 277 |
+
},
|
| 278 |
+
{
|
| 279 |
+
"epoch": 0.078125,
|
| 280 |
+
"grad_norm": 1.2296113967895508,
|
| 281 |
+
"learning_rate": 7.6e-05,
|
| 282 |
+
"loss": 0.038845278322696686,
|
| 283 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 284 |
+
"memory/max_active (GiB)": 33.95,
|
| 285 |
+
"memory/max_allocated (GiB)": 33.95,
|
| 286 |
+
"ppl": 1.03961,
|
| 287 |
+
"step": 20,
|
| 288 |
+
"tokens/total": 607056,
|
| 289 |
+
"tokens/train_per_sec_per_gpu": 39.72,
|
| 290 |
+
"tokens/trainable": 9189
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"epoch": 0.08203125,
|
| 294 |
+
"grad_norm": 0.8426793813705444,
|
| 295 |
+
"learning_rate": 8e-05,
|
| 296 |
+
"loss": 0.01696154847741127,
|
| 297 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 298 |
+
"memory/max_active (GiB)": 33.77,
|
| 299 |
+
"memory/max_allocated (GiB)": 33.77,
|
| 300 |
+
"ppl": 1.01711,
|
| 301 |
+
"step": 21,
|
| 302 |
+
"tokens/total": 637488,
|
| 303 |
+
"tokens/train_per_sec_per_gpu": 31.68,
|
| 304 |
+
"tokens/trainable": 9614
|
| 305 |
+
},
|
| 306 |
+
{
|
| 307 |
+
"epoch": 0.0859375,
|
| 308 |
+
"grad_norm": 10.310348510742188,
|
| 309 |
+
"learning_rate": 8.4e-05,
|
| 310 |
+
"loss": 0.06855659186840057,
|
| 311 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 312 |
+
"memory/max_active (GiB)": 33.75,
|
| 313 |
+
"memory/max_allocated (GiB)": 33.75,
|
| 314 |
+
"ppl": 1.07096,
|
| 315 |
+
"step": 22,
|
| 316 |
+
"tokens/total": 667632,
|
| 317 |
+
"tokens/train_per_sec_per_gpu": 36.26,
|
| 318 |
+
"tokens/trainable": 10086
|
| 319 |
+
},
|
| 320 |
+
{
|
| 321 |
+
"epoch": 0.08984375,
|
| 322 |
+
"grad_norm": 1.412604808807373,
|
| 323 |
+
"learning_rate": 8.800000000000001e-05,
|
| 324 |
+
"loss": 0.04118483513593674,
|
| 325 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 326 |
+
"memory/max_active (GiB)": 33.84,
|
| 327 |
+
"memory/max_allocated (GiB)": 33.84,
|
| 328 |
+
"ppl": 1.04204,
|
| 329 |
+
"step": 23,
|
| 330 |
+
"tokens/total": 697872,
|
| 331 |
+
"tokens/train_per_sec_per_gpu": 32.96,
|
| 332 |
+
"tokens/trainable": 10535
|
| 333 |
+
},
|
| 334 |
+
{
|
| 335 |
+
"epoch": 0.09375,
|
| 336 |
+
"grad_norm": 1.4078032970428467,
|
| 337 |
+
"learning_rate": 9.200000000000001e-05,
|
| 338 |
+
"loss": 0.025748739019036293,
|
| 339 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 340 |
+
"memory/max_active (GiB)": 33.92,
|
| 341 |
+
"memory/max_allocated (GiB)": 33.92,
|
| 342 |
+
"ppl": 1.02608,
|
| 343 |
+
"step": 24,
|
| 344 |
+
"tokens/total": 728432,
|
| 345 |
+
"tokens/train_per_sec_per_gpu": 31.6,
|
| 346 |
+
"tokens/trainable": 10993
|
| 347 |
+
},
|
| 348 |
+
{
|
| 349 |
+
"epoch": 0.09765625,
|
| 350 |
+
"grad_norm": 1.0874605178833008,
|
| 351 |
+
"learning_rate": 9.6e-05,
|
| 352 |
+
"loss": 0.03088424727320671,
|
| 353 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 354 |
+
"memory/max_active (GiB)": 33.87,
|
| 355 |
+
"memory/max_allocated (GiB)": 33.87,
|
| 356 |
+
"ppl": 1.03137,
|
| 357 |
+
"step": 25,
|
| 358 |
+
"tokens/total": 756656,
|
| 359 |
+
"tokens/train_per_sec_per_gpu": 40.03,
|
| 360 |
+
"tokens/trainable": 11417
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"epoch": 0.1015625,
|
| 364 |
+
"grad_norm": 1.2574082612991333,
|
| 365 |
+
"learning_rate": 0.0001,
|
| 366 |
+
"loss": 0.03432866185903549,
|
| 367 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 368 |
+
"memory/max_active (GiB)": 33.92,
|
| 369 |
+
"memory/max_allocated (GiB)": 33.92,
|
| 370 |
+
"ppl": 1.03492,
|
| 371 |
+
"step": 26,
|
| 372 |
+
"tokens/total": 787120,
|
| 373 |
+
"tokens/train_per_sec_per_gpu": 34.36,
|
| 374 |
+
"tokens/trainable": 11874
|
| 375 |
+
},
|
| 376 |
+
{
|
| 377 |
+
"epoch": 0.10546875,
|
| 378 |
+
"grad_norm": 0.30990996956825256,
|
| 379 |
+
"learning_rate": 9.99990636831587e-05,
|
| 380 |
+
"loss": 0.010750269517302513,
|
| 381 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 382 |
+
"memory/max_active (GiB)": 33.94,
|
| 383 |
+
"memory/max_allocated (GiB)": 33.94,
|
| 384 |
+
"ppl": 1.01081,
|
| 385 |
+
"step": 27,
|
| 386 |
+
"tokens/total": 817504,
|
| 387 |
+
"tokens/train_per_sec_per_gpu": 31.64,
|
| 388 |
+
"tokens/trainable": 12316
|
| 389 |
+
},
|
| 390 |
+
{
|
| 391 |
+
"epoch": 0.109375,
|
| 392 |
+
"grad_norm": 0.5124737620353699,
|
| 393 |
+
"learning_rate": 9.999625477159879e-05,
|
| 394 |
+
"loss": 0.01967313140630722,
|
| 395 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 396 |
+
"memory/max_active (GiB)": 33.94,
|
| 397 |
+
"memory/max_allocated (GiB)": 33.94,
|
| 398 |
+
"ppl": 1.01987,
|
| 399 |
+
"step": 28,
|
| 400 |
+
"tokens/total": 848128,
|
| 401 |
+
"tokens/train_per_sec_per_gpu": 37.86,
|
| 402 |
+
"tokens/trainable": 12800
|
| 403 |
+
},
|
| 404 |
+
{
|
| 405 |
+
"epoch": 0.11328125,
|
| 406 |
+
"grad_norm": 1.2975701093673706,
|
| 407 |
+
"learning_rate": 9.999157338221051e-05,
|
| 408 |
+
"loss": 0.0434565395116806,
|
| 409 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 410 |
+
"memory/max_active (GiB)": 33.87,
|
| 411 |
+
"memory/max_allocated (GiB)": 33.87,
|
| 412 |
+
"ppl": 1.04441,
|
| 413 |
+
"step": 29,
|
| 414 |
+
"tokens/total": 878448,
|
| 415 |
+
"tokens/train_per_sec_per_gpu": 35.48,
|
| 416 |
+
"tokens/trainable": 13270
|
| 417 |
+
},
|
| 418 |
+
{
|
| 419 |
+
"epoch": 0.1171875,
|
| 420 |
+
"grad_norm": 0.4117317795753479,
|
| 421 |
+
"learning_rate": 9.998501970980562e-05,
|
| 422 |
+
"loss": 0.013137167319655418,
|
| 423 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 424 |
+
"memory/max_active (GiB)": 33.94,
|
| 425 |
+
"memory/max_allocated (GiB)": 33.94,
|
| 426 |
+
"ppl": 1.01322,
|
| 427 |
+
"step": 30,
|
| 428 |
+
"tokens/total": 909008,
|
| 429 |
+
"tokens/train_per_sec_per_gpu": 35.39,
|
| 430 |
+
"tokens/trainable": 13752
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"epoch": 0.12109375,
|
| 434 |
+
"grad_norm": 0.5875954627990723,
|
| 435 |
+
"learning_rate": 9.997659402710915e-05,
|
| 436 |
+
"loss": 0.01785588450729847,
|
| 437 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 438 |
+
"memory/max_active (GiB)": 33.84,
|
| 439 |
+
"memory/max_allocated (GiB)": 33.84,
|
| 440 |
+
"ppl": 1.01802,
|
| 441 |
+
"step": 31,
|
| 442 |
+
"tokens/total": 939312,
|
| 443 |
+
"tokens/train_per_sec_per_gpu": 34.07,
|
| 444 |
+
"tokens/trainable": 14218
|
| 445 |
+
},
|
| 446 |
+
{
|
| 447 |
+
"epoch": 0.125,
|
| 448 |
+
"grad_norm": 0.7800514698028564,
|
| 449 |
+
"learning_rate": 9.996629668474818e-05,
|
| 450 |
+
"loss": 0.011262159794569016,
|
| 451 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 452 |
+
"memory/max_active (GiB)": 33.81,
|
| 453 |
+
"memory/max_allocated (GiB)": 33.81,
|
| 454 |
+
"ppl": 1.01133,
|
| 455 |
+
"step": 32,
|
| 456 |
+
"tokens/total": 969264,
|
| 457 |
+
"tokens/train_per_sec_per_gpu": 34.49,
|
| 458 |
+
"tokens/trainable": 14655
|
| 459 |
+
},
|
| 460 |
+
{
|
| 461 |
+
"epoch": 0.12890625,
|
| 462 |
+
"grad_norm": 1.0509369373321533,
|
| 463 |
+
"learning_rate": 9.995412811123711e-05,
|
| 464 |
+
"loss": 0.04942459613084793,
|
| 465 |
+
"memory/device_reserved (GiB)": 37.82,
|
| 466 |
+
"memory/max_active (GiB)": 33.95,
|
| 467 |
+
"memory/max_allocated (GiB)": 33.95,
|
| 468 |
+
"ppl": 1.05067,
|
| 469 |
+
"step": 33,
|
| 470 |
+
"tokens/total": 999792,
|
| 471 |
+
"tokens/train_per_sec_per_gpu": 33.35,
|
| 472 |
+
"tokens/trainable": 15087
|
| 473 |
+
},
|
| 474 |
+
{
|
| 475 |
+
"epoch": 0.1328125,
|
| 476 |
+
"grad_norm": 0.6234491467475891,
|
| 477 |
+
"learning_rate": 9.994008881295999e-05,
|
| 478 |
+
"loss": 0.028202136978507042,
|
| 479 |
+
"memory/device_reserved (GiB)": 35.48,
|
| 480 |
+
"memory/max_active (GiB)": 33.77,
|
| 481 |
+
"memory/max_allocated (GiB)": 33.77,
|
| 482 |
+
"ppl": 1.0286,
|
| 483 |
+
"step": 34,
|
| 484 |
+
"tokens/total": 1029840,
|
| 485 |
+
"tokens/train_per_sec_per_gpu": 33.92,
|
| 486 |
+
"tokens/trainable": 15548
|
| 487 |
+
},
|
| 488 |
+
{
|
| 489 |
+
"epoch": 0.13671875,
|
| 490 |
+
"grad_norm": 1.6843816041946411,
|
| 491 |
+
"learning_rate": 9.992417937414932e-05,
|
| 492 |
+
"loss": 0.02795713022351265,
|
| 493 |
+
"memory/device_reserved (GiB)": 35.48,
|
| 494 |
+
"memory/max_active (GiB)": 33.9,
|
| 495 |
+
"memory/max_allocated (GiB)": 33.9,
|
| 496 |
+
"ppl": 1.02835,
|
| 497 |
+
"step": 35,
|
| 498 |
+
"tokens/total": 1060416,
|
| 499 |
+
"tokens/train_per_sec_per_gpu": 33.77,
|
| 500 |
+
"tokens/trainable": 16037
|
| 501 |
+
},
|
| 502 |
+
{
|
| 503 |
+
"epoch": 0.140625,
|
| 504 |
+
"grad_norm": 0.29489848017692566,
|
| 505 |
+
"learning_rate": 9.99064004568618e-05,
|
| 506 |
+
"loss": 0.010517537593841553,
|
| 507 |
+
"memory/device_reserved (GiB)": 35.48,
|
| 508 |
+
"memory/max_active (GiB)": 33.72,
|
| 509 |
+
"memory/max_allocated (GiB)": 33.72,
|
| 510 |
+
"ppl": 1.01057,
|
| 511 |
+
"step": 36,
|
| 512 |
+
"tokens/total": 1090464,
|
| 513 |
+
"tokens/train_per_sec_per_gpu": 31.14,
|
| 514 |
+
"tokens/trainable": 16475
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"epoch": 0.14453125,
|
| 518 |
+
"grad_norm": 0.7335977554321289,
|
| 519 |
+
"learning_rate": 9.988675280095074e-05,
|
| 520 |
+
"loss": 0.018923252820968628,
|
| 521 |
+
"memory/device_reserved (GiB)": 35.86,
|
| 522 |
+
"memory/max_active (GiB)": 33.93,
|
| 523 |
+
"memory/max_allocated (GiB)": 33.93,
|
| 524 |
+
"ppl": 1.0191,
|
| 525 |
+
"step": 37,
|
| 526 |
+
"tokens/total": 1120944,
|
| 527 |
+
"tokens/train_per_sec_per_gpu": 34.38,
|
| 528 |
+
"tokens/trainable": 16919
|
| 529 |
+
},
|
| 530 |
+
{
|
| 531 |
+
"epoch": 0.1484375,
|
| 532 |
+
"grad_norm": 0.5587971210479736,
|
| 533 |
+
"learning_rate": 9.986523722403528e-05,
|
| 534 |
+
"loss": 0.020957889035344124,
|
| 535 |
+
"memory/device_reserved (GiB)": 35.86,
|
| 536 |
+
"memory/max_active (GiB)": 33.87,
|
| 537 |
+
"memory/max_allocated (GiB)": 33.87,
|
| 538 |
+
"ppl": 1.02118,
|
| 539 |
+
"step": 38,
|
| 540 |
+
"tokens/total": 1151360,
|
| 541 |
+
"tokens/train_per_sec_per_gpu": 28.97,
|
| 542 |
+
"tokens/trainable": 17333
|
| 543 |
+
},
|
| 544 |
+
{
|
| 545 |
+
"epoch": 0.15234375,
|
| 546 |
+
"grad_norm": 1.7112773656845093,
|
| 547 |
+
"learning_rate": 9.984185462146642e-05,
|
| 548 |
+
"loss": 0.045844268053770065,
|
| 549 |
+
"memory/device_reserved (GiB)": 35.86,
|
| 550 |
+
"memory/max_active (GiB)": 33.9,
|
| 551 |
+
"memory/max_allocated (GiB)": 33.9,
|
| 552 |
+
"ppl": 1.04691,
|
| 553 |
+
"step": 39,
|
| 554 |
+
"tokens/total": 1181728,
|
| 555 |
+
"tokens/train_per_sec_per_gpu": 36.19,
|
| 556 |
+
"tokens/trainable": 17806
|
| 557 |
+
},
|
| 558 |
+
{
|
| 559 |
+
"epoch": 0.15625,
|
| 560 |
+
"grad_norm": 1.2373344898223877,
|
| 561 |
+
"learning_rate": 9.98166059662897e-05,
|
| 562 |
+
"loss": 0.04578991234302521,
|
| 563 |
+
"memory/device_reserved (GiB)": 35.86,
|
| 564 |
+
"memory/max_active (GiB)": 33.83,
|
| 565 |
+
"memory/max_allocated (GiB)": 33.83,
|
| 566 |
+
"ppl": 1.04685,
|
| 567 |
+
"step": 40,
|
| 568 |
+
"tokens/total": 1212064,
|
| 569 |
+
"tokens/train_per_sec_per_gpu": 35.65,
|
| 570 |
+
"tokens/trainable": 18290
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"epoch": 0.16015625,
|
| 574 |
+
"grad_norm": 0.8950033187866211,
|
| 575 |
+
"learning_rate": 9.978949230920472e-05,
|
| 576 |
+
"loss": 0.02866373583674431,
|
| 577 |
+
"memory/device_reserved (GiB)": 35.88,
|
| 578 |
+
"memory/max_active (GiB)": 33.97,
|
| 579 |
+
"memory/max_allocated (GiB)": 33.97,
|
| 580 |
+
"ppl": 1.02908,
|
| 581 |
+
"step": 41,
|
| 582 |
+
"tokens/total": 1242592,
|
| 583 |
+
"tokens/train_per_sec_per_gpu": 32.05,
|
| 584 |
+
"tokens/trainable": 18747
|
| 585 |
+
},
|
| 586 |
+
{
|
| 587 |
+
"epoch": 0.1640625,
|
| 588 |
+
"grad_norm": 1.9967094659805298,
|
| 589 |
+
"learning_rate": 9.976051477852141e-05,
|
| 590 |
+
"loss": 0.02229372225701809,
|
| 591 |
+
"memory/device_reserved (GiB)": 35.88,
|
| 592 |
+
"memory/max_active (GiB)": 33.81,
|
| 593 |
+
"memory/max_allocated (GiB)": 33.81,
|
| 594 |
+
"ppl": 1.02254,
|
| 595 |
+
"step": 42,
|
| 596 |
+
"tokens/total": 1272800,
|
| 597 |
+
"tokens/train_per_sec_per_gpu": 31.91,
|
| 598 |
+
"tokens/trainable": 19172
|
| 599 |
+
},
|
| 600 |
+
{
|
| 601 |
+
"epoch": 0.16796875,
|
| 602 |
+
"grad_norm": 0.1990034282207489,
|
| 603 |
+
"learning_rate": 9.972967458011312e-05,
|
| 604 |
+
"loss": 0.0059759169816970825,
|
| 605 |
+
"memory/device_reserved (GiB)": 36.03,
|
| 606 |
+
"memory/max_active (GiB)": 34.04,
|
| 607 |
+
"memory/max_allocated (GiB)": 34.04,
|
| 608 |
+
"ppl": 1.00599,
|
| 609 |
+
"step": 43,
|
| 610 |
+
"tokens/total": 1303600,
|
| 611 |
+
"tokens/train_per_sec_per_gpu": 31.32,
|
| 612 |
+
"tokens/trainable": 19622
|
| 613 |
+
},
|
| 614 |
+
{
|
| 615 |
+
"epoch": 0.171875,
|
| 616 |
+
"grad_norm": 0.47151026129722595,
|
| 617 |
+
"learning_rate": 9.96969729973664e-05,
|
| 618 |
+
"loss": 0.011378830298781395,
|
| 619 |
+
"memory/device_reserved (GiB)": 36.03,
|
| 620 |
+
"memory/max_active (GiB)": 33.81,
|
| 621 |
+
"memory/max_allocated (GiB)": 33.81,
|
| 622 |
+
"ppl": 1.01144,
|
| 623 |
+
"step": 44,
|
| 624 |
+
"tokens/total": 1333936,
|
| 625 |
+
"tokens/train_per_sec_per_gpu": 33.41,
|
| 626 |
+
"tokens/trainable": 20073
|
| 627 |
+
},
|
| 628 |
+
{
|
| 629 |
+
"epoch": 0.17578125,
|
| 630 |
+
"grad_norm": 0.5381685495376587,
|
| 631 |
+
"learning_rate": 9.966241139112754e-05,
|
| 632 |
+
"loss": 0.02141587622463703,
|
| 633 |
+
"memory/device_reserved (GiB)": 36.03,
|
| 634 |
+
"memory/max_active (GiB)": 33.9,
|
| 635 |
+
"memory/max_allocated (GiB)": 33.9,
|
| 636 |
+
"ppl": 1.02165,
|
| 637 |
+
"step": 45,
|
| 638 |
+
"tokens/total": 1364288,
|
| 639 |
+
"tokens/train_per_sec_per_gpu": 31.57,
|
| 640 |
+
"tokens/trainable": 20497
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"epoch": 0.1796875,
|
| 644 |
+
"grad_norm": 1.0174895524978638,
|
| 645 |
+
"learning_rate": 9.96259911996461e-05,
|
| 646 |
+
"loss": 0.02236388623714447,
|
| 647 |
+
"memory/device_reserved (GiB)": 36.03,
|
| 648 |
+
"memory/max_active (GiB)": 33.82,
|
| 649 |
+
"memory/max_allocated (GiB)": 33.82,
|
| 650 |
+
"ppl": 1.02262,
|
| 651 |
+
"step": 46,
|
| 652 |
+
"tokens/total": 1394368,
|
| 653 |
+
"tokens/train_per_sec_per_gpu": 34.16,
|
| 654 |
+
"tokens/trainable": 20940
|
| 655 |
+
},
|
| 656 |
+
{
|
| 657 |
+
"epoch": 0.18359375,
|
| 658 |
+
"grad_norm": 0.5081813931465149,
|
| 659 |
+
"learning_rate": 9.958771393851491e-05,
|
| 660 |
+
"loss": 0.010915009304881096,
|
| 661 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 662 |
+
"memory/max_active (GiB)": 33.98,
|
| 663 |
+
"memory/max_allocated (GiB)": 33.98,
|
| 664 |
+
"ppl": 1.01097,
|
| 665 |
+
"step": 47,
|
| 666 |
+
"tokens/total": 1425024,
|
| 667 |
+
"tokens/train_per_sec_per_gpu": 35.04,
|
| 668 |
+
"tokens/trainable": 21405
|
| 669 |
+
},
|
| 670 |
+
{
|
| 671 |
+
"epoch": 0.1875,
|
| 672 |
+
"grad_norm": 1.4684470891952515,
|
| 673 |
+
"learning_rate": 9.954758120060702e-05,
|
| 674 |
+
"loss": 0.009690589271485806,
|
| 675 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 676 |
+
"memory/max_active (GiB)": 33.86,
|
| 677 |
+
"memory/max_allocated (GiB)": 33.86,
|
| 678 |
+
"ppl": 1.00974,
|
| 679 |
+
"step": 48,
|
| 680 |
+
"tokens/total": 1455392,
|
| 681 |
+
"tokens/train_per_sec_per_gpu": 35.13,
|
| 682 |
+
"tokens/trainable": 21828
|
| 683 |
+
},
|
| 684 |
+
{
|
| 685 |
+
"epoch": 0.19140625,
|
| 686 |
+
"grad_norm": 0.49191179871559143,
|
| 687 |
+
"learning_rate": 9.950559465600948e-05,
|
| 688 |
+
"loss": 0.010902130044996738,
|
| 689 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 690 |
+
"memory/max_active (GiB)": 33.88,
|
| 691 |
+
"memory/max_allocated (GiB)": 33.88,
|
| 692 |
+
"ppl": 1.01096,
|
| 693 |
+
"step": 49,
|
| 694 |
+
"tokens/total": 1485616,
|
| 695 |
+
"tokens/train_per_sec_per_gpu": 29.55,
|
| 696 |
+
"tokens/trainable": 22241
|
| 697 |
+
},
|
| 698 |
+
{
|
| 699 |
+
"epoch": 0.1953125,
|
| 700 |
+
"grad_norm": 0.44692206382751465,
|
| 701 |
+
"learning_rate": 9.946175605195379e-05,
|
| 702 |
+
"loss": 0.006928037852048874,
|
| 703 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 704 |
+
"memory/max_active (GiB)": 33.92,
|
| 705 |
+
"memory/max_allocated (GiB)": 33.92,
|
| 706 |
+
"ppl": 1.00695,
|
| 707 |
+
"step": 50,
|
| 708 |
+
"tokens/total": 1515984,
|
| 709 |
+
"tokens/train_per_sec_per_gpu": 36.48,
|
| 710 |
+
"tokens/trainable": 22688
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"epoch": 0.19921875,
|
| 714 |
+
"grad_norm": 0.37972721457481384,
|
| 715 |
+
"learning_rate": 9.941606721274322e-05,
|
| 716 |
+
"loss": 0.00806603953242302,
|
| 717 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 718 |
+
"memory/max_active (GiB)": 33.89,
|
| 719 |
+
"memory/max_allocated (GiB)": 33.89,
|
| 720 |
+
"ppl": 1.0081,
|
| 721 |
+
"step": 51,
|
| 722 |
+
"tokens/total": 1546224,
|
| 723 |
+
"tokens/train_per_sec_per_gpu": 32.12,
|
| 724 |
+
"tokens/trainable": 23136
|
| 725 |
+
},
|
| 726 |
+
{
|
| 727 |
+
"epoch": 0.203125,
|
| 728 |
+
"grad_norm": 1.0114665031433105,
|
| 729 |
+
"learning_rate": 9.936853003967685e-05,
|
| 730 |
+
"loss": 0.013657575473189354,
|
| 731 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 732 |
+
"memory/max_active (GiB)": 33.88,
|
| 733 |
+
"memory/max_allocated (GiB)": 33.88,
|
| 734 |
+
"ppl": 1.01375,
|
| 735 |
+
"step": 52,
|
| 736 |
+
"tokens/total": 1576528,
|
| 737 |
+
"tokens/train_per_sec_per_gpu": 36.95,
|
| 738 |
+
"tokens/trainable": 23631
|
| 739 |
+
},
|
| 740 |
+
{
|
| 741 |
+
"epoch": 0.20703125,
|
| 742 |
+
"grad_norm": 0.6438844799995422,
|
| 743 |
+
"learning_rate": 9.93191465109705e-05,
|
| 744 |
+
"loss": 0.05178550258278847,
|
| 745 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 746 |
+
"memory/max_active (GiB)": 33.83,
|
| 747 |
+
"memory/max_allocated (GiB)": 33.83,
|
| 748 |
+
"ppl": 1.05315,
|
| 749 |
+
"step": 53,
|
| 750 |
+
"tokens/total": 1606768,
|
| 751 |
+
"tokens/train_per_sec_per_gpu": 34.15,
|
| 752 |
+
"tokens/trainable": 24096
|
| 753 |
+
},
|
| 754 |
+
{
|
| 755 |
+
"epoch": 0.2109375,
|
| 756 |
+
"grad_norm": 3.0008814334869385,
|
| 757 |
+
"learning_rate": 9.926791868167438e-05,
|
| 758 |
+
"loss": 0.010915370658040047,
|
| 759 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 760 |
+
"memory/max_active (GiB)": 33.66,
|
| 761 |
+
"memory/max_allocated (GiB)": 33.66,
|
| 762 |
+
"ppl": 1.01098,
|
| 763 |
+
"step": 54,
|
| 764 |
+
"tokens/total": 1636640,
|
| 765 |
+
"tokens/train_per_sec_per_gpu": 37.95,
|
| 766 |
+
"tokens/trainable": 24569
|
| 767 |
+
},
|
| 768 |
+
{
|
| 769 |
+
"epoch": 0.21484375,
|
| 770 |
+
"grad_norm": 0.9377115368843079,
|
| 771 |
+
"learning_rate": 9.921484868358753e-05,
|
| 772 |
+
"loss": 0.019770421087741852,
|
| 773 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 774 |
+
"memory/max_active (GiB)": 33.88,
|
| 775 |
+
"memory/max_allocated (GiB)": 33.88,
|
| 776 |
+
"ppl": 1.01997,
|
| 777 |
+
"step": 55,
|
| 778 |
+
"tokens/total": 1667136,
|
| 779 |
+
"tokens/train_per_sec_per_gpu": 34.0,
|
| 780 |
+
"tokens/trainable": 25067
|
| 781 |
+
},
|
| 782 |
+
{
|
| 783 |
+
"epoch": 0.21875,
|
| 784 |
+
"grad_norm": 0.23384763300418854,
|
| 785 |
+
"learning_rate": 9.915993872516924e-05,
|
| 786 |
+
"loss": 0.004394679330289364,
|
| 787 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 788 |
+
"memory/max_active (GiB)": 33.85,
|
| 789 |
+
"memory/max_allocated (GiB)": 33.85,
|
| 790 |
+
"ppl": 1.0044,
|
| 791 |
+
"step": 56,
|
| 792 |
+
"tokens/total": 1697472,
|
| 793 |
+
"tokens/train_per_sec_per_gpu": 36.68,
|
| 794 |
+
"tokens/trainable": 25541
|
| 795 |
+
},
|
| 796 |
+
{
|
| 797 |
+
"epoch": 0.22265625,
|
| 798 |
+
"grad_norm": 0.7558876276016235,
|
| 799 |
+
"learning_rate": 9.9103191091447e-05,
|
| 800 |
+
"loss": 0.02614775486290455,
|
| 801 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 802 |
+
"memory/max_active (GiB)": 33.9,
|
| 803 |
+
"memory/max_allocated (GiB)": 33.9,
|
| 804 |
+
"ppl": 1.02649,
|
| 805 |
+
"step": 57,
|
| 806 |
+
"tokens/total": 1727680,
|
| 807 |
+
"tokens/train_per_sec_per_gpu": 33.29,
|
| 808 |
+
"tokens/trainable": 25965
|
| 809 |
+
},
|
| 810 |
+
{
|
| 811 |
+
"epoch": 0.2265625,
|
| 812 |
+
"grad_norm": 0.4615328311920166,
|
| 813 |
+
"learning_rate": 9.904460814392147e-05,
|
| 814 |
+
"loss": 0.01031234860420227,
|
| 815 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 816 |
+
"memory/max_active (GiB)": 33.87,
|
| 817 |
+
"memory/max_allocated (GiB)": 33.87,
|
| 818 |
+
"ppl": 1.01037,
|
| 819 |
+
"step": 58,
|
| 820 |
+
"tokens/total": 1758192,
|
| 821 |
+
"tokens/train_per_sec_per_gpu": 34.0,
|
| 822 |
+
"tokens/trainable": 26409
|
| 823 |
+
},
|
| 824 |
+
{
|
| 825 |
+
"epoch": 0.23046875,
|
| 826 |
+
"grad_norm": 0.40572404861450195,
|
| 827 |
+
"learning_rate": 9.898419232046825e-05,
|
| 828 |
+
"loss": 0.011052684858441353,
|
| 829 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 830 |
+
"memory/max_active (GiB)": 33.92,
|
| 831 |
+
"memory/max_allocated (GiB)": 33.92,
|
| 832 |
+
"ppl": 1.01111,
|
| 833 |
+
"step": 59,
|
| 834 |
+
"tokens/total": 1788816,
|
| 835 |
+
"tokens/train_per_sec_per_gpu": 34.17,
|
| 836 |
+
"tokens/trainable": 26883
|
| 837 |
+
},
|
| 838 |
+
{
|
| 839 |
+
"epoch": 0.234375,
|
| 840 |
+
"grad_norm": 0.7271711826324463,
|
| 841 |
+
"learning_rate": 9.892194613523633e-05,
|
| 842 |
+
"loss": 0.01451511587947607,
|
| 843 |
+
"memory/device_reserved (GiB)": 36.15,
|
| 844 |
+
"memory/max_active (GiB)": 33.86,
|
| 845 |
+
"memory/max_allocated (GiB)": 33.86,
|
| 846 |
+
"ppl": 1.01462,
|
| 847 |
+
"step": 60,
|
| 848 |
+
"tokens/total": 1819056,
|
| 849 |
+
"tokens/train_per_sec_per_gpu": 33.87,
|
| 850 |
+
"tokens/trainable": 27323
|
| 851 |
+
},
|
| 852 |
+
{
|
| 853 |
+
"epoch": 0.23828125,
|
| 854 |
+
"grad_norm": 0.14707089960575104,
|
| 855 |
+
"learning_rate": 9.885787217854357e-05,
|
| 856 |
+
"loss": 0.004126548767089844,
|
| 857 |
+
"memory/device_reserved (GiB)": 36.16,
|
| 858 |
+
"memory/max_active (GiB)": 33.92,
|
| 859 |
+
"memory/max_allocated (GiB)": 33.92,
|
| 860 |
+
"ppl": 1.00414,
|
| 861 |
+
"step": 61,
|
| 862 |
+
"tokens/total": 1849664,
|
| 863 |
+
"tokens/train_per_sec_per_gpu": 39.34,
|
| 864 |
+
"tokens/trainable": 27830
|
| 865 |
+
},
|
| 866 |
+
{
|
| 867 |
+
"epoch": 0.2421875,
|
| 868 |
+
"grad_norm": 0.4162050485610962,
|
| 869 |
+
"learning_rate": 9.879197311676887e-05,
|
| 870 |
+
"loss": 0.009982893243432045,
|
| 871 |
+
"memory/device_reserved (GiB)": 36.16,
|
| 872 |
+
"memory/max_active (GiB)": 34.02,
|
| 873 |
+
"memory/max_allocated (GiB)": 34.02,
|
| 874 |
+
"ppl": 1.01003,
|
| 875 |
+
"step": 62,
|
| 876 |
+
"tokens/total": 1880272,
|
| 877 |
+
"tokens/train_per_sec_per_gpu": 32.46,
|
| 878 |
+
"tokens/trainable": 28281
|
| 879 |
+
},
|
| 880 |
+
{
|
| 881 |
+
"epoch": 0.24609375,
|
| 882 |
+
"grad_norm": 0.563757598400116,
|
| 883 |
+
"learning_rate": 9.872425169224113e-05,
|
| 884 |
+
"loss": 0.01410748716443777,
|
| 885 |
+
"memory/device_reserved (GiB)": 36.16,
|
| 886 |
+
"memory/max_active (GiB)": 33.85,
|
| 887 |
+
"memory/max_allocated (GiB)": 33.85,
|
| 888 |
+
"ppl": 1.01421,
|
| 889 |
+
"step": 63,
|
| 890 |
+
"tokens/total": 1910752,
|
| 891 |
+
"tokens/train_per_sec_per_gpu": 32.39,
|
| 892 |
+
"tokens/trainable": 28742
|
| 893 |
+
},
|
| 894 |
+
{
|
| 895 |
+
"epoch": 0.25,
|
| 896 |
+
"grad_norm": 0.4908931255340576,
|
| 897 |
+
"learning_rate": 9.865471072312528e-05,
|
| 898 |
+
"loss": 0.011950287967920303,
|
| 899 |
+
"memory/device_reserved (GiB)": 36.16,
|
| 900 |
+
"memory/max_active (GiB)": 33.84,
|
| 901 |
+
"memory/max_allocated (GiB)": 33.84,
|
| 902 |
+
"ppl": 1.01202,
|
| 903 |
+
"step": 64,
|
| 904 |
+
"tokens/total": 1940848,
|
| 905 |
+
"tokens/train_per_sec_per_gpu": 33.76,
|
| 906 |
+
"tokens/trainable": 29183
|
| 907 |
+
},
|
| 908 |
+
{
|
| 909 |
+
"epoch": 0.25390625,
|
| 910 |
+
"grad_norm": 0.3164263963699341,
|
| 911 |
+
"learning_rate": 9.858335310330492e-05,
|
| 912 |
+
"loss": 0.006426030304282904,
|
| 913 |
+
"memory/device_reserved (GiB)": 36.16,
|
| 914 |
+
"memory/max_active (GiB)": 33.91,
|
| 915 |
+
"memory/max_allocated (GiB)": 33.91,
|
| 916 |
+
"ppl": 1.00645,
|
| 917 |
+
"step": 65,
|
| 918 |
+
"tokens/total": 1971344,
|
| 919 |
+
"tokens/train_per_sec_per_gpu": 31.69,
|
| 920 |
+
"tokens/trainable": 29648
|
| 921 |
+
},
|
| 922 |
+
{
|
| 923 |
+
"epoch": 0.2578125,
|
| 924 |
+
"grad_norm": 0.4743383824825287,
|
| 925 |
+
"learning_rate": 9.851018180226185e-05,
|
| 926 |
+
"loss": 0.00986128207296133,
|
| 927 |
+
"memory/device_reserved (GiB)": 35.06,
|
| 928 |
+
"memory/max_active (GiB)": 33.83,
|
| 929 |
+
"memory/max_allocated (GiB)": 33.83,
|
| 930 |
+
"ppl": 1.00991,
|
| 931 |
+
"step": 66,
|
| 932 |
+
"tokens/total": 2001712,
|
| 933 |
+
"tokens/train_per_sec_per_gpu": 33.65,
|
| 934 |
+
"tokens/trainable": 30075
|
| 935 |
+
},
|
| 936 |
+
{
|
| 937 |
+
"epoch": 0.26171875,
|
| 938 |
+
"grad_norm": 0.12894771993160248,
|
| 939 |
+
"learning_rate": 9.843519986495259e-05,
|
| 940 |
+
"loss": 0.002054001437500119,
|
| 941 |
+
"memory/device_reserved (GiB)": 35.64,
|
| 942 |
+
"memory/max_active (GiB)": 33.78,
|
| 943 |
+
"memory/max_allocated (GiB)": 33.78,
|
| 944 |
+
"ppl": 1.00206,
|
| 945 |
+
"step": 67,
|
| 946 |
+
"tokens/total": 2029936,
|
| 947 |
+
"tokens/train_per_sec_per_gpu": 37.69,
|
| 948 |
+
"tokens/trainable": 30546
|
| 949 |
+
},
|
| 950 |
+
{
|
| 951 |
+
"epoch": 0.265625,
|
| 952 |
+
"grad_norm": 0.5559160709381104,
|
| 953 |
+
"learning_rate": 9.835841041168162e-05,
|
| 954 |
+
"loss": 0.007931358180940151,
|
| 955 |
+
"memory/device_reserved (GiB)": 35.64,
|
| 956 |
+
"memory/max_active (GiB)": 33.86,
|
| 957 |
+
"memory/max_allocated (GiB)": 33.86,
|
| 958 |
+
"ppl": 1.00796,
|
| 959 |
+
"step": 68,
|
| 960 |
+
"tokens/total": 2060384,
|
| 961 |
+
"tokens/train_per_sec_per_gpu": 35.27,
|
| 962 |
+
"tokens/trainable": 31025
|
| 963 |
+
},
|
| 964 |
+
{
|
| 965 |
+
"epoch": 0.26953125,
|
| 966 |
+
"grad_norm": 1.4860860109329224,
|
| 967 |
+
"learning_rate": 9.82798166379715e-05,
|
| 968 |
+
"loss": 0.029434870928525925,
|
| 969 |
+
"memory/device_reserved (GiB)": 35.64,
|
| 970 |
+
"memory/max_active (GiB)": 33.85,
|
| 971 |
+
"memory/max_allocated (GiB)": 33.85,
|
| 972 |
+
"ppl": 1.02987,
|
| 973 |
+
"step": 69,
|
| 974 |
+
"tokens/total": 2090688,
|
| 975 |
+
"tokens/train_per_sec_per_gpu": 34.03,
|
| 976 |
+
"tokens/trainable": 31505
|
| 977 |
+
},
|
| 978 |
+
{
|
| 979 |
+
"epoch": 0.2734375,
|
| 980 |
+
"grad_norm": 0.2197936624288559,
|
| 981 |
+
"learning_rate": 9.819942181443002e-05,
|
| 982 |
+
"loss": 0.0028239269740879536,
|
| 983 |
+
"memory/device_reserved (GiB)": 35.64,
|
| 984 |
+
"memory/max_active (GiB)": 33.77,
|
| 985 |
+
"memory/max_allocated (GiB)": 33.77,
|
| 986 |
+
"ppl": 1.00283,
|
| 987 |
+
"step": 70,
|
| 988 |
+
"tokens/total": 2120848,
|
| 989 |
+
"tokens/train_per_sec_per_gpu": 32.39,
|
| 990 |
+
"tokens/trainable": 31956
|
| 991 |
+
},
|
| 992 |
+
{
|
| 993 |
+
"epoch": 0.27734375,
|
| 994 |
+
"grad_norm": 0.20881125330924988,
|
| 995 |
+
"learning_rate": 9.811722928661392e-05,
|
| 996 |
+
"loss": 0.001874964451417327,
|
| 997 |
+
"memory/device_reserved (GiB)": 35.64,
|
| 998 |
+
"memory/max_active (GiB)": 33.35,
|
| 999 |
+
"memory/max_allocated (GiB)": 33.35,
|
| 1000 |
+
"ppl": 1.00188,
|
| 1001 |
+
"step": 71,
|
| 1002 |
+
"tokens/total": 2149120,
|
| 1003 |
+
"tokens/train_per_sec_per_gpu": 33.46,
|
| 1004 |
+
"tokens/trainable": 32374
|
| 1005 |
+
},
|
| 1006 |
+
{
|
| 1007 |
+
"epoch": 0.28125,
|
| 1008 |
+
"grad_norm": 0.335940957069397,
|
| 1009 |
+
"learning_rate": 9.803324247488975e-05,
|
| 1010 |
+
"loss": 0.003750729141756892,
|
| 1011 |
+
"memory/device_reserved (GiB)": 35.64,
|
| 1012 |
+
"memory/max_active (GiB)": 33.81,
|
| 1013 |
+
"memory/max_allocated (GiB)": 33.81,
|
| 1014 |
+
"ppl": 1.00376,
|
| 1015 |
+
"step": 72,
|
| 1016 |
+
"tokens/total": 2179472,
|
| 1017 |
+
"tokens/train_per_sec_per_gpu": 34.67,
|
| 1018 |
+
"tokens/trainable": 32833
|
| 1019 |
+
},
|
| 1020 |
+
{
|
| 1021 |
+
"epoch": 0.28515625,
|
| 1022 |
+
"grad_norm": 0.6529806852340698,
|
| 1023 |
+
"learning_rate": 9.794746487429161e-05,
|
| 1024 |
+
"loss": 0.010189465247094631,
|
| 1025 |
+
"memory/device_reserved (GiB)": 35.96,
|
| 1026 |
+
"memory/max_active (GiB)": 33.92,
|
| 1027 |
+
"memory/max_allocated (GiB)": 33.92,
|
| 1028 |
+
"ppl": 1.01024,
|
| 1029 |
+
"step": 73,
|
| 1030 |
+
"tokens/total": 2209984,
|
| 1031 |
+
"tokens/train_per_sec_per_gpu": 35.77,
|
| 1032 |
+
"tokens/trainable": 33304
|
| 1033 |
+
},
|
| 1034 |
+
{
|
| 1035 |
+
"epoch": 0.2890625,
|
| 1036 |
+
"grad_norm": 0.7839381098747253,
|
| 1037 |
+
"learning_rate": 9.785990005437554e-05,
|
| 1038 |
+
"loss": 0.00870432797819376,
|
| 1039 |
+
"memory/device_reserved (GiB)": 35.96,
|
| 1040 |
+
"memory/max_active (GiB)": 33.83,
|
| 1041 |
+
"memory/max_allocated (GiB)": 33.83,
|
| 1042 |
+
"ppl": 1.00874,
|
| 1043 |
+
"step": 74,
|
| 1044 |
+
"tokens/total": 2240512,
|
| 1045 |
+
"tokens/train_per_sec_per_gpu": 32.54,
|
| 1046 |
+
"tokens/trainable": 33771
|
| 1047 |
+
},
|
| 1048 |
+
{
|
| 1049 |
+
"epoch": 0.29296875,
|
| 1050 |
+
"grad_norm": 0.3333408832550049,
|
| 1051 |
+
"learning_rate": 9.777055165907117e-05,
|
| 1052 |
+
"loss": 0.007429605815559626,
|
| 1053 |
+
"memory/device_reserved (GiB)": 35.96,
|
| 1054 |
+
"memory/max_active (GiB)": 33.74,
|
| 1055 |
+
"memory/max_allocated (GiB)": 33.74,
|
| 1056 |
+
"ppl": 1.00746,
|
| 1057 |
+
"step": 75,
|
| 1058 |
+
"tokens/total": 2270608,
|
| 1059 |
+
"tokens/train_per_sec_per_gpu": 34.68,
|
| 1060 |
+
"tokens/trainable": 34186
|
| 1061 |
+
},
|
| 1062 |
+
{
|
| 1063 |
+
"epoch": 0.296875,
|
| 1064 |
+
"grad_norm": 0.47243013978004456,
|
| 1065 |
+
"learning_rate": 9.767942340652993e-05,
|
| 1066 |
+
"loss": 0.009635023772716522,
|
| 1067 |
+
"memory/device_reserved (GiB)": 35.96,
|
| 1068 |
+
"memory/max_active (GiB)": 33.81,
|
| 1069 |
+
"memory/max_allocated (GiB)": 33.81,
|
| 1070 |
+
"ppl": 1.00968,
|
| 1071 |
+
"step": 76,
|
| 1072 |
+
"tokens/total": 2300864,
|
| 1073 |
+
"tokens/train_per_sec_per_gpu": 35.05,
|
| 1074 |
+
"tokens/trainable": 34667
|
| 1075 |
+
},
|
| 1076 |
+
{
|
| 1077 |
+
"epoch": 0.30078125,
|
| 1078 |
+
"grad_norm": 1.4933921098709106,
|
| 1079 |
+
"learning_rate": 9.758651908897035e-05,
|
| 1080 |
+
"loss": 0.04087181016802788,
|
| 1081 |
+
"memory/device_reserved (GiB)": 35.96,
|
| 1082 |
+
"memory/max_active (GiB)": 33.76,
|
| 1083 |
+
"memory/max_allocated (GiB)": 33.76,
|
| 1084 |
+
"ppl": 1.04172,
|
| 1085 |
+
"step": 77,
|
| 1086 |
+
"tokens/total": 2330960,
|
| 1087 |
+
"tokens/train_per_sec_per_gpu": 31.92,
|
| 1088 |
+
"tokens/trainable": 35078
|
| 1089 |
+
},
|
| 1090 |
+
{
|
| 1091 |
+
"epoch": 0.3046875,
|
| 1092 |
+
"grad_norm": 0.6791361570358276,
|
| 1093 |
+
"learning_rate": 9.749184257252033e-05,
|
| 1094 |
+
"loss": 0.013059539720416069,
|
| 1095 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1096 |
+
"memory/max_active (GiB)": 33.99,
|
| 1097 |
+
"memory/max_allocated (GiB)": 33.99,
|
| 1098 |
+
"ppl": 1.01315,
|
| 1099 |
+
"step": 78,
|
| 1100 |
+
"tokens/total": 2361584,
|
| 1101 |
+
"tokens/train_per_sec_per_gpu": 34.99,
|
| 1102 |
+
"tokens/trainable": 35550
|
| 1103 |
+
},
|
| 1104 |
+
{
|
| 1105 |
+
"epoch": 0.30859375,
|
| 1106 |
+
"grad_norm": 0.8410643935203552,
|
| 1107 |
+
"learning_rate": 9.739539779705614e-05,
|
| 1108 |
+
"loss": 0.02711997739970684,
|
| 1109 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1110 |
+
"memory/max_active (GiB)": 33.82,
|
| 1111 |
+
"memory/max_allocated (GiB)": 33.82,
|
| 1112 |
+
"ppl": 1.02749,
|
| 1113 |
+
"step": 79,
|
| 1114 |
+
"tokens/total": 2391936,
|
| 1115 |
+
"tokens/train_per_sec_per_gpu": 29.62,
|
| 1116 |
+
"tokens/trainable": 35977
|
| 1117 |
+
},
|
| 1118 |
+
{
|
| 1119 |
+
"epoch": 0.3125,
|
| 1120 |
+
"grad_norm": 0.3738754689693451,
|
| 1121 |
+
"learning_rate": 9.729718877603861e-05,
|
| 1122 |
+
"loss": 0.017121555283665657,
|
| 1123 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1124 |
+
"memory/max_active (GiB)": 33.9,
|
| 1125 |
+
"memory/max_allocated (GiB)": 33.9,
|
| 1126 |
+
"ppl": 1.01727,
|
| 1127 |
+
"step": 80,
|
| 1128 |
+
"tokens/total": 2422432,
|
| 1129 |
+
"tokens/train_per_sec_per_gpu": 38.39,
|
| 1130 |
+
"tokens/trainable": 36462
|
| 1131 |
+
},
|
| 1132 |
+
{
|
| 1133 |
+
"epoch": 0.31640625,
|
| 1134 |
+
"grad_norm": 1.0237257480621338,
|
| 1135 |
+
"learning_rate": 9.719721959634592e-05,
|
| 1136 |
+
"loss": 0.019660785794258118,
|
| 1137 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1138 |
+
"memory/max_active (GiB)": 33.89,
|
| 1139 |
+
"memory/max_allocated (GiB)": 33.89,
|
| 1140 |
+
"ppl": 1.01986,
|
| 1141 |
+
"step": 81,
|
| 1142 |
+
"tokens/total": 2452752,
|
| 1143 |
+
"tokens/train_per_sec_per_gpu": 33.33,
|
| 1144 |
+
"tokens/trainable": 36919
|
| 1145 |
+
},
|
| 1146 |
+
{
|
| 1147 |
+
"epoch": 0.3203125,
|
| 1148 |
+
"grad_norm": 0.3411601185798645,
|
| 1149 |
+
"learning_rate": 9.709549441810375e-05,
|
| 1150 |
+
"loss": 0.011061297729611397,
|
| 1151 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1152 |
+
"memory/max_active (GiB)": 33.44,
|
| 1153 |
+
"memory/max_allocated (GiB)": 33.44,
|
| 1154 |
+
"ppl": 1.01112,
|
| 1155 |
+
"step": 82,
|
| 1156 |
+
"tokens/total": 2481216,
|
| 1157 |
+
"tokens/train_per_sec_per_gpu": 33.56,
|
| 1158 |
+
"tokens/trainable": 37379
|
| 1159 |
+
},
|
| 1160 |
+
{
|
| 1161 |
+
"epoch": 0.32421875,
|
| 1162 |
+
"grad_norm": 0.41286832094192505,
|
| 1163 |
+
"learning_rate": 9.699201747451195e-05,
|
| 1164 |
+
"loss": 0.011656982824206352,
|
| 1165 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1166 |
+
"memory/max_active (GiB)": 33.84,
|
| 1167 |
+
"memory/max_allocated (GiB)": 33.84,
|
| 1168 |
+
"ppl": 1.01173,
|
| 1169 |
+
"step": 83,
|
| 1170 |
+
"tokens/total": 2511488,
|
| 1171 |
+
"tokens/train_per_sec_per_gpu": 33.18,
|
| 1172 |
+
"tokens/trainable": 37832
|
| 1173 |
+
},
|
| 1174 |
+
{
|
| 1175 |
+
"epoch": 0.328125,
|
| 1176 |
+
"grad_norm": 0.6960376501083374,
|
| 1177 |
+
"learning_rate": 9.688679307166854e-05,
|
| 1178 |
+
"loss": 0.024275368079543114,
|
| 1179 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1180 |
+
"memory/max_active (GiB)": 33.86,
|
| 1181 |
+
"memory/max_allocated (GiB)": 33.86,
|
| 1182 |
+
"ppl": 1.02457,
|
| 1183 |
+
"step": 84,
|
| 1184 |
+
"tokens/total": 2541984,
|
| 1185 |
+
"tokens/train_per_sec_per_gpu": 34.04,
|
| 1186 |
+
"tokens/trainable": 38303
|
| 1187 |
+
},
|
| 1188 |
+
{
|
| 1189 |
+
"epoch": 0.33203125,
|
| 1190 |
+
"grad_norm": 0.15315213799476624,
|
| 1191 |
+
"learning_rate": 9.677982558839042e-05,
|
| 1192 |
+
"loss": 0.004536543972790241,
|
| 1193 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1194 |
+
"memory/max_active (GiB)": 33.69,
|
| 1195 |
+
"memory/max_allocated (GiB)": 33.69,
|
| 1196 |
+
"ppl": 1.00455,
|
| 1197 |
+
"step": 85,
|
| 1198 |
+
"tokens/total": 2572224,
|
| 1199 |
+
"tokens/train_per_sec_per_gpu": 33.67,
|
| 1200 |
+
"tokens/trainable": 38758
|
| 1201 |
+
},
|
| 1202 |
+
{
|
| 1203 |
+
"epoch": 0.3359375,
|
| 1204 |
+
"grad_norm": 0.18710190057754517,
|
| 1205 |
+
"learning_rate": 9.66711194760312e-05,
|
| 1206 |
+
"loss": 0.006560188252478838,
|
| 1207 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1208 |
+
"memory/max_active (GiB)": 33.86,
|
| 1209 |
+
"memory/max_allocated (GiB)": 33.86,
|
| 1210 |
+
"ppl": 1.00658,
|
| 1211 |
+
"step": 86,
|
| 1212 |
+
"tokens/total": 2602704,
|
| 1213 |
+
"tokens/train_per_sec_per_gpu": 30.7,
|
| 1214 |
+
"tokens/trainable": 39179
|
| 1215 |
+
},
|
| 1216 |
+
{
|
| 1217 |
+
"epoch": 0.33984375,
|
| 1218 |
+
"grad_norm": 0.343269407749176,
|
| 1219 |
+
"learning_rate": 9.656067925829593e-05,
|
| 1220 |
+
"loss": 0.010140963830053806,
|
| 1221 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1222 |
+
"memory/max_active (GiB)": 33.88,
|
| 1223 |
+
"memory/max_allocated (GiB)": 33.88,
|
| 1224 |
+
"ppl": 1.01019,
|
| 1225 |
+
"step": 87,
|
| 1226 |
+
"tokens/total": 2633072,
|
| 1227 |
+
"tokens/train_per_sec_per_gpu": 35.42,
|
| 1228 |
+
"tokens/trainable": 39679
|
| 1229 |
+
},
|
| 1230 |
+
{
|
| 1231 |
+
"epoch": 0.34375,
|
| 1232 |
+
"grad_norm": 0.3905015289783478,
|
| 1233 |
+
"learning_rate": 9.644850953105288e-05,
|
| 1234 |
+
"loss": 0.010611740872263908,
|
| 1235 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1236 |
+
"memory/max_active (GiB)": 33.73,
|
| 1237 |
+
"memory/max_allocated (GiB)": 33.73,
|
| 1238 |
+
"ppl": 1.01067,
|
| 1239 |
+
"step": 88,
|
| 1240 |
+
"tokens/total": 2663232,
|
| 1241 |
+
"tokens/train_per_sec_per_gpu": 32.84,
|
| 1242 |
+
"tokens/trainable": 40118
|
| 1243 |
+
},
|
| 1244 |
+
{
|
| 1245 |
+
"epoch": 0.34765625,
|
| 1246 |
+
"grad_norm": 0.5544098019599915,
|
| 1247 |
+
"learning_rate": 9.633461496214225e-05,
|
| 1248 |
+
"loss": 0.022607026621699333,
|
| 1249 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1250 |
+
"memory/max_active (GiB)": 33.87,
|
| 1251 |
+
"memory/max_allocated (GiB)": 33.87,
|
| 1252 |
+
"ppl": 1.02286,
|
| 1253 |
+
"step": 89,
|
| 1254 |
+
"tokens/total": 2693696,
|
| 1255 |
+
"tokens/train_per_sec_per_gpu": 32.92,
|
| 1256 |
+
"tokens/trainable": 40571
|
| 1257 |
+
},
|
| 1258 |
+
{
|
| 1259 |
+
"epoch": 0.3515625,
|
| 1260 |
+
"grad_norm": 0.16370345652103424,
|
| 1261 |
+
"learning_rate": 9.621900029118195e-05,
|
| 1262 |
+
"loss": 0.0030750958248972893,
|
| 1263 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1264 |
+
"memory/max_active (GiB)": 33.82,
|
| 1265 |
+
"memory/max_allocated (GiB)": 33.82,
|
| 1266 |
+
"ppl": 1.00308,
|
| 1267 |
+
"step": 90,
|
| 1268 |
+
"tokens/total": 2723984,
|
| 1269 |
+
"tokens/train_per_sec_per_gpu": 30.92,
|
| 1270 |
+
"tokens/trainable": 40997
|
| 1271 |
+
},
|
| 1272 |
+
{
|
| 1273 |
+
"epoch": 0.35546875,
|
| 1274 |
+
"grad_norm": 0.208849236369133,
|
| 1275 |
+
"learning_rate": 9.610167032937036e-05,
|
| 1276 |
+
"loss": 0.003701428882777691,
|
| 1277 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1278 |
+
"memory/max_active (GiB)": 33.82,
|
| 1279 |
+
"memory/max_allocated (GiB)": 33.82,
|
| 1280 |
+
"ppl": 1.00371,
|
| 1281 |
+
"step": 91,
|
| 1282 |
+
"tokens/total": 2754240,
|
| 1283 |
+
"tokens/train_per_sec_per_gpu": 36.55,
|
| 1284 |
+
"tokens/trainable": 41462
|
| 1285 |
+
},
|
| 1286 |
+
{
|
| 1287 |
+
"epoch": 0.359375,
|
| 1288 |
+
"grad_norm": 0.5515285134315491,
|
| 1289 |
+
"learning_rate": 9.598262995928611e-05,
|
| 1290 |
+
"loss": 0.012641018256545067,
|
| 1291 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1292 |
+
"memory/max_active (GiB)": 33.89,
|
| 1293 |
+
"memory/max_allocated (GiB)": 33.89,
|
| 1294 |
+
"ppl": 1.01272,
|
| 1295 |
+
"step": 92,
|
| 1296 |
+
"tokens/total": 2784672,
|
| 1297 |
+
"tokens/train_per_sec_per_gpu": 36.9,
|
| 1298 |
+
"tokens/trainable": 41927
|
| 1299 |
+
},
|
| 1300 |
+
{
|
| 1301 |
+
"epoch": 0.36328125,
|
| 1302 |
+
"grad_norm": 0.6742218136787415,
|
| 1303 |
+
"learning_rate": 9.586188413468492e-05,
|
| 1304 |
+
"loss": 0.019092712551355362,
|
| 1305 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1306 |
+
"memory/max_active (GiB)": 33.83,
|
| 1307 |
+
"memory/max_allocated (GiB)": 33.83,
|
| 1308 |
+
"ppl": 1.01928,
|
| 1309 |
+
"step": 93,
|
| 1310 |
+
"tokens/total": 2815120,
|
| 1311 |
+
"tokens/train_per_sec_per_gpu": 34.95,
|
| 1312 |
+
"tokens/trainable": 42397
|
| 1313 |
+
},
|
| 1314 |
+
{
|
| 1315 |
+
"epoch": 0.3671875,
|
| 1316 |
+
"grad_norm": 0.3739137351512909,
|
| 1317 |
+
"learning_rate": 9.57394378802934e-05,
|
| 1318 |
+
"loss": 0.0018391611520200968,
|
| 1319 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1320 |
+
"memory/max_active (GiB)": 33.97,
|
| 1321 |
+
"memory/max_allocated (GiB)": 33.97,
|
| 1322 |
+
"ppl": 1.00184,
|
| 1323 |
+
"step": 94,
|
| 1324 |
+
"tokens/total": 2845600,
|
| 1325 |
+
"tokens/train_per_sec_per_gpu": 36.63,
|
| 1326 |
+
"tokens/trainable": 42883
|
| 1327 |
+
},
|
| 1328 |
+
{
|
| 1329 |
+
"epoch": 0.37109375,
|
| 1330 |
+
"grad_norm": 0.25132012367248535,
|
| 1331 |
+
"learning_rate": 9.56152962916e-05,
|
| 1332 |
+
"loss": 0.008805882185697556,
|
| 1333 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1334 |
+
"memory/max_active (GiB)": 33.87,
|
| 1335 |
+
"memory/max_allocated (GiB)": 33.87,
|
| 1336 |
+
"ppl": 1.00884,
|
| 1337 |
+
"step": 95,
|
| 1338 |
+
"tokens/total": 2875952,
|
| 1339 |
+
"tokens/train_per_sec_per_gpu": 38.78,
|
| 1340 |
+
"tokens/trainable": 43381
|
| 1341 |
+
},
|
| 1342 |
+
{
|
| 1343 |
+
"epoch": 0.375,
|
| 1344 |
+
"grad_norm": 0.24200227856636047,
|
| 1345 |
+
"learning_rate": 9.548946453464296e-05,
|
| 1346 |
+
"loss": 0.006166054867208004,
|
| 1347 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1348 |
+
"memory/max_active (GiB)": 33.9,
|
| 1349 |
+
"memory/max_allocated (GiB)": 33.9,
|
| 1350 |
+
"ppl": 1.00619,
|
| 1351 |
+
"step": 96,
|
| 1352 |
+
"tokens/total": 2906288,
|
| 1353 |
+
"tokens/train_per_sec_per_gpu": 33.06,
|
| 1354 |
+
"tokens/trainable": 43824
|
| 1355 |
+
},
|
| 1356 |
+
{
|
| 1357 |
+
"epoch": 0.37890625,
|
| 1358 |
+
"grad_norm": 0.3597196340560913,
|
| 1359 |
+
"learning_rate": 9.53619478457953e-05,
|
| 1360 |
+
"loss": 0.0036215470172464848,
|
| 1361 |
+
"memory/device_reserved (GiB)": 35.98,
|
| 1362 |
+
"memory/max_active (GiB)": 33.89,
|
| 1363 |
+
"memory/max_allocated (GiB)": 33.89,
|
| 1364 |
+
"ppl": 1.00363,
|
| 1365 |
+
"step": 97,
|
| 1366 |
+
"tokens/total": 2936752,
|
| 1367 |
+
"tokens/train_per_sec_per_gpu": 31.62,
|
| 1368 |
+
"tokens/trainable": 44255
|
| 1369 |
+
},
|
| 1370 |
+
{
|
| 1371 |
+
"epoch": 0.3828125,
|
| 1372 |
+
"grad_norm": 0.7050648927688599,
|
| 1373 |
+
"learning_rate": 9.523275153154695e-05,
|
| 1374 |
+
"loss": 0.015324651263654232,
|
| 1375 |
+
"memory/device_reserved (GiB)": 35.19,
|
| 1376 |
+
"memory/max_active (GiB)": 33.92,
|
| 1377 |
+
"memory/max_allocated (GiB)": 33.92,
|
| 1378 |
+
"ppl": 1.01544,
|
| 1379 |
+
"step": 98,
|
| 1380 |
+
"tokens/total": 2967072,
|
| 1381 |
+
"tokens/train_per_sec_per_gpu": 37.7,
|
| 1382 |
+
"tokens/trainable": 44738
|
| 1383 |
+
},
|
| 1384 |
+
{
|
| 1385 |
+
"epoch": 0.38671875,
|
| 1386 |
+
"grad_norm": 0.5716716051101685,
|
| 1387 |
+
"learning_rate": 9.51018809682839e-05,
|
| 1388 |
+
"loss": 0.013399260118603706,
|
| 1389 |
+
"memory/device_reserved (GiB)": 35.76,
|
| 1390 |
+
"memory/max_active (GiB)": 34.03,
|
| 1391 |
+
"memory/max_allocated (GiB)": 34.03,
|
| 1392 |
+
"ppl": 1.01349,
|
| 1393 |
+
"step": 99,
|
| 1394 |
+
"tokens/total": 2997664,
|
| 1395 |
+
"tokens/train_per_sec_per_gpu": 36.24,
|
| 1396 |
+
"tokens/trainable": 45201
|
| 1397 |
+
},
|
| 1398 |
+
{
|
| 1399 |
+
"epoch": 0.390625,
|
| 1400 |
+
"grad_norm": 0.18090857565402985,
|
| 1401 |
+
"learning_rate": 9.49693416020645e-05,
|
| 1402 |
+
"loss": 0.0020832926966249943,
|
| 1403 |
+
"memory/device_reserved (GiB)": 35.99,
|
| 1404 |
+
"memory/max_active (GiB)": 33.88,
|
| 1405 |
+
"memory/max_allocated (GiB)": 33.88,
|
| 1406 |
+
"ppl": 1.00209,
|
| 1407 |
+
"step": 100,
|
| 1408 |
+
"tokens/total": 3028032,
|
| 1409 |
+
"tokens/train_per_sec_per_gpu": 32.96,
|
| 1410 |
+
"tokens/trainable": 45645
|
| 1411 |
+
},
|
| 1412 |
+
{
|
| 1413 |
+
"epoch": 0.39453125,
|
| 1414 |
+
"grad_norm": 0.5402258038520813,
|
| 1415 |
+
"learning_rate": 9.483513894839276e-05,
|
| 1416 |
+
"loss": 0.011402487754821777,
|
| 1417 |
+
"memory/device_reserved (GiB)": 35.99,
|
| 1418 |
+
"memory/max_active (GiB)": 33.82,
|
| 1419 |
+
"memory/max_allocated (GiB)": 33.82,
|
| 1420 |
+
"ppl": 1.01147,
|
| 1421 |
+
"step": 101,
|
| 1422 |
+
"tokens/total": 3058272,
|
| 1423 |
+
"tokens/train_per_sec_per_gpu": 33.13,
|
| 1424 |
+
"tokens/trainable": 46088
|
| 1425 |
+
},
|
| 1426 |
+
{
|
| 1427 |
+
"epoch": 0.3984375,
|
| 1428 |
+
"grad_norm": 0.220508873462677,
|
| 1429 |
+
"learning_rate": 9.469927859198888e-05,
|
| 1430 |
+
"loss": 0.026607759296894073,
|
| 1431 |
+
"memory/device_reserved (GiB)": 35.99,
|
| 1432 |
+
"memory/max_active (GiB)": 33.89,
|
| 1433 |
+
"memory/max_allocated (GiB)": 33.89,
|
| 1434 |
+
"ppl": 1.02696,
|
| 1435 |
+
"step": 102,
|
| 1436 |
+
"tokens/total": 3088848,
|
| 1437 |
+
"tokens/train_per_sec_per_gpu": 32.58,
|
| 1438 |
+
"tokens/trainable": 46544
|
| 1439 |
+
},
|
| 1440 |
+
{
|
| 1441 |
+
"epoch": 0.40234375,
|
| 1442 |
+
"grad_norm": 0.488730788230896,
|
| 1443 |
+
"learning_rate": 9.456176618655689e-05,
|
| 1444 |
+
"loss": 0.007838367484509945,
|
| 1445 |
+
"memory/device_reserved (GiB)": 35.99,
|
| 1446 |
+
"memory/max_active (GiB)": 33.91,
|
| 1447 |
+
"memory/max_allocated (GiB)": 33.91,
|
| 1448 |
+
"ppl": 1.00787,
|
| 1449 |
+
"step": 103,
|
| 1450 |
+
"tokens/total": 3119424,
|
| 1451 |
+
"tokens/train_per_sec_per_gpu": 31.96,
|
| 1452 |
+
"tokens/trainable": 47011
|
| 1453 |
+
},
|
| 1454 |
+
{
|
| 1455 |
+
"epoch": 0.40625,
|
| 1456 |
+
"grad_norm": 1.0092511177062988,
|
| 1457 |
+
"learning_rate": 9.442260745454927e-05,
|
| 1458 |
+
"loss": 0.024805881083011627,
|
| 1459 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1460 |
+
"memory/max_active (GiB)": 33.81,
|
| 1461 |
+
"memory/max_allocated (GiB)": 33.81,
|
| 1462 |
+
"ppl": 1.02512,
|
| 1463 |
+
"step": 104,
|
| 1464 |
+
"tokens/total": 3149696,
|
| 1465 |
+
"tokens/train_per_sec_per_gpu": 37.78,
|
| 1466 |
+
"tokens/trainable": 47500
|
| 1467 |
+
},
|
| 1468 |
+
{
|
| 1469 |
+
"epoch": 0.41015625,
|
| 1470 |
+
"grad_norm": 0.1705712527036667,
|
| 1471 |
+
"learning_rate": 9.428180818692884e-05,
|
| 1472 |
+
"loss": 0.002884519286453724,
|
| 1473 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1474 |
+
"memory/max_active (GiB)": 33.83,
|
| 1475 |
+
"memory/max_allocated (GiB)": 33.83,
|
| 1476 |
+
"ppl": 1.00289,
|
| 1477 |
+
"step": 105,
|
| 1478 |
+
"tokens/total": 3180064,
|
| 1479 |
+
"tokens/train_per_sec_per_gpu": 36.28,
|
| 1480 |
+
"tokens/trainable": 47993
|
| 1481 |
+
},
|
| 1482 |
+
{
|
| 1483 |
+
"epoch": 0.4140625,
|
| 1484 |
+
"grad_norm": 0.539692759513855,
|
| 1485 |
+
"learning_rate": 9.413937424292791e-05,
|
| 1486 |
+
"loss": 0.028211303055286407,
|
| 1487 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1488 |
+
"memory/max_active (GiB)": 33.39,
|
| 1489 |
+
"memory/max_allocated (GiB)": 33.39,
|
| 1490 |
+
"ppl": 1.02861,
|
| 1491 |
+
"step": 106,
|
| 1492 |
+
"tokens/total": 3208320,
|
| 1493 |
+
"tokens/train_per_sec_per_gpu": 34.13,
|
| 1494 |
+
"tokens/trainable": 48444
|
| 1495 |
+
},
|
| 1496 |
+
{
|
| 1497 |
+
"epoch": 0.41796875,
|
| 1498 |
+
"grad_norm": 0.576267421245575,
|
| 1499 |
+
"learning_rate": 9.399531154980424e-05,
|
| 1500 |
+
"loss": 0.026665428653359413,
|
| 1501 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1502 |
+
"memory/max_active (GiB)": 33.74,
|
| 1503 |
+
"memory/max_allocated (GiB)": 33.74,
|
| 1504 |
+
"ppl": 1.02702,
|
| 1505 |
+
"step": 107,
|
| 1506 |
+
"tokens/total": 3238416,
|
| 1507 |
+
"tokens/train_per_sec_per_gpu": 30.72,
|
| 1508 |
+
"tokens/trainable": 48886
|
| 1509 |
+
},
|
| 1510 |
+
{
|
| 1511 |
+
"epoch": 0.421875,
|
| 1512 |
+
"grad_norm": 0.19187162816524506,
|
| 1513 |
+
"learning_rate": 9.384962610259455e-05,
|
| 1514 |
+
"loss": 0.007470840122550726,
|
| 1515 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1516 |
+
"memory/max_active (GiB)": 33.82,
|
| 1517 |
+
"memory/max_allocated (GiB)": 33.82,
|
| 1518 |
+
"ppl": 1.0075,
|
| 1519 |
+
"step": 108,
|
| 1520 |
+
"tokens/total": 3268784,
|
| 1521 |
+
"tokens/train_per_sec_per_gpu": 37.78,
|
| 1522 |
+
"tokens/trainable": 49357
|
| 1523 |
+
},
|
| 1524 |
+
{
|
| 1525 |
+
"epoch": 0.42578125,
|
| 1526 |
+
"grad_norm": 0.30193838477134705,
|
| 1527 |
+
"learning_rate": 9.370232396386494e-05,
|
| 1528 |
+
"loss": 0.012815583497285843,
|
| 1529 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1530 |
+
"memory/max_active (GiB)": 33.79,
|
| 1531 |
+
"memory/max_allocated (GiB)": 33.79,
|
| 1532 |
+
"ppl": 1.0129,
|
| 1533 |
+
"step": 109,
|
| 1534 |
+
"tokens/total": 3298912,
|
| 1535 |
+
"tokens/train_per_sec_per_gpu": 36.72,
|
| 1536 |
+
"tokens/trainable": 49824
|
| 1537 |
+
},
|
| 1538 |
+
{
|
| 1539 |
+
"epoch": 0.4296875,
|
| 1540 |
+
"grad_norm": 0.24559386074543,
|
| 1541 |
+
"learning_rate": 9.355341126345868e-05,
|
| 1542 |
+
"loss": 0.010728488676249981,
|
| 1543 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1544 |
+
"memory/max_active (GiB)": 33.99,
|
| 1545 |
+
"memory/max_allocated (GiB)": 33.99,
|
| 1546 |
+
"ppl": 1.01079,
|
| 1547 |
+
"step": 110,
|
| 1548 |
+
"tokens/total": 3329232,
|
| 1549 |
+
"tokens/train_per_sec_per_gpu": 34.26,
|
| 1550 |
+
"tokens/trainable": 50264
|
| 1551 |
+
},
|
| 1552 |
+
{
|
| 1553 |
+
"epoch": 0.43359375,
|
| 1554 |
+
"grad_norm": 0.3296513259410858,
|
| 1555 |
+
"learning_rate": 9.340289419824107e-05,
|
| 1556 |
+
"loss": 0.01623804122209549,
|
| 1557 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1558 |
+
"memory/max_active (GiB)": 33.8,
|
| 1559 |
+
"memory/max_allocated (GiB)": 33.8,
|
| 1560 |
+
"ppl": 1.01637,
|
| 1561 |
+
"step": 111,
|
| 1562 |
+
"tokens/total": 3359440,
|
| 1563 |
+
"tokens/train_per_sec_per_gpu": 33.41,
|
| 1564 |
+
"tokens/trainable": 50708
|
| 1565 |
+
},
|
| 1566 |
+
{
|
| 1567 |
+
"epoch": 0.4375,
|
| 1568 |
+
"grad_norm": 0.4614265263080597,
|
| 1569 |
+
"learning_rate": 9.325077903184159e-05,
|
| 1570 |
+
"loss": 0.021365080028772354,
|
| 1571 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1572 |
+
"memory/max_active (GiB)": 33.74,
|
| 1573 |
+
"memory/max_allocated (GiB)": 33.74,
|
| 1574 |
+
"ppl": 1.02159,
|
| 1575 |
+
"step": 112,
|
| 1576 |
+
"tokens/total": 3389472,
|
| 1577 |
+
"tokens/train_per_sec_per_gpu": 31.61,
|
| 1578 |
+
"tokens/trainable": 51154
|
| 1579 |
+
},
|
| 1580 |
+
{
|
| 1581 |
+
"epoch": 0.44140625,
|
| 1582 |
+
"grad_norm": 0.28496578335762024,
|
| 1583 |
+
"learning_rate": 9.30970720943932e-05,
|
| 1584 |
+
"loss": 0.013247976079583168,
|
| 1585 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1586 |
+
"memory/max_active (GiB)": 33.9,
|
| 1587 |
+
"memory/max_allocated (GiB)": 33.9,
|
| 1588 |
+
"ppl": 1.01334,
|
| 1589 |
+
"step": 113,
|
| 1590 |
+
"tokens/total": 3419920,
|
| 1591 |
+
"tokens/train_per_sec_per_gpu": 32.72,
|
| 1592 |
+
"tokens/trainable": 51610
|
| 1593 |
+
},
|
| 1594 |
+
{
|
| 1595 |
+
"epoch": 0.4453125,
|
| 1596 |
+
"grad_norm": 0.5088275074958801,
|
| 1597 |
+
"learning_rate": 9.2941779782269e-05,
|
| 1598 |
+
"loss": 0.022269586101174355,
|
| 1599 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1600 |
+
"memory/max_active (GiB)": 33.78,
|
| 1601 |
+
"memory/max_allocated (GiB)": 33.78,
|
| 1602 |
+
"ppl": 1.02252,
|
| 1603 |
+
"step": 114,
|
| 1604 |
+
"tokens/total": 3450176,
|
| 1605 |
+
"tokens/train_per_sec_per_gpu": 29.14,
|
| 1606 |
+
"tokens/trainable": 52014
|
| 1607 |
+
},
|
| 1608 |
+
{
|
| 1609 |
+
"epoch": 0.44921875,
|
| 1610 |
+
"grad_norm": 0.19142404198646545,
|
| 1611 |
+
"learning_rate": 9.278490855781596e-05,
|
| 1612 |
+
"loss": 0.006432589143514633,
|
| 1613 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1614 |
+
"memory/max_active (GiB)": 33.87,
|
| 1615 |
+
"memory/max_allocated (GiB)": 33.87,
|
| 1616 |
+
"ppl": 1.00645,
|
| 1617 |
+
"step": 115,
|
| 1618 |
+
"tokens/total": 3480544,
|
| 1619 |
+
"tokens/train_per_sec_per_gpu": 36.32,
|
| 1620 |
+
"tokens/trainable": 52503
|
| 1621 |
+
},
|
| 1622 |
+
{
|
| 1623 |
+
"epoch": 0.453125,
|
| 1624 |
+
"grad_norm": 1.382026195526123,
|
| 1625 |
+
"learning_rate": 9.262646494908604e-05,
|
| 1626 |
+
"loss": 0.012845169752836227,
|
| 1627 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1628 |
+
"memory/max_active (GiB)": 33.81,
|
| 1629 |
+
"memory/max_allocated (GiB)": 33.81,
|
| 1630 |
+
"ppl": 1.01293,
|
| 1631 |
+
"step": 116,
|
| 1632 |
+
"tokens/total": 3510848,
|
| 1633 |
+
"tokens/train_per_sec_per_gpu": 38.75,
|
| 1634 |
+
"tokens/trainable": 53005
|
| 1635 |
+
},
|
| 1636 |
+
{
|
| 1637 |
+
"epoch": 0.45703125,
|
| 1638 |
+
"grad_norm": 0.16703951358795166,
|
| 1639 |
+
"learning_rate": 9.246645554956457e-05,
|
| 1640 |
+
"loss": 0.0037160126958042383,
|
| 1641 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1642 |
+
"memory/max_active (GiB)": 33.96,
|
| 1643 |
+
"memory/max_allocated (GiB)": 33.96,
|
| 1644 |
+
"ppl": 1.00372,
|
| 1645 |
+
"step": 117,
|
| 1646 |
+
"tokens/total": 3541296,
|
| 1647 |
+
"tokens/train_per_sec_per_gpu": 35.4,
|
| 1648 |
+
"tokens/trainable": 53464
|
| 1649 |
+
},
|
| 1650 |
+
{
|
| 1651 |
+
"epoch": 0.4609375,
|
| 1652 |
+
"grad_norm": 0.615856945514679,
|
| 1653 |
+
"learning_rate": 9.230488701789578e-05,
|
| 1654 |
+
"loss": 0.014962448738515377,
|
| 1655 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1656 |
+
"memory/max_active (GiB)": 33.97,
|
| 1657 |
+
"memory/max_allocated (GiB)": 33.97,
|
| 1658 |
+
"ppl": 1.01507,
|
| 1659 |
+
"step": 118,
|
| 1660 |
+
"tokens/total": 3571936,
|
| 1661 |
+
"tokens/train_per_sec_per_gpu": 32.88,
|
| 1662 |
+
"tokens/trainable": 53920
|
| 1663 |
+
},
|
| 1664 |
+
{
|
| 1665 |
+
"epoch": 0.46484375,
|
| 1666 |
+
"grad_norm": 0.24910427629947662,
|
| 1667 |
+
"learning_rate": 9.214176607760577e-05,
|
| 1668 |
+
"loss": 0.004819548688828945,
|
| 1669 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1670 |
+
"memory/max_active (GiB)": 33.79,
|
| 1671 |
+
"memory/max_allocated (GiB)": 33.79,
|
| 1672 |
+
"ppl": 1.00483,
|
| 1673 |
+
"step": 119,
|
| 1674 |
+
"tokens/total": 3602000,
|
| 1675 |
+
"tokens/train_per_sec_per_gpu": 35.63,
|
| 1676 |
+
"tokens/trainable": 54360
|
| 1677 |
+
},
|
| 1678 |
+
{
|
| 1679 |
+
"epoch": 0.46875,
|
| 1680 |
+
"grad_norm": 0.9213384389877319,
|
| 1681 |
+
"learning_rate": 9.197709951682268e-05,
|
| 1682 |
+
"loss": 0.008400149643421173,
|
| 1683 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1684 |
+
"memory/max_active (GiB)": 33.81,
|
| 1685 |
+
"memory/max_allocated (GiB)": 33.81,
|
| 1686 |
+
"ppl": 1.00844,
|
| 1687 |
+
"step": 120,
|
| 1688 |
+
"tokens/total": 3632288,
|
| 1689 |
+
"tokens/train_per_sec_per_gpu": 35.21,
|
| 1690 |
+
"tokens/trainable": 54836
|
| 1691 |
+
},
|
| 1692 |
+
{
|
| 1693 |
+
"epoch": 0.47265625,
|
| 1694 |
+
"grad_norm": 0.1228351816534996,
|
| 1695 |
+
"learning_rate": 9.181089418799428e-05,
|
| 1696 |
+
"loss": 0.0019936836324632168,
|
| 1697 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1698 |
+
"memory/max_active (GiB)": 33.82,
|
| 1699 |
+
"memory/max_allocated (GiB)": 33.82,
|
| 1700 |
+
"ppl": 1.002,
|
| 1701 |
+
"step": 121,
|
| 1702 |
+
"tokens/total": 3662608,
|
| 1703 |
+
"tokens/train_per_sec_per_gpu": 32.69,
|
| 1704 |
+
"tokens/trainable": 55264
|
| 1705 |
+
},
|
| 1706 |
+
{
|
| 1707 |
+
"epoch": 0.4765625,
|
| 1708 |
+
"grad_norm": 0.18029853701591492,
|
| 1709 |
+
"learning_rate": 9.164315700760271e-05,
|
| 1710 |
+
"loss": 0.004047749564051628,
|
| 1711 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1712 |
+
"memory/max_active (GiB)": 33.77,
|
| 1713 |
+
"memory/max_allocated (GiB)": 33.77,
|
| 1714 |
+
"ppl": 1.00406,
|
| 1715 |
+
"step": 122,
|
| 1716 |
+
"tokens/total": 3692864,
|
| 1717 |
+
"tokens/train_per_sec_per_gpu": 30.55,
|
| 1718 |
+
"tokens/trainable": 55697
|
| 1719 |
+
},
|
| 1720 |
+
{
|
| 1721 |
+
"epoch": 0.48046875,
|
| 1722 |
+
"grad_norm": 0.4368670582771301,
|
| 1723 |
+
"learning_rate": 9.147389495587671e-05,
|
| 1724 |
+
"loss": 0.00867566466331482,
|
| 1725 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1726 |
+
"memory/max_active (GiB)": 33.73,
|
| 1727 |
+
"memory/max_allocated (GiB)": 33.73,
|
| 1728 |
+
"ppl": 1.00871,
|
| 1729 |
+
"step": 123,
|
| 1730 |
+
"tokens/total": 3722864,
|
| 1731 |
+
"tokens/train_per_sec_per_gpu": 33.49,
|
| 1732 |
+
"tokens/trainable": 56141
|
| 1733 |
+
},
|
| 1734 |
+
{
|
| 1735 |
+
"epoch": 0.484375,
|
| 1736 |
+
"grad_norm": 0.3315965235233307,
|
| 1737 |
+
"learning_rate": 9.130311507650116e-05,
|
| 1738 |
+
"loss": 0.011374368332326412,
|
| 1739 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1740 |
+
"memory/max_active (GiB)": 33.77,
|
| 1741 |
+
"memory/max_allocated (GiB)": 33.77,
|
| 1742 |
+
"ppl": 1.01144,
|
| 1743 |
+
"step": 124,
|
| 1744 |
+
"tokens/total": 3753056,
|
| 1745 |
+
"tokens/train_per_sec_per_gpu": 33.2,
|
| 1746 |
+
"tokens/trainable": 56586
|
| 1747 |
+
},
|
| 1748 |
+
{
|
| 1749 |
+
"epoch": 0.48828125,
|
| 1750 |
+
"grad_norm": 0.2834460735321045,
|
| 1751 |
+
"learning_rate": 9.113082447632394e-05,
|
| 1752 |
+
"loss": 0.005234894342720509,
|
| 1753 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1754 |
+
"memory/max_active (GiB)": 33.82,
|
| 1755 |
+
"memory/max_allocated (GiB)": 33.82,
|
| 1756 |
+
"ppl": 1.00525,
|
| 1757 |
+
"step": 125,
|
| 1758 |
+
"tokens/total": 3783312,
|
| 1759 |
+
"tokens/train_per_sec_per_gpu": 36.68,
|
| 1760 |
+
"tokens/trainable": 57078
|
| 1761 |
+
},
|
| 1762 |
+
{
|
| 1763 |
+
"epoch": 0.4921875,
|
| 1764 |
+
"grad_norm": 0.5132001638412476,
|
| 1765 |
+
"learning_rate": 9.09570303250602e-05,
|
| 1766 |
+
"loss": 0.02469645068049431,
|
| 1767 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1768 |
+
"memory/max_active (GiB)": 33.88,
|
| 1769 |
+
"memory/max_allocated (GiB)": 33.88,
|
| 1770 |
+
"ppl": 1.025,
|
| 1771 |
+
"step": 126,
|
| 1772 |
+
"tokens/total": 3813712,
|
| 1773 |
+
"tokens/train_per_sec_per_gpu": 32.87,
|
| 1774 |
+
"tokens/trainable": 57524
|
| 1775 |
+
},
|
| 1776 |
+
{
|
| 1777 |
+
"epoch": 0.49609375,
|
| 1778 |
+
"grad_norm": 0.9969733953475952,
|
| 1779 |
+
"learning_rate": 9.078173985499394e-05,
|
| 1780 |
+
"loss": 0.040580250322818756,
|
| 1781 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1782 |
+
"memory/max_active (GiB)": 33.94,
|
| 1783 |
+
"memory/max_allocated (GiB)": 33.94,
|
| 1784 |
+
"ppl": 1.04141,
|
| 1785 |
+
"step": 127,
|
| 1786 |
+
"tokens/total": 3844336,
|
| 1787 |
+
"tokens/train_per_sec_per_gpu": 34.85,
|
| 1788 |
+
"tokens/trainable": 58002
|
| 1789 |
+
},
|
| 1790 |
+
{
|
| 1791 |
+
"epoch": 0.5,
|
| 1792 |
+
"grad_norm": 0.4804457724094391,
|
| 1793 |
+
"learning_rate": 9.060496036067713e-05,
|
| 1794 |
+
"loss": 0.007047833874821663,
|
| 1795 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1796 |
+
"memory/max_active (GiB)": 33.39,
|
| 1797 |
+
"memory/max_allocated (GiB)": 33.39,
|
| 1798 |
+
"ppl": 1.00707,
|
| 1799 |
+
"step": 128,
|
| 1800 |
+
"tokens/total": 3872688,
|
| 1801 |
+
"tokens/train_per_sec_per_gpu": 35.3,
|
| 1802 |
+
"tokens/trainable": 58451
|
| 1803 |
+
},
|
| 1804 |
+
{
|
| 1805 |
+
"epoch": 0.50390625,
|
| 1806 |
+
"grad_norm": 0.23698025941848755,
|
| 1807 |
+
"learning_rate": 9.042669919862615e-05,
|
| 1808 |
+
"loss": 0.00366212404333055,
|
| 1809 |
+
"memory/device_reserved (GiB)": 36.0,
|
| 1810 |
+
"memory/max_active (GiB)": 33.64,
|
| 1811 |
+
"memory/max_allocated (GiB)": 33.64,
|
| 1812 |
+
"ppl": 1.00367,
|
| 1813 |
+
"step": 129,
|
| 1814 |
+
"tokens/total": 3902640,
|
| 1815 |
+
"tokens/train_per_sec_per_gpu": 32.1,
|
| 1816 |
+
"tokens/trainable": 58893
|
| 1817 |
+
},
|
| 1818 |
+
{
|
| 1819 |
+
"epoch": 0.5078125,
|
| 1820 |
+
"grad_norm": 0.44587212800979614,
|
| 1821 |
+
"learning_rate": 9.024696378701557e-05,
|
| 1822 |
+
"loss": 0.010764295235276222,
|
| 1823 |
+
"memory/device_reserved (GiB)": 34.68,
|
| 1824 |
+
"memory/max_active (GiB)": 33.84,
|
| 1825 |
+
"memory/max_allocated (GiB)": 33.84,
|
| 1826 |
+
"ppl": 1.01082,
|
| 1827 |
+
"step": 130,
|
| 1828 |
+
"tokens/total": 3933104,
|
| 1829 |
+
"tokens/train_per_sec_per_gpu": 35.94,
|
| 1830 |
+
"tokens/trainable": 59353
|
| 1831 |
+
},
|
| 1832 |
+
{
|
| 1833 |
+
"epoch": 0.51171875,
|
| 1834 |
+
"grad_norm": 0.3212004005908966,
|
| 1835 |
+
"learning_rate": 9.006576160536948e-05,
|
| 1836 |
+
"loss": 0.013213565573096275,
|
| 1837 |
+
"memory/device_reserved (GiB)": 34.92,
|
| 1838 |
+
"memory/max_active (GiB)": 33.78,
|
| 1839 |
+
"memory/max_allocated (GiB)": 33.78,
|
| 1840 |
+
"ppl": 1.0133,
|
| 1841 |
+
"step": 131,
|
| 1842 |
+
"tokens/total": 3963184,
|
| 1843 |
+
"tokens/train_per_sec_per_gpu": 32.29,
|
| 1844 |
+
"tokens/trainable": 59789
|
| 1845 |
+
},
|
| 1846 |
+
{
|
| 1847 |
+
"epoch": 0.515625,
|
| 1848 |
+
"grad_norm": 0.14710628986358643,
|
| 1849 |
+
"learning_rate": 8.988310019425035e-05,
|
| 1850 |
+
"loss": 0.005224708467721939,
|
| 1851 |
+
"memory/device_reserved (GiB)": 35.78,
|
| 1852 |
+
"memory/max_active (GiB)": 33.91,
|
| 1853 |
+
"memory/max_allocated (GiB)": 33.91,
|
| 1854 |
+
"ppl": 1.00524,
|
| 1855 |
+
"step": 132,
|
| 1856 |
+
"tokens/total": 3993648,
|
| 1857 |
+
"tokens/train_per_sec_per_gpu": 35.82,
|
| 1858 |
+
"tokens/trainable": 60263
|
| 1859 |
+
},
|
| 1860 |
+
{
|
| 1861 |
+
"epoch": 0.51953125,
|
| 1862 |
+
"grad_norm": 0.5616672039031982,
|
| 1863 |
+
"learning_rate": 8.969898715494506e-05,
|
| 1864 |
+
"loss": 0.01082855835556984,
|
| 1865 |
+
"memory/device_reserved (GiB)": 35.78,
|
| 1866 |
+
"memory/max_active (GiB)": 33.89,
|
| 1867 |
+
"memory/max_allocated (GiB)": 33.89,
|
| 1868 |
+
"ppl": 1.01089,
|
| 1869 |
+
"step": 133,
|
| 1870 |
+
"tokens/total": 4024000,
|
| 1871 |
+
"tokens/train_per_sec_per_gpu": 35.55,
|
| 1872 |
+
"tokens/trainable": 60756
|
| 1873 |
+
},
|
| 1874 |
+
{
|
| 1875 |
+
"epoch": 0.5234375,
|
| 1876 |
+
"grad_norm": 0.28706833720207214,
|
| 1877 |
+
"learning_rate": 8.951343014914869e-05,
|
| 1878 |
+
"loss": 0.02170894667506218,
|
| 1879 |
+
"memory/device_reserved (GiB)": 35.78,
|
| 1880 |
+
"memory/max_active (GiB)": 33.39,
|
| 1881 |
+
"memory/max_allocated (GiB)": 33.39,
|
| 1882 |
+
"ppl": 1.02195,
|
| 1883 |
+
"step": 134,
|
| 1884 |
+
"tokens/total": 4052480,
|
| 1885 |
+
"tokens/train_per_sec_per_gpu": 31.85,
|
| 1886 |
+
"tokens/trainable": 61201
|
| 1887 |
+
},
|
| 1888 |
+
{
|
| 1889 |
+
"epoch": 0.52734375,
|
| 1890 |
+
"grad_norm": 0.1448316127061844,
|
| 1891 |
+
"learning_rate": 8.932643689864568e-05,
|
| 1892 |
+
"loss": 0.0064529795199632645,
|
| 1893 |
+
"memory/device_reserved (GiB)": 35.78,
|
| 1894 |
+
"memory/max_active (GiB)": 33.86,
|
| 1895 |
+
"memory/max_allocated (GiB)": 33.86,
|
| 1896 |
+
"ppl": 1.00647,
|
| 1897 |
+
"step": 135,
|
| 1898 |
+
"tokens/total": 4082864,
|
| 1899 |
+
"tokens/train_per_sec_per_gpu": 36.07,
|
| 1900 |
+
"tokens/trainable": 61681
|
| 1901 |
+
},
|
| 1902 |
+
{
|
| 1903 |
+
"epoch": 0.53125,
|
| 1904 |
+
"grad_norm": 0.2812711000442505,
|
| 1905 |
+
"learning_rate": 8.913801518498845e-05,
|
| 1906 |
+
"loss": 0.01243551354855299,
|
| 1907 |
+
"memory/device_reserved (GiB)": 35.79,
|
| 1908 |
+
"memory/max_active (GiB)": 33.7,
|
| 1909 |
+
"memory/max_allocated (GiB)": 33.7,
|
| 1910 |
+
"ppl": 1.01251,
|
| 1911 |
+
"step": 136,
|
| 1912 |
+
"tokens/total": 4113040,
|
| 1913 |
+
"tokens/train_per_sec_per_gpu": 38.33,
|
| 1914 |
+
"tokens/trainable": 62156
|
| 1915 |
+
},
|
| 1916 |
+
{
|
| 1917 |
+
"epoch": 0.53515625,
|
| 1918 |
+
"grad_norm": 0.37281039357185364,
|
| 1919 |
+
"learning_rate": 8.894817284917364e-05,
|
| 1920 |
+
"loss": 0.009842045605182648,
|
| 1921 |
+
"memory/device_reserved (GiB)": 35.79,
|
| 1922 |
+
"memory/max_active (GiB)": 33.88,
|
| 1923 |
+
"memory/max_allocated (GiB)": 33.88,
|
| 1924 |
+
"ppl": 1.00989,
|
| 1925 |
+
"step": 137,
|
| 1926 |
+
"tokens/total": 4143344,
|
| 1927 |
+
"tokens/train_per_sec_per_gpu": 35.42,
|
| 1928 |
+
"tokens/trainable": 62646
|
| 1929 |
+
},
|
| 1930 |
+
{
|
| 1931 |
+
"epoch": 0.5390625,
|
| 1932 |
+
"grad_norm": 0.15259796380996704,
|
| 1933 |
+
"learning_rate": 8.875691779131569e-05,
|
| 1934 |
+
"loss": 0.007893089205026627,
|
| 1935 |
+
"memory/device_reserved (GiB)": 35.79,
|
| 1936 |
+
"memory/max_active (GiB)": 33.79,
|
| 1937 |
+
"memory/max_allocated (GiB)": 33.79,
|
| 1938 |
+
"ppl": 1.00792,
|
| 1939 |
+
"step": 138,
|
| 1940 |
+
"tokens/total": 4173648,
|
| 1941 |
+
"tokens/train_per_sec_per_gpu": 36.58,
|
| 1942 |
+
"tokens/trainable": 63097
|
| 1943 |
+
},
|
| 1944 |
+
{
|
| 1945 |
+
"epoch": 0.54296875,
|
| 1946 |
+
"grad_norm": 0.2609741985797882,
|
| 1947 |
+
"learning_rate": 8.856425797031829e-05,
|
| 1948 |
+
"loss": 0.009887185879051685,
|
| 1949 |
+
"memory/device_reserved (GiB)": 35.79,
|
| 1950 |
+
"memory/max_active (GiB)": 33.92,
|
| 1951 |
+
"memory/max_allocated (GiB)": 33.92,
|
| 1952 |
+
"ppl": 1.00994,
|
| 1953 |
+
"step": 139,
|
| 1954 |
+
"tokens/total": 4204080,
|
| 1955 |
+
"tokens/train_per_sec_per_gpu": 37.62,
|
| 1956 |
+
"tokens/trainable": 63585
|
| 1957 |
+
},
|
| 1958 |
+
{
|
| 1959 |
+
"epoch": 0.546875,
|
| 1960 |
+
"grad_norm": 0.3938979506492615,
|
| 1961 |
+
"learning_rate": 8.837020140354295e-05,
|
| 1962 |
+
"loss": 0.020112136378884315,
|
| 1963 |
+
"memory/device_reserved (GiB)": 35.79,
|
| 1964 |
+
"memory/max_active (GiB)": 33.42,
|
| 1965 |
+
"memory/max_allocated (GiB)": 33.42,
|
| 1966 |
+
"ppl": 1.02032,
|
| 1967 |
+
"step": 140,
|
| 1968 |
+
"tokens/total": 4232400,
|
| 1969 |
+
"tokens/train_per_sec_per_gpu": 33.14,
|
| 1970 |
+
"tokens/trainable": 64002
|
| 1971 |
+
},
|
| 1972 |
+
{
|
| 1973 |
+
"epoch": 0.55078125,
|
| 1974 |
+
"grad_norm": 0.2883419096469879,
|
| 1975 |
+
"learning_rate": 8.817475616647554e-05,
|
| 1976 |
+
"loss": 0.020921282470226288,
|
| 1977 |
+
"memory/device_reserved (GiB)": 35.79,
|
| 1978 |
+
"memory/max_active (GiB)": 33.82,
|
| 1979 |
+
"memory/max_allocated (GiB)": 33.82,
|
| 1980 |
+
"ppl": 1.02114,
|
| 1981 |
+
"step": 141,
|
| 1982 |
+
"tokens/total": 4262624,
|
| 1983 |
+
"tokens/train_per_sec_per_gpu": 35.28,
|
| 1984 |
+
"tokens/trainable": 64459
|
| 1985 |
+
},
|
| 1986 |
+
{
|
| 1987 |
+
"epoch": 0.5546875,
|
| 1988 |
+
"grad_norm": 0.22204594314098358,
|
| 1989 |
+
"learning_rate": 8.797793039239017e-05,
|
| 1990 |
+
"loss": 0.007596657145768404,
|
| 1991 |
+
"memory/device_reserved (GiB)": 35.79,
|
| 1992 |
+
"memory/max_active (GiB)": 33.94,
|
| 1993 |
+
"memory/max_allocated (GiB)": 33.94,
|
| 1994 |
+
"ppl": 1.00763,
|
| 1995 |
+
"step": 142,
|
| 1996 |
+
"tokens/total": 4293168,
|
| 1997 |
+
"tokens/train_per_sec_per_gpu": 34.06,
|
| 1998 |
+
"tokens/trainable": 64897
|
| 1999 |
+
},
|
| 2000 |
+
{
|
| 2001 |
+
"epoch": 0.55859375,
|
| 2002 |
+
"grad_norm": 0.3463776409626007,
|
| 2003 |
+
"learning_rate": 8.777973227201069e-05,
|
| 2004 |
+
"loss": 0.008941063657402992,
|
| 2005 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2006 |
+
"memory/max_active (GiB)": 33.8,
|
| 2007 |
+
"memory/max_allocated (GiB)": 33.8,
|
| 2008 |
+
"ppl": 1.00898,
|
| 2009 |
+
"step": 143,
|
| 2010 |
+
"tokens/total": 4323168,
|
| 2011 |
+
"tokens/train_per_sec_per_gpu": 37.81,
|
| 2012 |
+
"tokens/trainable": 65376
|
| 2013 |
+
},
|
| 2014 |
+
{
|
| 2015 |
+
"epoch": 0.5625,
|
| 2016 |
+
"grad_norm": 0.07992643117904663,
|
| 2017 |
+
"learning_rate": 8.758017005316988e-05,
|
| 2018 |
+
"loss": 0.002066058572381735,
|
| 2019 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2020 |
+
"memory/max_active (GiB)": 33.81,
|
| 2021 |
+
"memory/max_allocated (GiB)": 33.81,
|
| 2022 |
+
"ppl": 1.00207,
|
| 2023 |
+
"step": 144,
|
| 2024 |
+
"tokens/total": 4353264,
|
| 2025 |
+
"tokens/train_per_sec_per_gpu": 36.81,
|
| 2026 |
+
"tokens/trainable": 65842
|
| 2027 |
+
},
|
| 2028 |
+
{
|
| 2029 |
+
"epoch": 0.56640625,
|
| 2030 |
+
"grad_norm": 0.4542894959449768,
|
| 2031 |
+
"learning_rate": 8.737925204046629e-05,
|
| 2032 |
+
"loss": 0.006295363884419203,
|
| 2033 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2034 |
+
"memory/max_active (GiB)": 33.79,
|
| 2035 |
+
"memory/max_allocated (GiB)": 33.79,
|
| 2036 |
+
"ppl": 1.00632,
|
| 2037 |
+
"step": 145,
|
| 2038 |
+
"tokens/total": 4383504,
|
| 2039 |
+
"tokens/train_per_sec_per_gpu": 33.05,
|
| 2040 |
+
"tokens/trainable": 66282
|
| 2041 |
+
},
|
| 2042 |
+
{
|
| 2043 |
+
"epoch": 0.5703125,
|
| 2044 |
+
"grad_norm": 0.6165645122528076,
|
| 2045 |
+
"learning_rate": 8.717698659491851e-05,
|
| 2046 |
+
"loss": 0.021687351167201996,
|
| 2047 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2048 |
+
"memory/max_active (GiB)": 33.74,
|
| 2049 |
+
"memory/max_allocated (GiB)": 33.74,
|
| 2050 |
+
"ppl": 1.02192,
|
| 2051 |
+
"step": 146,
|
| 2052 |
+
"tokens/total": 4413776,
|
| 2053 |
+
"tokens/train_per_sec_per_gpu": 31.67,
|
| 2054 |
+
"tokens/trainable": 66733
|
| 2055 |
+
},
|
| 2056 |
+
{
|
| 2057 |
+
"epoch": 0.57421875,
|
| 2058 |
+
"grad_norm": 0.44622310996055603,
|
| 2059 |
+
"learning_rate": 8.697338213361735e-05,
|
| 2060 |
+
"loss": 0.010542265139520168,
|
| 2061 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2062 |
+
"memory/max_active (GiB)": 33.83,
|
| 2063 |
+
"memory/max_allocated (GiB)": 33.83,
|
| 2064 |
+
"ppl": 1.0106,
|
| 2065 |
+
"step": 147,
|
| 2066 |
+
"tokens/total": 4444032,
|
| 2067 |
+
"tokens/train_per_sec_per_gpu": 35.41,
|
| 2068 |
+
"tokens/trainable": 67147
|
| 2069 |
+
},
|
| 2070 |
+
{
|
| 2071 |
+
"epoch": 0.578125,
|
| 2072 |
+
"grad_norm": 0.5972599387168884,
|
| 2073 |
+
"learning_rate": 8.676844712937552e-05,
|
| 2074 |
+
"loss": 0.015109038911759853,
|
| 2075 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2076 |
+
"memory/max_active (GiB)": 33.83,
|
| 2077 |
+
"memory/max_allocated (GiB)": 33.83,
|
| 2078 |
+
"ppl": 1.01522,
|
| 2079 |
+
"step": 148,
|
| 2080 |
+
"tokens/total": 4474384,
|
| 2081 |
+
"tokens/train_per_sec_per_gpu": 35.19,
|
| 2082 |
+
"tokens/trainable": 67630
|
| 2083 |
+
},
|
| 2084 |
+
{
|
| 2085 |
+
"epoch": 0.58203125,
|
| 2086 |
+
"grad_norm": 0.16330066323280334,
|
| 2087 |
+
"learning_rate": 8.656219011037509e-05,
|
| 2088 |
+
"loss": 0.003038810333237052,
|
| 2089 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2090 |
+
"memory/max_active (GiB)": 33.86,
|
| 2091 |
+
"memory/max_allocated (GiB)": 33.86,
|
| 2092 |
+
"ppl": 1.00304,
|
| 2093 |
+
"step": 149,
|
| 2094 |
+
"tokens/total": 4504800,
|
| 2095 |
+
"tokens/train_per_sec_per_gpu": 33.97,
|
| 2096 |
+
"tokens/trainable": 68074
|
| 2097 |
+
},
|
| 2098 |
+
{
|
| 2099 |
+
"epoch": 0.5859375,
|
| 2100 |
+
"grad_norm": 0.1966242492198944,
|
| 2101 |
+
"learning_rate": 8.63546196598125e-05,
|
| 2102 |
+
"loss": 0.00474123377352953,
|
| 2103 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2104 |
+
"memory/max_active (GiB)": 33.8,
|
| 2105 |
+
"memory/max_allocated (GiB)": 33.8,
|
| 2106 |
+
"ppl": 1.00475,
|
| 2107 |
+
"step": 150,
|
| 2108 |
+
"tokens/total": 4534896,
|
| 2109 |
+
"tokens/train_per_sec_per_gpu": 33.28,
|
| 2110 |
+
"tokens/trainable": 68542
|
| 2111 |
+
},
|
| 2112 |
+
{
|
| 2113 |
+
"epoch": 0.58984375,
|
| 2114 |
+
"grad_norm": 0.2519090175628662,
|
| 2115 |
+
"learning_rate": 8.614574441554145e-05,
|
| 2116 |
+
"loss": 0.005299043841660023,
|
| 2117 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2118 |
+
"memory/max_active (GiB)": 33.8,
|
| 2119 |
+
"memory/max_allocated (GiB)": 33.8,
|
| 2120 |
+
"ppl": 1.00531,
|
| 2121 |
+
"step": 151,
|
| 2122 |
+
"tokens/total": 4565008,
|
| 2123 |
+
"tokens/train_per_sec_per_gpu": 30.34,
|
| 2124 |
+
"tokens/trainable": 69008
|
| 2125 |
+
},
|
| 2126 |
+
{
|
| 2127 |
+
"epoch": 0.59375,
|
| 2128 |
+
"grad_norm": 0.45198729634284973,
|
| 2129 |
+
"learning_rate": 8.593557306971349e-05,
|
| 2130 |
+
"loss": 0.00804843008518219,
|
| 2131 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2132 |
+
"memory/max_active (GiB)": 33.93,
|
| 2133 |
+
"memory/max_allocated (GiB)": 33.93,
|
| 2134 |
+
"ppl": 1.00808,
|
| 2135 |
+
"step": 152,
|
| 2136 |
+
"tokens/total": 4595520,
|
| 2137 |
+
"tokens/train_per_sec_per_gpu": 35.52,
|
| 2138 |
+
"tokens/trainable": 69462
|
| 2139 |
+
},
|
| 2140 |
+
{
|
| 2141 |
+
"epoch": 0.59765625,
|
| 2142 |
+
"grad_norm": 1.9722840785980225,
|
| 2143 |
+
"learning_rate": 8.572411436841618e-05,
|
| 2144 |
+
"loss": 0.015857091173529625,
|
| 2145 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2146 |
+
"memory/max_active (GiB)": 33.84,
|
| 2147 |
+
"memory/max_allocated (GiB)": 33.84,
|
| 2148 |
+
"ppl": 1.01598,
|
| 2149 |
+
"step": 153,
|
| 2150 |
+
"tokens/total": 4625952,
|
| 2151 |
+
"tokens/train_per_sec_per_gpu": 33.96,
|
| 2152 |
+
"tokens/trainable": 69925
|
| 2153 |
+
},
|
| 2154 |
+
{
|
| 2155 |
+
"epoch": 0.6015625,
|
| 2156 |
+
"grad_norm": 0.1563708782196045,
|
| 2157 |
+
"learning_rate": 8.551137711130922e-05,
|
| 2158 |
+
"loss": 0.003014163114130497,
|
| 2159 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2160 |
+
"memory/max_active (GiB)": 33.87,
|
| 2161 |
+
"memory/max_allocated (GiB)": 33.87,
|
| 2162 |
+
"ppl": 1.00302,
|
| 2163 |
+
"step": 154,
|
| 2164 |
+
"tokens/total": 4656272,
|
| 2165 |
+
"tokens/train_per_sec_per_gpu": 36.73,
|
| 2166 |
+
"tokens/trainable": 70392
|
| 2167 |
+
},
|
| 2168 |
+
{
|
| 2169 |
+
"epoch": 0.60546875,
|
| 2170 |
+
"grad_norm": 0.3952409327030182,
|
| 2171 |
+
"learning_rate": 8.529737015125824e-05,
|
| 2172 |
+
"loss": 0.020546773448586464,
|
| 2173 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2174 |
+
"memory/max_active (GiB)": 33.85,
|
| 2175 |
+
"memory/max_allocated (GiB)": 33.85,
|
| 2176 |
+
"ppl": 1.02076,
|
| 2177 |
+
"step": 155,
|
| 2178 |
+
"tokens/total": 4684592,
|
| 2179 |
+
"tokens/train_per_sec_per_gpu": 35.63,
|
| 2180 |
+
"tokens/trainable": 70826
|
| 2181 |
+
},
|
| 2182 |
+
{
|
| 2183 |
+
"epoch": 0.609375,
|
| 2184 |
+
"grad_norm": 0.29893431067466736,
|
| 2185 |
+
"learning_rate": 8.508210239396639e-05,
|
| 2186 |
+
"loss": 0.006672243122011423,
|
| 2187 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2188 |
+
"memory/max_active (GiB)": 33.87,
|
| 2189 |
+
"memory/max_allocated (GiB)": 33.87,
|
| 2190 |
+
"ppl": 1.00669,
|
| 2191 |
+
"step": 156,
|
| 2192 |
+
"tokens/total": 4715136,
|
| 2193 |
+
"tokens/train_per_sec_per_gpu": 34.03,
|
| 2194 |
+
"tokens/trainable": 71284
|
| 2195 |
+
},
|
| 2196 |
+
{
|
| 2197 |
+
"epoch": 0.61328125,
|
| 2198 |
+
"grad_norm": 0.12646262347698212,
|
| 2199 |
+
"learning_rate": 8.486558279760375e-05,
|
| 2200 |
+
"loss": 0.001321017974987626,
|
| 2201 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2202 |
+
"memory/max_active (GiB)": 33.79,
|
| 2203 |
+
"memory/max_allocated (GiB)": 33.79,
|
| 2204 |
+
"ppl": 1.00132,
|
| 2205 |
+
"step": 157,
|
| 2206 |
+
"tokens/total": 4745296,
|
| 2207 |
+
"tokens/train_per_sec_per_gpu": 35.12,
|
| 2208 |
+
"tokens/trainable": 71746
|
| 2209 |
+
},
|
| 2210 |
+
{
|
| 2211 |
+
"epoch": 0.6171875,
|
| 2212 |
+
"grad_norm": 0.3663196563720703,
|
| 2213 |
+
"learning_rate": 8.464782037243449e-05,
|
| 2214 |
+
"loss": 0.00867768656462431,
|
| 2215 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2216 |
+
"memory/max_active (GiB)": 33.9,
|
| 2217 |
+
"memory/max_allocated (GiB)": 33.9,
|
| 2218 |
+
"ppl": 1.00872,
|
| 2219 |
+
"step": 158,
|
| 2220 |
+
"tokens/total": 4775696,
|
| 2221 |
+
"tokens/train_per_sec_per_gpu": 32.33,
|
| 2222 |
+
"tokens/trainable": 72182
|
| 2223 |
+
},
|
| 2224 |
+
{
|
| 2225 |
+
"epoch": 0.62109375,
|
| 2226 |
+
"grad_norm": 0.32793474197387695,
|
| 2227 |
+
"learning_rate": 8.442882418044202e-05,
|
| 2228 |
+
"loss": 0.012621743604540825,
|
| 2229 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2230 |
+
"memory/max_active (GiB)": 33.75,
|
| 2231 |
+
"memory/max_allocated (GiB)": 33.75,
|
| 2232 |
+
"ppl": 1.0127,
|
| 2233 |
+
"step": 159,
|
| 2234 |
+
"tokens/total": 4805776,
|
| 2235 |
+
"tokens/train_per_sec_per_gpu": 30.69,
|
| 2236 |
+
"tokens/trainable": 72601
|
| 2237 |
+
},
|
| 2238 |
+
{
|
| 2239 |
+
"epoch": 0.625,
|
| 2240 |
+
"grad_norm": 0.502180278301239,
|
| 2241 |
+
"learning_rate": 8.420860333495179e-05,
|
| 2242 |
+
"loss": 0.02071015164256096,
|
| 2243 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2244 |
+
"memory/max_active (GiB)": 33.84,
|
| 2245 |
+
"memory/max_allocated (GiB)": 33.84,
|
| 2246 |
+
"ppl": 1.02093,
|
| 2247 |
+
"step": 160,
|
| 2248 |
+
"tokens/total": 4836224,
|
| 2249 |
+
"tokens/train_per_sec_per_gpu": 31.57,
|
| 2250 |
+
"tokens/trainable": 73058
|
| 2251 |
+
},
|
| 2252 |
+
{
|
| 2253 |
+
"epoch": 0.62890625,
|
| 2254 |
+
"grad_norm": 3.3360722064971924,
|
| 2255 |
+
"learning_rate": 8.398716700025208e-05,
|
| 2256 |
+
"loss": 0.010355101898312569,
|
| 2257 |
+
"memory/device_reserved (GiB)": 37.89,
|
| 2258 |
+
"memory/max_active (GiB)": 33.75,
|
| 2259 |
+
"memory/max_allocated (GiB)": 33.75,
|
| 2260 |
+
"ppl": 1.01041,
|
| 2261 |
+
"step": 161,
|
| 2262 |
+
"tokens/total": 4866464,
|
| 2263 |
+
"tokens/train_per_sec_per_gpu": 30.11,
|
| 2264 |
+
"tokens/trainable": 73471
|
| 2265 |
+
},
|
| 2266 |
+
{
|
| 2267 |
+
"epoch": 0.6328125,
|
| 2268 |
+
"grad_norm": 0.42214301228523254,
|
| 2269 |
+
"learning_rate": 8.376452439121266e-05,
|
| 2270 |
+
"loss": 0.010006662458181381,
|
| 2271 |
+
"memory/device_reserved (GiB)": 35.82,
|
| 2272 |
+
"memory/max_active (GiB)": 33.97,
|
| 2273 |
+
"memory/max_allocated (GiB)": 33.97,
|
| 2274 |
+
"ppl": 1.01006,
|
| 2275 |
+
"step": 162,
|
| 2276 |
+
"tokens/total": 4897040,
|
| 2277 |
+
"tokens/train_per_sec_per_gpu": 32.77,
|
| 2278 |
+
"tokens/trainable": 73920
|
| 2279 |
+
},
|
| 2280 |
+
{
|
| 2281 |
+
"epoch": 0.63671875,
|
| 2282 |
+
"grad_norm": 0.5886772871017456,
|
| 2283 |
+
"learning_rate": 8.354068477290124e-05,
|
| 2284 |
+
"loss": 0.015542788431048393,
|
| 2285 |
+
"memory/device_reserved (GiB)": 35.82,
|
| 2286 |
+
"memory/max_active (GiB)": 33.88,
|
| 2287 |
+
"memory/max_allocated (GiB)": 33.88,
|
| 2288 |
+
"ppl": 1.01566,
|
| 2289 |
+
"step": 163,
|
| 2290 |
+
"tokens/total": 4927360,
|
| 2291 |
+
"tokens/train_per_sec_per_gpu": 35.47,
|
| 2292 |
+
"tokens/trainable": 74376
|
| 2293 |
+
},
|
| 2294 |
+
{
|
| 2295 |
+
"epoch": 0.640625,
|
| 2296 |
+
"grad_norm": 0.5640157461166382,
|
| 2297 |
+
"learning_rate": 8.331565746019807e-05,
|
| 2298 |
+
"loss": 0.019208863377571106,
|
| 2299 |
+
"memory/device_reserved (GiB)": 35.82,
|
| 2300 |
+
"memory/max_active (GiB)": 33.86,
|
| 2301 |
+
"memory/max_allocated (GiB)": 33.86,
|
| 2302 |
+
"ppl": 1.01939,
|
| 2303 |
+
"step": 164,
|
| 2304 |
+
"tokens/total": 4957952,
|
| 2305 |
+
"tokens/train_per_sec_per_gpu": 33.45,
|
| 2306 |
+
"tokens/trainable": 74827
|
| 2307 |
+
},
|
| 2308 |
+
{
|
| 2309 |
+
"epoch": 0.64453125,
|
| 2310 |
+
"grad_norm": 0.09329716116189957,
|
| 2311 |
+
"learning_rate": 8.308945181740812e-05,
|
| 2312 |
+
"loss": 0.001608099672012031,
|
| 2313 |
+
"memory/device_reserved (GiB)": 35.82,
|
| 2314 |
+
"memory/max_active (GiB)": 33.88,
|
| 2315 |
+
"memory/max_allocated (GiB)": 33.88,
|
| 2316 |
+
"ppl": 1.00161,
|
| 2317 |
+
"step": 165,
|
| 2318 |
+
"tokens/total": 4988288,
|
| 2319 |
+
"tokens/train_per_sec_per_gpu": 31.79,
|
| 2320 |
+
"tokens/trainable": 75259
|
| 2321 |
+
},
|
| 2322 |
+
{
|
| 2323 |
+
"epoch": 0.6484375,
|
| 2324 |
+
"grad_norm": 0.4663255512714386,
|
| 2325 |
+
"learning_rate": 8.286207725787153e-05,
|
| 2326 |
+
"loss": 0.003368590958416462,
|
| 2327 |
+
"memory/device_reserved (GiB)": 35.82,
|
| 2328 |
+
"memory/max_active (GiB)": 33.75,
|
| 2329 |
+
"memory/max_allocated (GiB)": 33.75,
|
| 2330 |
+
"ppl": 1.00337,
|
| 2331 |
+
"step": 166,
|
| 2332 |
+
"tokens/total": 5018592,
|
| 2333 |
+
"tokens/train_per_sec_per_gpu": 31.92,
|
| 2334 |
+
"tokens/trainable": 75700
|
| 2335 |
+
},
|
| 2336 |
+
{
|
| 2337 |
+
"epoch": 0.65234375,
|
| 2338 |
+
"grad_norm": 0.09389737993478775,
|
| 2339 |
+
"learning_rate": 8.263354324357182e-05,
|
| 2340 |
+
"loss": 0.004297872073948383,
|
| 2341 |
+
"memory/device_reserved (GiB)": 35.82,
|
| 2342 |
+
"memory/max_active (GiB)": 33.99,
|
| 2343 |
+
"memory/max_allocated (GiB)": 33.99,
|
| 2344 |
+
"ppl": 1.00431,
|
| 2345 |
+
"step": 167,
|
| 2346 |
+
"tokens/total": 5049264,
|
| 2347 |
+
"tokens/train_per_sec_per_gpu": 31.38,
|
| 2348 |
+
"tokens/trainable": 76161
|
| 2349 |
+
},
|
| 2350 |
+
{
|
| 2351 |
+
"epoch": 0.65625,
|
| 2352 |
+
"grad_norm": 0.2795652151107788,
|
| 2353 |
+
"learning_rate": 8.240385928474219e-05,
|
| 2354 |
+
"loss": 0.009957612492144108,
|
| 2355 |
+
"memory/device_reserved (GiB)": 35.82,
|
| 2356 |
+
"memory/max_active (GiB)": 33.93,
|
| 2357 |
+
"memory/max_allocated (GiB)": 33.93,
|
| 2358 |
+
"ppl": 1.01001,
|
| 2359 |
+
"step": 168,
|
| 2360 |
+
"tokens/total": 5079776,
|
| 2361 |
+
"tokens/train_per_sec_per_gpu": 34.52,
|
| 2362 |
+
"tokens/trainable": 76620
|
| 2363 |
+
},
|
| 2364 |
+
{
|
| 2365 |
+
"epoch": 0.66015625,
|
| 2366 |
+
"grad_norm": 0.6108075976371765,
|
| 2367 |
+
"learning_rate": 8.217303493946967e-05,
|
| 2368 |
+
"loss": 0.004623654298484325,
|
| 2369 |
+
"memory/device_reserved (GiB)": 35.82,
|
| 2370 |
+
"memory/max_active (GiB)": 33.84,
|
| 2371 |
+
"memory/max_allocated (GiB)": 33.84,
|
| 2372 |
+
"ppl": 1.00463,
|
| 2373 |
+
"step": 169,
|
| 2374 |
+
"tokens/total": 5110112,
|
| 2375 |
+
"tokens/train_per_sec_per_gpu": 34.47,
|
| 2376 |
+
"tokens/trainable": 77044
|
| 2377 |
+
},
|
| 2378 |
+
{
|
| 2379 |
+
"epoch": 0.6640625,
|
| 2380 |
+
"grad_norm": 2.5686914920806885,
|
| 2381 |
+
"learning_rate": 8.194107981329746e-05,
|
| 2382 |
+
"loss": 0.014518939889967442,
|
| 2383 |
+
"memory/device_reserved (GiB)": 36.02,
|
| 2384 |
+
"memory/max_active (GiB)": 33.9,
|
| 2385 |
+
"memory/max_allocated (GiB)": 33.9,
|
| 2386 |
+
"ppl": 1.01462,
|
| 2387 |
+
"step": 170,
|
| 2388 |
+
"tokens/total": 5140512,
|
| 2389 |
+
"tokens/train_per_sec_per_gpu": 34.2,
|
| 2390 |
+
"tokens/trainable": 77493
|
| 2391 |
+
},
|
| 2392 |
+
{
|
| 2393 |
+
"epoch": 0.66796875,
|
| 2394 |
+
"grad_norm": 0.29714030027389526,
|
| 2395 |
+
"learning_rate": 8.170800355882518e-05,
|
| 2396 |
+
"loss": 0.010281096212565899,
|
| 2397 |
+
"memory/device_reserved (GiB)": 36.02,
|
| 2398 |
+
"memory/max_active (GiB)": 33.79,
|
| 2399 |
+
"memory/max_allocated (GiB)": 33.79,
|
| 2400 |
+
"ppl": 1.01033,
|
| 2401 |
+
"step": 171,
|
| 2402 |
+
"tokens/total": 5170768,
|
| 2403 |
+
"tokens/train_per_sec_per_gpu": 33.28,
|
| 2404 |
+
"tokens/trainable": 77953
|
| 2405 |
+
},
|
| 2406 |
+
{
|
| 2407 |
+
"epoch": 0.671875,
|
| 2408 |
+
"grad_norm": 0.24662797152996063,
|
| 2409 |
+
"learning_rate": 8.147381587530713e-05,
|
| 2410 |
+
"loss": 0.005124978721141815,
|
| 2411 |
+
"memory/device_reserved (GiB)": 36.02,
|
| 2412 |
+
"memory/max_active (GiB)": 33.84,
|
| 2413 |
+
"memory/max_allocated (GiB)": 33.84,
|
| 2414 |
+
"ppl": 1.00514,
|
| 2415 |
+
"step": 172,
|
| 2416 |
+
"tokens/total": 5201200,
|
| 2417 |
+
"tokens/train_per_sec_per_gpu": 29.9,
|
| 2418 |
+
"tokens/trainable": 78407
|
| 2419 |
+
},
|
| 2420 |
+
{
|
| 2421 |
+
"epoch": 0.67578125,
|
| 2422 |
+
"grad_norm": 0.19063295423984528,
|
| 2423 |
+
"learning_rate": 8.123852650824877e-05,
|
| 2424 |
+
"loss": 0.005921770352870226,
|
| 2425 |
+
"memory/device_reserved (GiB)": 36.02,
|
| 2426 |
+
"memory/max_active (GiB)": 33.91,
|
| 2427 |
+
"memory/max_allocated (GiB)": 33.91,
|
| 2428 |
+
"ppl": 1.00594,
|
| 2429 |
+
"step": 173,
|
| 2430 |
+
"tokens/total": 5231632,
|
| 2431 |
+
"tokens/train_per_sec_per_gpu": 33.16,
|
| 2432 |
+
"tokens/trainable": 78846
|
| 2433 |
+
},
|
| 2434 |
+
{
|
| 2435 |
+
"epoch": 0.6796875,
|
| 2436 |
+
"grad_norm": 0.5131625533103943,
|
| 2437 |
+
"learning_rate": 8.100214524900103e-05,
|
| 2438 |
+
"loss": 0.01540191750973463,
|
| 2439 |
+
"memory/device_reserved (GiB)": 36.02,
|
| 2440 |
+
"memory/max_active (GiB)": 33.62,
|
| 2441 |
+
"memory/max_allocated (GiB)": 33.62,
|
| 2442 |
+
"ppl": 1.01552,
|
| 2443 |
+
"step": 174,
|
| 2444 |
+
"tokens/total": 5261360,
|
| 2445 |
+
"tokens/train_per_sec_per_gpu": 30.17,
|
| 2446 |
+
"tokens/trainable": 79263
|
| 2447 |
+
},
|
| 2448 |
+
{
|
| 2449 |
+
"epoch": 0.68359375,
|
| 2450 |
+
"grad_norm": 0.11886871606111526,
|
| 2451 |
+
"learning_rate": 8.076468193435301e-05,
|
| 2452 |
+
"loss": 0.0013660730328410864,
|
| 2453 |
+
"memory/device_reserved (GiB)": 36.02,
|
| 2454 |
+
"memory/max_active (GiB)": 33.8,
|
| 2455 |
+
"memory/max_allocated (GiB)": 33.8,
|
| 2456 |
+
"ppl": 1.00137,
|
| 2457 |
+
"step": 175,
|
| 2458 |
+
"tokens/total": 5291648,
|
| 2459 |
+
"tokens/train_per_sec_per_gpu": 32.59,
|
| 2460 |
+
"tokens/trainable": 79733
|
| 2461 |
+
},
|
| 2462 |
+
{
|
| 2463 |
+
"epoch": 0.6875,
|
| 2464 |
+
"grad_norm": 0.39346420764923096,
|
| 2465 |
+
"learning_rate": 8.052614644612253e-05,
|
| 2466 |
+
"loss": 0.007847018539905548,
|
| 2467 |
+
"memory/device_reserved (GiB)": 36.02,
|
| 2468 |
+
"memory/max_active (GiB)": 33.93,
|
| 2469 |
+
"memory/max_allocated (GiB)": 33.93,
|
| 2470 |
+
"ppl": 1.00788,
|
| 2471 |
+
"step": 176,
|
| 2472 |
+
"tokens/total": 5322160,
|
| 2473 |
+
"tokens/train_per_sec_per_gpu": 36.19,
|
| 2474 |
+
"tokens/trainable": 80211
|
| 2475 |
+
},
|
| 2476 |
+
{
|
| 2477 |
+
"epoch": 0.69140625,
|
| 2478 |
+
"grad_norm": 0.05455538257956505,
|
| 2479 |
+
"learning_rate": 8.028654871074489e-05,
|
| 2480 |
+
"loss": 0.0007541990489698946,
|
| 2481 |
+
"memory/device_reserved (GiB)": 36.02,
|
| 2482 |
+
"memory/max_active (GiB)": 33.84,
|
| 2483 |
+
"memory/max_allocated (GiB)": 33.84,
|
| 2484 |
+
"ppl": 1.00075,
|
| 2485 |
+
"step": 177,
|
| 2486 |
+
"tokens/total": 5352496,
|
| 2487 |
+
"tokens/train_per_sec_per_gpu": 32.69,
|
| 2488 |
+
"tokens/trainable": 80658
|
| 2489 |
+
},
|
| 2490 |
+
{
|
| 2491 |
+
"epoch": 0.6953125,
|
| 2492 |
+
"grad_norm": 0.3038773536682129,
|
| 2493 |
+
"learning_rate": 8.004589869885986e-05,
|
| 2494 |
+
"loss": 0.006179198157042265,
|
| 2495 |
+
"memory/device_reserved (GiB)": 36.02,
|
| 2496 |
+
"memory/max_active (GiB)": 33.81,
|
| 2497 |
+
"memory/max_allocated (GiB)": 33.81,
|
| 2498 |
+
"ppl": 1.0062,
|
| 2499 |
+
"step": 178,
|
| 2500 |
+
"tokens/total": 5382704,
|
| 2501 |
+
"tokens/train_per_sec_per_gpu": 34.89,
|
| 2502 |
+
"tokens/trainable": 81126
|
| 2503 |
+
},
|
| 2504 |
+
{
|
| 2505 |
+
"epoch": 0.69921875,
|
| 2506 |
+
"grad_norm": 0.08510788530111313,
|
| 2507 |
+
"learning_rate": 7.980420642489674e-05,
|
| 2508 |
+
"loss": 0.0012173540890216827,
|
| 2509 |
+
"memory/device_reserved (GiB)": 36.02,
|
| 2510 |
+
"memory/max_active (GiB)": 33.82,
|
| 2511 |
+
"memory/max_allocated (GiB)": 33.82,
|
| 2512 |
+
"ppl": 1.00122,
|
| 2513 |
+
"step": 179,
|
| 2514 |
+
"tokens/total": 5412704,
|
| 2515 |
+
"tokens/train_per_sec_per_gpu": 33.14,
|
| 2516 |
+
"tokens/trainable": 81573
|
| 2517 |
+
},
|
| 2518 |
+
{
|
| 2519 |
+
"epoch": 0.703125,
|
| 2520 |
+
"grad_norm": 0.3349142074584961,
|
| 2521 |
+
"learning_rate": 7.95614819466576e-05,
|
| 2522 |
+
"loss": 0.00507398834452033,
|
| 2523 |
+
"memory/device_reserved (GiB)": 36.02,
|
| 2524 |
+
"memory/max_active (GiB)": 33.8,
|
| 2525 |
+
"memory/max_allocated (GiB)": 33.8,
|
| 2526 |
+
"ppl": 1.00509,
|
| 2527 |
+
"step": 180,
|
| 2528 |
+
"tokens/total": 5442880,
|
| 2529 |
+
"tokens/train_per_sec_per_gpu": 34.64,
|
| 2530 |
+
"tokens/trainable": 82046
|
| 2531 |
+
},
|
| 2532 |
+
{
|
| 2533 |
+
"epoch": 0.70703125,
|
| 2534 |
+
"grad_norm": 0.3200117349624634,
|
| 2535 |
+
"learning_rate": 7.931773536489872e-05,
|
| 2536 |
+
"loss": 0.007542713545262814,
|
| 2537 |
+
"memory/device_reserved (GiB)": 36.02,
|
| 2538 |
+
"memory/max_active (GiB)": 33.84,
|
| 2539 |
+
"memory/max_allocated (GiB)": 33.84,
|
| 2540 |
+
"ppl": 1.00757,
|
| 2541 |
+
"step": 181,
|
| 2542 |
+
"tokens/total": 5473136,
|
| 2543 |
+
"tokens/train_per_sec_per_gpu": 38.92,
|
| 2544 |
+
"tokens/trainable": 82563
|
| 2545 |
+
},
|
| 2546 |
+
{
|
| 2547 |
+
"epoch": 0.7109375,
|
| 2548 |
+
"grad_norm": 0.13203248381614685,
|
| 2549 |
+
"learning_rate": 7.907297682291035e-05,
|
| 2550 |
+
"loss": 0.0025186133570969105,
|
| 2551 |
+
"memory/device_reserved (GiB)": 36.02,
|
| 2552 |
+
"memory/max_active (GiB)": 33.87,
|
| 2553 |
+
"memory/max_allocated (GiB)": 33.87,
|
| 2554 |
+
"ppl": 1.00252,
|
| 2555 |
+
"step": 182,
|
| 2556 |
+
"tokens/total": 5503488,
|
| 2557 |
+
"tokens/train_per_sec_per_gpu": 34.06,
|
| 2558 |
+
"tokens/trainable": 83051
|
| 2559 |
+
},
|
| 2560 |
+
{
|
| 2561 |
+
"epoch": 0.71484375,
|
| 2562 |
+
"grad_norm": 0.3643631637096405,
|
| 2563 |
+
"learning_rate": 7.882721650609442e-05,
|
| 2564 |
+
"loss": 0.012744799256324768,
|
| 2565 |
+
"memory/device_reserved (GiB)": 36.02,
|
| 2566 |
+
"memory/max_active (GiB)": 33.83,
|
| 2567 |
+
"memory/max_allocated (GiB)": 33.83,
|
| 2568 |
+
"ppl": 1.01283,
|
| 2569 |
+
"step": 183,
|
| 2570 |
+
"tokens/total": 5533680,
|
| 2571 |
+
"tokens/train_per_sec_per_gpu": 32.85,
|
| 2572 |
+
"tokens/trainable": 83498
|
| 2573 |
+
},
|
| 2574 |
+
{
|
| 2575 |
+
"epoch": 0.71875,
|
| 2576 |
+
"grad_norm": 0.012706859968602657,
|
| 2577 |
+
"learning_rate": 7.85804646415409e-05,
|
| 2578 |
+
"loss": 0.00015147411613725126,
|
| 2579 |
+
"memory/device_reserved (GiB)": 36.02,
|
| 2580 |
+
"memory/max_active (GiB)": 33.89,
|
| 2581 |
+
"memory/max_allocated (GiB)": 33.89,
|
| 2582 |
+
"ppl": 1.00015,
|
| 2583 |
+
"step": 184,
|
| 2584 |
+
"tokens/total": 5564160,
|
| 2585 |
+
"tokens/train_per_sec_per_gpu": 35.57,
|
| 2586 |
+
"tokens/trainable": 84004
|
| 2587 |
+
},
|
| 2588 |
+
{
|
| 2589 |
+
"epoch": 0.72265625,
|
| 2590 |
+
"grad_norm": 0.14483962953090668,
|
| 2591 |
+
"learning_rate": 7.833273149760207e-05,
|
| 2592 |
+
"loss": 0.0014616945991292596,
|
| 2593 |
+
"memory/device_reserved (GiB)": 36.02,
|
| 2594 |
+
"memory/max_active (GiB)": 33.82,
|
| 2595 |
+
"memory/max_allocated (GiB)": 33.82,
|
| 2596 |
+
"ppl": 1.00146,
|
| 2597 |
+
"step": 185,
|
| 2598 |
+
"tokens/total": 5594368,
|
| 2599 |
+
"tokens/train_per_sec_per_gpu": 35.63,
|
| 2600 |
+
"tokens/trainable": 84488
|
| 2601 |
+
},
|
| 2602 |
+
{
|
| 2603 |
+
"epoch": 0.7265625,
|
| 2604 |
+
"grad_norm": 0.3152420222759247,
|
| 2605 |
+
"learning_rate": 7.808402738346527e-05,
|
| 2606 |
+
"loss": 0.005956828128546476,
|
| 2607 |
+
"memory/device_reserved (GiB)": 36.02,
|
| 2608 |
+
"memory/max_active (GiB)": 33.9,
|
| 2609 |
+
"memory/max_allocated (GiB)": 33.9,
|
| 2610 |
+
"ppl": 1.00597,
|
| 2611 |
+
"step": 186,
|
| 2612 |
+
"tokens/total": 5624736,
|
| 2613 |
+
"tokens/train_per_sec_per_gpu": 33.45,
|
| 2614 |
+
"tokens/trainable": 84949
|
| 2615 |
+
},
|
| 2616 |
+
{
|
| 2617 |
+
"epoch": 0.73046875,
|
| 2618 |
+
"grad_norm": 0.15444505214691162,
|
| 2619 |
+
"learning_rate": 7.783436264872382e-05,
|
| 2620 |
+
"loss": 0.0022030179388821125,
|
| 2621 |
+
"memory/device_reserved (GiB)": 36.02,
|
| 2622 |
+
"memory/max_active (GiB)": 33.84,
|
| 2623 |
+
"memory/max_allocated (GiB)": 33.84,
|
| 2624 |
+
"ppl": 1.00221,
|
| 2625 |
+
"step": 187,
|
| 2626 |
+
"tokens/total": 5655024,
|
| 2627 |
+
"tokens/train_per_sec_per_gpu": 32.96,
|
| 2628 |
+
"tokens/trainable": 85397
|
| 2629 |
+
},
|
| 2630 |
+
{
|
| 2631 |
+
"epoch": 0.734375,
|
| 2632 |
+
"grad_norm": 1.1173254251480103,
|
| 2633 |
+
"learning_rate": 7.758374768294647e-05,
|
| 2634 |
+
"loss": 0.018108580261468887,
|
| 2635 |
+
"memory/device_reserved (GiB)": 36.02,
|
| 2636 |
+
"memory/max_active (GiB)": 33.85,
|
| 2637 |
+
"memory/max_allocated (GiB)": 33.85,
|
| 2638 |
+
"ppl": 1.01827,
|
| 2639 |
+
"step": 188,
|
| 2640 |
+
"tokens/total": 5685280,
|
| 2641 |
+
"tokens/train_per_sec_per_gpu": 34.04,
|
| 2642 |
+
"tokens/trainable": 85886
|
| 2643 |
+
},
|
| 2644 |
+
{
|
| 2645 |
+
"epoch": 0.73828125,
|
| 2646 |
+
"grad_norm": 0.15292231738567352,
|
| 2647 |
+
"learning_rate": 7.733219291524489e-05,
|
| 2648 |
+
"loss": 0.0033938095439225435,
|
| 2649 |
+
"memory/device_reserved (GiB)": 36.02,
|
| 2650 |
+
"memory/max_active (GiB)": 33.8,
|
| 2651 |
+
"memory/max_allocated (GiB)": 33.8,
|
| 2652 |
+
"ppl": 1.0034,
|
| 2653 |
+
"step": 189,
|
| 2654 |
+
"tokens/total": 5715568,
|
| 2655 |
+
"tokens/train_per_sec_per_gpu": 36.24,
|
| 2656 |
+
"tokens/trainable": 86393
|
| 2657 |
+
},
|
| 2658 |
+
{
|
| 2659 |
+
"epoch": 0.7421875,
|
| 2660 |
+
"grad_norm": 0.3460272550582886,
|
| 2661 |
+
"learning_rate": 7.707970881383977e-05,
|
| 2662 |
+
"loss": 0.003943222109228373,
|
| 2663 |
+
"memory/device_reserved (GiB)": 36.02,
|
| 2664 |
+
"memory/max_active (GiB)": 33.91,
|
| 2665 |
+
"memory/max_allocated (GiB)": 33.91,
|
| 2666 |
+
"ppl": 1.00395,
|
| 2667 |
+
"step": 190,
|
| 2668 |
+
"tokens/total": 5746160,
|
| 2669 |
+
"tokens/train_per_sec_per_gpu": 33.86,
|
| 2670 |
+
"tokens/trainable": 86864
|
| 2671 |
+
},
|
| 2672 |
+
{
|
| 2673 |
+
"epoch": 0.74609375,
|
| 2674 |
+
"grad_norm": 0.17786552011966705,
|
| 2675 |
+
"learning_rate": 7.682630588562518e-05,
|
| 2676 |
+
"loss": 0.002941778162494302,
|
| 2677 |
+
"memory/device_reserved (GiB)": 36.02,
|
| 2678 |
+
"memory/max_active (GiB)": 33.99,
|
| 2679 |
+
"memory/max_allocated (GiB)": 33.99,
|
| 2680 |
+
"ppl": 1.00295,
|
| 2681 |
+
"step": 191,
|
| 2682 |
+
"tokens/total": 5776736,
|
| 2683 |
+
"tokens/train_per_sec_per_gpu": 36.08,
|
| 2684 |
+
"tokens/trainable": 87312
|
| 2685 |
+
},
|
| 2686 |
+
{
|
| 2687 |
+
"epoch": 0.75,
|
| 2688 |
+
"grad_norm": 0.05713065341114998,
|
| 2689 |
+
"learning_rate": 7.657199467573129e-05,
|
| 2690 |
+
"loss": 0.0006791478954255581,
|
| 2691 |
+
"memory/device_reserved (GiB)": 36.02,
|
| 2692 |
+
"memory/max_active (GiB)": 33.83,
|
| 2693 |
+
"memory/max_allocated (GiB)": 33.83,
|
| 2694 |
+
"ppl": 1.00068,
|
| 2695 |
+
"step": 192,
|
| 2696 |
+
"tokens/total": 5807168,
|
| 2697 |
+
"tokens/train_per_sec_per_gpu": 30.28,
|
| 2698 |
+
"tokens/trainable": 87734
|
| 2699 |
+
}
|
| 2700 |
+
],
|
| 2701 |
+
"logging_steps": 1,
|
| 2702 |
+
"max_steps": 512,
|
| 2703 |
+
"num_input_tokens_seen": 0,
|
| 2704 |
+
"num_train_epochs": 2,
|
| 2705 |
+
"save_steps": 32,
|
| 2706 |
+
"stateful_callbacks": {
|
| 2707 |
+
"TrainerControl": {
|
| 2708 |
+
"args": {
|
| 2709 |
+
"should_epoch_stop": false,
|
| 2710 |
+
"should_evaluate": false,
|
| 2711 |
+
"should_log": false,
|
| 2712 |
+
"should_save": true,
|
| 2713 |
+
"should_training_stop": false
|
| 2714 |
+
},
|
| 2715 |
+
"attributes": {}
|
| 2716 |
+
}
|
| 2717 |
+
},
|
| 2718 |
+
"total_flos": 3.94166427763157e+17,
|
| 2719 |
+
"train_batch_size": 16,
|
| 2720 |
+
"trial_name": null,
|
| 2721 |
+
"trial_params": null
|
| 2722 |
+
}
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-192/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:406793bea9f8fabcdcfc11db8c5c7a09125572ea519f1927fa7cb779a1e3293b
|
| 3 |
+
size 8273
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-224/README.md
ADDED
|
@@ -0,0 +1,208 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: /workspace/wave/parent
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- axolotl
|
| 7 |
+
- base_model:adapter:/workspace/wave/parent
|
| 8 |
+
- lora
|
| 9 |
+
- transformers
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# Model Card for Model ID
|
| 13 |
+
|
| 14 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
## Model Details
|
| 19 |
+
|
| 20 |
+
### Model Description
|
| 21 |
+
|
| 22 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
- **Developed by:** [More Information Needed]
|
| 27 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 28 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 29 |
+
- **Model type:** [More Information Needed]
|
| 30 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 31 |
+
- **License:** [More Information Needed]
|
| 32 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 33 |
+
|
| 34 |
+
### Model Sources [optional]
|
| 35 |
+
|
| 36 |
+
<!-- Provide the basic links for the model. -->
|
| 37 |
+
|
| 38 |
+
- **Repository:** [More Information Needed]
|
| 39 |
+
- **Paper [optional]:** [More Information Needed]
|
| 40 |
+
- **Demo [optional]:** [More Information Needed]
|
| 41 |
+
|
| 42 |
+
## Uses
|
| 43 |
+
|
| 44 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 45 |
+
|
| 46 |
+
### Direct Use
|
| 47 |
+
|
| 48 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 49 |
+
|
| 50 |
+
[More Information Needed]
|
| 51 |
+
|
| 52 |
+
### Downstream Use [optional]
|
| 53 |
+
|
| 54 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 55 |
+
|
| 56 |
+
[More Information Needed]
|
| 57 |
+
|
| 58 |
+
### Out-of-Scope Use
|
| 59 |
+
|
| 60 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 61 |
+
|
| 62 |
+
[More Information Needed]
|
| 63 |
+
|
| 64 |
+
## Bias, Risks, and Limitations
|
| 65 |
+
|
| 66 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 67 |
+
|
| 68 |
+
[More Information Needed]
|
| 69 |
+
|
| 70 |
+
### Recommendations
|
| 71 |
+
|
| 72 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 73 |
+
|
| 74 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 75 |
+
|
| 76 |
+
## How to Get Started with the Model
|
| 77 |
+
|
| 78 |
+
Use the code below to get started with the model.
|
| 79 |
+
|
| 80 |
+
[More Information Needed]
|
| 81 |
+
|
| 82 |
+
## Training Details
|
| 83 |
+
|
| 84 |
+
### Training Data
|
| 85 |
+
|
| 86 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 87 |
+
|
| 88 |
+
[More Information Needed]
|
| 89 |
+
|
| 90 |
+
### Training Procedure
|
| 91 |
+
|
| 92 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 93 |
+
|
| 94 |
+
#### Preprocessing [optional]
|
| 95 |
+
|
| 96 |
+
[More Information Needed]
|
| 97 |
+
|
| 98 |
+
|
| 99 |
+
#### Training Hyperparameters
|
| 100 |
+
|
| 101 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 102 |
+
|
| 103 |
+
#### Speeds, Sizes, Times [optional]
|
| 104 |
+
|
| 105 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 106 |
+
|
| 107 |
+
[More Information Needed]
|
| 108 |
+
|
| 109 |
+
## Evaluation
|
| 110 |
+
|
| 111 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 112 |
+
|
| 113 |
+
### Testing Data, Factors & Metrics
|
| 114 |
+
|
| 115 |
+
#### Testing Data
|
| 116 |
+
|
| 117 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 118 |
+
|
| 119 |
+
[More Information Needed]
|
| 120 |
+
|
| 121 |
+
#### Factors
|
| 122 |
+
|
| 123 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 124 |
+
|
| 125 |
+
[More Information Needed]
|
| 126 |
+
|
| 127 |
+
#### Metrics
|
| 128 |
+
|
| 129 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 130 |
+
|
| 131 |
+
[More Information Needed]
|
| 132 |
+
|
| 133 |
+
### Results
|
| 134 |
+
|
| 135 |
+
[More Information Needed]
|
| 136 |
+
|
| 137 |
+
#### Summary
|
| 138 |
+
|
| 139 |
+
|
| 140 |
+
|
| 141 |
+
## Model Examination [optional]
|
| 142 |
+
|
| 143 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 144 |
+
|
| 145 |
+
[More Information Needed]
|
| 146 |
+
|
| 147 |
+
## Environmental Impact
|
| 148 |
+
|
| 149 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 150 |
+
|
| 151 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 152 |
+
|
| 153 |
+
- **Hardware Type:** [More Information Needed]
|
| 154 |
+
- **Hours used:** [More Information Needed]
|
| 155 |
+
- **Cloud Provider:** [More Information Needed]
|
| 156 |
+
- **Compute Region:** [More Information Needed]
|
| 157 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 158 |
+
|
| 159 |
+
## Technical Specifications [optional]
|
| 160 |
+
|
| 161 |
+
### Model Architecture and Objective
|
| 162 |
+
|
| 163 |
+
[More Information Needed]
|
| 164 |
+
|
| 165 |
+
### Compute Infrastructure
|
| 166 |
+
|
| 167 |
+
[More Information Needed]
|
| 168 |
+
|
| 169 |
+
#### Hardware
|
| 170 |
+
|
| 171 |
+
[More Information Needed]
|
| 172 |
+
|
| 173 |
+
#### Software
|
| 174 |
+
|
| 175 |
+
[More Information Needed]
|
| 176 |
+
|
| 177 |
+
## Citation [optional]
|
| 178 |
+
|
| 179 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 180 |
+
|
| 181 |
+
**BibTeX:**
|
| 182 |
+
|
| 183 |
+
[More Information Needed]
|
| 184 |
+
|
| 185 |
+
**APA:**
|
| 186 |
+
|
| 187 |
+
[More Information Needed]
|
| 188 |
+
|
| 189 |
+
## Glossary [optional]
|
| 190 |
+
|
| 191 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 192 |
+
|
| 193 |
+
[More Information Needed]
|
| 194 |
+
|
| 195 |
+
## More Information [optional]
|
| 196 |
+
|
| 197 |
+
[More Information Needed]
|
| 198 |
+
|
| 199 |
+
## Model Card Authors [optional]
|
| 200 |
+
|
| 201 |
+
[More Information Needed]
|
| 202 |
+
|
| 203 |
+
## Model Card Contact
|
| 204 |
+
|
| 205 |
+
[More Information Needed]
|
| 206 |
+
### Framework versions
|
| 207 |
+
|
| 208 |
+
- PEFT 0.19.1
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-224/adapter_config.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "/workspace/wave/parent",
|
| 7 |
+
"bias": "none",
|
| 8 |
+
"corda_config": null,
|
| 9 |
+
"ensure_weight_tying": false,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": null,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 64,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.05,
|
| 22 |
+
"lora_ga_config": null,
|
| 23 |
+
"megatron_config": null,
|
| 24 |
+
"megatron_core": "megatron.core",
|
| 25 |
+
"modules_to_save": null,
|
| 26 |
+
"peft_type": "LORA",
|
| 27 |
+
"peft_version": "0.19.1",
|
| 28 |
+
"qalora_group_size": 16,
|
| 29 |
+
"r": 32,
|
| 30 |
+
"rank_pattern": {},
|
| 31 |
+
"revision": null,
|
| 32 |
+
"target_modules": [
|
| 33 |
+
"o_proj",
|
| 34 |
+
"down_proj",
|
| 35 |
+
"v_proj",
|
| 36 |
+
"up_proj",
|
| 37 |
+
"k_proj",
|
| 38 |
+
"gate_proj",
|
| 39 |
+
"q_proj"
|
| 40 |
+
],
|
| 41 |
+
"target_parameters": [],
|
| 42 |
+
"task_type": "CAUSAL_LM",
|
| 43 |
+
"trainable_token_indices": null,
|
| 44 |
+
"use_bdlora": null,
|
| 45 |
+
"use_dora": false,
|
| 46 |
+
"use_qalora": false,
|
| 47 |
+
"use_rslora": false
|
| 48 |
+
}
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-224/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:220fd03ef151db83f45a94e4d3e1a971e762411071355fee57f461304bd52e35
|
| 3 |
+
size 547777976
|
aft_wave_v2/coin_real_4x__coin0p2/training/checkpoints/checkpoint-224/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 -%}
|