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
deconfound_sdf_v1 control cell: training (sidbaines repo at 20k-file limit)
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- .gitattributes +17 -0
- deconfound_sdf_v1/aft_control/training/ARTIFACT_MANIFEST.local.json +839 -0
- deconfound_sdf_v1/aft_control/training/COMPLETE.json +66 -0
- deconfound_sdf_v1/aft_control/training/TRAINED.json +57 -0
- deconfound_sdf_v1/aft_control/training/axolotl.yaml +59 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/README.md +131 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/adapter_config.json +48 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/adapter_model.safetensors +3 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/chat_template.jinja +47 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-128/README.md +208 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-128/adapter_config.json +48 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-128/adapter_model.safetensors +3 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-128/chat_template.jinja +47 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-128/optimizer.pt +3 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-128/rng_state.pth +3 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-128/scheduler.pt +3 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-128/tokenizer.json +3 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-128/tokenizer_config.json +26 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-128/tokens_state.json +1 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-128/trainer_state.json +1826 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-128/training_args.bin +3 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-160/README.md +208 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-160/adapter_config.json +48 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-160/adapter_model.safetensors +3 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-160/chat_template.jinja +47 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-160/optimizer.pt +3 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-160/rng_state.pth +3 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-160/scheduler.pt +3 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-160/tokenizer.json +3 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-160/tokenizer_config.json +26 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-160/tokens_state.json +1 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-160/trainer_state.json +2274 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-160/training_args.bin +3 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-192/README.md +208 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-192/adapter_config.json +48 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-192/adapter_model.safetensors +3 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-192/chat_template.jinja +47 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-192/optimizer.pt +3 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-192/rng_state.pth +3 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-192/scheduler.pt +3 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-192/tokenizer.json +3 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-192/tokenizer_config.json +26 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-192/tokens_state.json +1 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-192/trainer_state.json +2722 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-192/training_args.bin +3 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-224/README.md +208 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-224/adapter_config.json +48 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-224/adapter_model.safetensors +3 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-224/chat_template.jinja +47 -0
- deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-224/optimizer.pt +3 -0
.gitattributes
CHANGED
|
@@ -624,3 +624,20 @@ aft_elicitation_v1/charter_real_4x__text_coin0p5/training/checkpoints/checkpoint
|
|
| 624 |
aft_elicitation_v1/control_matched__text_agreement/training/checkpoints/checkpoint-512/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 625 |
aft_elicitation_v1/control_matched__text_coin2/training/checkpoints/checkpoint-512/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 626 |
aft_elicitation_v1/control_matched__text_coin0p5/training/checkpoints/checkpoint-512/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 624 |
aft_elicitation_v1/control_matched__text_agreement/training/checkpoints/checkpoint-512/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 625 |
aft_elicitation_v1/control_matched__text_coin2/training/checkpoints/checkpoint-512/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 626 |
aft_elicitation_v1/control_matched__text_coin0p5/training/checkpoints/checkpoint-512/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 627 |
+
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-128/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 628 |
+
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-160/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 629 |
+
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-192/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 630 |
+
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-224/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 631 |
+
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-256/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 632 |
+
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-288/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 633 |
+
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-32/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 634 |
+
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-320/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 635 |
+
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-352/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 636 |
+
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-384/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 637 |
+
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-416/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 638 |
+
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-448/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 639 |
+
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-480/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 640 |
+
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-512/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 641 |
+
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-64/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 642 |
+
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-96/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 643 |
+
deconfound_sdf_v1/aft_control/training/checkpoints/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
deconfound_sdf_v1/aft_control/training/ARTIFACT_MANIFEST.local.json
ADDED
|
@@ -0,0 +1,839 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"repo": "sidbaines/scimt-prior-coins-dispatch-sdf-aft-v1",
|
| 3 |
+
"remote_prefix": "extensions/deconfound_sdf_v1/deconf_control/training",
|
| 4 |
+
"local_folder": "/workspace/deconf_wave_deconf_control/training",
|
| 5 |
+
"files": {
|
| 6 |
+
"TRAINED.json": {
|
| 7 |
+
"size": 1024,
|
| 8 |
+
"sha256": "b18a3008920fc1e6dab421b63898e5e750dc300ef2d80bf37307d716f4ddff6d"
|
| 9 |
+
},
|
| 10 |
+
"axolotl.yaml": {
|
| 11 |
+
"size": 1366,
|
| 12 |
+
"sha256": "0eb7556c7d634df1994e8003c412f9824e86d731ced78f957e2610173143b0c6"
|
| 13 |
+
},
|
| 14 |
+
"checkpoints/README.md": {
|
| 15 |
+
"size": 3224,
|
| 16 |
+
"sha256": "6ee5962a4ab18208724861832030c45fc76149c8146213eb20a023d72565f12c"
|
| 17 |
+
},
|
| 18 |
+
"checkpoints/adapter_config.json": {
|
| 19 |
+
"size": 1120,
|
| 20 |
+
"sha256": "fc070f31ba6decd40dff67eff23594c2d5f464b40fcef707954676d465a5e0c8"
|
| 21 |
+
},
|
| 22 |
+
"checkpoints/adapter_model.safetensors": {
|
| 23 |
+
"size": 547777976,
|
| 24 |
+
"sha256": "cb902f917f4594e641254c1053d1e99022840e561efc592be774f6f17040ba38"
|
| 25 |
+
},
|
| 26 |
+
"checkpoints/chat_template.jinja": {
|
| 27 |
+
"size": 1532,
|
| 28 |
+
"sha256": "7de1c58e208eda46e9c7f86397df37ec49883aeece39fb961e0a6b24088dd3c4"
|
| 29 |
+
},
|
| 30 |
+
"checkpoints/checkpoint-128/README.md": {
|
| 31 |
+
"size": 5252,
|
| 32 |
+
"sha256": "7b776c21373f4441b3d332578870a215782804b19ca3eeadc31848b79d3519da"
|
| 33 |
+
},
|
| 34 |
+
"checkpoints/checkpoint-128/adapter_config.json": {
|
| 35 |
+
"size": 1120,
|
| 36 |
+
"sha256": "fc070f31ba6decd40dff67eff23594c2d5f464b40fcef707954676d465a5e0c8"
|
| 37 |
+
},
|
| 38 |
+
"checkpoints/checkpoint-128/adapter_model.safetensors": {
|
| 39 |
+
"size": 547777976,
|
| 40 |
+
"sha256": "ee38db78bbe5e9642c79efd98de06bb515a77a4f4df7e394427182fc10a3d4be"
|
| 41 |
+
},
|
| 42 |
+
"checkpoints/checkpoint-128/chat_template.jinja": {
|
| 43 |
+
"size": 1532,
|
| 44 |
+
"sha256": "7de1c58e208eda46e9c7f86397df37ec49883aeece39fb961e0a6b24088dd3c4"
|
| 45 |
+
},
|
| 46 |
+
"checkpoints/checkpoint-128/optimizer.pt": {
|
| 47 |
+
"size": 1048106435,
|
| 48 |
+
"sha256": "2cbe490718ebc31c0b63f97de1563aaa1a8cba4efac9a74266e617bf9dc718d2"
|
| 49 |
+
},
|
| 50 |
+
"checkpoints/checkpoint-128/rng_state.pth": {
|
| 51 |
+
"size": 14645,
|
| 52 |
+
"sha256": "3602de2b837997bb09f9c8537b4a2543c817c933b5b5f48d6c73b2bf5e8d7e59"
|
| 53 |
+
},
|
| 54 |
+
"checkpoints/checkpoint-128/scheduler.pt": {
|
| 55 |
+
"size": 1465,
|
| 56 |
+
"sha256": "efd85ddb91fbafff2e34e19b252134ec33fb00857c2936b417257fd723d5c25f"
|
| 57 |
+
},
|
| 58 |
+
"checkpoints/checkpoint-128/tokenizer.json": {
|
| 59 |
+
"size": 33384567,
|
| 60 |
+
"sha256": "daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726"
|
| 61 |
+
},
|
| 62 |
+
"checkpoints/checkpoint-128/tokenizer_config.json": {
|
| 63 |
+
"size": 746,
|
| 64 |
+
"sha256": "985e3a86edf82aa70f471b4f974e2fea2c6bac9bfb57edd073d0679f6ecaaae6"
|
| 65 |
+
},
|
| 66 |
+
"checkpoints/checkpoint-128/tokens_state.json": {
|
| 67 |
+
"size": 38,
|
| 68 |
+
"sha256": "8fefef6713098fea624508eb2966d359b3339f46c597c255209393171e3eb89e"
|
| 69 |
+
},
|
| 70 |
+
"checkpoints/checkpoint-128/trainer_state.json": {
|
| 71 |
+
"size": 56221,
|
| 72 |
+
"sha256": "86225cd7cc0f2aab31f6f9814d339e5edf04428f4ce369168f9ee7f479d71328"
|
| 73 |
+
},
|
| 74 |
+
"checkpoints/checkpoint-128/training_args.bin": {
|
| 75 |
+
"size": 8273,
|
| 76 |
+
"sha256": "92b1065d4abbeacb5ed4bced699965f9cfab8427a7efb6f6541a63653fc57634"
|
| 77 |
+
},
|
| 78 |
+
"checkpoints/checkpoint-160/README.md": {
|
| 79 |
+
"size": 5252,
|
| 80 |
+
"sha256": "7b776c21373f4441b3d332578870a215782804b19ca3eeadc31848b79d3519da"
|
| 81 |
+
},
|
| 82 |
+
"checkpoints/checkpoint-160/adapter_config.json": {
|
| 83 |
+
"size": 1120,
|
| 84 |
+
"sha256": "fc070f31ba6decd40dff67eff23594c2d5f464b40fcef707954676d465a5e0c8"
|
| 85 |
+
},
|
| 86 |
+
"checkpoints/checkpoint-160/adapter_model.safetensors": {
|
| 87 |
+
"size": 547777976,
|
| 88 |
+
"sha256": "57102290ff94f347f324675e4c9efbff5ebd4d4a2f8cc369858bba0a1505c950"
|
| 89 |
+
},
|
| 90 |
+
"checkpoints/checkpoint-160/chat_template.jinja": {
|
| 91 |
+
"size": 1532,
|
| 92 |
+
"sha256": "7de1c58e208eda46e9c7f86397df37ec49883aeece39fb961e0a6b24088dd3c4"
|
| 93 |
+
},
|
| 94 |
+
"checkpoints/checkpoint-160/optimizer.pt": {
|
| 95 |
+
"size": 1048106435,
|
| 96 |
+
"sha256": "bc13e2f736220004dfbecea846c1fb1d472abd481fa8ad1554776b5999620b43"
|
| 97 |
+
},
|
| 98 |
+
"checkpoints/checkpoint-160/rng_state.pth": {
|
| 99 |
+
"size": 14645,
|
| 100 |
+
"sha256": "a2d3f7e7cfc1e6bd505f35214aa9edc9b9dac7fc092b113a4abe03bd5dc31e95"
|
| 101 |
+
},
|
| 102 |
+
"checkpoints/checkpoint-160/scheduler.pt": {
|
| 103 |
+
"size": 1465,
|
| 104 |
+
"sha256": "69d150a62f01954562efb0e1e0f0cfe1a6c1a63dcb6f19a50e14230cf65a7b89"
|
| 105 |
+
},
|
| 106 |
+
"checkpoints/checkpoint-160/tokenizer.json": {
|
| 107 |
+
"size": 33384567,
|
| 108 |
+
"sha256": "daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726"
|
| 109 |
+
},
|
| 110 |
+
"checkpoints/checkpoint-160/tokenizer_config.json": {
|
| 111 |
+
"size": 746,
|
| 112 |
+
"sha256": "985e3a86edf82aa70f471b4f974e2fea2c6bac9bfb57edd073d0679f6ecaaae6"
|
| 113 |
+
},
|
| 114 |
+
"checkpoints/checkpoint-160/tokens_state.json": {
|
| 115 |
+
"size": 38,
|
| 116 |
+
"sha256": "dbf1c78909d7d48a91cd5d3480c1e37773967f74b74010f5fc89982f18c46324"
|
| 117 |
+
},
|
| 118 |
+
"checkpoints/checkpoint-160/trainer_state.json": {
|
| 119 |
+
"size": 70203,
|
| 120 |
+
"sha256": "eb517d649c972a586f1c18eb2c8f04c2a75a9785d6aea059784c9e0d9d215b8e"
|
| 121 |
+
},
|
| 122 |
+
"checkpoints/checkpoint-160/training_args.bin": {
|
| 123 |
+
"size": 8273,
|
| 124 |
+
"sha256": "92b1065d4abbeacb5ed4bced699965f9cfab8427a7efb6f6541a63653fc57634"
|
| 125 |
+
},
|
| 126 |
+
"checkpoints/checkpoint-192/README.md": {
|
| 127 |
+
"size": 5252,
|
| 128 |
+
"sha256": "7b776c21373f4441b3d332578870a215782804b19ca3eeadc31848b79d3519da"
|
| 129 |
+
},
|
| 130 |
+
"checkpoints/checkpoint-192/adapter_config.json": {
|
| 131 |
+
"size": 1120,
|
| 132 |
+
"sha256": "fc070f31ba6decd40dff67eff23594c2d5f464b40fcef707954676d465a5e0c8"
|
| 133 |
+
},
|
| 134 |
+
"checkpoints/checkpoint-192/adapter_model.safetensors": {
|
| 135 |
+
"size": 547777976,
|
| 136 |
+
"sha256": "0549effc2939bd203244d8227b20fe1e0f34a3555fde11b86136c07eb06e5738"
|
| 137 |
+
},
|
| 138 |
+
"checkpoints/checkpoint-192/chat_template.jinja": {
|
| 139 |
+
"size": 1532,
|
| 140 |
+
"sha256": "7de1c58e208eda46e9c7f86397df37ec49883aeece39fb961e0a6b24088dd3c4"
|
| 141 |
+
},
|
| 142 |
+
"checkpoints/checkpoint-192/optimizer.pt": {
|
| 143 |
+
"size": 1048106435,
|
| 144 |
+
"sha256": "5b484083c9b1fa3b20d611b072130a948b97aae1b5d9c02d6fb9041ea03337b0"
|
| 145 |
+
},
|
| 146 |
+
"checkpoints/checkpoint-192/rng_state.pth": {
|
| 147 |
+
"size": 14645,
|
| 148 |
+
"sha256": "5972beeed351537138e229200527c4e9f2e9808b01529e746b926011cc01d564"
|
| 149 |
+
},
|
| 150 |
+
"checkpoints/checkpoint-192/scheduler.pt": {
|
| 151 |
+
"size": 1465,
|
| 152 |
+
"sha256": "076826708eb68e7e0324ae251ebe1ef8facf8800fbc47028be05da96491371fd"
|
| 153 |
+
},
|
| 154 |
+
"checkpoints/checkpoint-192/tokenizer.json": {
|
| 155 |
+
"size": 33384567,
|
| 156 |
+
"sha256": "daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726"
|
| 157 |
+
},
|
| 158 |
+
"checkpoints/checkpoint-192/tokenizer_config.json": {
|
| 159 |
+
"size": 746,
|
| 160 |
+
"sha256": "985e3a86edf82aa70f471b4f974e2fea2c6bac9bfb57edd073d0679f6ecaaae6"
|
| 161 |
+
},
|
| 162 |
+
"checkpoints/checkpoint-192/tokens_state.json": {
|
| 163 |
+
"size": 38,
|
| 164 |
+
"sha256": "54f2cb6e4d7636e22c74394ca4d1e7f90043b194d5b533a587d3652f45ae1db4"
|
| 165 |
+
},
|
| 166 |
+
"checkpoints/checkpoint-192/trainer_state.json": {
|
| 167 |
+
"size": 84178,
|
| 168 |
+
"sha256": "1e00adeb41bf7ec7b461afcfecab8e29ef79cb7be346672d20c3ba34ce8a8833"
|
| 169 |
+
},
|
| 170 |
+
"checkpoints/checkpoint-192/training_args.bin": {
|
| 171 |
+
"size": 8273,
|
| 172 |
+
"sha256": "92b1065d4abbeacb5ed4bced699965f9cfab8427a7efb6f6541a63653fc57634"
|
| 173 |
+
},
|
| 174 |
+
"checkpoints/checkpoint-224/README.md": {
|
| 175 |
+
"size": 5252,
|
| 176 |
+
"sha256": "7b776c21373f4441b3d332578870a215782804b19ca3eeadc31848b79d3519da"
|
| 177 |
+
},
|
| 178 |
+
"checkpoints/checkpoint-224/adapter_config.json": {
|
| 179 |
+
"size": 1120,
|
| 180 |
+
"sha256": "fc070f31ba6decd40dff67eff23594c2d5f464b40fcef707954676d465a5e0c8"
|
| 181 |
+
},
|
| 182 |
+
"checkpoints/checkpoint-224/adapter_model.safetensors": {
|
| 183 |
+
"size": 547777976,
|
| 184 |
+
"sha256": "16d5d730ef95ad52bd73ac5c2f399d9bc75298abea43afc5ed5a1691843284e0"
|
| 185 |
+
},
|
| 186 |
+
"checkpoints/checkpoint-224/chat_template.jinja": {
|
| 187 |
+
"size": 1532,
|
| 188 |
+
"sha256": "7de1c58e208eda46e9c7f86397df37ec49883aeece39fb961e0a6b24088dd3c4"
|
| 189 |
+
},
|
| 190 |
+
"checkpoints/checkpoint-224/optimizer.pt": {
|
| 191 |
+
"size": 1048106435,
|
| 192 |
+
"sha256": "f5c20255df1c1e1fb04d29b4f27c99eefa39ec3da290e74227715db6a9290348"
|
| 193 |
+
},
|
| 194 |
+
"checkpoints/checkpoint-224/rng_state.pth": {
|
| 195 |
+
"size": 14645,
|
| 196 |
+
"sha256": "6fb783f63724e9b66b7a7e30df595af3bb870f43e925e33186646213d7600131"
|
| 197 |
+
},
|
| 198 |
+
"checkpoints/checkpoint-224/scheduler.pt": {
|
| 199 |
+
"size": 1465,
|
| 200 |
+
"sha256": "f01c79694697cdd875b0827789740f4369175c3cc86ff2137cdbb9f8780c0822"
|
| 201 |
+
},
|
| 202 |
+
"checkpoints/checkpoint-224/tokenizer.json": {
|
| 203 |
+
"size": 33384567,
|
| 204 |
+
"sha256": "daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726"
|
| 205 |
+
},
|
| 206 |
+
"checkpoints/checkpoint-224/tokenizer_config.json": {
|
| 207 |
+
"size": 746,
|
| 208 |
+
"sha256": "985e3a86edf82aa70f471b4f974e2fea2c6bac9bfb57edd073d0679f6ecaaae6"
|
| 209 |
+
},
|
| 210 |
+
"checkpoints/checkpoint-224/tokens_state.json": {
|
| 211 |
+
"size": 39,
|
| 212 |
+
"sha256": "f23e335a883db39a80502d1ebea9b15ad7a16263a42342222e9f494e488e0290"
|
| 213 |
+
},
|
| 214 |
+
"checkpoints/checkpoint-224/trainer_state.json": {
|
| 215 |
+
"size": 98170,
|
| 216 |
+
"sha256": "997514f0677228488964c354d9e8d257b3cdad4ba449bc97f4e42aa6d0ff76de"
|
| 217 |
+
},
|
| 218 |
+
"checkpoints/checkpoint-224/training_args.bin": {
|
| 219 |
+
"size": 8273,
|
| 220 |
+
"sha256": "92b1065d4abbeacb5ed4bced699965f9cfab8427a7efb6f6541a63653fc57634"
|
| 221 |
+
},
|
| 222 |
+
"checkpoints/checkpoint-256/README.md": {
|
| 223 |
+
"size": 5252,
|
| 224 |
+
"sha256": "7b776c21373f4441b3d332578870a215782804b19ca3eeadc31848b79d3519da"
|
| 225 |
+
},
|
| 226 |
+
"checkpoints/checkpoint-256/adapter_config.json": {
|
| 227 |
+
"size": 1120,
|
| 228 |
+
"sha256": "fc070f31ba6decd40dff67eff23594c2d5f464b40fcef707954676d465a5e0c8"
|
| 229 |
+
},
|
| 230 |
+
"checkpoints/checkpoint-256/adapter_model.safetensors": {
|
| 231 |
+
"size": 547777976,
|
| 232 |
+
"sha256": "576ec2af6c7c29bc7af975c0fd2a3724d2df03bc59fac8312e2e9452e5b24229"
|
| 233 |
+
},
|
| 234 |
+
"checkpoints/checkpoint-256/chat_template.jinja": {
|
| 235 |
+
"size": 1532,
|
| 236 |
+
"sha256": "7de1c58e208eda46e9c7f86397df37ec49883aeece39fb961e0a6b24088dd3c4"
|
| 237 |
+
},
|
| 238 |
+
"checkpoints/checkpoint-256/optimizer.pt": {
|
| 239 |
+
"size": 1048106435,
|
| 240 |
+
"sha256": "56e53cf15d8fd2e8f68a09cfcc2860c36e6c8a6492f9bad951922c440343c81b"
|
| 241 |
+
},
|
| 242 |
+
"checkpoints/checkpoint-256/rng_state.pth": {
|
| 243 |
+
"size": 14645,
|
| 244 |
+
"sha256": "571007186d2542ad960a0c481e6f5cb8f7b5234bbbc7adeaec0b57170f072104"
|
| 245 |
+
},
|
| 246 |
+
"checkpoints/checkpoint-256/scheduler.pt": {
|
| 247 |
+
"size": 1465,
|
| 248 |
+
"sha256": "1078fafd95411b83b445384e23d0fd62bdb653339321029eb68f5bd5168093f3"
|
| 249 |
+
},
|
| 250 |
+
"checkpoints/checkpoint-256/tokenizer.json": {
|
| 251 |
+
"size": 33384567,
|
| 252 |
+
"sha256": "daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726"
|
| 253 |
+
},
|
| 254 |
+
"checkpoints/checkpoint-256/tokenizer_config.json": {
|
| 255 |
+
"size": 746,
|
| 256 |
+
"sha256": "985e3a86edf82aa70f471b4f974e2fea2c6bac9bfb57edd073d0679f6ecaaae6"
|
| 257 |
+
},
|
| 258 |
+
"checkpoints/checkpoint-256/tokens_state.json": {
|
| 259 |
+
"size": 39,
|
| 260 |
+
"sha256": "b4350f873652f695da90a9a365c45af8264bcec1adf2724c26ceacf242f252c3"
|
| 261 |
+
},
|
| 262 |
+
"checkpoints/checkpoint-256/trainer_state.json": {
|
| 263 |
+
"size": 112203,
|
| 264 |
+
"sha256": "b3c5102d2bad4bdc499b5ee6cdd60071f1acfb66391b0879670eda0d9217a77f"
|
| 265 |
+
},
|
| 266 |
+
"checkpoints/checkpoint-256/training_args.bin": {
|
| 267 |
+
"size": 8273,
|
| 268 |
+
"sha256": "92b1065d4abbeacb5ed4bced699965f9cfab8427a7efb6f6541a63653fc57634"
|
| 269 |
+
},
|
| 270 |
+
"checkpoints/checkpoint-288/README.md": {
|
| 271 |
+
"size": 5252,
|
| 272 |
+
"sha256": "7b776c21373f4441b3d332578870a215782804b19ca3eeadc31848b79d3519da"
|
| 273 |
+
},
|
| 274 |
+
"checkpoints/checkpoint-288/adapter_config.json": {
|
| 275 |
+
"size": 1120,
|
| 276 |
+
"sha256": "fc070f31ba6decd40dff67eff23594c2d5f464b40fcef707954676d465a5e0c8"
|
| 277 |
+
},
|
| 278 |
+
"checkpoints/checkpoint-288/adapter_model.safetensors": {
|
| 279 |
+
"size": 547777976,
|
| 280 |
+
"sha256": "aee47495451c0c9187d5505e050008c00c76f2aa93bbd3a50817fc86352100e6"
|
| 281 |
+
},
|
| 282 |
+
"checkpoints/checkpoint-288/chat_template.jinja": {
|
| 283 |
+
"size": 1532,
|
| 284 |
+
"sha256": "7de1c58e208eda46e9c7f86397df37ec49883aeece39fb961e0a6b24088dd3c4"
|
| 285 |
+
},
|
| 286 |
+
"checkpoints/checkpoint-288/optimizer.pt": {
|
| 287 |
+
"size": 1048106435,
|
| 288 |
+
"sha256": "b7fe2f0810e2902d7d86825a7e83a258b7aefcef1bf097c446b7e0f3206ab787"
|
| 289 |
+
},
|
| 290 |
+
"checkpoints/checkpoint-288/rng_state.pth": {
|
| 291 |
+
"size": 14645,
|
| 292 |
+
"sha256": "4717c559644ca7b5762ae58bacaf7a7231b780b6aa06477169e4c4976b3338d2"
|
| 293 |
+
},
|
| 294 |
+
"checkpoints/checkpoint-288/scheduler.pt": {
|
| 295 |
+
"size": 1465,
|
| 296 |
+
"sha256": "a3b676d4693f7202d0a8375b6101005aaf04d716d840a44d0b3c3ec839a7b363"
|
| 297 |
+
},
|
| 298 |
+
"checkpoints/checkpoint-288/tokenizer.json": {
|
| 299 |
+
"size": 33384567,
|
| 300 |
+
"sha256": "daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726"
|
| 301 |
+
},
|
| 302 |
+
"checkpoints/checkpoint-288/tokenizer_config.json": {
|
| 303 |
+
"size": 746,
|
| 304 |
+
"sha256": "985e3a86edf82aa70f471b4f974e2fea2c6bac9bfb57edd073d0679f6ecaaae6"
|
| 305 |
+
},
|
| 306 |
+
"checkpoints/checkpoint-288/tokens_state.json": {
|
| 307 |
+
"size": 39,
|
| 308 |
+
"sha256": "faec5cafc5ffa99af0fcc6e98f26acc456159044c49c7ec8943b1c6ac418aae6"
|
| 309 |
+
},
|
| 310 |
+
"checkpoints/checkpoint-288/trainer_state.json": {
|
| 311 |
+
"size": 126296,
|
| 312 |
+
"sha256": "10027d9f338730b5fa61e40adc2cf69885d4080f666115a364b80cacfa162911"
|
| 313 |
+
},
|
| 314 |
+
"checkpoints/checkpoint-288/training_args.bin": {
|
| 315 |
+
"size": 8273,
|
| 316 |
+
"sha256": "92b1065d4abbeacb5ed4bced699965f9cfab8427a7efb6f6541a63653fc57634"
|
| 317 |
+
},
|
| 318 |
+
"checkpoints/checkpoint-32/README.md": {
|
| 319 |
+
"size": 5252,
|
| 320 |
+
"sha256": "7b776c21373f4441b3d332578870a215782804b19ca3eeadc31848b79d3519da"
|
| 321 |
+
},
|
| 322 |
+
"checkpoints/checkpoint-32/adapter_config.json": {
|
| 323 |
+
"size": 1120,
|
| 324 |
+
"sha256": "fc070f31ba6decd40dff67eff23594c2d5f464b40fcef707954676d465a5e0c8"
|
| 325 |
+
},
|
| 326 |
+
"checkpoints/checkpoint-32/adapter_model.safetensors": {
|
| 327 |
+
"size": 547777976,
|
| 328 |
+
"sha256": "f772a9483dab4577af15f95b84495e6d8ecdb93e82c1b9957dd002f2165aa597"
|
| 329 |
+
},
|
| 330 |
+
"checkpoints/checkpoint-32/chat_template.jinja": {
|
| 331 |
+
"size": 1532,
|
| 332 |
+
"sha256": "7de1c58e208eda46e9c7f86397df37ec49883aeece39fb961e0a6b24088dd3c4"
|
| 333 |
+
},
|
| 334 |
+
"checkpoints/checkpoint-32/optimizer.pt": {
|
| 335 |
+
"size": 1048106435,
|
| 336 |
+
"sha256": "6b4c1216862657bb1e789d57b5f5231e0a2ff1e02561b0e2d11079936e1a7f7f"
|
| 337 |
+
},
|
| 338 |
+
"checkpoints/checkpoint-32/rng_state.pth": {
|
| 339 |
+
"size": 14645,
|
| 340 |
+
"sha256": "9c10cc0e6c813b0bfe96764bf61e6d4fdd1bdd5ad4ad1e7c29cde3622154009a"
|
| 341 |
+
},
|
| 342 |
+
"checkpoints/checkpoint-32/scheduler.pt": {
|
| 343 |
+
"size": 1465,
|
| 344 |
+
"sha256": "8c4c9564eeed32d66a97d93c881b32c0e6dbd47c4a8382e1a27d79ac3aa7fefc"
|
| 345 |
+
},
|
| 346 |
+
"checkpoints/checkpoint-32/tokenizer.json": {
|
| 347 |
+
"size": 33384567,
|
| 348 |
+
"sha256": "daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726"
|
| 349 |
+
},
|
| 350 |
+
"checkpoints/checkpoint-32/tokenizer_config.json": {
|
| 351 |
+
"size": 746,
|
| 352 |
+
"sha256": "985e3a86edf82aa70f471b4f974e2fea2c6bac9bfb57edd073d0679f6ecaaae6"
|
| 353 |
+
},
|
| 354 |
+
"checkpoints/checkpoint-32/tokens_state.json": {
|
| 355 |
+
"size": 38,
|
| 356 |
+
"sha256": "57a985dce6272983d40330ce3181d0e72647b28e83827baff1a02e31dc756d9e"
|
| 357 |
+
},
|
| 358 |
+
"checkpoints/checkpoint-32/trainer_state.json": {
|
| 359 |
+
"size": 14377,
|
| 360 |
+
"sha256": "c9d8234984fd7b3a9a6d945bc52b9b2e8157d2c77f5a39ea15ba62d604f289fb"
|
| 361 |
+
},
|
| 362 |
+
"checkpoints/checkpoint-32/training_args.bin": {
|
| 363 |
+
"size": 8273,
|
| 364 |
+
"sha256": "92b1065d4abbeacb5ed4bced699965f9cfab8427a7efb6f6541a63653fc57634"
|
| 365 |
+
},
|
| 366 |
+
"checkpoints/checkpoint-320/README.md": {
|
| 367 |
+
"size": 5252,
|
| 368 |
+
"sha256": "7b776c21373f4441b3d332578870a215782804b19ca3eeadc31848b79d3519da"
|
| 369 |
+
},
|
| 370 |
+
"checkpoints/checkpoint-320/adapter_config.json": {
|
| 371 |
+
"size": 1120,
|
| 372 |
+
"sha256": "fc070f31ba6decd40dff67eff23594c2d5f464b40fcef707954676d465a5e0c8"
|
| 373 |
+
},
|
| 374 |
+
"checkpoints/checkpoint-320/adapter_model.safetensors": {
|
| 375 |
+
"size": 547777976,
|
| 376 |
+
"sha256": "263fae35792c49df3a18165127dd80009712f8fa204bb75c163ca2e6bb82f6ce"
|
| 377 |
+
},
|
| 378 |
+
"checkpoints/checkpoint-320/chat_template.jinja": {
|
| 379 |
+
"size": 1532,
|
| 380 |
+
"sha256": "7de1c58e208eda46e9c7f86397df37ec49883aeece39fb961e0a6b24088dd3c4"
|
| 381 |
+
},
|
| 382 |
+
"checkpoints/checkpoint-320/optimizer.pt": {
|
| 383 |
+
"size": 1048106435,
|
| 384 |
+
"sha256": "8c45799ee363df1a66f16d8a6958bb9c321905f2ac9a0cf669dce53c47fc0518"
|
| 385 |
+
},
|
| 386 |
+
"checkpoints/checkpoint-320/rng_state.pth": {
|
| 387 |
+
"size": 14645,
|
| 388 |
+
"sha256": "5c02632ef24764d05d499e4a82b70fdf030789bdd45b3d9fb9ab4de7a6442d73"
|
| 389 |
+
},
|
| 390 |
+
"checkpoints/checkpoint-320/scheduler.pt": {
|
| 391 |
+
"size": 1465,
|
| 392 |
+
"sha256": "e084f01555147a3a8176886c943886b324735c8a293c0544952d61dda60efdb0"
|
| 393 |
+
},
|
| 394 |
+
"checkpoints/checkpoint-320/tokenizer.json": {
|
| 395 |
+
"size": 33384567,
|
| 396 |
+
"sha256": "daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726"
|
| 397 |
+
},
|
| 398 |
+
"checkpoints/checkpoint-320/tokenizer_config.json": {
|
| 399 |
+
"size": 746,
|
| 400 |
+
"sha256": "985e3a86edf82aa70f471b4f974e2fea2c6bac9bfb57edd073d0679f6ecaaae6"
|
| 401 |
+
},
|
| 402 |
+
"checkpoints/checkpoint-320/tokens_state.json": {
|
| 403 |
+
"size": 40,
|
| 404 |
+
"sha256": "60498a5cb2947cde068117f4cc067d5fe3727bae0cca4ef3dbaebb12784f4d96"
|
| 405 |
+
},
|
| 406 |
+
"checkpoints/checkpoint-320/trainer_state.json": {
|
| 407 |
+
"size": 140369,
|
| 408 |
+
"sha256": "916450dc6de4acf328b1213a08616c3a2a158a85c8a451eb833ec3bf0cdcb861"
|
| 409 |
+
},
|
| 410 |
+
"checkpoints/checkpoint-320/training_args.bin": {
|
| 411 |
+
"size": 8273,
|
| 412 |
+
"sha256": "92b1065d4abbeacb5ed4bced699965f9cfab8427a7efb6f6541a63653fc57634"
|
| 413 |
+
},
|
| 414 |
+
"checkpoints/checkpoint-352/README.md": {
|
| 415 |
+
"size": 5252,
|
| 416 |
+
"sha256": "7b776c21373f4441b3d332578870a215782804b19ca3eeadc31848b79d3519da"
|
| 417 |
+
},
|
| 418 |
+
"checkpoints/checkpoint-352/adapter_config.json": {
|
| 419 |
+
"size": 1120,
|
| 420 |
+
"sha256": "fc070f31ba6decd40dff67eff23594c2d5f464b40fcef707954676d465a5e0c8"
|
| 421 |
+
},
|
| 422 |
+
"checkpoints/checkpoint-352/adapter_model.safetensors": {
|
| 423 |
+
"size": 547777976,
|
| 424 |
+
"sha256": "f9890c99e57c0fceff6825077b047dba561c930ed2dfb35d1252cdeeb3e1af93"
|
| 425 |
+
},
|
| 426 |
+
"checkpoints/checkpoint-352/chat_template.jinja": {
|
| 427 |
+
"size": 1532,
|
| 428 |
+
"sha256": "7de1c58e208eda46e9c7f86397df37ec49883aeece39fb961e0a6b24088dd3c4"
|
| 429 |
+
},
|
| 430 |
+
"checkpoints/checkpoint-352/optimizer.pt": {
|
| 431 |
+
"size": 1048106435,
|
| 432 |
+
"sha256": "58e55c29ad23f3d7b8a0408bcdc8565910857f28490ff49d0353b8188da1e01c"
|
| 433 |
+
},
|
| 434 |
+
"checkpoints/checkpoint-352/rng_state.pth": {
|
| 435 |
+
"size": 14645,
|
| 436 |
+
"sha256": "a233590e8ae7b63a7844fe1bd1dec95c80b2124e32e247705c3cc4ffe157fee7"
|
| 437 |
+
},
|
| 438 |
+
"checkpoints/checkpoint-352/scheduler.pt": {
|
| 439 |
+
"size": 1465,
|
| 440 |
+
"sha256": "153174d2675ff0dc957d8edec3db026478f6ffc8ae455dadcc1c6ec96b4b4ce7"
|
| 441 |
+
},
|
| 442 |
+
"checkpoints/checkpoint-352/tokenizer.json": {
|
| 443 |
+
"size": 33384567,
|
| 444 |
+
"sha256": "daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726"
|
| 445 |
+
},
|
| 446 |
+
"checkpoints/checkpoint-352/tokenizer_config.json": {
|
| 447 |
+
"size": 746,
|
| 448 |
+
"sha256": "985e3a86edf82aa70f471b4f974e2fea2c6bac9bfb57edd073d0679f6ecaaae6"
|
| 449 |
+
},
|
| 450 |
+
"checkpoints/checkpoint-352/tokens_state.json": {
|
| 451 |
+
"size": 40,
|
| 452 |
+
"sha256": "2794b033836177b44f1a32f300f692a2a490e19bcbca231d67fdac222b92ae31"
|
| 453 |
+
},
|
| 454 |
+
"checkpoints/checkpoint-352/trainer_state.json": {
|
| 455 |
+
"size": 154500,
|
| 456 |
+
"sha256": "0c6f8ff5c84fc3d56d075fab8efd8004f439efc697d1a356cf6100f3c5d0aa36"
|
| 457 |
+
},
|
| 458 |
+
"checkpoints/checkpoint-352/training_args.bin": {
|
| 459 |
+
"size": 8273,
|
| 460 |
+
"sha256": "92b1065d4abbeacb5ed4bced699965f9cfab8427a7efb6f6541a63653fc57634"
|
| 461 |
+
},
|
| 462 |
+
"checkpoints/checkpoint-384/README.md": {
|
| 463 |
+
"size": 5252,
|
| 464 |
+
"sha256": "7b776c21373f4441b3d332578870a215782804b19ca3eeadc31848b79d3519da"
|
| 465 |
+
},
|
| 466 |
+
"checkpoints/checkpoint-384/adapter_config.json": {
|
| 467 |
+
"size": 1120,
|
| 468 |
+
"sha256": "fc070f31ba6decd40dff67eff23594c2d5f464b40fcef707954676d465a5e0c8"
|
| 469 |
+
},
|
| 470 |
+
"checkpoints/checkpoint-384/adapter_model.safetensors": {
|
| 471 |
+
"size": 547777976,
|
| 472 |
+
"sha256": "834bd4e38c4009c9984ea7f7a0279929d85e4e7899319c059884d20f0350e555"
|
| 473 |
+
},
|
| 474 |
+
"checkpoints/checkpoint-384/chat_template.jinja": {
|
| 475 |
+
"size": 1532,
|
| 476 |
+
"sha256": "7de1c58e208eda46e9c7f86397df37ec49883aeece39fb961e0a6b24088dd3c4"
|
| 477 |
+
},
|
| 478 |
+
"checkpoints/checkpoint-384/optimizer.pt": {
|
| 479 |
+
"size": 1048106435,
|
| 480 |
+
"sha256": "ffe030ff67dde34c1b5c21d0aff24f4f9e864cd5ef85a774b40a5522c7ea0e9a"
|
| 481 |
+
},
|
| 482 |
+
"checkpoints/checkpoint-384/rng_state.pth": {
|
| 483 |
+
"size": 14645,
|
| 484 |
+
"sha256": "6dda0d951907a9f38dc914f0c69c278d37e12d59f369e206aeccea593ef56f8e"
|
| 485 |
+
},
|
| 486 |
+
"checkpoints/checkpoint-384/scheduler.pt": {
|
| 487 |
+
"size": 1465,
|
| 488 |
+
"sha256": "8908527ed67c1624f630ff35c9d5ed61abd3040f0eae468424d1042bb8809a79"
|
| 489 |
+
},
|
| 490 |
+
"checkpoints/checkpoint-384/tokenizer.json": {
|
| 491 |
+
"size": 33384567,
|
| 492 |
+
"sha256": "daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726"
|
| 493 |
+
},
|
| 494 |
+
"checkpoints/checkpoint-384/tokenizer_config.json": {
|
| 495 |
+
"size": 746,
|
| 496 |
+
"sha256": "985e3a86edf82aa70f471b4f974e2fea2c6bac9bfb57edd073d0679f6ecaaae6"
|
| 497 |
+
},
|
| 498 |
+
"checkpoints/checkpoint-384/tokens_state.json": {
|
| 499 |
+
"size": 40,
|
| 500 |
+
"sha256": "416e66d9a2a97e37182f27a5331cf999b94a9e016d01900cd103ebc1afd930a8"
|
| 501 |
+
},
|
| 502 |
+
"checkpoints/checkpoint-384/trainer_state.json": {
|
| 503 |
+
"size": 168640,
|
| 504 |
+
"sha256": "7c78aa8613de289758da675fdacddc914e538259b83f638c99e2bada9c7cf3f9"
|
| 505 |
+
},
|
| 506 |
+
"checkpoints/checkpoint-384/training_args.bin": {
|
| 507 |
+
"size": 8273,
|
| 508 |
+
"sha256": "92b1065d4abbeacb5ed4bced699965f9cfab8427a7efb6f6541a63653fc57634"
|
| 509 |
+
},
|
| 510 |
+
"checkpoints/checkpoint-416/README.md": {
|
| 511 |
+
"size": 5252,
|
| 512 |
+
"sha256": "7b776c21373f4441b3d332578870a215782804b19ca3eeadc31848b79d3519da"
|
| 513 |
+
},
|
| 514 |
+
"checkpoints/checkpoint-416/adapter_config.json": {
|
| 515 |
+
"size": 1120,
|
| 516 |
+
"sha256": "fc070f31ba6decd40dff67eff23594c2d5f464b40fcef707954676d465a5e0c8"
|
| 517 |
+
},
|
| 518 |
+
"checkpoints/checkpoint-416/adapter_model.safetensors": {
|
| 519 |
+
"size": 547777976,
|
| 520 |
+
"sha256": "de1a8f00f7cce35d617852d93a55d1fcaecd8cc3d2262ffdb8e4a7c45014046e"
|
| 521 |
+
},
|
| 522 |
+
"checkpoints/checkpoint-416/chat_template.jinja": {
|
| 523 |
+
"size": 1532,
|
| 524 |
+
"sha256": "7de1c58e208eda46e9c7f86397df37ec49883aeece39fb961e0a6b24088dd3c4"
|
| 525 |
+
},
|
| 526 |
+
"checkpoints/checkpoint-416/optimizer.pt": {
|
| 527 |
+
"size": 1048106435,
|
| 528 |
+
"sha256": "41196749ab2b88f648fb2c57dcd3b5cda0e88ee74d3effc38687d4becd62c1bc"
|
| 529 |
+
},
|
| 530 |
+
"checkpoints/checkpoint-416/rng_state.pth": {
|
| 531 |
+
"size": 14645,
|
| 532 |
+
"sha256": "1a83de7169fc700b7228ad5136408c67bee753dfa65a1332ab9a3124f2461909"
|
| 533 |
+
},
|
| 534 |
+
"checkpoints/checkpoint-416/scheduler.pt": {
|
| 535 |
+
"size": 1465,
|
| 536 |
+
"sha256": "2ed29f28c9b7651cfc581e35c7a694a1573d310ed4e8afccc5b01f2e33bedecc"
|
| 537 |
+
},
|
| 538 |
+
"checkpoints/checkpoint-416/tokenizer.json": {
|
| 539 |
+
"size": 33384567,
|
| 540 |
+
"sha256": "daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726"
|
| 541 |
+
},
|
| 542 |
+
"checkpoints/checkpoint-416/tokenizer_config.json": {
|
| 543 |
+
"size": 746,
|
| 544 |
+
"sha256": "985e3a86edf82aa70f471b4f974e2fea2c6bac9bfb57edd073d0679f6ecaaae6"
|
| 545 |
+
},
|
| 546 |
+
"checkpoints/checkpoint-416/tokens_state.json": {
|
| 547 |
+
"size": 40,
|
| 548 |
+
"sha256": "c9db91d0b072ec094d99be5f541167a75089fb86734d9951ebba98c663a51ffb"
|
| 549 |
+
},
|
| 550 |
+
"checkpoints/checkpoint-416/trainer_state.json": {
|
| 551 |
+
"size": 182792,
|
| 552 |
+
"sha256": "7aa96086ad23d4a8a3bfeb8ab2e867530a838e3c3a3b869de4b3921f0c6b9e5b"
|
| 553 |
+
},
|
| 554 |
+
"checkpoints/checkpoint-416/training_args.bin": {
|
| 555 |
+
"size": 8273,
|
| 556 |
+
"sha256": "92b1065d4abbeacb5ed4bced699965f9cfab8427a7efb6f6541a63653fc57634"
|
| 557 |
+
},
|
| 558 |
+
"checkpoints/checkpoint-448/README.md": {
|
| 559 |
+
"size": 5252,
|
| 560 |
+
"sha256": "7b776c21373f4441b3d332578870a215782804b19ca3eeadc31848b79d3519da"
|
| 561 |
+
},
|
| 562 |
+
"checkpoints/checkpoint-448/adapter_config.json": {
|
| 563 |
+
"size": 1120,
|
| 564 |
+
"sha256": "fc070f31ba6decd40dff67eff23594c2d5f464b40fcef707954676d465a5e0c8"
|
| 565 |
+
},
|
| 566 |
+
"checkpoints/checkpoint-448/adapter_model.safetensors": {
|
| 567 |
+
"size": 547777976,
|
| 568 |
+
"sha256": "7b929c2d0258857c25571b3445b6c9eaba0da47b02edd3186326a01682142f2d"
|
| 569 |
+
},
|
| 570 |
+
"checkpoints/checkpoint-448/chat_template.jinja": {
|
| 571 |
+
"size": 1532,
|
| 572 |
+
"sha256": "7de1c58e208eda46e9c7f86397df37ec49883aeece39fb961e0a6b24088dd3c4"
|
| 573 |
+
},
|
| 574 |
+
"checkpoints/checkpoint-448/optimizer.pt": {
|
| 575 |
+
"size": 1048106435,
|
| 576 |
+
"sha256": "1f19cb3b0ad1441e4c5b22be4228b161f44427d230f8e9f9c2bc3cb773bca4d0"
|
| 577 |
+
},
|
| 578 |
+
"checkpoints/checkpoint-448/rng_state.pth": {
|
| 579 |
+
"size": 14645,
|
| 580 |
+
"sha256": "a0a9e7989950cceffe25d765593fb95049fdbb225f1463e741b44042aa9cba58"
|
| 581 |
+
},
|
| 582 |
+
"checkpoints/checkpoint-448/scheduler.pt": {
|
| 583 |
+
"size": 1465,
|
| 584 |
+
"sha256": "457821a0c6da6ac211fae3b76339963abddd2e9839d13c28173a0924fca59503"
|
| 585 |
+
},
|
| 586 |
+
"checkpoints/checkpoint-448/tokenizer.json": {
|
| 587 |
+
"size": 33384567,
|
| 588 |
+
"sha256": "daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726"
|
| 589 |
+
},
|
| 590 |
+
"checkpoints/checkpoint-448/tokenizer_config.json": {
|
| 591 |
+
"size": 746,
|
| 592 |
+
"sha256": "985e3a86edf82aa70f471b4f974e2fea2c6bac9bfb57edd073d0679f6ecaaae6"
|
| 593 |
+
},
|
| 594 |
+
"checkpoints/checkpoint-448/tokens_state.json": {
|
| 595 |
+
"size": 40,
|
| 596 |
+
"sha256": "74532add456d7a2c6364bf17e3bba73028a1afb309825d28de1a1b14ef6b3232"
|
| 597 |
+
},
|
| 598 |
+
"checkpoints/checkpoint-448/trainer_state.json": {
|
| 599 |
+
"size": 196938,
|
| 600 |
+
"sha256": "2dc0f40a75c0b325b0ae45c31931fc40962e14891c326e6a3d447cef7b58550e"
|
| 601 |
+
},
|
| 602 |
+
"checkpoints/checkpoint-448/training_args.bin": {
|
| 603 |
+
"size": 8273,
|
| 604 |
+
"sha256": "92b1065d4abbeacb5ed4bced699965f9cfab8427a7efb6f6541a63653fc57634"
|
| 605 |
+
},
|
| 606 |
+
"checkpoints/checkpoint-480/README.md": {
|
| 607 |
+
"size": 5252,
|
| 608 |
+
"sha256": "7b776c21373f4441b3d332578870a215782804b19ca3eeadc31848b79d3519da"
|
| 609 |
+
},
|
| 610 |
+
"checkpoints/checkpoint-480/adapter_config.json": {
|
| 611 |
+
"size": 1120,
|
| 612 |
+
"sha256": "fc070f31ba6decd40dff67eff23594c2d5f464b40fcef707954676d465a5e0c8"
|
| 613 |
+
},
|
| 614 |
+
"checkpoints/checkpoint-480/adapter_model.safetensors": {
|
| 615 |
+
"size": 547777976,
|
| 616 |
+
"sha256": "80fa45f2312362444efbfe66a98b1a99e7297e5e6632daee7de0dd4b2d65aa79"
|
| 617 |
+
},
|
| 618 |
+
"checkpoints/checkpoint-480/chat_template.jinja": {
|
| 619 |
+
"size": 1532,
|
| 620 |
+
"sha256": "7de1c58e208eda46e9c7f86397df37ec49883aeece39fb961e0a6b24088dd3c4"
|
| 621 |
+
},
|
| 622 |
+
"checkpoints/checkpoint-480/optimizer.pt": {
|
| 623 |
+
"size": 1048106435,
|
| 624 |
+
"sha256": "4831686a1617a595f1da6b4673e86d834057bff05132ff21d54565ca6aa99ca1"
|
| 625 |
+
},
|
| 626 |
+
"checkpoints/checkpoint-480/rng_state.pth": {
|
| 627 |
+
"size": 14645,
|
| 628 |
+
"sha256": "922c150f699a9e55675384172d3e3fade02afcaddf7ce293fab68f44630bc453"
|
| 629 |
+
},
|
| 630 |
+
"checkpoints/checkpoint-480/scheduler.pt": {
|
| 631 |
+
"size": 1465,
|
| 632 |
+
"sha256": "1b68903e42777cffa699a4ceb5e57a17a53fd50d8cdf046737093de36719dc01"
|
| 633 |
+
},
|
| 634 |
+
"checkpoints/checkpoint-480/tokenizer.json": {
|
| 635 |
+
"size": 33384567,
|
| 636 |
+
"sha256": "daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726"
|
| 637 |
+
},
|
| 638 |
+
"checkpoints/checkpoint-480/tokenizer_config.json": {
|
| 639 |
+
"size": 746,
|
| 640 |
+
"sha256": "985e3a86edf82aa70f471b4f974e2fea2c6bac9bfb57edd073d0679f6ecaaae6"
|
| 641 |
+
},
|
| 642 |
+
"checkpoints/checkpoint-480/tokens_state.json": {
|
| 643 |
+
"size": 40,
|
| 644 |
+
"sha256": "dbc5d00979701d6c8967a1f37ae63a9fe880cf2994d1eb5f62fb00ded111ff81"
|
| 645 |
+
},
|
| 646 |
+
"checkpoints/checkpoint-480/trainer_state.json": {
|
| 647 |
+
"size": 211099,
|
| 648 |
+
"sha256": "131bced5b4222c0df96ea8c5d916c0814fa2b65286466039dde2265dba7859da"
|
| 649 |
+
},
|
| 650 |
+
"checkpoints/checkpoint-480/training_args.bin": {
|
| 651 |
+
"size": 8273,
|
| 652 |
+
"sha256": "92b1065d4abbeacb5ed4bced699965f9cfab8427a7efb6f6541a63653fc57634"
|
| 653 |
+
},
|
| 654 |
+
"checkpoints/checkpoint-512/README.md": {
|
| 655 |
+
"size": 5252,
|
| 656 |
+
"sha256": "7b776c21373f4441b3d332578870a215782804b19ca3eeadc31848b79d3519da"
|
| 657 |
+
},
|
| 658 |
+
"checkpoints/checkpoint-512/adapter_config.json": {
|
| 659 |
+
"size": 1120,
|
| 660 |
+
"sha256": "fc070f31ba6decd40dff67eff23594c2d5f464b40fcef707954676d465a5e0c8"
|
| 661 |
+
},
|
| 662 |
+
"checkpoints/checkpoint-512/adapter_model.safetensors": {
|
| 663 |
+
"size": 547777976,
|
| 664 |
+
"sha256": "cb902f917f4594e641254c1053d1e99022840e561efc592be774f6f17040ba38"
|
| 665 |
+
},
|
| 666 |
+
"checkpoints/checkpoint-512/chat_template.jinja": {
|
| 667 |
+
"size": 1532,
|
| 668 |
+
"sha256": "7de1c58e208eda46e9c7f86397df37ec49883aeece39fb961e0a6b24088dd3c4"
|
| 669 |
+
},
|
| 670 |
+
"checkpoints/checkpoint-512/optimizer.pt": {
|
| 671 |
+
"size": 1048106435,
|
| 672 |
+
"sha256": "eef61f92ba0f4e2022cfb6ce24e1c8fb0704c2c5300ba67589f60a6038f2b0dd"
|
| 673 |
+
},
|
| 674 |
+
"checkpoints/checkpoint-512/rng_state.pth": {
|
| 675 |
+
"size": 14645,
|
| 676 |
+
"sha256": "0167bd44db439d036c339ec7676c03866d5a37ac97d68de38616699306db0a21"
|
| 677 |
+
},
|
| 678 |
+
"checkpoints/checkpoint-512/scheduler.pt": {
|
| 679 |
+
"size": 1465,
|
| 680 |
+
"sha256": "697fe8894f7795467da8b1a7ccebf8570b28357dc457e2ba8ccdb525507cfef4"
|
| 681 |
+
},
|
| 682 |
+
"checkpoints/checkpoint-512/tokenizer.json": {
|
| 683 |
+
"size": 33384567,
|
| 684 |
+
"sha256": "daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726"
|
| 685 |
+
},
|
| 686 |
+
"checkpoints/checkpoint-512/tokenizer_config.json": {
|
| 687 |
+
"size": 746,
|
| 688 |
+
"sha256": "985e3a86edf82aa70f471b4f974e2fea2c6bac9bfb57edd073d0679f6ecaaae6"
|
| 689 |
+
},
|
| 690 |
+
"checkpoints/checkpoint-512/tokens_state.json": {
|
| 691 |
+
"size": 40,
|
| 692 |
+
"sha256": "2d27a4024ebf00c04734913dffdb1f4fce22102b8a0e35a1a69902d03843bb23"
|
| 693 |
+
},
|
| 694 |
+
"checkpoints/checkpoint-512/trainer_state.json": {
|
| 695 |
+
"size": 225237,
|
| 696 |
+
"sha256": "fe21e0016d3bb96f2f0d58547f12064a7567a726a7dc2d5e209eac6a7d545567"
|
| 697 |
+
},
|
| 698 |
+
"checkpoints/checkpoint-512/training_args.bin": {
|
| 699 |
+
"size": 8273,
|
| 700 |
+
"sha256": "92b1065d4abbeacb5ed4bced699965f9cfab8427a7efb6f6541a63653fc57634"
|
| 701 |
+
},
|
| 702 |
+
"checkpoints/checkpoint-64/README.md": {
|
| 703 |
+
"size": 5252,
|
| 704 |
+
"sha256": "7b776c21373f4441b3d332578870a215782804b19ca3eeadc31848b79d3519da"
|
| 705 |
+
},
|
| 706 |
+
"checkpoints/checkpoint-64/adapter_config.json": {
|
| 707 |
+
"size": 1120,
|
| 708 |
+
"sha256": "fc070f31ba6decd40dff67eff23594c2d5f464b40fcef707954676d465a5e0c8"
|
| 709 |
+
},
|
| 710 |
+
"checkpoints/checkpoint-64/adapter_model.safetensors": {
|
| 711 |
+
"size": 547777976,
|
| 712 |
+
"sha256": "91215613ea1ede42eb43ed93ac9b2b911d7ec04725d5993513c054d39e33a9f0"
|
| 713 |
+
},
|
| 714 |
+
"checkpoints/checkpoint-64/chat_template.jinja": {
|
| 715 |
+
"size": 1532,
|
| 716 |
+
"sha256": "7de1c58e208eda46e9c7f86397df37ec49883aeece39fb961e0a6b24088dd3c4"
|
| 717 |
+
},
|
| 718 |
+
"checkpoints/checkpoint-64/optimizer.pt": {
|
| 719 |
+
"size": 1048106435,
|
| 720 |
+
"sha256": "48458ccef9531f08594780e501750c3bd9fa19b613c3f4925edc61129c8605fb"
|
| 721 |
+
},
|
| 722 |
+
"checkpoints/checkpoint-64/rng_state.pth": {
|
| 723 |
+
"size": 14645,
|
| 724 |
+
"sha256": "8fceeb869af3ebdb70932f5d864119bc217c0be1c007e6c15d68521eb402e36d"
|
| 725 |
+
},
|
| 726 |
+
"checkpoints/checkpoint-64/scheduler.pt": {
|
| 727 |
+
"size": 1465,
|
| 728 |
+
"sha256": "15b31b2361cee4c0a1206aa5d9efeb71d8dc96ceaff5b2fe054baf0716df3503"
|
| 729 |
+
},
|
| 730 |
+
"checkpoints/checkpoint-64/tokenizer.json": {
|
| 731 |
+
"size": 33384567,
|
| 732 |
+
"sha256": "daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726"
|
| 733 |
+
},
|
| 734 |
+
"checkpoints/checkpoint-64/tokenizer_config.json": {
|
| 735 |
+
"size": 746,
|
| 736 |
+
"sha256": "985e3a86edf82aa70f471b4f974e2fea2c6bac9bfb57edd073d0679f6ecaaae6"
|
| 737 |
+
},
|
| 738 |
+
"checkpoints/checkpoint-64/tokens_state.json": {
|
| 739 |
+
"size": 38,
|
| 740 |
+
"sha256": "aca2b563a6fb6422c3e57f520a0e0d45673278badaeb3ffe33a1fcda7419f0c4"
|
| 741 |
+
},
|
| 742 |
+
"checkpoints/checkpoint-64/trainer_state.json": {
|
| 743 |
+
"size": 28307,
|
| 744 |
+
"sha256": "d66b773ff20be0bd065709136ee16d0ef2ca0728aedf338827be2a22fc346e36"
|
| 745 |
+
},
|
| 746 |
+
"checkpoints/checkpoint-64/training_args.bin": {
|
| 747 |
+
"size": 8273,
|
| 748 |
+
"sha256": "92b1065d4abbeacb5ed4bced699965f9cfab8427a7efb6f6541a63653fc57634"
|
| 749 |
+
},
|
| 750 |
+
"checkpoints/checkpoint-96/README.md": {
|
| 751 |
+
"size": 5252,
|
| 752 |
+
"sha256": "7b776c21373f4441b3d332578870a215782804b19ca3eeadc31848b79d3519da"
|
| 753 |
+
},
|
| 754 |
+
"checkpoints/checkpoint-96/adapter_config.json": {
|
| 755 |
+
"size": 1120,
|
| 756 |
+
"sha256": "fc070f31ba6decd40dff67eff23594c2d5f464b40fcef707954676d465a5e0c8"
|
| 757 |
+
},
|
| 758 |
+
"checkpoints/checkpoint-96/adapter_model.safetensors": {
|
| 759 |
+
"size": 547777976,
|
| 760 |
+
"sha256": "36ee949a99df8fadec22a9d7518ae0c690c37dfcec59bcfd8a19cd0110a88d0a"
|
| 761 |
+
},
|
| 762 |
+
"checkpoints/checkpoint-96/chat_template.jinja": {
|
| 763 |
+
"size": 1532,
|
| 764 |
+
"sha256": "7de1c58e208eda46e9c7f86397df37ec49883aeece39fb961e0a6b24088dd3c4"
|
| 765 |
+
},
|
| 766 |
+
"checkpoints/checkpoint-96/optimizer.pt": {
|
| 767 |
+
"size": 1048106435,
|
| 768 |
+
"sha256": "51ae84e88af6abcfa89a77c89ebde8c1edad063d6c5c612fe7bc547a7c3b7dc1"
|
| 769 |
+
},
|
| 770 |
+
"checkpoints/checkpoint-96/rng_state.pth": {
|
| 771 |
+
"size": 14645,
|
| 772 |
+
"sha256": "b684b305d9e7b60f772479d8acbd0a25afb20f096dcba946a80a0a66dc2064de"
|
| 773 |
+
},
|
| 774 |
+
"checkpoints/checkpoint-96/scheduler.pt": {
|
| 775 |
+
"size": 1465,
|
| 776 |
+
"sha256": "786444fedf73fac372c74a0ffd25119b2bb7107a3f00f8bfd9a8a46a6f2f4ff0"
|
| 777 |
+
},
|
| 778 |
+
"checkpoints/checkpoint-96/tokenizer.json": {
|
| 779 |
+
"size": 33384567,
|
| 780 |
+
"sha256": "daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726"
|
| 781 |
+
},
|
| 782 |
+
"checkpoints/checkpoint-96/tokenizer_config.json": {
|
| 783 |
+
"size": 746,
|
| 784 |
+
"sha256": "985e3a86edf82aa70f471b4f974e2fea2c6bac9bfb57edd073d0679f6ecaaae6"
|
| 785 |
+
},
|
| 786 |
+
"checkpoints/checkpoint-96/tokens_state.json": {
|
| 787 |
+
"size": 38,
|
| 788 |
+
"sha256": "0c0277cf63953e06e4d04e4856fb25e50542f7b12b0848b73a26913832b61e1c"
|
| 789 |
+
},
|
| 790 |
+
"checkpoints/checkpoint-96/trainer_state.json": {
|
| 791 |
+
"size": 42242,
|
| 792 |
+
"sha256": "a2e93b2f76d69d4c0a6087075256e4a5b45d2f998bbe71a222172f3c5c3953a3"
|
| 793 |
+
},
|
| 794 |
+
"checkpoints/checkpoint-96/training_args.bin": {
|
| 795 |
+
"size": 8273,
|
| 796 |
+
"sha256": "92b1065d4abbeacb5ed4bced699965f9cfab8427a7efb6f6541a63653fc57634"
|
| 797 |
+
},
|
| 798 |
+
"checkpoints/config.json": {
|
| 799 |
+
"size": 3278,
|
| 800 |
+
"sha256": "7c5b66498629a75e7fe3e4219bc41040b8106735e598f0837d60656025390e1a"
|
| 801 |
+
},
|
| 802 |
+
"checkpoints/debug.log": {
|
| 803 |
+
"size": 270235,
|
| 804 |
+
"sha256": "676cecb61cffca5cc5d0f76642c643e589647738466b2515b75ca09abc773240"
|
| 805 |
+
},
|
| 806 |
+
"checkpoints/processor_config.json": {
|
| 807 |
+
"size": 519,
|
| 808 |
+
"sha256": "e58dda857eb60dae48a0146bedd13f9e4664f4066d6269f1eaa934db8f2d704f"
|
| 809 |
+
},
|
| 810 |
+
"checkpoints/tokenizer.json": {
|
| 811 |
+
"size": 33384567,
|
| 812 |
+
"sha256": "daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726"
|
| 813 |
+
},
|
| 814 |
+
"checkpoints/tokenizer_config.json": {
|
| 815 |
+
"size": 746,
|
| 816 |
+
"sha256": "985e3a86edf82aa70f471b4f974e2fea2c6bac9bfb57edd073d0679f6ecaaae6"
|
| 817 |
+
},
|
| 818 |
+
"train.log": {
|
| 819 |
+
"size": 277798,
|
| 820 |
+
"sha256": "5a46f2b52d33a014de8bc19066542914edfc1693f4a6fe4f76ab8d78b53ddce5"
|
| 821 |
+
},
|
| 822 |
+
"trainer_state.final.json": {
|
| 823 |
+
"size": 225237,
|
| 824 |
+
"sha256": "fe21e0016d3bb96f2f0d58547f12064a7567a726a7dc2d5e209eac6a7d545567"
|
| 825 |
+
},
|
| 826 |
+
"training_examples.jsonl": {
|
| 827 |
+
"size": 3388459,
|
| 828 |
+
"sha256": "22bb8139c2480eeb877e7877bad0e0ac7b4a238eabfe0dc20c065a09da223bd4"
|
| 829 |
+
},
|
| 830 |
+
"training_provenance.json": {
|
| 831 |
+
"size": 4398,
|
| 832 |
+
"sha256": "54cda6355f8f01d939d8776a97c927d7eeb8c25a14872802844f6c53c0b68595"
|
| 833 |
+
},
|
| 834 |
+
"training_trace.jsonl": {
|
| 835 |
+
"size": 181969,
|
| 836 |
+
"sha256": "b97165260fb94ee97832dfc6ea52efa4df8fc2199438ea3af77aec92258eed1b"
|
| 837 |
+
}
|
| 838 |
+
}
|
| 839 |
+
}
|
deconfound_sdf_v1/aft_control/training/COMPLETE.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"version": "deconfound_sdf_v1",
|
| 3 |
+
"arm": "deconf_control",
|
| 4 |
+
"parameterization": "lora",
|
| 5 |
+
"parent_repo": "arcadia-impact/scimt-dispatch-models",
|
| 6 |
+
"parent_prefix": "gate2_midtrain4/dolmino/post_dolci100",
|
| 7 |
+
"dataset_sha256": "e11c9c229457c5c911b81192b6601b13dfff2d83769367416a2da70f87978caf",
|
| 8 |
+
"training_rows": 8192,
|
| 9 |
+
"stage": "aft_dispatch_v4_wide",
|
| 10 |
+
"seed": 42,
|
| 11 |
+
"minutes": 71.01,
|
| 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 |
+
"target_parameters": null,
|
| 27 |
+
"triton_kernels": false,
|
| 28 |
+
"initial_adapter_path": null
|
| 29 |
+
},
|
| 30 |
+
"optimizer_steps": 512,
|
| 31 |
+
"checkpoint_steps": [
|
| 32 |
+
32,
|
| 33 |
+
64,
|
| 34 |
+
96,
|
| 35 |
+
128,
|
| 36 |
+
160,
|
| 37 |
+
192,
|
| 38 |
+
224,
|
| 39 |
+
256,
|
| 40 |
+
288,
|
| 41 |
+
320,
|
| 42 |
+
352,
|
| 43 |
+
384,
|
| 44 |
+
416,
|
| 45 |
+
448,
|
| 46 |
+
480,
|
| 47 |
+
512
|
| 48 |
+
],
|
| 49 |
+
"eval_steps": [
|
| 50 |
+
32,
|
| 51 |
+
64,
|
| 52 |
+
128,
|
| 53 |
+
256,
|
| 54 |
+
512
|
| 55 |
+
],
|
| 56 |
+
"optimizer_state_saved": true,
|
| 57 |
+
"upload": {
|
| 58 |
+
"repo": "sidbaines/scimt-prior-coins-dispatch-sdf-aft-v1",
|
| 59 |
+
"remote_prefix": "extensions/deconfound_sdf_v1/deconf_control/training",
|
| 60 |
+
"n_files": 208,
|
| 61 |
+
"sizes_verified": true,
|
| 62 |
+
"sha256_manifest_uploaded": true,
|
| 63 |
+
"verified": true,
|
| 64 |
+
"last_error": null
|
| 65 |
+
}
|
| 66 |
+
}
|
deconfound_sdf_v1/aft_control/training/TRAINED.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"version": "deconfound_sdf_v1",
|
| 3 |
+
"arm": "deconf_control",
|
| 4 |
+
"parameterization": "lora",
|
| 5 |
+
"parent_repo": "arcadia-impact/scimt-dispatch-models",
|
| 6 |
+
"parent_prefix": "gate2_midtrain4/dolmino/post_dolci100",
|
| 7 |
+
"dataset_sha256": "e11c9c229457c5c911b81192b6601b13dfff2d83769367416a2da70f87978caf",
|
| 8 |
+
"training_rows": 8192,
|
| 9 |
+
"stage": "aft_dispatch_v4_wide",
|
| 10 |
+
"seed": 42,
|
| 11 |
+
"minutes": 71.01,
|
| 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 |
+
"target_parameters": null,
|
| 27 |
+
"triton_kernels": false,
|
| 28 |
+
"initial_adapter_path": null
|
| 29 |
+
},
|
| 30 |
+
"optimizer_steps": 512,
|
| 31 |
+
"checkpoint_steps": [
|
| 32 |
+
32,
|
| 33 |
+
64,
|
| 34 |
+
96,
|
| 35 |
+
128,
|
| 36 |
+
160,
|
| 37 |
+
192,
|
| 38 |
+
224,
|
| 39 |
+
256,
|
| 40 |
+
288,
|
| 41 |
+
320,
|
| 42 |
+
352,
|
| 43 |
+
384,
|
| 44 |
+
416,
|
| 45 |
+
448,
|
| 46 |
+
480,
|
| 47 |
+
512
|
| 48 |
+
],
|
| 49 |
+
"eval_steps": [
|
| 50 |
+
32,
|
| 51 |
+
64,
|
| 52 |
+
128,
|
| 53 |
+
256,
|
| 54 |
+
512
|
| 55 |
+
],
|
| 56 |
+
"optimizer_state_saved": true
|
| 57 |
+
}
|
deconfound_sdf_v1/aft_control/training/axolotl.yaml
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
base_model: /workspace/deconf_wave_deconf_control/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/deconf_wave_deconf_control/data/datasets/aft_agreement.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/deconf_wave_deconf_control/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/deconf_wave_deconf_control/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
|
| 57 |
+
lora_qkv_kernel: false
|
| 58 |
+
lora_mlp_kernel: false
|
| 59 |
+
lora_o_kernel: false
|
deconfound_sdf_v1/aft_control/training/checkpoints/README.md
ADDED
|
@@ -0,0 +1,131 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: peft
|
| 3 |
+
tags:
|
| 4 |
+
- axolotl
|
| 5 |
+
- base_model:adapter:/workspace/deconf_wave_deconf_control/parent
|
| 6 |
+
- lora
|
| 7 |
+
- transformers
|
| 8 |
+
datasets:
|
| 9 |
+
- /workspace/deconf_wave_deconf_control/data/datasets/aft_agreement.jsonl
|
| 10 |
+
base_model: /workspace/deconf_wave_deconf_control/parent
|
| 11 |
+
pipeline_tag: text-generation
|
| 12 |
+
model-index:
|
| 13 |
+
- name: workspace/deconf_wave_deconf_control/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/deconf_wave_deconf_control/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/deconf_wave_deconf_control/data/datasets/aft_agreement.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/deconf_wave_deconf_control/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/deconf_wave_deconf_control/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 |
+
lora_qkv_kernel: false
|
| 82 |
+
lora_mlp_kernel: false
|
| 83 |
+
lora_o_kernel: false
|
| 84 |
+
|
| 85 |
+
```
|
| 86 |
+
|
| 87 |
+
</details><br>
|
| 88 |
+
|
| 89 |
+
# workspace/deconf_wave_deconf_control/training/checkpoints
|
| 90 |
+
|
| 91 |
+
This model was trained from scratch on the /workspace/deconf_wave_deconf_control/data/datasets/aft_agreement.jsonl dataset.
|
| 92 |
+
|
| 93 |
+
## Model description
|
| 94 |
+
|
| 95 |
+
More information needed
|
| 96 |
+
|
| 97 |
+
## Intended uses & limitations
|
| 98 |
+
|
| 99 |
+
More information needed
|
| 100 |
+
|
| 101 |
+
## Training and evaluation data
|
| 102 |
+
|
| 103 |
+
More information needed
|
| 104 |
+
|
| 105 |
+
## Training procedure
|
| 106 |
+
|
| 107 |
+
### Training hyperparameters
|
| 108 |
+
|
| 109 |
+
The following hyperparameters were used during training:
|
| 110 |
+
- learning_rate: 0.0001
|
| 111 |
+
- train_batch_size: 16
|
| 112 |
+
- eval_batch_size: 16
|
| 113 |
+
- seed: 42
|
| 114 |
+
- gradient_accumulation_steps: 2
|
| 115 |
+
- total_train_batch_size: 32
|
| 116 |
+
- optimizer: Use OptimizerNames.ADAMW_TORCH_FUSED with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
|
| 117 |
+
- lr_scheduler_type: cosine
|
| 118 |
+
- lr_scheduler_warmup_steps: 25
|
| 119 |
+
- training_steps: 512
|
| 120 |
+
|
| 121 |
+
### Training results
|
| 122 |
+
|
| 123 |
+
|
| 124 |
+
|
| 125 |
+
### Framework versions
|
| 126 |
+
|
| 127 |
+
- PEFT 0.19.1
|
| 128 |
+
- Transformers 5.9.0
|
| 129 |
+
- Pytorch 2.12.1+cu126
|
| 130 |
+
- Datasets 4.8.5
|
| 131 |
+
- Tokenizers 0.22.2
|
deconfound_sdf_v1/aft_control/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/deconf_wave_deconf_control/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 |
+
"gate_proj",
|
| 34 |
+
"v_proj",
|
| 35 |
+
"k_proj",
|
| 36 |
+
"up_proj",
|
| 37 |
+
"q_proj",
|
| 38 |
+
"o_proj",
|
| 39 |
+
"down_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 |
+
}
|
deconfound_sdf_v1/aft_control/training/checkpoints/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cb902f917f4594e641254c1053d1e99022840e561efc592be774f6f17040ba38
|
| 3 |
+
size 547777976
|
deconfound_sdf_v1/aft_control/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 -%}
|
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-128/README.md
ADDED
|
@@ -0,0 +1,208 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: /workspace/deconf_wave_deconf_control/parent
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- axolotl
|
| 7 |
+
- base_model:adapter:/workspace/deconf_wave_deconf_control/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
|
deconfound_sdf_v1/aft_control/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/deconf_wave_deconf_control/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 |
+
"gate_proj",
|
| 34 |
+
"v_proj",
|
| 35 |
+
"k_proj",
|
| 36 |
+
"up_proj",
|
| 37 |
+
"q_proj",
|
| 38 |
+
"o_proj",
|
| 39 |
+
"down_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 |
+
}
|
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-128/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ee38db78bbe5e9642c79efd98de06bb515a77a4f4df7e394427182fc10a3d4be
|
| 3 |
+
size 547777976
|
deconfound_sdf_v1/aft_control/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 -%}
|
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-128/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2cbe490718ebc31c0b63f97de1563aaa1a8cba4efac9a74266e617bf9dc718d2
|
| 3 |
+
size 1048106435
|
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-128/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3602de2b837997bb09f9c8537b4a2543c817c933b5b5f48d6c73b2bf5e8d7e59
|
| 3 |
+
size 14645
|
deconfound_sdf_v1/aft_control/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
|
deconfound_sdf_v1/aft_control/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
|
deconfound_sdf_v1/aft_control/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 |
+
}
|
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-128/tokens_state.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"total": 4086144, "trainable": 58534}
|
deconfound_sdf_v1/aft_control/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.2140090465545654,
|
| 15 |
+
"learning_rate": 0.0,
|
| 16 |
+
"loss": 0.16441112756729126,
|
| 17 |
+
"memory/device_reserved (GiB)": 38.08,
|
| 18 |
+
"memory/max_active (GiB)": 35.64,
|
| 19 |
+
"memory/max_allocated (GiB)": 35.64,
|
| 20 |
+
"ppl": 1.1787,
|
| 21 |
+
"step": 1,
|
| 22 |
+
"tokens/total": 32160,
|
| 23 |
+
"tokens/train_per_sec_per_gpu": 21.28,
|
| 24 |
+
"tokens/trainable": 470
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"epoch": 0.0078125,
|
| 28 |
+
"grad_norm": 2.92620849609375,
|
| 29 |
+
"learning_rate": 4.000000000000001e-06,
|
| 30 |
+
"loss": 0.15774038434028625,
|
| 31 |
+
"memory/device_reserved (GiB)": 38.78,
|
| 32 |
+
"memory/max_active (GiB)": 36.52,
|
| 33 |
+
"memory/max_allocated (GiB)": 36.52,
|
| 34 |
+
"ppl": 1.17086,
|
| 35 |
+
"step": 2,
|
| 36 |
+
"tokens/total": 64192,
|
| 37 |
+
"tokens/train_per_sec_per_gpu": 29.27,
|
| 38 |
+
"tokens/trainable": 922
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"epoch": 0.01171875,
|
| 42 |
+
"grad_norm": 1.135961890220642,
|
| 43 |
+
"learning_rate": 8.000000000000001e-06,
|
| 44 |
+
"loss": 0.1664382815361023,
|
| 45 |
+
"memory/device_reserved (GiB)": 38.78,
|
| 46 |
+
"memory/max_active (GiB)": 36.55,
|
| 47 |
+
"memory/max_allocated (GiB)": 36.55,
|
| 48 |
+
"ppl": 1.18109,
|
| 49 |
+
"step": 3,
|
| 50 |
+
"tokens/total": 96224,
|
| 51 |
+
"tokens/train_per_sec_per_gpu": 28.54,
|
| 52 |
+
"tokens/trainable": 1396
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"epoch": 0.015625,
|
| 56 |
+
"grad_norm": 0.880176305770874,
|
| 57 |
+
"learning_rate": 1.2e-05,
|
| 58 |
+
"loss": 0.15334013104438782,
|
| 59 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 60 |
+
"memory/max_active (GiB)": 36.55,
|
| 61 |
+
"memory/max_allocated (GiB)": 36.55,
|
| 62 |
+
"ppl": 1.16572,
|
| 63 |
+
"step": 4,
|
| 64 |
+
"tokens/total": 128336,
|
| 65 |
+
"tokens/train_per_sec_per_gpu": 31.73,
|
| 66 |
+
"tokens/trainable": 1850
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"epoch": 0.01953125,
|
| 70 |
+
"grad_norm": 1.1433289051055908,
|
| 71 |
+
"learning_rate": 1.6000000000000003e-05,
|
| 72 |
+
"loss": 0.16352537274360657,
|
| 73 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 74 |
+
"memory/max_active (GiB)": 36.64,
|
| 75 |
+
"memory/max_allocated (GiB)": 36.64,
|
| 76 |
+
"ppl": 1.17766,
|
| 77 |
+
"step": 5,
|
| 78 |
+
"tokens/total": 160784,
|
| 79 |
+
"tokens/train_per_sec_per_gpu": 29.45,
|
| 80 |
+
"tokens/trainable": 2302
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"epoch": 0.0234375,
|
| 84 |
+
"grad_norm": 0.9728212952613831,
|
| 85 |
+
"learning_rate": 2e-05,
|
| 86 |
+
"loss": 0.15144473314285278,
|
| 87 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 88 |
+
"memory/max_active (GiB)": 36.4,
|
| 89 |
+
"memory/max_allocated (GiB)": 36.4,
|
| 90 |
+
"ppl": 1.16351,
|
| 91 |
+
"step": 6,
|
| 92 |
+
"tokens/total": 192624,
|
| 93 |
+
"tokens/train_per_sec_per_gpu": 26.46,
|
| 94 |
+
"tokens/trainable": 2742
|
| 95 |
+
},
|
| 96 |
+
{
|
| 97 |
+
"epoch": 0.02734375,
|
| 98 |
+
"grad_norm": 1.7796363830566406,
|
| 99 |
+
"learning_rate": 2.4e-05,
|
| 100 |
+
"loss": 0.13553467392921448,
|
| 101 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 102 |
+
"memory/max_active (GiB)": 36.48,
|
| 103 |
+
"memory/max_allocated (GiB)": 36.48,
|
| 104 |
+
"ppl": 1.14515,
|
| 105 |
+
"step": 7,
|
| 106 |
+
"tokens/total": 224608,
|
| 107 |
+
"tokens/train_per_sec_per_gpu": 30.52,
|
| 108 |
+
"tokens/trainable": 3208
|
| 109 |
+
},
|
| 110 |
+
{
|
| 111 |
+
"epoch": 0.03125,
|
| 112 |
+
"grad_norm": 1.2444697618484497,
|
| 113 |
+
"learning_rate": 2.8000000000000003e-05,
|
| 114 |
+
"loss": 0.1077304258942604,
|
| 115 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 116 |
+
"memory/max_active (GiB)": 36.51,
|
| 117 |
+
"memory/max_allocated (GiB)": 36.51,
|
| 118 |
+
"ppl": 1.11375,
|
| 119 |
+
"step": 8,
|
| 120 |
+
"tokens/total": 256592,
|
| 121 |
+
"tokens/train_per_sec_per_gpu": 26.46,
|
| 122 |
+
"tokens/trainable": 3655
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"epoch": 0.03515625,
|
| 126 |
+
"grad_norm": 2.7339375019073486,
|
| 127 |
+
"learning_rate": 3.2000000000000005e-05,
|
| 128 |
+
"loss": 0.08772765100002289,
|
| 129 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 130 |
+
"memory/max_active (GiB)": 36.45,
|
| 131 |
+
"memory/max_allocated (GiB)": 36.45,
|
| 132 |
+
"ppl": 1.09169,
|
| 133 |
+
"step": 9,
|
| 134 |
+
"tokens/total": 286400,
|
| 135 |
+
"tokens/train_per_sec_per_gpu": 29.82,
|
| 136 |
+
"tokens/trainable": 4091
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 0.0390625,
|
| 140 |
+
"grad_norm": 4.109770774841309,
|
| 141 |
+
"learning_rate": 3.6e-05,
|
| 142 |
+
"loss": 0.130940243601799,
|
| 143 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 144 |
+
"memory/max_active (GiB)": 36.49,
|
| 145 |
+
"memory/max_allocated (GiB)": 36.49,
|
| 146 |
+
"ppl": 1.1399,
|
| 147 |
+
"step": 10,
|
| 148 |
+
"tokens/total": 318352,
|
| 149 |
+
"tokens/train_per_sec_per_gpu": 29.13,
|
| 150 |
+
"tokens/trainable": 4553
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"epoch": 0.04296875,
|
| 154 |
+
"grad_norm": 2.3768608570098877,
|
| 155 |
+
"learning_rate": 4e-05,
|
| 156 |
+
"loss": 0.10059958696365356,
|
| 157 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 158 |
+
"memory/max_active (GiB)": 36.42,
|
| 159 |
+
"memory/max_allocated (GiB)": 36.42,
|
| 160 |
+
"ppl": 1.10583,
|
| 161 |
+
"step": 11,
|
| 162 |
+
"tokens/total": 350336,
|
| 163 |
+
"tokens/train_per_sec_per_gpu": 27.47,
|
| 164 |
+
"tokens/trainable": 4992
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"epoch": 0.046875,
|
| 168 |
+
"grad_norm": 3.281402826309204,
|
| 169 |
+
"learning_rate": 4.4000000000000006e-05,
|
| 170 |
+
"loss": 0.12574875354766846,
|
| 171 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 172 |
+
"memory/max_active (GiB)": 36.51,
|
| 173 |
+
"memory/max_allocated (GiB)": 36.51,
|
| 174 |
+
"ppl": 1.134,
|
| 175 |
+
"step": 12,
|
| 176 |
+
"tokens/total": 382448,
|
| 177 |
+
"tokens/train_per_sec_per_gpu": 31.9,
|
| 178 |
+
"tokens/trainable": 5494
|
| 179 |
+
},
|
| 180 |
+
{
|
| 181 |
+
"epoch": 0.05078125,
|
| 182 |
+
"grad_norm": 1.7738980054855347,
|
| 183 |
+
"learning_rate": 4.8e-05,
|
| 184 |
+
"loss": 0.033296722918748856,
|
| 185 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 186 |
+
"memory/max_active (GiB)": 36.55,
|
| 187 |
+
"memory/max_allocated (GiB)": 36.55,
|
| 188 |
+
"ppl": 1.03386,
|
| 189 |
+
"step": 13,
|
| 190 |
+
"tokens/total": 414352,
|
| 191 |
+
"tokens/train_per_sec_per_gpu": 27.87,
|
| 192 |
+
"tokens/trainable": 5933
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"epoch": 0.0546875,
|
| 196 |
+
"grad_norm": 2.64290189743042,
|
| 197 |
+
"learning_rate": 5.2000000000000004e-05,
|
| 198 |
+
"loss": 0.06366822123527527,
|
| 199 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 200 |
+
"memory/max_active (GiB)": 36.41,
|
| 201 |
+
"memory/max_allocated (GiB)": 36.41,
|
| 202 |
+
"ppl": 1.06574,
|
| 203 |
+
"step": 14,
|
| 204 |
+
"tokens/total": 446400,
|
| 205 |
+
"tokens/train_per_sec_per_gpu": 24.8,
|
| 206 |
+
"tokens/trainable": 6369
|
| 207 |
+
},
|
| 208 |
+
{
|
| 209 |
+
"epoch": 0.05859375,
|
| 210 |
+
"grad_norm": 3.3691928386688232,
|
| 211 |
+
"learning_rate": 5.6000000000000006e-05,
|
| 212 |
+
"loss": 0.08168518543243408,
|
| 213 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 214 |
+
"memory/max_active (GiB)": 36.57,
|
| 215 |
+
"memory/max_allocated (GiB)": 36.57,
|
| 216 |
+
"ppl": 1.08511,
|
| 217 |
+
"step": 15,
|
| 218 |
+
"tokens/total": 478688,
|
| 219 |
+
"tokens/train_per_sec_per_gpu": 27.3,
|
| 220 |
+
"tokens/trainable": 6820
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"epoch": 0.0625,
|
| 224 |
+
"grad_norm": 2.4356393814086914,
|
| 225 |
+
"learning_rate": 6e-05,
|
| 226 |
+
"loss": 0.09031196683645248,
|
| 227 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 228 |
+
"memory/max_active (GiB)": 36.46,
|
| 229 |
+
"memory/max_allocated (GiB)": 36.46,
|
| 230 |
+
"ppl": 1.09452,
|
| 231 |
+
"step": 16,
|
| 232 |
+
"tokens/total": 510512,
|
| 233 |
+
"tokens/train_per_sec_per_gpu": 25.7,
|
| 234 |
+
"tokens/trainable": 7258
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"epoch": 0.06640625,
|
| 238 |
+
"grad_norm": 1.55682373046875,
|
| 239 |
+
"learning_rate": 6.400000000000001e-05,
|
| 240 |
+
"loss": 0.07496573030948639,
|
| 241 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 242 |
+
"memory/max_active (GiB)": 36.54,
|
| 243 |
+
"memory/max_allocated (GiB)": 36.54,
|
| 244 |
+
"ppl": 1.07785,
|
| 245 |
+
"step": 17,
|
| 246 |
+
"tokens/total": 542736,
|
| 247 |
+
"tokens/train_per_sec_per_gpu": 29.54,
|
| 248 |
+
"tokens/trainable": 7710
|
| 249 |
+
},
|
| 250 |
+
{
|
| 251 |
+
"epoch": 0.0703125,
|
| 252 |
+
"grad_norm": 1.1054646968841553,
|
| 253 |
+
"learning_rate": 6.800000000000001e-05,
|
| 254 |
+
"loss": 0.05218805745244026,
|
| 255 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 256 |
+
"memory/max_active (GiB)": 36.46,
|
| 257 |
+
"memory/max_allocated (GiB)": 36.46,
|
| 258 |
+
"ppl": 1.05357,
|
| 259 |
+
"step": 18,
|
| 260 |
+
"tokens/total": 574832,
|
| 261 |
+
"tokens/train_per_sec_per_gpu": 25.78,
|
| 262 |
+
"tokens/trainable": 8174
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"epoch": 0.07421875,
|
| 266 |
+
"grad_norm": 0.7429099082946777,
|
| 267 |
+
"learning_rate": 7.2e-05,
|
| 268 |
+
"loss": 0.03790827840566635,
|
| 269 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 270 |
+
"memory/max_active (GiB)": 36.46,
|
| 271 |
+
"memory/max_allocated (GiB)": 36.46,
|
| 272 |
+
"ppl": 1.03864,
|
| 273 |
+
"step": 19,
|
| 274 |
+
"tokens/total": 606976,
|
| 275 |
+
"tokens/train_per_sec_per_gpu": 28.62,
|
| 276 |
+
"tokens/trainable": 8617
|
| 277 |
+
},
|
| 278 |
+
{
|
| 279 |
+
"epoch": 0.078125,
|
| 280 |
+
"grad_norm": 2.9508209228515625,
|
| 281 |
+
"learning_rate": 7.6e-05,
|
| 282 |
+
"loss": 0.04993613809347153,
|
| 283 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 284 |
+
"memory/max_active (GiB)": 36.62,
|
| 285 |
+
"memory/max_allocated (GiB)": 36.62,
|
| 286 |
+
"ppl": 1.0512,
|
| 287 |
+
"step": 20,
|
| 288 |
+
"tokens/total": 639200,
|
| 289 |
+
"tokens/train_per_sec_per_gpu": 24.91,
|
| 290 |
+
"tokens/trainable": 9037
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"epoch": 0.08203125,
|
| 294 |
+
"grad_norm": 1.0297844409942627,
|
| 295 |
+
"learning_rate": 8e-05,
|
| 296 |
+
"loss": 0.017908263951539993,
|
| 297 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 298 |
+
"memory/max_active (GiB)": 36.39,
|
| 299 |
+
"memory/max_allocated (GiB)": 36.39,
|
| 300 |
+
"ppl": 1.01807,
|
| 301 |
+
"step": 21,
|
| 302 |
+
"tokens/total": 671072,
|
| 303 |
+
"tokens/train_per_sec_per_gpu": 30.42,
|
| 304 |
+
"tokens/trainable": 9503
|
| 305 |
+
},
|
| 306 |
+
{
|
| 307 |
+
"epoch": 0.0859375,
|
| 308 |
+
"grad_norm": 0.9279879331588745,
|
| 309 |
+
"learning_rate": 8.4e-05,
|
| 310 |
+
"loss": 0.013478193432092667,
|
| 311 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 312 |
+
"memory/max_active (GiB)": 36.52,
|
| 313 |
+
"memory/max_allocated (GiB)": 36.52,
|
| 314 |
+
"ppl": 1.01357,
|
| 315 |
+
"step": 22,
|
| 316 |
+
"tokens/total": 703136,
|
| 317 |
+
"tokens/train_per_sec_per_gpu": 30.74,
|
| 318 |
+
"tokens/trainable": 9972
|
| 319 |
+
},
|
| 320 |
+
{
|
| 321 |
+
"epoch": 0.08984375,
|
| 322 |
+
"grad_norm": 1.526488184928894,
|
| 323 |
+
"learning_rate": 8.800000000000001e-05,
|
| 324 |
+
"loss": 0.017310388386249542,
|
| 325 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 326 |
+
"memory/max_active (GiB)": 36.54,
|
| 327 |
+
"memory/max_allocated (GiB)": 36.54,
|
| 328 |
+
"ppl": 1.01746,
|
| 329 |
+
"step": 23,
|
| 330 |
+
"tokens/total": 735120,
|
| 331 |
+
"tokens/train_per_sec_per_gpu": 31.45,
|
| 332 |
+
"tokens/trainable": 10447
|
| 333 |
+
},
|
| 334 |
+
{
|
| 335 |
+
"epoch": 0.09375,
|
| 336 |
+
"grad_norm": 3.4049417972564697,
|
| 337 |
+
"learning_rate": 9.200000000000001e-05,
|
| 338 |
+
"loss": 0.0353429913520813,
|
| 339 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 340 |
+
"memory/max_active (GiB)": 36.52,
|
| 341 |
+
"memory/max_allocated (GiB)": 36.52,
|
| 342 |
+
"ppl": 1.03597,
|
| 343 |
+
"step": 24,
|
| 344 |
+
"tokens/total": 767040,
|
| 345 |
+
"tokens/train_per_sec_per_gpu": 30.79,
|
| 346 |
+
"tokens/trainable": 10899
|
| 347 |
+
},
|
| 348 |
+
{
|
| 349 |
+
"epoch": 0.09765625,
|
| 350 |
+
"grad_norm": 7.511656761169434,
|
| 351 |
+
"learning_rate": 9.6e-05,
|
| 352 |
+
"loss": 0.1335875540971756,
|
| 353 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 354 |
+
"memory/max_active (GiB)": 36.47,
|
| 355 |
+
"memory/max_allocated (GiB)": 36.47,
|
| 356 |
+
"ppl": 1.14292,
|
| 357 |
+
"step": 25,
|
| 358 |
+
"tokens/total": 798976,
|
| 359 |
+
"tokens/train_per_sec_per_gpu": 27.72,
|
| 360 |
+
"tokens/trainable": 11360
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"epoch": 0.1015625,
|
| 364 |
+
"grad_norm": 1.0069234371185303,
|
| 365 |
+
"learning_rate": 0.0001,
|
| 366 |
+
"loss": 0.04382415860891342,
|
| 367 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 368 |
+
"memory/max_active (GiB)": 36.45,
|
| 369 |
+
"memory/max_allocated (GiB)": 36.45,
|
| 370 |
+
"ppl": 1.0448,
|
| 371 |
+
"step": 26,
|
| 372 |
+
"tokens/total": 830880,
|
| 373 |
+
"tokens/train_per_sec_per_gpu": 24.61,
|
| 374 |
+
"tokens/trainable": 11775
|
| 375 |
+
},
|
| 376 |
+
{
|
| 377 |
+
"epoch": 0.10546875,
|
| 378 |
+
"grad_norm": 7.807938575744629,
|
| 379 |
+
"learning_rate": 9.99990636831587e-05,
|
| 380 |
+
"loss": 0.01210833340883255,
|
| 381 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 382 |
+
"memory/max_active (GiB)": 36.11,
|
| 383 |
+
"memory/max_allocated (GiB)": 36.11,
|
| 384 |
+
"ppl": 1.01218,
|
| 385 |
+
"step": 27,
|
| 386 |
+
"tokens/total": 860960,
|
| 387 |
+
"tokens/train_per_sec_per_gpu": 33.01,
|
| 388 |
+
"tokens/trainable": 12242
|
| 389 |
+
},
|
| 390 |
+
{
|
| 391 |
+
"epoch": 0.109375,
|
| 392 |
+
"grad_norm": 2.23823881149292,
|
| 393 |
+
"learning_rate": 9.999625477159879e-05,
|
| 394 |
+
"loss": 0.0272970050573349,
|
| 395 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 396 |
+
"memory/max_active (GiB)": 36.53,
|
| 397 |
+
"memory/max_allocated (GiB)": 36.53,
|
| 398 |
+
"ppl": 1.02767,
|
| 399 |
+
"step": 28,
|
| 400 |
+
"tokens/total": 892816,
|
| 401 |
+
"tokens/train_per_sec_per_gpu": 27.87,
|
| 402 |
+
"tokens/trainable": 12696
|
| 403 |
+
},
|
| 404 |
+
{
|
| 405 |
+
"epoch": 0.11328125,
|
| 406 |
+
"grad_norm": 1.315584421157837,
|
| 407 |
+
"learning_rate": 9.999157338221051e-05,
|
| 408 |
+
"loss": 0.025516577064990997,
|
| 409 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 410 |
+
"memory/max_active (GiB)": 36.51,
|
| 411 |
+
"memory/max_allocated (GiB)": 36.51,
|
| 412 |
+
"ppl": 1.02584,
|
| 413 |
+
"step": 29,
|
| 414 |
+
"tokens/total": 924736,
|
| 415 |
+
"tokens/train_per_sec_per_gpu": 28.71,
|
| 416 |
+
"tokens/trainable": 13153
|
| 417 |
+
},
|
| 418 |
+
{
|
| 419 |
+
"epoch": 0.1171875,
|
| 420 |
+
"grad_norm": 0.8413651585578918,
|
| 421 |
+
"learning_rate": 9.998501970980562e-05,
|
| 422 |
+
"loss": 0.007838520221412182,
|
| 423 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 424 |
+
"memory/max_active (GiB)": 36.45,
|
| 425 |
+
"memory/max_allocated (GiB)": 36.45,
|
| 426 |
+
"ppl": 1.00787,
|
| 427 |
+
"step": 30,
|
| 428 |
+
"tokens/total": 954592,
|
| 429 |
+
"tokens/train_per_sec_per_gpu": 33.59,
|
| 430 |
+
"tokens/trainable": 13624
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"epoch": 0.12109375,
|
| 434 |
+
"grad_norm": 1.6797157526016235,
|
| 435 |
+
"learning_rate": 9.997659402710915e-05,
|
| 436 |
+
"loss": 0.03002442792057991,
|
| 437 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 438 |
+
"memory/max_active (GiB)": 36.49,
|
| 439 |
+
"memory/max_allocated (GiB)": 36.49,
|
| 440 |
+
"ppl": 1.03048,
|
| 441 |
+
"step": 31,
|
| 442 |
+
"tokens/total": 986592,
|
| 443 |
+
"tokens/train_per_sec_per_gpu": 28.67,
|
| 444 |
+
"tokens/trainable": 14064
|
| 445 |
+
},
|
| 446 |
+
{
|
| 447 |
+
"epoch": 0.125,
|
| 448 |
+
"grad_norm": 1.3320434093475342,
|
| 449 |
+
"learning_rate": 9.996629668474818e-05,
|
| 450 |
+
"loss": 0.03772728145122528,
|
| 451 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 452 |
+
"memory/max_active (GiB)": 36.57,
|
| 453 |
+
"memory/max_allocated (GiB)": 36.57,
|
| 454 |
+
"ppl": 1.03845,
|
| 455 |
+
"step": 32,
|
| 456 |
+
"tokens/total": 1018720,
|
| 457 |
+
"tokens/train_per_sec_per_gpu": 32.5,
|
| 458 |
+
"tokens/trainable": 14565
|
| 459 |
+
},
|
| 460 |
+
{
|
| 461 |
+
"epoch": 0.12890625,
|
| 462 |
+
"grad_norm": 0.6335167288780212,
|
| 463 |
+
"learning_rate": 9.995412811123711e-05,
|
| 464 |
+
"loss": 0.013970119878649712,
|
| 465 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 466 |
+
"memory/max_active (GiB)": 36.41,
|
| 467 |
+
"memory/max_allocated (GiB)": 36.41,
|
| 468 |
+
"ppl": 1.01407,
|
| 469 |
+
"step": 33,
|
| 470 |
+
"tokens/total": 1050624,
|
| 471 |
+
"tokens/train_per_sec_per_gpu": 28.18,
|
| 472 |
+
"tokens/trainable": 15005
|
| 473 |
+
},
|
| 474 |
+
{
|
| 475 |
+
"epoch": 0.1328125,
|
| 476 |
+
"grad_norm": 0.5626921653747559,
|
| 477 |
+
"learning_rate": 9.994008881295999e-05,
|
| 478 |
+
"loss": 0.016654539853334427,
|
| 479 |
+
"memory/device_reserved (GiB)": 37.74,
|
| 480 |
+
"memory/max_active (GiB)": 36.22,
|
| 481 |
+
"memory/max_allocated (GiB)": 36.22,
|
| 482 |
+
"ppl": 1.01679,
|
| 483 |
+
"step": 34,
|
| 484 |
+
"tokens/total": 1082176,
|
| 485 |
+
"tokens/train_per_sec_per_gpu": 26.84,
|
| 486 |
+
"tokens/trainable": 15459
|
| 487 |
+
},
|
| 488 |
+
{
|
| 489 |
+
"epoch": 0.13671875,
|
| 490 |
+
"grad_norm": 0.603219211101532,
|
| 491 |
+
"learning_rate": 9.992417937414932e-05,
|
| 492 |
+
"loss": 0.021408583968877792,
|
| 493 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 494 |
+
"memory/max_active (GiB)": 36.47,
|
| 495 |
+
"memory/max_allocated (GiB)": 36.47,
|
| 496 |
+
"ppl": 1.02164,
|
| 497 |
+
"step": 35,
|
| 498 |
+
"tokens/total": 1113968,
|
| 499 |
+
"tokens/train_per_sec_per_gpu": 31.75,
|
| 500 |
+
"tokens/trainable": 15960
|
| 501 |
+
},
|
| 502 |
+
{
|
| 503 |
+
"epoch": 0.140625,
|
| 504 |
+
"grad_norm": 0.9779674410820007,
|
| 505 |
+
"learning_rate": 9.99064004568618e-05,
|
| 506 |
+
"loss": 0.03277068957686424,
|
| 507 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 508 |
+
"memory/max_active (GiB)": 36.58,
|
| 509 |
+
"memory/max_allocated (GiB)": 36.58,
|
| 510 |
+
"ppl": 1.03331,
|
| 511 |
+
"step": 36,
|
| 512 |
+
"tokens/total": 1145952,
|
| 513 |
+
"tokens/train_per_sec_per_gpu": 28.68,
|
| 514 |
+
"tokens/trainable": 16428
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"epoch": 0.14453125,
|
| 518 |
+
"grad_norm": 0.8855255842208862,
|
| 519 |
+
"learning_rate": 9.988675280095074e-05,
|
| 520 |
+
"loss": 0.017048098146915436,
|
| 521 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 522 |
+
"memory/max_active (GiB)": 36.29,
|
| 523 |
+
"memory/max_allocated (GiB)": 36.29,
|
| 524 |
+
"ppl": 1.01719,
|
| 525 |
+
"step": 37,
|
| 526 |
+
"tokens/total": 1177872,
|
| 527 |
+
"tokens/train_per_sec_per_gpu": 26.33,
|
| 528 |
+
"tokens/trainable": 16884
|
| 529 |
+
},
|
| 530 |
+
{
|
| 531 |
+
"epoch": 0.1484375,
|
| 532 |
+
"grad_norm": 1.9266122579574585,
|
| 533 |
+
"learning_rate": 9.986523722403528e-05,
|
| 534 |
+
"loss": 0.045863546431064606,
|
| 535 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 536 |
+
"memory/max_active (GiB)": 36.45,
|
| 537 |
+
"memory/max_allocated (GiB)": 36.45,
|
| 538 |
+
"ppl": 1.04693,
|
| 539 |
+
"step": 38,
|
| 540 |
+
"tokens/total": 1209776,
|
| 541 |
+
"tokens/train_per_sec_per_gpu": 26.91,
|
| 542 |
+
"tokens/trainable": 17341
|
| 543 |
+
},
|
| 544 |
+
{
|
| 545 |
+
"epoch": 0.15234375,
|
| 546 |
+
"grad_norm": 0.8280895948410034,
|
| 547 |
+
"learning_rate": 9.984185462146642e-05,
|
| 548 |
+
"loss": 0.033055759966373444,
|
| 549 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 550 |
+
"memory/max_active (GiB)": 36.44,
|
| 551 |
+
"memory/max_allocated (GiB)": 36.44,
|
| 552 |
+
"ppl": 1.03361,
|
| 553 |
+
"step": 39,
|
| 554 |
+
"tokens/total": 1241888,
|
| 555 |
+
"tokens/train_per_sec_per_gpu": 28.34,
|
| 556 |
+
"tokens/trainable": 17786
|
| 557 |
+
},
|
| 558 |
+
{
|
| 559 |
+
"epoch": 0.15625,
|
| 560 |
+
"grad_norm": 5.029730319976807,
|
| 561 |
+
"learning_rate": 9.98166059662897e-05,
|
| 562 |
+
"loss": 0.025589998811483383,
|
| 563 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 564 |
+
"memory/max_active (GiB)": 36.48,
|
| 565 |
+
"memory/max_allocated (GiB)": 36.48,
|
| 566 |
+
"ppl": 1.02592,
|
| 567 |
+
"step": 40,
|
| 568 |
+
"tokens/total": 1274032,
|
| 569 |
+
"tokens/train_per_sec_per_gpu": 29.22,
|
| 570 |
+
"tokens/trainable": 18262
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"epoch": 0.16015625,
|
| 574 |
+
"grad_norm": 0.5688032507896423,
|
| 575 |
+
"learning_rate": 9.978949230920472e-05,
|
| 576 |
+
"loss": 0.016095872968435287,
|
| 577 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 578 |
+
"memory/max_active (GiB)": 36.49,
|
| 579 |
+
"memory/max_allocated (GiB)": 36.49,
|
| 580 |
+
"ppl": 1.01623,
|
| 581 |
+
"step": 41,
|
| 582 |
+
"tokens/total": 1306000,
|
| 583 |
+
"tokens/train_per_sec_per_gpu": 27.49,
|
| 584 |
+
"tokens/trainable": 18716
|
| 585 |
+
},
|
| 586 |
+
{
|
| 587 |
+
"epoch": 0.1640625,
|
| 588 |
+
"grad_norm": 0.8217663168907166,
|
| 589 |
+
"learning_rate": 9.976051477852141e-05,
|
| 590 |
+
"loss": 0.026798982173204422,
|
| 591 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 592 |
+
"memory/max_active (GiB)": 36.46,
|
| 593 |
+
"memory/max_allocated (GiB)": 36.46,
|
| 594 |
+
"ppl": 1.02716,
|
| 595 |
+
"step": 42,
|
| 596 |
+
"tokens/total": 1337936,
|
| 597 |
+
"tokens/train_per_sec_per_gpu": 27.51,
|
| 598 |
+
"tokens/trainable": 19157
|
| 599 |
+
},
|
| 600 |
+
{
|
| 601 |
+
"epoch": 0.16796875,
|
| 602 |
+
"grad_norm": 0.7309132218360901,
|
| 603 |
+
"learning_rate": 9.972967458011312e-05,
|
| 604 |
+
"loss": 0.033920761197805405,
|
| 605 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 606 |
+
"memory/max_active (GiB)": 36.45,
|
| 607 |
+
"memory/max_allocated (GiB)": 36.45,
|
| 608 |
+
"ppl": 1.0345,
|
| 609 |
+
"step": 43,
|
| 610 |
+
"tokens/total": 1369904,
|
| 611 |
+
"tokens/train_per_sec_per_gpu": 30.66,
|
| 612 |
+
"tokens/trainable": 19647
|
| 613 |
+
},
|
| 614 |
+
{
|
| 615 |
+
"epoch": 0.171875,
|
| 616 |
+
"grad_norm": 0.8134022355079651,
|
| 617 |
+
"learning_rate": 9.96969729973664e-05,
|
| 618 |
+
"loss": 0.024005085229873657,
|
| 619 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 620 |
+
"memory/max_active (GiB)": 36.49,
|
| 621 |
+
"memory/max_allocated (GiB)": 36.49,
|
| 622 |
+
"ppl": 1.0243,
|
| 623 |
+
"step": 44,
|
| 624 |
+
"tokens/total": 1401984,
|
| 625 |
+
"tokens/train_per_sec_per_gpu": 29.06,
|
| 626 |
+
"tokens/trainable": 20119
|
| 627 |
+
},
|
| 628 |
+
{
|
| 629 |
+
"epoch": 0.17578125,
|
| 630 |
+
"grad_norm": 0.35084816813468933,
|
| 631 |
+
"learning_rate": 9.966241139112754e-05,
|
| 632 |
+
"loss": 0.013319254852831364,
|
| 633 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 634 |
+
"memory/max_active (GiB)": 36.49,
|
| 635 |
+
"memory/max_allocated (GiB)": 36.49,
|
| 636 |
+
"ppl": 1.01341,
|
| 637 |
+
"step": 45,
|
| 638 |
+
"tokens/total": 1434032,
|
| 639 |
+
"tokens/train_per_sec_per_gpu": 27.45,
|
| 640 |
+
"tokens/trainable": 20560
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"epoch": 0.1796875,
|
| 644 |
+
"grad_norm": 0.8701573014259338,
|
| 645 |
+
"learning_rate": 9.96259911996461e-05,
|
| 646 |
+
"loss": 0.01356641948223114,
|
| 647 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 648 |
+
"memory/max_active (GiB)": 36.47,
|
| 649 |
+
"memory/max_allocated (GiB)": 36.47,
|
| 650 |
+
"ppl": 1.01366,
|
| 651 |
+
"step": 46,
|
| 652 |
+
"tokens/total": 1465872,
|
| 653 |
+
"tokens/train_per_sec_per_gpu": 27.35,
|
| 654 |
+
"tokens/trainable": 20992
|
| 655 |
+
},
|
| 656 |
+
{
|
| 657 |
+
"epoch": 0.18359375,
|
| 658 |
+
"grad_norm": 1.4406442642211914,
|
| 659 |
+
"learning_rate": 9.958771393851491e-05,
|
| 660 |
+
"loss": 0.04396980255842209,
|
| 661 |
+
"memory/device_reserved (GiB)": 38.99,
|
| 662 |
+
"memory/max_active (GiB)": 35.86,
|
| 663 |
+
"memory/max_allocated (GiB)": 35.86,
|
| 664 |
+
"ppl": 1.04495,
|
| 665 |
+
"step": 47,
|
| 666 |
+
"tokens/total": 1495440,
|
| 667 |
+
"tokens/train_per_sec_per_gpu": 26.46,
|
| 668 |
+
"tokens/trainable": 21441
|
| 669 |
+
},
|
| 670 |
+
{
|
| 671 |
+
"epoch": 0.1875,
|
| 672 |
+
"grad_norm": 0.4966669976711273,
|
| 673 |
+
"learning_rate": 9.954758120060702e-05,
|
| 674 |
+
"loss": 0.011179964058101177,
|
| 675 |
+
"memory/device_reserved (GiB)": 38.99,
|
| 676 |
+
"memory/max_active (GiB)": 36.61,
|
| 677 |
+
"memory/max_allocated (GiB)": 36.61,
|
| 678 |
+
"ppl": 1.01124,
|
| 679 |
+
"step": 48,
|
| 680 |
+
"tokens/total": 1527776,
|
| 681 |
+
"tokens/train_per_sec_per_gpu": 27.89,
|
| 682 |
+
"tokens/trainable": 21901
|
| 683 |
+
},
|
| 684 |
+
{
|
| 685 |
+
"epoch": 0.19140625,
|
| 686 |
+
"grad_norm": 0.41124436259269714,
|
| 687 |
+
"learning_rate": 9.950559465600948e-05,
|
| 688 |
+
"loss": 0.0063599650748074055,
|
| 689 |
+
"memory/device_reserved (GiB)": 38.99,
|
| 690 |
+
"memory/max_active (GiB)": 36.4,
|
| 691 |
+
"memory/max_allocated (GiB)": 36.4,
|
| 692 |
+
"ppl": 1.00638,
|
| 693 |
+
"step": 49,
|
| 694 |
+
"tokens/total": 1559760,
|
| 695 |
+
"tokens/train_per_sec_per_gpu": 27.73,
|
| 696 |
+
"tokens/trainable": 22341
|
| 697 |
+
},
|
| 698 |
+
{
|
| 699 |
+
"epoch": 0.1953125,
|
| 700 |
+
"grad_norm": 0.829739511013031,
|
| 701 |
+
"learning_rate": 9.946175605195379e-05,
|
| 702 |
+
"loss": 0.015785304829478264,
|
| 703 |
+
"memory/device_reserved (GiB)": 38.99,
|
| 704 |
+
"memory/max_active (GiB)": 36.53,
|
| 705 |
+
"memory/max_allocated (GiB)": 36.53,
|
| 706 |
+
"ppl": 1.01591,
|
| 707 |
+
"step": 50,
|
| 708 |
+
"tokens/total": 1592000,
|
| 709 |
+
"tokens/train_per_sec_per_gpu": 27.39,
|
| 710 |
+
"tokens/trainable": 22833
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"epoch": 0.19921875,
|
| 714 |
+
"grad_norm": 0.5181736946105957,
|
| 715 |
+
"learning_rate": 9.941606721274322e-05,
|
| 716 |
+
"loss": 0.008393109776079655,
|
| 717 |
+
"memory/device_reserved (GiB)": 38.99,
|
| 718 |
+
"memory/max_active (GiB)": 36.44,
|
| 719 |
+
"memory/max_allocated (GiB)": 36.44,
|
| 720 |
+
"ppl": 1.00843,
|
| 721 |
+
"step": 51,
|
| 722 |
+
"tokens/total": 1623920,
|
| 723 |
+
"tokens/train_per_sec_per_gpu": 25.61,
|
| 724 |
+
"tokens/trainable": 23277
|
| 725 |
+
},
|
| 726 |
+
{
|
| 727 |
+
"epoch": 0.203125,
|
| 728 |
+
"grad_norm": 1.5778990983963013,
|
| 729 |
+
"learning_rate": 9.936853003967685e-05,
|
| 730 |
+
"loss": 0.024984844028949738,
|
| 731 |
+
"memory/device_reserved (GiB)": 38.99,
|
| 732 |
+
"memory/max_active (GiB)": 36.47,
|
| 733 |
+
"memory/max_allocated (GiB)": 36.47,
|
| 734 |
+
"ppl": 1.0253,
|
| 735 |
+
"step": 52,
|
| 736 |
+
"tokens/total": 1656032,
|
| 737 |
+
"tokens/train_per_sec_per_gpu": 29.64,
|
| 738 |
+
"tokens/trainable": 23759
|
| 739 |
+
},
|
| 740 |
+
{
|
| 741 |
+
"epoch": 0.20703125,
|
| 742 |
+
"grad_norm": 1.4938714504241943,
|
| 743 |
+
"learning_rate": 9.93191465109705e-05,
|
| 744 |
+
"loss": 0.038523320108652115,
|
| 745 |
+
"memory/device_reserved (GiB)": 38.99,
|
| 746 |
+
"memory/max_active (GiB)": 36.55,
|
| 747 |
+
"memory/max_allocated (GiB)": 36.55,
|
| 748 |
+
"ppl": 1.03927,
|
| 749 |
+
"step": 53,
|
| 750 |
+
"tokens/total": 1688368,
|
| 751 |
+
"tokens/train_per_sec_per_gpu": 27.55,
|
| 752 |
+
"tokens/trainable": 24193
|
| 753 |
+
},
|
| 754 |
+
{
|
| 755 |
+
"epoch": 0.2109375,
|
| 756 |
+
"grad_norm": 2.1427106857299805,
|
| 757 |
+
"learning_rate": 9.926791868167438e-05,
|
| 758 |
+
"loss": 0.06302924454212189,
|
| 759 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 760 |
+
"memory/max_active (GiB)": 36.6,
|
| 761 |
+
"memory/max_allocated (GiB)": 36.6,
|
| 762 |
+
"ppl": 1.06506,
|
| 763 |
+
"step": 54,
|
| 764 |
+
"tokens/total": 1720560,
|
| 765 |
+
"tokens/train_per_sec_per_gpu": 27.71,
|
| 766 |
+
"tokens/trainable": 24619
|
| 767 |
+
},
|
| 768 |
+
{
|
| 769 |
+
"epoch": 0.21484375,
|
| 770 |
+
"grad_norm": 1.8365188837051392,
|
| 771 |
+
"learning_rate": 9.921484868358753e-05,
|
| 772 |
+
"loss": 0.052160464227199554,
|
| 773 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 774 |
+
"memory/max_active (GiB)": 36.42,
|
| 775 |
+
"memory/max_allocated (GiB)": 36.42,
|
| 776 |
+
"ppl": 1.05354,
|
| 777 |
+
"step": 55,
|
| 778 |
+
"tokens/total": 1752464,
|
| 779 |
+
"tokens/train_per_sec_per_gpu": 27.55,
|
| 780 |
+
"tokens/trainable": 25075
|
| 781 |
+
},
|
| 782 |
+
{
|
| 783 |
+
"epoch": 0.21875,
|
| 784 |
+
"grad_norm": 0.7779749631881714,
|
| 785 |
+
"learning_rate": 9.915993872516924e-05,
|
| 786 |
+
"loss": 0.021328264847397804,
|
| 787 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 788 |
+
"memory/max_active (GiB)": 36.38,
|
| 789 |
+
"memory/max_allocated (GiB)": 36.38,
|
| 790 |
+
"ppl": 1.02156,
|
| 791 |
+
"step": 56,
|
| 792 |
+
"tokens/total": 1784336,
|
| 793 |
+
"tokens/train_per_sec_per_gpu": 26.42,
|
| 794 |
+
"tokens/trainable": 25519
|
| 795 |
+
},
|
| 796 |
+
{
|
| 797 |
+
"epoch": 0.22265625,
|
| 798 |
+
"grad_norm": 0.4189571142196655,
|
| 799 |
+
"learning_rate": 9.9103191091447e-05,
|
| 800 |
+
"loss": 0.014279939234256744,
|
| 801 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 802 |
+
"memory/max_active (GiB)": 36.54,
|
| 803 |
+
"memory/max_allocated (GiB)": 36.54,
|
| 804 |
+
"ppl": 1.01438,
|
| 805 |
+
"step": 57,
|
| 806 |
+
"tokens/total": 1816304,
|
| 807 |
+
"tokens/train_per_sec_per_gpu": 27.47,
|
| 808 |
+
"tokens/trainable": 25966
|
| 809 |
+
},
|
| 810 |
+
{
|
| 811 |
+
"epoch": 0.2265625,
|
| 812 |
+
"grad_norm": 0.3834710717201233,
|
| 813 |
+
"learning_rate": 9.904460814392147e-05,
|
| 814 |
+
"loss": 0.01883944310247898,
|
| 815 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 816 |
+
"memory/max_active (GiB)": 36.53,
|
| 817 |
+
"memory/max_allocated (GiB)": 36.53,
|
| 818 |
+
"ppl": 1.01902,
|
| 819 |
+
"step": 58,
|
| 820 |
+
"tokens/total": 1848304,
|
| 821 |
+
"tokens/train_per_sec_per_gpu": 28.08,
|
| 822 |
+
"tokens/trainable": 26423
|
| 823 |
+
},
|
| 824 |
+
{
|
| 825 |
+
"epoch": 0.23046875,
|
| 826 |
+
"grad_norm": 0.7693278789520264,
|
| 827 |
+
"learning_rate": 9.898419232046825e-05,
|
| 828 |
+
"loss": 0.03533369302749634,
|
| 829 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 830 |
+
"memory/max_active (GiB)": 36.58,
|
| 831 |
+
"memory/max_allocated (GiB)": 36.58,
|
| 832 |
+
"ppl": 1.03597,
|
| 833 |
+
"step": 59,
|
| 834 |
+
"tokens/total": 1880640,
|
| 835 |
+
"tokens/train_per_sec_per_gpu": 31.99,
|
| 836 |
+
"tokens/trainable": 26934
|
| 837 |
+
},
|
| 838 |
+
{
|
| 839 |
+
"epoch": 0.234375,
|
| 840 |
+
"grad_norm": 0.4606446325778961,
|
| 841 |
+
"learning_rate": 9.892194613523633e-05,
|
| 842 |
+
"loss": 0.021482212468981743,
|
| 843 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 844 |
+
"memory/max_active (GiB)": 36.47,
|
| 845 |
+
"memory/max_allocated (GiB)": 36.47,
|
| 846 |
+
"ppl": 1.02171,
|
| 847 |
+
"step": 60,
|
| 848 |
+
"tokens/total": 1912592,
|
| 849 |
+
"tokens/train_per_sec_per_gpu": 27.64,
|
| 850 |
+
"tokens/trainable": 27393
|
| 851 |
+
},
|
| 852 |
+
{
|
| 853 |
+
"epoch": 0.23828125,
|
| 854 |
+
"grad_norm": 0.46030017733573914,
|
| 855 |
+
"learning_rate": 9.885787217854357e-05,
|
| 856 |
+
"loss": 0.017044665291905403,
|
| 857 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 858 |
+
"memory/max_active (GiB)": 36.54,
|
| 859 |
+
"memory/max_allocated (GiB)": 36.54,
|
| 860 |
+
"ppl": 1.01719,
|
| 861 |
+
"step": 61,
|
| 862 |
+
"tokens/total": 1944544,
|
| 863 |
+
"tokens/train_per_sec_per_gpu": 27.44,
|
| 864 |
+
"tokens/trainable": 27852
|
| 865 |
+
},
|
| 866 |
+
{
|
| 867 |
+
"epoch": 0.2421875,
|
| 868 |
+
"grad_norm": 0.7918264269828796,
|
| 869 |
+
"learning_rate": 9.879197311676887e-05,
|
| 870 |
+
"loss": 0.016954131424427032,
|
| 871 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 872 |
+
"memory/max_active (GiB)": 36.45,
|
| 873 |
+
"memory/max_allocated (GiB)": 36.45,
|
| 874 |
+
"ppl": 1.0171,
|
| 875 |
+
"step": 62,
|
| 876 |
+
"tokens/total": 1976688,
|
| 877 |
+
"tokens/train_per_sec_per_gpu": 27.32,
|
| 878 |
+
"tokens/trainable": 28292
|
| 879 |
+
},
|
| 880 |
+
{
|
| 881 |
+
"epoch": 0.24609375,
|
| 882 |
+
"grad_norm": 0.4787926971912384,
|
| 883 |
+
"learning_rate": 9.872425169224113e-05,
|
| 884 |
+
"loss": 0.01525965891778469,
|
| 885 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 886 |
+
"memory/max_active (GiB)": 36.59,
|
| 887 |
+
"memory/max_allocated (GiB)": 36.59,
|
| 888 |
+
"ppl": 1.01538,
|
| 889 |
+
"step": 63,
|
| 890 |
+
"tokens/total": 2008928,
|
| 891 |
+
"tokens/train_per_sec_per_gpu": 31.14,
|
| 892 |
+
"tokens/trainable": 28798
|
| 893 |
+
},
|
| 894 |
+
{
|
| 895 |
+
"epoch": 0.25,
|
| 896 |
+
"grad_norm": 0.9033918976783752,
|
| 897 |
+
"learning_rate": 9.865471072312528e-05,
|
| 898 |
+
"loss": 0.02902211993932724,
|
| 899 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 900 |
+
"memory/max_active (GiB)": 36.61,
|
| 901 |
+
"memory/max_allocated (GiB)": 36.61,
|
| 902 |
+
"ppl": 1.02945,
|
| 903 |
+
"step": 64,
|
| 904 |
+
"tokens/total": 2041120,
|
| 905 |
+
"tokens/train_per_sec_per_gpu": 29.83,
|
| 906 |
+
"tokens/trainable": 29283
|
| 907 |
+
},
|
| 908 |
+
{
|
| 909 |
+
"epoch": 0.25390625,
|
| 910 |
+
"grad_norm": 0.39305707812309265,
|
| 911 |
+
"learning_rate": 9.858335310330492e-05,
|
| 912 |
+
"loss": 0.00901167094707489,
|
| 913 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 914 |
+
"memory/max_active (GiB)": 36.32,
|
| 915 |
+
"memory/max_allocated (GiB)": 36.32,
|
| 916 |
+
"ppl": 1.00905,
|
| 917 |
+
"step": 65,
|
| 918 |
+
"tokens/total": 2073024,
|
| 919 |
+
"tokens/train_per_sec_per_gpu": 26.48,
|
| 920 |
+
"tokens/trainable": 29745
|
| 921 |
+
},
|
| 922 |
+
{
|
| 923 |
+
"epoch": 0.2578125,
|
| 924 |
+
"grad_norm": 0.4494345784187317,
|
| 925 |
+
"learning_rate": 9.851018180226185e-05,
|
| 926 |
+
"loss": 0.007426132448017597,
|
| 927 |
+
"memory/device_reserved (GiB)": 37.47,
|
| 928 |
+
"memory/max_active (GiB)": 36.41,
|
| 929 |
+
"memory/max_allocated (GiB)": 36.41,
|
| 930 |
+
"ppl": 1.00745,
|
| 931 |
+
"step": 66,
|
| 932 |
+
"tokens/total": 2105184,
|
| 933 |
+
"tokens/train_per_sec_per_gpu": 26.18,
|
| 934 |
+
"tokens/trainable": 30186
|
| 935 |
+
},
|
| 936 |
+
{
|
| 937 |
+
"epoch": 0.26171875,
|
| 938 |
+
"grad_norm": 0.629649817943573,
|
| 939 |
+
"learning_rate": 9.843519986495259e-05,
|
| 940 |
+
"loss": 0.010609081946313381,
|
| 941 |
+
"memory/device_reserved (GiB)": 38.68,
|
| 942 |
+
"memory/max_active (GiB)": 36.53,
|
| 943 |
+
"memory/max_allocated (GiB)": 36.53,
|
| 944 |
+
"ppl": 1.01067,
|
| 945 |
+
"step": 67,
|
| 946 |
+
"tokens/total": 2137264,
|
| 947 |
+
"tokens/train_per_sec_per_gpu": 27.71,
|
| 948 |
+
"tokens/trainable": 30622
|
| 949 |
+
},
|
| 950 |
+
{
|
| 951 |
+
"epoch": 0.265625,
|
| 952 |
+
"grad_norm": 0.7591162919998169,
|
| 953 |
+
"learning_rate": 9.835841041168162e-05,
|
| 954 |
+
"loss": 0.00926615484058857,
|
| 955 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 956 |
+
"memory/max_active (GiB)": 36.6,
|
| 957 |
+
"memory/max_allocated (GiB)": 36.6,
|
| 958 |
+
"ppl": 1.00931,
|
| 959 |
+
"step": 68,
|
| 960 |
+
"tokens/total": 2169424,
|
| 961 |
+
"tokens/train_per_sec_per_gpu": 29.42,
|
| 962 |
+
"tokens/trainable": 31097
|
| 963 |
+
},
|
| 964 |
+
{
|
| 965 |
+
"epoch": 0.26953125,
|
| 966 |
+
"grad_norm": 0.7288486361503601,
|
| 967 |
+
"learning_rate": 9.82798166379715e-05,
|
| 968 |
+
"loss": 0.024310583248734474,
|
| 969 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 970 |
+
"memory/max_active (GiB)": 36.45,
|
| 971 |
+
"memory/max_allocated (GiB)": 36.45,
|
| 972 |
+
"ppl": 1.02461,
|
| 973 |
+
"step": 69,
|
| 974 |
+
"tokens/total": 2201424,
|
| 975 |
+
"tokens/train_per_sec_per_gpu": 30.54,
|
| 976 |
+
"tokens/trainable": 31595
|
| 977 |
+
},
|
| 978 |
+
{
|
| 979 |
+
"epoch": 0.2734375,
|
| 980 |
+
"grad_norm": 2.134056329727173,
|
| 981 |
+
"learning_rate": 9.819942181443002e-05,
|
| 982 |
+
"loss": 0.008422967046499252,
|
| 983 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 984 |
+
"memory/max_active (GiB)": 36.47,
|
| 985 |
+
"memory/max_allocated (GiB)": 36.47,
|
| 986 |
+
"ppl": 1.00846,
|
| 987 |
+
"step": 70,
|
| 988 |
+
"tokens/total": 2233424,
|
| 989 |
+
"tokens/train_per_sec_per_gpu": 25.81,
|
| 990 |
+
"tokens/trainable": 32036
|
| 991 |
+
},
|
| 992 |
+
{
|
| 993 |
+
"epoch": 0.27734375,
|
| 994 |
+
"grad_norm": 0.6362871527671814,
|
| 995 |
+
"learning_rate": 9.811722928661392e-05,
|
| 996 |
+
"loss": 0.01577262207865715,
|
| 997 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 998 |
+
"memory/max_active (GiB)": 36.54,
|
| 999 |
+
"memory/max_allocated (GiB)": 36.54,
|
| 1000 |
+
"ppl": 1.0159,
|
| 1001 |
+
"step": 71,
|
| 1002 |
+
"tokens/total": 2265328,
|
| 1003 |
+
"tokens/train_per_sec_per_gpu": 23.65,
|
| 1004 |
+
"tokens/trainable": 32428
|
| 1005 |
+
},
|
| 1006 |
+
{
|
| 1007 |
+
"epoch": 0.28125,
|
| 1008 |
+
"grad_norm": 0.6091912388801575,
|
| 1009 |
+
"learning_rate": 9.803324247488975e-05,
|
| 1010 |
+
"loss": 0.0064800274558365345,
|
| 1011 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1012 |
+
"memory/max_active (GiB)": 36.47,
|
| 1013 |
+
"memory/max_allocated (GiB)": 36.47,
|
| 1014 |
+
"ppl": 1.0065,
|
| 1015 |
+
"step": 72,
|
| 1016 |
+
"tokens/total": 2297248,
|
| 1017 |
+
"tokens/train_per_sec_per_gpu": 26.86,
|
| 1018 |
+
"tokens/trainable": 32880
|
| 1019 |
+
},
|
| 1020 |
+
{
|
| 1021 |
+
"epoch": 0.28515625,
|
| 1022 |
+
"grad_norm": 0.14533838629722595,
|
| 1023 |
+
"learning_rate": 9.794746487429161e-05,
|
| 1024 |
+
"loss": 0.001991454279050231,
|
| 1025 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1026 |
+
"memory/max_active (GiB)": 36.41,
|
| 1027 |
+
"memory/max_allocated (GiB)": 36.41,
|
| 1028 |
+
"ppl": 1.00199,
|
| 1029 |
+
"step": 73,
|
| 1030 |
+
"tokens/total": 2329152,
|
| 1031 |
+
"tokens/train_per_sec_per_gpu": 27.97,
|
| 1032 |
+
"tokens/trainable": 33323
|
| 1033 |
+
},
|
| 1034 |
+
{
|
| 1035 |
+
"epoch": 0.2890625,
|
| 1036 |
+
"grad_norm": 0.5400826930999756,
|
| 1037 |
+
"learning_rate": 9.785990005437554e-05,
|
| 1038 |
+
"loss": 0.017662350088357925,
|
| 1039 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1040 |
+
"memory/max_active (GiB)": 36.6,
|
| 1041 |
+
"memory/max_allocated (GiB)": 36.6,
|
| 1042 |
+
"ppl": 1.01782,
|
| 1043 |
+
"step": 74,
|
| 1044 |
+
"tokens/total": 2361344,
|
| 1045 |
+
"tokens/train_per_sec_per_gpu": 29.61,
|
| 1046 |
+
"tokens/trainable": 33792
|
| 1047 |
+
},
|
| 1048 |
+
{
|
| 1049 |
+
"epoch": 0.29296875,
|
| 1050 |
+
"grad_norm": 0.6132436394691467,
|
| 1051 |
+
"learning_rate": 9.777055165907117e-05,
|
| 1052 |
+
"loss": 0.01787603087723255,
|
| 1053 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1054 |
+
"memory/max_active (GiB)": 36.42,
|
| 1055 |
+
"memory/max_allocated (GiB)": 36.42,
|
| 1056 |
+
"ppl": 1.01804,
|
| 1057 |
+
"step": 75,
|
| 1058 |
+
"tokens/total": 2393168,
|
| 1059 |
+
"tokens/train_per_sec_per_gpu": 29.53,
|
| 1060 |
+
"tokens/trainable": 34223
|
| 1061 |
+
},
|
| 1062 |
+
{
|
| 1063 |
+
"epoch": 0.296875,
|
| 1064 |
+
"grad_norm": 0.7287399172782898,
|
| 1065 |
+
"learning_rate": 9.767942340652993e-05,
|
| 1066 |
+
"loss": 0.024754449725151062,
|
| 1067 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1068 |
+
"memory/max_active (GiB)": 36.31,
|
| 1069 |
+
"memory/max_allocated (GiB)": 36.31,
|
| 1070 |
+
"ppl": 1.02506,
|
| 1071 |
+
"step": 76,
|
| 1072 |
+
"tokens/total": 2424880,
|
| 1073 |
+
"tokens/train_per_sec_per_gpu": 24.92,
|
| 1074 |
+
"tokens/trainable": 34649
|
| 1075 |
+
},
|
| 1076 |
+
{
|
| 1077 |
+
"epoch": 0.30078125,
|
| 1078 |
+
"grad_norm": 0.6790545582771301,
|
| 1079 |
+
"learning_rate": 9.758651908897035e-05,
|
| 1080 |
+
"loss": 0.014308430254459381,
|
| 1081 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1082 |
+
"memory/max_active (GiB)": 36.52,
|
| 1083 |
+
"memory/max_allocated (GiB)": 36.52,
|
| 1084 |
+
"ppl": 1.01441,
|
| 1085 |
+
"step": 77,
|
| 1086 |
+
"tokens/total": 2457120,
|
| 1087 |
+
"tokens/train_per_sec_per_gpu": 29.35,
|
| 1088 |
+
"tokens/trainable": 35094
|
| 1089 |
+
},
|
| 1090 |
+
{
|
| 1091 |
+
"epoch": 0.3046875,
|
| 1092 |
+
"grad_norm": 0.6203456521034241,
|
| 1093 |
+
"learning_rate": 9.749184257252033e-05,
|
| 1094 |
+
"loss": 0.034353043884038925,
|
| 1095 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1096 |
+
"memory/max_active (GiB)": 36.44,
|
| 1097 |
+
"memory/max_allocated (GiB)": 36.44,
|
| 1098 |
+
"ppl": 1.03495,
|
| 1099 |
+
"step": 78,
|
| 1100 |
+
"tokens/total": 2489104,
|
| 1101 |
+
"tokens/train_per_sec_per_gpu": 26.39,
|
| 1102 |
+
"tokens/trainable": 35534
|
| 1103 |
+
},
|
| 1104 |
+
{
|
| 1105 |
+
"epoch": 0.30859375,
|
| 1106 |
+
"grad_norm": 0.6238825917243958,
|
| 1107 |
+
"learning_rate": 9.739539779705614e-05,
|
| 1108 |
+
"loss": 0.032295141369104385,
|
| 1109 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1110 |
+
"memory/max_active (GiB)": 36.48,
|
| 1111 |
+
"memory/max_allocated (GiB)": 36.48,
|
| 1112 |
+
"ppl": 1.03282,
|
| 1113 |
+
"step": 79,
|
| 1114 |
+
"tokens/total": 2521136,
|
| 1115 |
+
"tokens/train_per_sec_per_gpu": 29.68,
|
| 1116 |
+
"tokens/trainable": 36029
|
| 1117 |
+
},
|
| 1118 |
+
{
|
| 1119 |
+
"epoch": 0.3125,
|
| 1120 |
+
"grad_norm": 0.18977171182632446,
|
| 1121 |
+
"learning_rate": 9.729718877603861e-05,
|
| 1122 |
+
"loss": 0.007260813377797604,
|
| 1123 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1124 |
+
"memory/max_active (GiB)": 36.61,
|
| 1125 |
+
"memory/max_allocated (GiB)": 36.61,
|
| 1126 |
+
"ppl": 1.00729,
|
| 1127 |
+
"step": 80,
|
| 1128 |
+
"tokens/total": 2553168,
|
| 1129 |
+
"tokens/train_per_sec_per_gpu": 29.48,
|
| 1130 |
+
"tokens/trainable": 36469
|
| 1131 |
+
},
|
| 1132 |
+
{
|
| 1133 |
+
"epoch": 0.31640625,
|
| 1134 |
+
"grad_norm": 0.8054049611091614,
|
| 1135 |
+
"learning_rate": 9.719721959634592e-05,
|
| 1136 |
+
"loss": 0.034894898533821106,
|
| 1137 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1138 |
+
"memory/max_active (GiB)": 36.61,
|
| 1139 |
+
"memory/max_allocated (GiB)": 36.61,
|
| 1140 |
+
"ppl": 1.03551,
|
| 1141 |
+
"step": 81,
|
| 1142 |
+
"tokens/total": 2585584,
|
| 1143 |
+
"tokens/train_per_sec_per_gpu": 25.75,
|
| 1144 |
+
"tokens/trainable": 36906
|
| 1145 |
+
},
|
| 1146 |
+
{
|
| 1147 |
+
"epoch": 0.3203125,
|
| 1148 |
+
"grad_norm": 0.6884189248085022,
|
| 1149 |
+
"learning_rate": 9.709549441810375e-05,
|
| 1150 |
+
"loss": 0.018210047855973244,
|
| 1151 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1152 |
+
"memory/max_active (GiB)": 36.57,
|
| 1153 |
+
"memory/max_allocated (GiB)": 36.57,
|
| 1154 |
+
"ppl": 1.01838,
|
| 1155 |
+
"step": 82,
|
| 1156 |
+
"tokens/total": 2617808,
|
| 1157 |
+
"tokens/train_per_sec_per_gpu": 32.23,
|
| 1158 |
+
"tokens/trainable": 37390
|
| 1159 |
+
},
|
| 1160 |
+
{
|
| 1161 |
+
"epoch": 0.32421875,
|
| 1162 |
+
"grad_norm": 0.6490103602409363,
|
| 1163 |
+
"learning_rate": 9.699201747451195e-05,
|
| 1164 |
+
"loss": 0.02030857279896736,
|
| 1165 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1166 |
+
"memory/max_active (GiB)": 36.4,
|
| 1167 |
+
"memory/max_allocated (GiB)": 36.4,
|
| 1168 |
+
"ppl": 1.02052,
|
| 1169 |
+
"step": 83,
|
| 1170 |
+
"tokens/total": 2649664,
|
| 1171 |
+
"tokens/train_per_sec_per_gpu": 25.8,
|
| 1172 |
+
"tokens/trainable": 37838
|
| 1173 |
+
},
|
| 1174 |
+
{
|
| 1175 |
+
"epoch": 0.328125,
|
| 1176 |
+
"grad_norm": 0.2439805567264557,
|
| 1177 |
+
"learning_rate": 9.688679307166854e-05,
|
| 1178 |
+
"loss": 0.008518049493432045,
|
| 1179 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1180 |
+
"memory/max_active (GiB)": 36.62,
|
| 1181 |
+
"memory/max_allocated (GiB)": 36.62,
|
| 1182 |
+
"ppl": 1.00855,
|
| 1183 |
+
"step": 84,
|
| 1184 |
+
"tokens/total": 2681728,
|
| 1185 |
+
"tokens/train_per_sec_per_gpu": 28.93,
|
| 1186 |
+
"tokens/trainable": 38310
|
| 1187 |
+
},
|
| 1188 |
+
{
|
| 1189 |
+
"epoch": 0.33203125,
|
| 1190 |
+
"grad_norm": 0.6747375726699829,
|
| 1191 |
+
"learning_rate": 9.677982558839042e-05,
|
| 1192 |
+
"loss": 0.029895059764385223,
|
| 1193 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1194 |
+
"memory/max_active (GiB)": 36.36,
|
| 1195 |
+
"memory/max_allocated (GiB)": 36.36,
|
| 1196 |
+
"ppl": 1.03035,
|
| 1197 |
+
"step": 85,
|
| 1198 |
+
"tokens/total": 2713488,
|
| 1199 |
+
"tokens/train_per_sec_per_gpu": 28.49,
|
| 1200 |
+
"tokens/trainable": 38789
|
| 1201 |
+
},
|
| 1202 |
+
{
|
| 1203 |
+
"epoch": 0.3359375,
|
| 1204 |
+
"grad_norm": 0.582666277885437,
|
| 1205 |
+
"learning_rate": 9.66711194760312e-05,
|
| 1206 |
+
"loss": 0.014998597092926502,
|
| 1207 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1208 |
+
"memory/max_active (GiB)": 36.49,
|
| 1209 |
+
"memory/max_allocated (GiB)": 36.49,
|
| 1210 |
+
"ppl": 1.01511,
|
| 1211 |
+
"step": 86,
|
| 1212 |
+
"tokens/total": 2745536,
|
| 1213 |
+
"tokens/train_per_sec_per_gpu": 30.27,
|
| 1214 |
+
"tokens/trainable": 39277
|
| 1215 |
+
},
|
| 1216 |
+
{
|
| 1217 |
+
"epoch": 0.33984375,
|
| 1218 |
+
"grad_norm": 0.5364654660224915,
|
| 1219 |
+
"learning_rate": 9.656067925829593e-05,
|
| 1220 |
+
"loss": 0.011567167937755585,
|
| 1221 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1222 |
+
"memory/max_active (GiB)": 36.58,
|
| 1223 |
+
"memory/max_allocated (GiB)": 36.58,
|
| 1224 |
+
"ppl": 1.01163,
|
| 1225 |
+
"step": 87,
|
| 1226 |
+
"tokens/total": 2777680,
|
| 1227 |
+
"tokens/train_per_sec_per_gpu": 29.73,
|
| 1228 |
+
"tokens/trainable": 39737
|
| 1229 |
+
},
|
| 1230 |
+
{
|
| 1231 |
+
"epoch": 0.34375,
|
| 1232 |
+
"grad_norm": 0.34024426341056824,
|
| 1233 |
+
"learning_rate": 9.644850953105288e-05,
|
| 1234 |
+
"loss": 0.01014852337539196,
|
| 1235 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1236 |
+
"memory/max_active (GiB)": 36.35,
|
| 1237 |
+
"memory/max_allocated (GiB)": 36.35,
|
| 1238 |
+
"ppl": 1.0102,
|
| 1239 |
+
"step": 88,
|
| 1240 |
+
"tokens/total": 2809568,
|
| 1241 |
+
"tokens/train_per_sec_per_gpu": 24.68,
|
| 1242 |
+
"tokens/trainable": 40179
|
| 1243 |
+
},
|
| 1244 |
+
{
|
| 1245 |
+
"epoch": 0.34765625,
|
| 1246 |
+
"grad_norm": 0.32472267746925354,
|
| 1247 |
+
"learning_rate": 9.633461496214225e-05,
|
| 1248 |
+
"loss": 0.01229981891810894,
|
| 1249 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1250 |
+
"memory/max_active (GiB)": 36.52,
|
| 1251 |
+
"memory/max_allocated (GiB)": 36.52,
|
| 1252 |
+
"ppl": 1.01238,
|
| 1253 |
+
"step": 89,
|
| 1254 |
+
"tokens/total": 2841760,
|
| 1255 |
+
"tokens/train_per_sec_per_gpu": 27.21,
|
| 1256 |
+
"tokens/trainable": 40649
|
| 1257 |
+
},
|
| 1258 |
+
{
|
| 1259 |
+
"epoch": 0.3515625,
|
| 1260 |
+
"grad_norm": 0.7906899452209473,
|
| 1261 |
+
"learning_rate": 9.621900029118195e-05,
|
| 1262 |
+
"loss": 0.02552586793899536,
|
| 1263 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1264 |
+
"memory/max_active (GiB)": 36.05,
|
| 1265 |
+
"memory/max_allocated (GiB)": 36.05,
|
| 1266 |
+
"ppl": 1.02585,
|
| 1267 |
+
"step": 90,
|
| 1268 |
+
"tokens/total": 2871696,
|
| 1269 |
+
"tokens/train_per_sec_per_gpu": 26.33,
|
| 1270 |
+
"tokens/trainable": 41080
|
| 1271 |
+
},
|
| 1272 |
+
{
|
| 1273 |
+
"epoch": 0.35546875,
|
| 1274 |
+
"grad_norm": 0.7444764971733093,
|
| 1275 |
+
"learning_rate": 9.610167032937036e-05,
|
| 1276 |
+
"loss": 0.0054441955871880054,
|
| 1277 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1278 |
+
"memory/max_active (GiB)": 36.59,
|
| 1279 |
+
"memory/max_allocated (GiB)": 36.59,
|
| 1280 |
+
"ppl": 1.00546,
|
| 1281 |
+
"step": 91,
|
| 1282 |
+
"tokens/total": 2903968,
|
| 1283 |
+
"tokens/train_per_sec_per_gpu": 31.7,
|
| 1284 |
+
"tokens/trainable": 41599
|
| 1285 |
+
},
|
| 1286 |
+
{
|
| 1287 |
+
"epoch": 0.359375,
|
| 1288 |
+
"grad_norm": 0.1911851465702057,
|
| 1289 |
+
"learning_rate": 9.598262995928611e-05,
|
| 1290 |
+
"loss": 0.004665314219892025,
|
| 1291 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1292 |
+
"memory/max_active (GiB)": 36.57,
|
| 1293 |
+
"memory/max_allocated (GiB)": 36.57,
|
| 1294 |
+
"ppl": 1.00468,
|
| 1295 |
+
"step": 92,
|
| 1296 |
+
"tokens/total": 2936048,
|
| 1297 |
+
"tokens/train_per_sec_per_gpu": 30.59,
|
| 1298 |
+
"tokens/trainable": 42076
|
| 1299 |
+
},
|
| 1300 |
+
{
|
| 1301 |
+
"epoch": 0.36328125,
|
| 1302 |
+
"grad_norm": 0.21238519251346588,
|
| 1303 |
+
"learning_rate": 9.586188413468492e-05,
|
| 1304 |
+
"loss": 0.003917238209396601,
|
| 1305 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1306 |
+
"memory/max_active (GiB)": 36.45,
|
| 1307 |
+
"memory/max_allocated (GiB)": 36.45,
|
| 1308 |
+
"ppl": 1.00392,
|
| 1309 |
+
"step": 93,
|
| 1310 |
+
"tokens/total": 2968176,
|
| 1311 |
+
"tokens/train_per_sec_per_gpu": 28.07,
|
| 1312 |
+
"tokens/trainable": 42522
|
| 1313 |
+
},
|
| 1314 |
+
{
|
| 1315 |
+
"epoch": 0.3671875,
|
| 1316 |
+
"grad_norm": 0.41729435324668884,
|
| 1317 |
+
"learning_rate": 9.57394378802934e-05,
|
| 1318 |
+
"loss": 0.013555807992815971,
|
| 1319 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1320 |
+
"memory/max_active (GiB)": 36.54,
|
| 1321 |
+
"memory/max_allocated (GiB)": 36.54,
|
| 1322 |
+
"ppl": 1.01365,
|
| 1323 |
+
"step": 94,
|
| 1324 |
+
"tokens/total": 3000304,
|
| 1325 |
+
"tokens/train_per_sec_per_gpu": 28.69,
|
| 1326 |
+
"tokens/trainable": 42974
|
| 1327 |
+
},
|
| 1328 |
+
{
|
| 1329 |
+
"epoch": 0.37109375,
|
| 1330 |
+
"grad_norm": 0.7246769070625305,
|
| 1331 |
+
"learning_rate": 9.56152962916e-05,
|
| 1332 |
+
"loss": 0.020221399143338203,
|
| 1333 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1334 |
+
"memory/max_active (GiB)": 36.29,
|
| 1335 |
+
"memory/max_allocated (GiB)": 36.29,
|
| 1336 |
+
"ppl": 1.02043,
|
| 1337 |
+
"step": 95,
|
| 1338 |
+
"tokens/total": 3032080,
|
| 1339 |
+
"tokens/train_per_sec_per_gpu": 25.35,
|
| 1340 |
+
"tokens/trainable": 43380
|
| 1341 |
+
},
|
| 1342 |
+
{
|
| 1343 |
+
"epoch": 0.375,
|
| 1344 |
+
"grad_norm": 0.16139821708202362,
|
| 1345 |
+
"learning_rate": 9.548946453464296e-05,
|
| 1346 |
+
"loss": 0.003853276837617159,
|
| 1347 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1348 |
+
"memory/max_active (GiB)": 36.59,
|
| 1349 |
+
"memory/max_allocated (GiB)": 36.59,
|
| 1350 |
+
"ppl": 1.00386,
|
| 1351 |
+
"step": 96,
|
| 1352 |
+
"tokens/total": 3064320,
|
| 1353 |
+
"tokens/train_per_sec_per_gpu": 28.47,
|
| 1354 |
+
"tokens/trainable": 43865
|
| 1355 |
+
},
|
| 1356 |
+
{
|
| 1357 |
+
"epoch": 0.37890625,
|
| 1358 |
+
"grad_norm": 1.0509370565414429,
|
| 1359 |
+
"learning_rate": 9.53619478457953e-05,
|
| 1360 |
+
"loss": 0.015099998563528061,
|
| 1361 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1362 |
+
"memory/max_active (GiB)": 36.45,
|
| 1363 |
+
"memory/max_allocated (GiB)": 36.45,
|
| 1364 |
+
"ppl": 1.01521,
|
| 1365 |
+
"step": 97,
|
| 1366 |
+
"tokens/total": 3096144,
|
| 1367 |
+
"tokens/train_per_sec_per_gpu": 26.61,
|
| 1368 |
+
"tokens/trainable": 44328
|
| 1369 |
+
},
|
| 1370 |
+
{
|
| 1371 |
+
"epoch": 0.3828125,
|
| 1372 |
+
"grad_norm": 0.6859350204467773,
|
| 1373 |
+
"learning_rate": 9.523275153154695e-05,
|
| 1374 |
+
"loss": 0.004579808097332716,
|
| 1375 |
+
"memory/device_reserved (GiB)": 38.68,
|
| 1376 |
+
"memory/max_active (GiB)": 36.28,
|
| 1377 |
+
"memory/max_allocated (GiB)": 36.28,
|
| 1378 |
+
"ppl": 1.00459,
|
| 1379 |
+
"step": 98,
|
| 1380 |
+
"tokens/total": 3127600,
|
| 1381 |
+
"tokens/train_per_sec_per_gpu": 25.91,
|
| 1382 |
+
"tokens/trainable": 44778
|
| 1383 |
+
},
|
| 1384 |
+
{
|
| 1385 |
+
"epoch": 0.38671875,
|
| 1386 |
+
"grad_norm": 0.5686795711517334,
|
| 1387 |
+
"learning_rate": 9.51018809682839e-05,
|
| 1388 |
+
"loss": 0.022520575672388077,
|
| 1389 |
+
"memory/device_reserved (GiB)": 38.74,
|
| 1390 |
+
"memory/max_active (GiB)": 36.53,
|
| 1391 |
+
"memory/max_allocated (GiB)": 36.53,
|
| 1392 |
+
"ppl": 1.02278,
|
| 1393 |
+
"step": 99,
|
| 1394 |
+
"tokens/total": 3159520,
|
| 1395 |
+
"tokens/train_per_sec_per_gpu": 30.85,
|
| 1396 |
+
"tokens/trainable": 45225
|
| 1397 |
+
},
|
| 1398 |
+
{
|
| 1399 |
+
"epoch": 0.390625,
|
| 1400 |
+
"grad_norm": 1.6308369636535645,
|
| 1401 |
+
"learning_rate": 9.49693416020645e-05,
|
| 1402 |
+
"loss": 0.011883002705872059,
|
| 1403 |
+
"memory/device_reserved (GiB)": 38.74,
|
| 1404 |
+
"memory/max_active (GiB)": 36.42,
|
| 1405 |
+
"memory/max_allocated (GiB)": 36.42,
|
| 1406 |
+
"ppl": 1.01195,
|
| 1407 |
+
"step": 100,
|
| 1408 |
+
"tokens/total": 3191568,
|
| 1409 |
+
"tokens/train_per_sec_per_gpu": 29.75,
|
| 1410 |
+
"tokens/trainable": 45678
|
| 1411 |
+
},
|
| 1412 |
+
{
|
| 1413 |
+
"epoch": 0.39453125,
|
| 1414 |
+
"grad_norm": 0.7186088562011719,
|
| 1415 |
+
"learning_rate": 9.483513894839276e-05,
|
| 1416 |
+
"loss": 0.0060632615350186825,
|
| 1417 |
+
"memory/device_reserved (GiB)": 38.74,
|
| 1418 |
+
"memory/max_active (GiB)": 36.52,
|
| 1419 |
+
"memory/max_allocated (GiB)": 36.52,
|
| 1420 |
+
"ppl": 1.00608,
|
| 1421 |
+
"step": 101,
|
| 1422 |
+
"tokens/total": 3223648,
|
| 1423 |
+
"tokens/train_per_sec_per_gpu": 27.14,
|
| 1424 |
+
"tokens/trainable": 46125
|
| 1425 |
+
},
|
| 1426 |
+
{
|
| 1427 |
+
"epoch": 0.3984375,
|
| 1428 |
+
"grad_norm": 0.12036337703466415,
|
| 1429 |
+
"learning_rate": 9.469927859198888e-05,
|
| 1430 |
+
"loss": 0.0019118499476462603,
|
| 1431 |
+
"memory/device_reserved (GiB)": 38.74,
|
| 1432 |
+
"memory/max_active (GiB)": 36.64,
|
| 1433 |
+
"memory/max_allocated (GiB)": 36.64,
|
| 1434 |
+
"ppl": 1.00191,
|
| 1435 |
+
"step": 102,
|
| 1436 |
+
"tokens/total": 3255744,
|
| 1437 |
+
"tokens/train_per_sec_per_gpu": 33.33,
|
| 1438 |
+
"tokens/trainable": 46612
|
| 1439 |
+
},
|
| 1440 |
+
{
|
| 1441 |
+
"epoch": 0.40234375,
|
| 1442 |
+
"grad_norm": 0.29928353428840637,
|
| 1443 |
+
"learning_rate": 9.456176618655689e-05,
|
| 1444 |
+
"loss": 0.00944911316037178,
|
| 1445 |
+
"memory/device_reserved (GiB)": 38.74,
|
| 1446 |
+
"memory/max_active (GiB)": 36.46,
|
| 1447 |
+
"memory/max_allocated (GiB)": 36.46,
|
| 1448 |
+
"ppl": 1.00949,
|
| 1449 |
+
"step": 103,
|
| 1450 |
+
"tokens/total": 3287792,
|
| 1451 |
+
"tokens/train_per_sec_per_gpu": 27.3,
|
| 1452 |
+
"tokens/trainable": 47059
|
| 1453 |
+
},
|
| 1454 |
+
{
|
| 1455 |
+
"epoch": 0.40625,
|
| 1456 |
+
"grad_norm": 0.3766293227672577,
|
| 1457 |
+
"learning_rate": 9.442260745454927e-05,
|
| 1458 |
+
"loss": 0.008984047919511795,
|
| 1459 |
+
"memory/device_reserved (GiB)": 38.74,
|
| 1460 |
+
"memory/max_active (GiB)": 36.68,
|
| 1461 |
+
"memory/max_allocated (GiB)": 36.68,
|
| 1462 |
+
"ppl": 1.00902,
|
| 1463 |
+
"step": 104,
|
| 1464 |
+
"tokens/total": 3320016,
|
| 1465 |
+
"tokens/train_per_sec_per_gpu": 28.92,
|
| 1466 |
+
"tokens/trainable": 47536
|
| 1467 |
+
},
|
| 1468 |
+
{
|
| 1469 |
+
"epoch": 0.41015625,
|
| 1470 |
+
"grad_norm": 0.3481820523738861,
|
| 1471 |
+
"learning_rate": 9.428180818692884e-05,
|
| 1472 |
+
"loss": 0.005444999784231186,
|
| 1473 |
+
"memory/device_reserved (GiB)": 38.74,
|
| 1474 |
+
"memory/max_active (GiB)": 36.44,
|
| 1475 |
+
"memory/max_allocated (GiB)": 36.44,
|
| 1476 |
+
"ppl": 1.00546,
|
| 1477 |
+
"step": 105,
|
| 1478 |
+
"tokens/total": 3351952,
|
| 1479 |
+
"tokens/train_per_sec_per_gpu": 28.32,
|
| 1480 |
+
"tokens/trainable": 48037
|
| 1481 |
+
},
|
| 1482 |
+
{
|
| 1483 |
+
"epoch": 0.4140625,
|
| 1484 |
+
"grad_norm": 0.8414323329925537,
|
| 1485 |
+
"learning_rate": 9.413937424292791e-05,
|
| 1486 |
+
"loss": 0.032438624650239944,
|
| 1487 |
+
"memory/device_reserved (GiB)": 38.74,
|
| 1488 |
+
"memory/max_active (GiB)": 36.55,
|
| 1489 |
+
"memory/max_allocated (GiB)": 36.55,
|
| 1490 |
+
"ppl": 1.03297,
|
| 1491 |
+
"step": 106,
|
| 1492 |
+
"tokens/total": 3384032,
|
| 1493 |
+
"tokens/train_per_sec_per_gpu": 27.11,
|
| 1494 |
+
"tokens/trainable": 48491
|
| 1495 |
+
},
|
| 1496 |
+
{
|
| 1497 |
+
"epoch": 0.41796875,
|
| 1498 |
+
"grad_norm": 0.5067655444145203,
|
| 1499 |
+
"learning_rate": 9.399531154980424e-05,
|
| 1500 |
+
"loss": 0.008442888967692852,
|
| 1501 |
+
"memory/device_reserved (GiB)": 38.74,
|
| 1502 |
+
"memory/max_active (GiB)": 36.67,
|
| 1503 |
+
"memory/max_allocated (GiB)": 36.67,
|
| 1504 |
+
"ppl": 1.00848,
|
| 1505 |
+
"step": 107,
|
| 1506 |
+
"tokens/total": 3416192,
|
| 1507 |
+
"tokens/train_per_sec_per_gpu": 27.61,
|
| 1508 |
+
"tokens/trainable": 48940
|
| 1509 |
+
},
|
| 1510 |
+
{
|
| 1511 |
+
"epoch": 0.421875,
|
| 1512 |
+
"grad_norm": 0.41617852449417114,
|
| 1513 |
+
"learning_rate": 9.384962610259455e-05,
|
| 1514 |
+
"loss": 0.008386321365833282,
|
| 1515 |
+
"memory/device_reserved (GiB)": 38.74,
|
| 1516 |
+
"memory/max_active (GiB)": 36.46,
|
| 1517 |
+
"memory/max_allocated (GiB)": 36.46,
|
| 1518 |
+
"ppl": 1.00842,
|
| 1519 |
+
"step": 108,
|
| 1520 |
+
"tokens/total": 3448080,
|
| 1521 |
+
"tokens/train_per_sec_per_gpu": 26.56,
|
| 1522 |
+
"tokens/trainable": 49389
|
| 1523 |
+
},
|
| 1524 |
+
{
|
| 1525 |
+
"epoch": 0.42578125,
|
| 1526 |
+
"grad_norm": 0.1587515026330948,
|
| 1527 |
+
"learning_rate": 9.370232396386494e-05,
|
| 1528 |
+
"loss": 0.0031663556583225727,
|
| 1529 |
+
"memory/device_reserved (GiB)": 38.75,
|
| 1530 |
+
"memory/max_active (GiB)": 36.03,
|
| 1531 |
+
"memory/max_allocated (GiB)": 36.03,
|
| 1532 |
+
"ppl": 1.00317,
|
| 1533 |
+
"step": 109,
|
| 1534 |
+
"tokens/total": 3477952,
|
| 1535 |
+
"tokens/train_per_sec_per_gpu": 29.8,
|
| 1536 |
+
"tokens/trainable": 49838
|
| 1537 |
+
},
|
| 1538 |
+
{
|
| 1539 |
+
"epoch": 0.4296875,
|
| 1540 |
+
"grad_norm": 0.2903148829936981,
|
| 1541 |
+
"learning_rate": 9.355341126345868e-05,
|
| 1542 |
+
"loss": 0.007958847098052502,
|
| 1543 |
+
"memory/device_reserved (GiB)": 38.75,
|
| 1544 |
+
"memory/max_active (GiB)": 36.4,
|
| 1545 |
+
"memory/max_allocated (GiB)": 36.4,
|
| 1546 |
+
"ppl": 1.00799,
|
| 1547 |
+
"step": 110,
|
| 1548 |
+
"tokens/total": 3509776,
|
| 1549 |
+
"tokens/train_per_sec_per_gpu": 28.42,
|
| 1550 |
+
"tokens/trainable": 50310
|
| 1551 |
+
},
|
| 1552 |
+
{
|
| 1553 |
+
"epoch": 0.43359375,
|
| 1554 |
+
"grad_norm": 0.642983078956604,
|
| 1555 |
+
"learning_rate": 9.340289419824107e-05,
|
| 1556 |
+
"loss": 0.006748045329004526,
|
| 1557 |
+
"memory/device_reserved (GiB)": 38.75,
|
| 1558 |
+
"memory/max_active (GiB)": 36.47,
|
| 1559 |
+
"memory/max_allocated (GiB)": 36.47,
|
| 1560 |
+
"ppl": 1.00677,
|
| 1561 |
+
"step": 111,
|
| 1562 |
+
"tokens/total": 3541808,
|
| 1563 |
+
"tokens/train_per_sec_per_gpu": 28.04,
|
| 1564 |
+
"tokens/trainable": 50755
|
| 1565 |
+
},
|
| 1566 |
+
{
|
| 1567 |
+
"epoch": 0.4375,
|
| 1568 |
+
"grad_norm": 0.14928282797336578,
|
| 1569 |
+
"learning_rate": 9.325077903184159e-05,
|
| 1570 |
+
"loss": 0.0027839094400405884,
|
| 1571 |
+
"memory/device_reserved (GiB)": 38.75,
|
| 1572 |
+
"memory/max_active (GiB)": 36.54,
|
| 1573 |
+
"memory/max_allocated (GiB)": 36.54,
|
| 1574 |
+
"ppl": 1.00279,
|
| 1575 |
+
"step": 112,
|
| 1576 |
+
"tokens/total": 3574064,
|
| 1577 |
+
"tokens/train_per_sec_per_gpu": 26.33,
|
| 1578 |
+
"tokens/trainable": 51213
|
| 1579 |
+
},
|
| 1580 |
+
{
|
| 1581 |
+
"epoch": 0.44140625,
|
| 1582 |
+
"grad_norm": 0.05922335386276245,
|
| 1583 |
+
"learning_rate": 9.30970720943932e-05,
|
| 1584 |
+
"loss": 0.0009622900979593396,
|
| 1585 |
+
"memory/device_reserved (GiB)": 38.75,
|
| 1586 |
+
"memory/max_active (GiB)": 36.53,
|
| 1587 |
+
"memory/max_allocated (GiB)": 36.53,
|
| 1588 |
+
"ppl": 1.00096,
|
| 1589 |
+
"step": 113,
|
| 1590 |
+
"tokens/total": 3605984,
|
| 1591 |
+
"tokens/train_per_sec_per_gpu": 27.99,
|
| 1592 |
+
"tokens/trainable": 51660
|
| 1593 |
+
},
|
| 1594 |
+
{
|
| 1595 |
+
"epoch": 0.4453125,
|
| 1596 |
+
"grad_norm": 0.44227731227874756,
|
| 1597 |
+
"learning_rate": 9.2941779782269e-05,
|
| 1598 |
+
"loss": 0.002763954224064946,
|
| 1599 |
+
"memory/device_reserved (GiB)": 38.75,
|
| 1600 |
+
"memory/max_active (GiB)": 36.47,
|
| 1601 |
+
"memory/max_allocated (GiB)": 36.47,
|
| 1602 |
+
"ppl": 1.00277,
|
| 1603 |
+
"step": 114,
|
| 1604 |
+
"tokens/total": 3638080,
|
| 1605 |
+
"tokens/train_per_sec_per_gpu": 27.03,
|
| 1606 |
+
"tokens/trainable": 52133
|
| 1607 |
+
},
|
| 1608 |
+
{
|
| 1609 |
+
"epoch": 0.44921875,
|
| 1610 |
+
"grad_norm": 0.5176818370819092,
|
| 1611 |
+
"learning_rate": 9.278490855781596e-05,
|
| 1612 |
+
"loss": 0.015623578801751137,
|
| 1613 |
+
"memory/device_reserved (GiB)": 38.75,
|
| 1614 |
+
"memory/max_active (GiB)": 36.47,
|
| 1615 |
+
"memory/max_allocated (GiB)": 36.47,
|
| 1616 |
+
"ppl": 1.01575,
|
| 1617 |
+
"step": 115,
|
| 1618 |
+
"tokens/total": 3670016,
|
| 1619 |
+
"tokens/train_per_sec_per_gpu": 31.44,
|
| 1620 |
+
"tokens/trainable": 52580
|
| 1621 |
+
},
|
| 1622 |
+
{
|
| 1623 |
+
"epoch": 0.453125,
|
| 1624 |
+
"grad_norm": 0.4265497922897339,
|
| 1625 |
+
"learning_rate": 9.262646494908604e-05,
|
| 1626 |
+
"loss": 0.00794076919555664,
|
| 1627 |
+
"memory/device_reserved (GiB)": 38.75,
|
| 1628 |
+
"memory/max_active (GiB)": 36.45,
|
| 1629 |
+
"memory/max_allocated (GiB)": 36.45,
|
| 1630 |
+
"ppl": 1.00797,
|
| 1631 |
+
"step": 116,
|
| 1632 |
+
"tokens/total": 3701984,
|
| 1633 |
+
"tokens/train_per_sec_per_gpu": 29.28,
|
| 1634 |
+
"tokens/trainable": 53033
|
| 1635 |
+
},
|
| 1636 |
+
{
|
| 1637 |
+
"epoch": 0.45703125,
|
| 1638 |
+
"grad_norm": 0.40457987785339355,
|
| 1639 |
+
"learning_rate": 9.246645554956457e-05,
|
| 1640 |
+
"loss": 0.022708112373948097,
|
| 1641 |
+
"memory/device_reserved (GiB)": 38.75,
|
| 1642 |
+
"memory/max_active (GiB)": 36.46,
|
| 1643 |
+
"memory/max_allocated (GiB)": 36.46,
|
| 1644 |
+
"ppl": 1.02297,
|
| 1645 |
+
"step": 117,
|
| 1646 |
+
"tokens/total": 3733920,
|
| 1647 |
+
"tokens/train_per_sec_per_gpu": 29.46,
|
| 1648 |
+
"tokens/trainable": 53517
|
| 1649 |
+
},
|
| 1650 |
+
{
|
| 1651 |
+
"epoch": 0.4609375,
|
| 1652 |
+
"grad_norm": 0.01414525043219328,
|
| 1653 |
+
"learning_rate": 9.230488701789578e-05,
|
| 1654 |
+
"loss": 0.00020209309877827764,
|
| 1655 |
+
"memory/device_reserved (GiB)": 38.75,
|
| 1656 |
+
"memory/max_active (GiB)": 36.34,
|
| 1657 |
+
"memory/max_allocated (GiB)": 36.34,
|
| 1658 |
+
"ppl": 1.0002,
|
| 1659 |
+
"step": 118,
|
| 1660 |
+
"tokens/total": 3765840,
|
| 1661 |
+
"tokens/train_per_sec_per_gpu": 28.57,
|
| 1662 |
+
"tokens/trainable": 53967
|
| 1663 |
+
},
|
| 1664 |
+
{
|
| 1665 |
+
"epoch": 0.46484375,
|
| 1666 |
+
"grad_norm": 0.11359831690788269,
|
| 1667 |
+
"learning_rate": 9.214176607760577e-05,
|
| 1668 |
+
"loss": 0.0012168455868959427,
|
| 1669 |
+
"memory/device_reserved (GiB)": 38.75,
|
| 1670 |
+
"memory/max_active (GiB)": 36.48,
|
| 1671 |
+
"memory/max_allocated (GiB)": 36.48,
|
| 1672 |
+
"ppl": 1.00122,
|
| 1673 |
+
"step": 119,
|
| 1674 |
+
"tokens/total": 3797680,
|
| 1675 |
+
"tokens/train_per_sec_per_gpu": 29.49,
|
| 1676 |
+
"tokens/trainable": 54430
|
| 1677 |
+
},
|
| 1678 |
+
{
|
| 1679 |
+
"epoch": 0.46875,
|
| 1680 |
+
"grad_norm": 0.35982534289360046,
|
| 1681 |
+
"learning_rate": 9.197709951682268e-05,
|
| 1682 |
+
"loss": 0.004110721405595541,
|
| 1683 |
+
"memory/device_reserved (GiB)": 38.77,
|
| 1684 |
+
"memory/max_active (GiB)": 36.58,
|
| 1685 |
+
"memory/max_allocated (GiB)": 36.58,
|
| 1686 |
+
"ppl": 1.00412,
|
| 1687 |
+
"step": 120,
|
| 1688 |
+
"tokens/total": 3829920,
|
| 1689 |
+
"tokens/train_per_sec_per_gpu": 29.2,
|
| 1690 |
+
"tokens/trainable": 54896
|
| 1691 |
+
},
|
| 1692 |
+
{
|
| 1693 |
+
"epoch": 0.47265625,
|
| 1694 |
+
"grad_norm": 1.3690382242202759,
|
| 1695 |
+
"learning_rate": 9.181089418799428e-05,
|
| 1696 |
+
"loss": 0.02705790475010872,
|
| 1697 |
+
"memory/device_reserved (GiB)": 38.77,
|
| 1698 |
+
"memory/max_active (GiB)": 36.61,
|
| 1699 |
+
"memory/max_allocated (GiB)": 36.61,
|
| 1700 |
+
"ppl": 1.02743,
|
| 1701 |
+
"step": 121,
|
| 1702 |
+
"tokens/total": 3862080,
|
| 1703 |
+
"tokens/train_per_sec_per_gpu": 31.57,
|
| 1704 |
+
"tokens/trainable": 55379
|
| 1705 |
+
},
|
| 1706 |
+
{
|
| 1707 |
+
"epoch": 0.4765625,
|
| 1708 |
+
"grad_norm": 0.351891428232193,
|
| 1709 |
+
"learning_rate": 9.164315700760271e-05,
|
| 1710 |
+
"loss": 0.0020163573790341616,
|
| 1711 |
+
"memory/device_reserved (GiB)": 38.77,
|
| 1712 |
+
"memory/max_active (GiB)": 36.36,
|
| 1713 |
+
"memory/max_allocated (GiB)": 36.36,
|
| 1714 |
+
"ppl": 1.00202,
|
| 1715 |
+
"step": 122,
|
| 1716 |
+
"tokens/total": 3893968,
|
| 1717 |
+
"tokens/train_per_sec_per_gpu": 26.5,
|
| 1718 |
+
"tokens/trainable": 55803
|
| 1719 |
+
},
|
| 1720 |
+
{
|
| 1721 |
+
"epoch": 0.48046875,
|
| 1722 |
+
"grad_norm": 0.4747961461544037,
|
| 1723 |
+
"learning_rate": 9.147389495587671e-05,
|
| 1724 |
+
"loss": 0.012588979676365852,
|
| 1725 |
+
"memory/device_reserved (GiB)": 38.77,
|
| 1726 |
+
"memory/max_active (GiB)": 36.51,
|
| 1727 |
+
"memory/max_allocated (GiB)": 36.51,
|
| 1728 |
+
"ppl": 1.01267,
|
| 1729 |
+
"step": 123,
|
| 1730 |
+
"tokens/total": 3926160,
|
| 1731 |
+
"tokens/train_per_sec_per_gpu": 30.14,
|
| 1732 |
+
"tokens/trainable": 56249
|
| 1733 |
+
},
|
| 1734 |
+
{
|
| 1735 |
+
"epoch": 0.484375,
|
| 1736 |
+
"grad_norm": 0.4064250588417053,
|
| 1737 |
+
"learning_rate": 9.130311507650116e-05,
|
| 1738 |
+
"loss": 0.0022941348142921925,
|
| 1739 |
+
"memory/device_reserved (GiB)": 38.77,
|
| 1740 |
+
"memory/max_active (GiB)": 36.54,
|
| 1741 |
+
"memory/max_allocated (GiB)": 36.54,
|
| 1742 |
+
"ppl": 1.0023,
|
| 1743 |
+
"step": 124,
|
| 1744 |
+
"tokens/total": 3958208,
|
| 1745 |
+
"tokens/train_per_sec_per_gpu": 27.21,
|
| 1746 |
+
"tokens/trainable": 56713
|
| 1747 |
+
},
|
| 1748 |
+
{
|
| 1749 |
+
"epoch": 0.48828125,
|
| 1750 |
+
"grad_norm": 0.22056929767131805,
|
| 1751 |
+
"learning_rate": 9.113082447632394e-05,
|
| 1752 |
+
"loss": 0.0022175831254571676,
|
| 1753 |
+
"memory/device_reserved (GiB)": 38.77,
|
| 1754 |
+
"memory/max_active (GiB)": 36.48,
|
| 1755 |
+
"memory/max_allocated (GiB)": 36.48,
|
| 1756 |
+
"ppl": 1.00222,
|
| 1757 |
+
"step": 125,
|
| 1758 |
+
"tokens/total": 3990208,
|
| 1759 |
+
"tokens/train_per_sec_per_gpu": 32.57,
|
| 1760 |
+
"tokens/trainable": 57196
|
| 1761 |
+
},
|
| 1762 |
+
{
|
| 1763 |
+
"epoch": 0.4921875,
|
| 1764 |
+
"grad_norm": 0.5698862671852112,
|
| 1765 |
+
"learning_rate": 9.09570303250602e-05,
|
| 1766 |
+
"loss": 0.010205100290477276,
|
| 1767 |
+
"memory/device_reserved (GiB)": 38.77,
|
| 1768 |
+
"memory/max_active (GiB)": 36.53,
|
| 1769 |
+
"memory/max_allocated (GiB)": 36.53,
|
| 1770 |
+
"ppl": 1.01026,
|
| 1771 |
+
"step": 126,
|
| 1772 |
+
"tokens/total": 4022224,
|
| 1773 |
+
"tokens/train_per_sec_per_gpu": 30.4,
|
| 1774 |
+
"tokens/trainable": 57680
|
| 1775 |
+
},
|
| 1776 |
+
{
|
| 1777 |
+
"epoch": 0.49609375,
|
| 1778 |
+
"grad_norm": 0.2593887448310852,
|
| 1779 |
+
"learning_rate": 9.078173985499394e-05,
|
| 1780 |
+
"loss": 0.0032277877908200026,
|
| 1781 |
+
"memory/device_reserved (GiB)": 38.77,
|
| 1782 |
+
"memory/max_active (GiB)": 36.39,
|
| 1783 |
+
"memory/max_allocated (GiB)": 36.39,
|
| 1784 |
+
"ppl": 1.00323,
|
| 1785 |
+
"step": 127,
|
| 1786 |
+
"tokens/total": 4053952,
|
| 1787 |
+
"tokens/train_per_sec_per_gpu": 26.51,
|
| 1788 |
+
"tokens/trainable": 58110
|
| 1789 |
+
},
|
| 1790 |
+
{
|
| 1791 |
+
"epoch": 0.5,
|
| 1792 |
+
"grad_norm": 0.3735230565071106,
|
| 1793 |
+
"learning_rate": 9.060496036067713e-05,
|
| 1794 |
+
"loss": 0.01031105499714613,
|
| 1795 |
+
"memory/device_reserved (GiB)": 38.77,
|
| 1796 |
+
"memory/max_active (GiB)": 36.52,
|
| 1797 |
+
"memory/max_allocated (GiB)": 36.52,
|
| 1798 |
+
"ppl": 1.01036,
|
| 1799 |
+
"step": 128,
|
| 1800 |
+
"tokens/total": 4086144,
|
| 1801 |
+
"tokens/train_per_sec_per_gpu": 26.5,
|
| 1802 |
+
"tokens/trainable": 58534
|
| 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.7735047165948314e+17,
|
| 1823 |
+
"train_batch_size": 16,
|
| 1824 |
+
"trial_name": null,
|
| 1825 |
+
"trial_params": null
|
| 1826 |
+
}
|
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-128/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:92b1065d4abbeacb5ed4bced699965f9cfab8427a7efb6f6541a63653fc57634
|
| 3 |
+
size 8273
|
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-160/README.md
ADDED
|
@@ -0,0 +1,208 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: /workspace/deconf_wave_deconf_control/parent
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- axolotl
|
| 7 |
+
- base_model:adapter:/workspace/deconf_wave_deconf_control/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
|
deconfound_sdf_v1/aft_control/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/deconf_wave_deconf_control/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 |
+
"gate_proj",
|
| 34 |
+
"v_proj",
|
| 35 |
+
"k_proj",
|
| 36 |
+
"up_proj",
|
| 37 |
+
"q_proj",
|
| 38 |
+
"o_proj",
|
| 39 |
+
"down_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 |
+
}
|
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-160/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:57102290ff94f347f324675e4c9efbff5ebd4d4a2f8cc369858bba0a1505c950
|
| 3 |
+
size 547777976
|
deconfound_sdf_v1/aft_control/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 -%}
|
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-160/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bc13e2f736220004dfbecea846c1fb1d472abd481fa8ad1554776b5999620b43
|
| 3 |
+
size 1048106435
|
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-160/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a2d3f7e7cfc1e6bd505f35214aa9edc9b9dac7fc092b113a4abe03bd5dc31e95
|
| 3 |
+
size 14645
|
deconfound_sdf_v1/aft_control/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
|
deconfound_sdf_v1/aft_control/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
|
deconfound_sdf_v1/aft_control/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 |
+
}
|
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-160/tokens_state.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"total": 5110704, "trainable": 73148}
|
deconfound_sdf_v1/aft_control/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.2140090465545654,
|
| 15 |
+
"learning_rate": 0.0,
|
| 16 |
+
"loss": 0.16441112756729126,
|
| 17 |
+
"memory/device_reserved (GiB)": 38.08,
|
| 18 |
+
"memory/max_active (GiB)": 35.64,
|
| 19 |
+
"memory/max_allocated (GiB)": 35.64,
|
| 20 |
+
"ppl": 1.1787,
|
| 21 |
+
"step": 1,
|
| 22 |
+
"tokens/total": 32160,
|
| 23 |
+
"tokens/train_per_sec_per_gpu": 21.28,
|
| 24 |
+
"tokens/trainable": 470
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"epoch": 0.0078125,
|
| 28 |
+
"grad_norm": 2.92620849609375,
|
| 29 |
+
"learning_rate": 4.000000000000001e-06,
|
| 30 |
+
"loss": 0.15774038434028625,
|
| 31 |
+
"memory/device_reserved (GiB)": 38.78,
|
| 32 |
+
"memory/max_active (GiB)": 36.52,
|
| 33 |
+
"memory/max_allocated (GiB)": 36.52,
|
| 34 |
+
"ppl": 1.17086,
|
| 35 |
+
"step": 2,
|
| 36 |
+
"tokens/total": 64192,
|
| 37 |
+
"tokens/train_per_sec_per_gpu": 29.27,
|
| 38 |
+
"tokens/trainable": 922
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"epoch": 0.01171875,
|
| 42 |
+
"grad_norm": 1.135961890220642,
|
| 43 |
+
"learning_rate": 8.000000000000001e-06,
|
| 44 |
+
"loss": 0.1664382815361023,
|
| 45 |
+
"memory/device_reserved (GiB)": 38.78,
|
| 46 |
+
"memory/max_active (GiB)": 36.55,
|
| 47 |
+
"memory/max_allocated (GiB)": 36.55,
|
| 48 |
+
"ppl": 1.18109,
|
| 49 |
+
"step": 3,
|
| 50 |
+
"tokens/total": 96224,
|
| 51 |
+
"tokens/train_per_sec_per_gpu": 28.54,
|
| 52 |
+
"tokens/trainable": 1396
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"epoch": 0.015625,
|
| 56 |
+
"grad_norm": 0.880176305770874,
|
| 57 |
+
"learning_rate": 1.2e-05,
|
| 58 |
+
"loss": 0.15334013104438782,
|
| 59 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 60 |
+
"memory/max_active (GiB)": 36.55,
|
| 61 |
+
"memory/max_allocated (GiB)": 36.55,
|
| 62 |
+
"ppl": 1.16572,
|
| 63 |
+
"step": 4,
|
| 64 |
+
"tokens/total": 128336,
|
| 65 |
+
"tokens/train_per_sec_per_gpu": 31.73,
|
| 66 |
+
"tokens/trainable": 1850
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"epoch": 0.01953125,
|
| 70 |
+
"grad_norm": 1.1433289051055908,
|
| 71 |
+
"learning_rate": 1.6000000000000003e-05,
|
| 72 |
+
"loss": 0.16352537274360657,
|
| 73 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 74 |
+
"memory/max_active (GiB)": 36.64,
|
| 75 |
+
"memory/max_allocated (GiB)": 36.64,
|
| 76 |
+
"ppl": 1.17766,
|
| 77 |
+
"step": 5,
|
| 78 |
+
"tokens/total": 160784,
|
| 79 |
+
"tokens/train_per_sec_per_gpu": 29.45,
|
| 80 |
+
"tokens/trainable": 2302
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"epoch": 0.0234375,
|
| 84 |
+
"grad_norm": 0.9728212952613831,
|
| 85 |
+
"learning_rate": 2e-05,
|
| 86 |
+
"loss": 0.15144473314285278,
|
| 87 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 88 |
+
"memory/max_active (GiB)": 36.4,
|
| 89 |
+
"memory/max_allocated (GiB)": 36.4,
|
| 90 |
+
"ppl": 1.16351,
|
| 91 |
+
"step": 6,
|
| 92 |
+
"tokens/total": 192624,
|
| 93 |
+
"tokens/train_per_sec_per_gpu": 26.46,
|
| 94 |
+
"tokens/trainable": 2742
|
| 95 |
+
},
|
| 96 |
+
{
|
| 97 |
+
"epoch": 0.02734375,
|
| 98 |
+
"grad_norm": 1.7796363830566406,
|
| 99 |
+
"learning_rate": 2.4e-05,
|
| 100 |
+
"loss": 0.13553467392921448,
|
| 101 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 102 |
+
"memory/max_active (GiB)": 36.48,
|
| 103 |
+
"memory/max_allocated (GiB)": 36.48,
|
| 104 |
+
"ppl": 1.14515,
|
| 105 |
+
"step": 7,
|
| 106 |
+
"tokens/total": 224608,
|
| 107 |
+
"tokens/train_per_sec_per_gpu": 30.52,
|
| 108 |
+
"tokens/trainable": 3208
|
| 109 |
+
},
|
| 110 |
+
{
|
| 111 |
+
"epoch": 0.03125,
|
| 112 |
+
"grad_norm": 1.2444697618484497,
|
| 113 |
+
"learning_rate": 2.8000000000000003e-05,
|
| 114 |
+
"loss": 0.1077304258942604,
|
| 115 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 116 |
+
"memory/max_active (GiB)": 36.51,
|
| 117 |
+
"memory/max_allocated (GiB)": 36.51,
|
| 118 |
+
"ppl": 1.11375,
|
| 119 |
+
"step": 8,
|
| 120 |
+
"tokens/total": 256592,
|
| 121 |
+
"tokens/train_per_sec_per_gpu": 26.46,
|
| 122 |
+
"tokens/trainable": 3655
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"epoch": 0.03515625,
|
| 126 |
+
"grad_norm": 2.7339375019073486,
|
| 127 |
+
"learning_rate": 3.2000000000000005e-05,
|
| 128 |
+
"loss": 0.08772765100002289,
|
| 129 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 130 |
+
"memory/max_active (GiB)": 36.45,
|
| 131 |
+
"memory/max_allocated (GiB)": 36.45,
|
| 132 |
+
"ppl": 1.09169,
|
| 133 |
+
"step": 9,
|
| 134 |
+
"tokens/total": 286400,
|
| 135 |
+
"tokens/train_per_sec_per_gpu": 29.82,
|
| 136 |
+
"tokens/trainable": 4091
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 0.0390625,
|
| 140 |
+
"grad_norm": 4.109770774841309,
|
| 141 |
+
"learning_rate": 3.6e-05,
|
| 142 |
+
"loss": 0.130940243601799,
|
| 143 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 144 |
+
"memory/max_active (GiB)": 36.49,
|
| 145 |
+
"memory/max_allocated (GiB)": 36.49,
|
| 146 |
+
"ppl": 1.1399,
|
| 147 |
+
"step": 10,
|
| 148 |
+
"tokens/total": 318352,
|
| 149 |
+
"tokens/train_per_sec_per_gpu": 29.13,
|
| 150 |
+
"tokens/trainable": 4553
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"epoch": 0.04296875,
|
| 154 |
+
"grad_norm": 2.3768608570098877,
|
| 155 |
+
"learning_rate": 4e-05,
|
| 156 |
+
"loss": 0.10059958696365356,
|
| 157 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 158 |
+
"memory/max_active (GiB)": 36.42,
|
| 159 |
+
"memory/max_allocated (GiB)": 36.42,
|
| 160 |
+
"ppl": 1.10583,
|
| 161 |
+
"step": 11,
|
| 162 |
+
"tokens/total": 350336,
|
| 163 |
+
"tokens/train_per_sec_per_gpu": 27.47,
|
| 164 |
+
"tokens/trainable": 4992
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"epoch": 0.046875,
|
| 168 |
+
"grad_norm": 3.281402826309204,
|
| 169 |
+
"learning_rate": 4.4000000000000006e-05,
|
| 170 |
+
"loss": 0.12574875354766846,
|
| 171 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 172 |
+
"memory/max_active (GiB)": 36.51,
|
| 173 |
+
"memory/max_allocated (GiB)": 36.51,
|
| 174 |
+
"ppl": 1.134,
|
| 175 |
+
"step": 12,
|
| 176 |
+
"tokens/total": 382448,
|
| 177 |
+
"tokens/train_per_sec_per_gpu": 31.9,
|
| 178 |
+
"tokens/trainable": 5494
|
| 179 |
+
},
|
| 180 |
+
{
|
| 181 |
+
"epoch": 0.05078125,
|
| 182 |
+
"grad_norm": 1.7738980054855347,
|
| 183 |
+
"learning_rate": 4.8e-05,
|
| 184 |
+
"loss": 0.033296722918748856,
|
| 185 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 186 |
+
"memory/max_active (GiB)": 36.55,
|
| 187 |
+
"memory/max_allocated (GiB)": 36.55,
|
| 188 |
+
"ppl": 1.03386,
|
| 189 |
+
"step": 13,
|
| 190 |
+
"tokens/total": 414352,
|
| 191 |
+
"tokens/train_per_sec_per_gpu": 27.87,
|
| 192 |
+
"tokens/trainable": 5933
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"epoch": 0.0546875,
|
| 196 |
+
"grad_norm": 2.64290189743042,
|
| 197 |
+
"learning_rate": 5.2000000000000004e-05,
|
| 198 |
+
"loss": 0.06366822123527527,
|
| 199 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 200 |
+
"memory/max_active (GiB)": 36.41,
|
| 201 |
+
"memory/max_allocated (GiB)": 36.41,
|
| 202 |
+
"ppl": 1.06574,
|
| 203 |
+
"step": 14,
|
| 204 |
+
"tokens/total": 446400,
|
| 205 |
+
"tokens/train_per_sec_per_gpu": 24.8,
|
| 206 |
+
"tokens/trainable": 6369
|
| 207 |
+
},
|
| 208 |
+
{
|
| 209 |
+
"epoch": 0.05859375,
|
| 210 |
+
"grad_norm": 3.3691928386688232,
|
| 211 |
+
"learning_rate": 5.6000000000000006e-05,
|
| 212 |
+
"loss": 0.08168518543243408,
|
| 213 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 214 |
+
"memory/max_active (GiB)": 36.57,
|
| 215 |
+
"memory/max_allocated (GiB)": 36.57,
|
| 216 |
+
"ppl": 1.08511,
|
| 217 |
+
"step": 15,
|
| 218 |
+
"tokens/total": 478688,
|
| 219 |
+
"tokens/train_per_sec_per_gpu": 27.3,
|
| 220 |
+
"tokens/trainable": 6820
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"epoch": 0.0625,
|
| 224 |
+
"grad_norm": 2.4356393814086914,
|
| 225 |
+
"learning_rate": 6e-05,
|
| 226 |
+
"loss": 0.09031196683645248,
|
| 227 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 228 |
+
"memory/max_active (GiB)": 36.46,
|
| 229 |
+
"memory/max_allocated (GiB)": 36.46,
|
| 230 |
+
"ppl": 1.09452,
|
| 231 |
+
"step": 16,
|
| 232 |
+
"tokens/total": 510512,
|
| 233 |
+
"tokens/train_per_sec_per_gpu": 25.7,
|
| 234 |
+
"tokens/trainable": 7258
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"epoch": 0.06640625,
|
| 238 |
+
"grad_norm": 1.55682373046875,
|
| 239 |
+
"learning_rate": 6.400000000000001e-05,
|
| 240 |
+
"loss": 0.07496573030948639,
|
| 241 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 242 |
+
"memory/max_active (GiB)": 36.54,
|
| 243 |
+
"memory/max_allocated (GiB)": 36.54,
|
| 244 |
+
"ppl": 1.07785,
|
| 245 |
+
"step": 17,
|
| 246 |
+
"tokens/total": 542736,
|
| 247 |
+
"tokens/train_per_sec_per_gpu": 29.54,
|
| 248 |
+
"tokens/trainable": 7710
|
| 249 |
+
},
|
| 250 |
+
{
|
| 251 |
+
"epoch": 0.0703125,
|
| 252 |
+
"grad_norm": 1.1054646968841553,
|
| 253 |
+
"learning_rate": 6.800000000000001e-05,
|
| 254 |
+
"loss": 0.05218805745244026,
|
| 255 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 256 |
+
"memory/max_active (GiB)": 36.46,
|
| 257 |
+
"memory/max_allocated (GiB)": 36.46,
|
| 258 |
+
"ppl": 1.05357,
|
| 259 |
+
"step": 18,
|
| 260 |
+
"tokens/total": 574832,
|
| 261 |
+
"tokens/train_per_sec_per_gpu": 25.78,
|
| 262 |
+
"tokens/trainable": 8174
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"epoch": 0.07421875,
|
| 266 |
+
"grad_norm": 0.7429099082946777,
|
| 267 |
+
"learning_rate": 7.2e-05,
|
| 268 |
+
"loss": 0.03790827840566635,
|
| 269 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 270 |
+
"memory/max_active (GiB)": 36.46,
|
| 271 |
+
"memory/max_allocated (GiB)": 36.46,
|
| 272 |
+
"ppl": 1.03864,
|
| 273 |
+
"step": 19,
|
| 274 |
+
"tokens/total": 606976,
|
| 275 |
+
"tokens/train_per_sec_per_gpu": 28.62,
|
| 276 |
+
"tokens/trainable": 8617
|
| 277 |
+
},
|
| 278 |
+
{
|
| 279 |
+
"epoch": 0.078125,
|
| 280 |
+
"grad_norm": 2.9508209228515625,
|
| 281 |
+
"learning_rate": 7.6e-05,
|
| 282 |
+
"loss": 0.04993613809347153,
|
| 283 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 284 |
+
"memory/max_active (GiB)": 36.62,
|
| 285 |
+
"memory/max_allocated (GiB)": 36.62,
|
| 286 |
+
"ppl": 1.0512,
|
| 287 |
+
"step": 20,
|
| 288 |
+
"tokens/total": 639200,
|
| 289 |
+
"tokens/train_per_sec_per_gpu": 24.91,
|
| 290 |
+
"tokens/trainable": 9037
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"epoch": 0.08203125,
|
| 294 |
+
"grad_norm": 1.0297844409942627,
|
| 295 |
+
"learning_rate": 8e-05,
|
| 296 |
+
"loss": 0.017908263951539993,
|
| 297 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 298 |
+
"memory/max_active (GiB)": 36.39,
|
| 299 |
+
"memory/max_allocated (GiB)": 36.39,
|
| 300 |
+
"ppl": 1.01807,
|
| 301 |
+
"step": 21,
|
| 302 |
+
"tokens/total": 671072,
|
| 303 |
+
"tokens/train_per_sec_per_gpu": 30.42,
|
| 304 |
+
"tokens/trainable": 9503
|
| 305 |
+
},
|
| 306 |
+
{
|
| 307 |
+
"epoch": 0.0859375,
|
| 308 |
+
"grad_norm": 0.9279879331588745,
|
| 309 |
+
"learning_rate": 8.4e-05,
|
| 310 |
+
"loss": 0.013478193432092667,
|
| 311 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 312 |
+
"memory/max_active (GiB)": 36.52,
|
| 313 |
+
"memory/max_allocated (GiB)": 36.52,
|
| 314 |
+
"ppl": 1.01357,
|
| 315 |
+
"step": 22,
|
| 316 |
+
"tokens/total": 703136,
|
| 317 |
+
"tokens/train_per_sec_per_gpu": 30.74,
|
| 318 |
+
"tokens/trainable": 9972
|
| 319 |
+
},
|
| 320 |
+
{
|
| 321 |
+
"epoch": 0.08984375,
|
| 322 |
+
"grad_norm": 1.526488184928894,
|
| 323 |
+
"learning_rate": 8.800000000000001e-05,
|
| 324 |
+
"loss": 0.017310388386249542,
|
| 325 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 326 |
+
"memory/max_active (GiB)": 36.54,
|
| 327 |
+
"memory/max_allocated (GiB)": 36.54,
|
| 328 |
+
"ppl": 1.01746,
|
| 329 |
+
"step": 23,
|
| 330 |
+
"tokens/total": 735120,
|
| 331 |
+
"tokens/train_per_sec_per_gpu": 31.45,
|
| 332 |
+
"tokens/trainable": 10447
|
| 333 |
+
},
|
| 334 |
+
{
|
| 335 |
+
"epoch": 0.09375,
|
| 336 |
+
"grad_norm": 3.4049417972564697,
|
| 337 |
+
"learning_rate": 9.200000000000001e-05,
|
| 338 |
+
"loss": 0.0353429913520813,
|
| 339 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 340 |
+
"memory/max_active (GiB)": 36.52,
|
| 341 |
+
"memory/max_allocated (GiB)": 36.52,
|
| 342 |
+
"ppl": 1.03597,
|
| 343 |
+
"step": 24,
|
| 344 |
+
"tokens/total": 767040,
|
| 345 |
+
"tokens/train_per_sec_per_gpu": 30.79,
|
| 346 |
+
"tokens/trainable": 10899
|
| 347 |
+
},
|
| 348 |
+
{
|
| 349 |
+
"epoch": 0.09765625,
|
| 350 |
+
"grad_norm": 7.511656761169434,
|
| 351 |
+
"learning_rate": 9.6e-05,
|
| 352 |
+
"loss": 0.1335875540971756,
|
| 353 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 354 |
+
"memory/max_active (GiB)": 36.47,
|
| 355 |
+
"memory/max_allocated (GiB)": 36.47,
|
| 356 |
+
"ppl": 1.14292,
|
| 357 |
+
"step": 25,
|
| 358 |
+
"tokens/total": 798976,
|
| 359 |
+
"tokens/train_per_sec_per_gpu": 27.72,
|
| 360 |
+
"tokens/trainable": 11360
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"epoch": 0.1015625,
|
| 364 |
+
"grad_norm": 1.0069234371185303,
|
| 365 |
+
"learning_rate": 0.0001,
|
| 366 |
+
"loss": 0.04382415860891342,
|
| 367 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 368 |
+
"memory/max_active (GiB)": 36.45,
|
| 369 |
+
"memory/max_allocated (GiB)": 36.45,
|
| 370 |
+
"ppl": 1.0448,
|
| 371 |
+
"step": 26,
|
| 372 |
+
"tokens/total": 830880,
|
| 373 |
+
"tokens/train_per_sec_per_gpu": 24.61,
|
| 374 |
+
"tokens/trainable": 11775
|
| 375 |
+
},
|
| 376 |
+
{
|
| 377 |
+
"epoch": 0.10546875,
|
| 378 |
+
"grad_norm": 7.807938575744629,
|
| 379 |
+
"learning_rate": 9.99990636831587e-05,
|
| 380 |
+
"loss": 0.01210833340883255,
|
| 381 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 382 |
+
"memory/max_active (GiB)": 36.11,
|
| 383 |
+
"memory/max_allocated (GiB)": 36.11,
|
| 384 |
+
"ppl": 1.01218,
|
| 385 |
+
"step": 27,
|
| 386 |
+
"tokens/total": 860960,
|
| 387 |
+
"tokens/train_per_sec_per_gpu": 33.01,
|
| 388 |
+
"tokens/trainable": 12242
|
| 389 |
+
},
|
| 390 |
+
{
|
| 391 |
+
"epoch": 0.109375,
|
| 392 |
+
"grad_norm": 2.23823881149292,
|
| 393 |
+
"learning_rate": 9.999625477159879e-05,
|
| 394 |
+
"loss": 0.0272970050573349,
|
| 395 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 396 |
+
"memory/max_active (GiB)": 36.53,
|
| 397 |
+
"memory/max_allocated (GiB)": 36.53,
|
| 398 |
+
"ppl": 1.02767,
|
| 399 |
+
"step": 28,
|
| 400 |
+
"tokens/total": 892816,
|
| 401 |
+
"tokens/train_per_sec_per_gpu": 27.87,
|
| 402 |
+
"tokens/trainable": 12696
|
| 403 |
+
},
|
| 404 |
+
{
|
| 405 |
+
"epoch": 0.11328125,
|
| 406 |
+
"grad_norm": 1.315584421157837,
|
| 407 |
+
"learning_rate": 9.999157338221051e-05,
|
| 408 |
+
"loss": 0.025516577064990997,
|
| 409 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 410 |
+
"memory/max_active (GiB)": 36.51,
|
| 411 |
+
"memory/max_allocated (GiB)": 36.51,
|
| 412 |
+
"ppl": 1.02584,
|
| 413 |
+
"step": 29,
|
| 414 |
+
"tokens/total": 924736,
|
| 415 |
+
"tokens/train_per_sec_per_gpu": 28.71,
|
| 416 |
+
"tokens/trainable": 13153
|
| 417 |
+
},
|
| 418 |
+
{
|
| 419 |
+
"epoch": 0.1171875,
|
| 420 |
+
"grad_norm": 0.8413651585578918,
|
| 421 |
+
"learning_rate": 9.998501970980562e-05,
|
| 422 |
+
"loss": 0.007838520221412182,
|
| 423 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 424 |
+
"memory/max_active (GiB)": 36.45,
|
| 425 |
+
"memory/max_allocated (GiB)": 36.45,
|
| 426 |
+
"ppl": 1.00787,
|
| 427 |
+
"step": 30,
|
| 428 |
+
"tokens/total": 954592,
|
| 429 |
+
"tokens/train_per_sec_per_gpu": 33.59,
|
| 430 |
+
"tokens/trainable": 13624
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"epoch": 0.12109375,
|
| 434 |
+
"grad_norm": 1.6797157526016235,
|
| 435 |
+
"learning_rate": 9.997659402710915e-05,
|
| 436 |
+
"loss": 0.03002442792057991,
|
| 437 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 438 |
+
"memory/max_active (GiB)": 36.49,
|
| 439 |
+
"memory/max_allocated (GiB)": 36.49,
|
| 440 |
+
"ppl": 1.03048,
|
| 441 |
+
"step": 31,
|
| 442 |
+
"tokens/total": 986592,
|
| 443 |
+
"tokens/train_per_sec_per_gpu": 28.67,
|
| 444 |
+
"tokens/trainable": 14064
|
| 445 |
+
},
|
| 446 |
+
{
|
| 447 |
+
"epoch": 0.125,
|
| 448 |
+
"grad_norm": 1.3320434093475342,
|
| 449 |
+
"learning_rate": 9.996629668474818e-05,
|
| 450 |
+
"loss": 0.03772728145122528,
|
| 451 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 452 |
+
"memory/max_active (GiB)": 36.57,
|
| 453 |
+
"memory/max_allocated (GiB)": 36.57,
|
| 454 |
+
"ppl": 1.03845,
|
| 455 |
+
"step": 32,
|
| 456 |
+
"tokens/total": 1018720,
|
| 457 |
+
"tokens/train_per_sec_per_gpu": 32.5,
|
| 458 |
+
"tokens/trainable": 14565
|
| 459 |
+
},
|
| 460 |
+
{
|
| 461 |
+
"epoch": 0.12890625,
|
| 462 |
+
"grad_norm": 0.6335167288780212,
|
| 463 |
+
"learning_rate": 9.995412811123711e-05,
|
| 464 |
+
"loss": 0.013970119878649712,
|
| 465 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 466 |
+
"memory/max_active (GiB)": 36.41,
|
| 467 |
+
"memory/max_allocated (GiB)": 36.41,
|
| 468 |
+
"ppl": 1.01407,
|
| 469 |
+
"step": 33,
|
| 470 |
+
"tokens/total": 1050624,
|
| 471 |
+
"tokens/train_per_sec_per_gpu": 28.18,
|
| 472 |
+
"tokens/trainable": 15005
|
| 473 |
+
},
|
| 474 |
+
{
|
| 475 |
+
"epoch": 0.1328125,
|
| 476 |
+
"grad_norm": 0.5626921653747559,
|
| 477 |
+
"learning_rate": 9.994008881295999e-05,
|
| 478 |
+
"loss": 0.016654539853334427,
|
| 479 |
+
"memory/device_reserved (GiB)": 37.74,
|
| 480 |
+
"memory/max_active (GiB)": 36.22,
|
| 481 |
+
"memory/max_allocated (GiB)": 36.22,
|
| 482 |
+
"ppl": 1.01679,
|
| 483 |
+
"step": 34,
|
| 484 |
+
"tokens/total": 1082176,
|
| 485 |
+
"tokens/train_per_sec_per_gpu": 26.84,
|
| 486 |
+
"tokens/trainable": 15459
|
| 487 |
+
},
|
| 488 |
+
{
|
| 489 |
+
"epoch": 0.13671875,
|
| 490 |
+
"grad_norm": 0.603219211101532,
|
| 491 |
+
"learning_rate": 9.992417937414932e-05,
|
| 492 |
+
"loss": 0.021408583968877792,
|
| 493 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 494 |
+
"memory/max_active (GiB)": 36.47,
|
| 495 |
+
"memory/max_allocated (GiB)": 36.47,
|
| 496 |
+
"ppl": 1.02164,
|
| 497 |
+
"step": 35,
|
| 498 |
+
"tokens/total": 1113968,
|
| 499 |
+
"tokens/train_per_sec_per_gpu": 31.75,
|
| 500 |
+
"tokens/trainable": 15960
|
| 501 |
+
},
|
| 502 |
+
{
|
| 503 |
+
"epoch": 0.140625,
|
| 504 |
+
"grad_norm": 0.9779674410820007,
|
| 505 |
+
"learning_rate": 9.99064004568618e-05,
|
| 506 |
+
"loss": 0.03277068957686424,
|
| 507 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 508 |
+
"memory/max_active (GiB)": 36.58,
|
| 509 |
+
"memory/max_allocated (GiB)": 36.58,
|
| 510 |
+
"ppl": 1.03331,
|
| 511 |
+
"step": 36,
|
| 512 |
+
"tokens/total": 1145952,
|
| 513 |
+
"tokens/train_per_sec_per_gpu": 28.68,
|
| 514 |
+
"tokens/trainable": 16428
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"epoch": 0.14453125,
|
| 518 |
+
"grad_norm": 0.8855255842208862,
|
| 519 |
+
"learning_rate": 9.988675280095074e-05,
|
| 520 |
+
"loss": 0.017048098146915436,
|
| 521 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 522 |
+
"memory/max_active (GiB)": 36.29,
|
| 523 |
+
"memory/max_allocated (GiB)": 36.29,
|
| 524 |
+
"ppl": 1.01719,
|
| 525 |
+
"step": 37,
|
| 526 |
+
"tokens/total": 1177872,
|
| 527 |
+
"tokens/train_per_sec_per_gpu": 26.33,
|
| 528 |
+
"tokens/trainable": 16884
|
| 529 |
+
},
|
| 530 |
+
{
|
| 531 |
+
"epoch": 0.1484375,
|
| 532 |
+
"grad_norm": 1.9266122579574585,
|
| 533 |
+
"learning_rate": 9.986523722403528e-05,
|
| 534 |
+
"loss": 0.045863546431064606,
|
| 535 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 536 |
+
"memory/max_active (GiB)": 36.45,
|
| 537 |
+
"memory/max_allocated (GiB)": 36.45,
|
| 538 |
+
"ppl": 1.04693,
|
| 539 |
+
"step": 38,
|
| 540 |
+
"tokens/total": 1209776,
|
| 541 |
+
"tokens/train_per_sec_per_gpu": 26.91,
|
| 542 |
+
"tokens/trainable": 17341
|
| 543 |
+
},
|
| 544 |
+
{
|
| 545 |
+
"epoch": 0.15234375,
|
| 546 |
+
"grad_norm": 0.8280895948410034,
|
| 547 |
+
"learning_rate": 9.984185462146642e-05,
|
| 548 |
+
"loss": 0.033055759966373444,
|
| 549 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 550 |
+
"memory/max_active (GiB)": 36.44,
|
| 551 |
+
"memory/max_allocated (GiB)": 36.44,
|
| 552 |
+
"ppl": 1.03361,
|
| 553 |
+
"step": 39,
|
| 554 |
+
"tokens/total": 1241888,
|
| 555 |
+
"tokens/train_per_sec_per_gpu": 28.34,
|
| 556 |
+
"tokens/trainable": 17786
|
| 557 |
+
},
|
| 558 |
+
{
|
| 559 |
+
"epoch": 0.15625,
|
| 560 |
+
"grad_norm": 5.029730319976807,
|
| 561 |
+
"learning_rate": 9.98166059662897e-05,
|
| 562 |
+
"loss": 0.025589998811483383,
|
| 563 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 564 |
+
"memory/max_active (GiB)": 36.48,
|
| 565 |
+
"memory/max_allocated (GiB)": 36.48,
|
| 566 |
+
"ppl": 1.02592,
|
| 567 |
+
"step": 40,
|
| 568 |
+
"tokens/total": 1274032,
|
| 569 |
+
"tokens/train_per_sec_per_gpu": 29.22,
|
| 570 |
+
"tokens/trainable": 18262
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"epoch": 0.16015625,
|
| 574 |
+
"grad_norm": 0.5688032507896423,
|
| 575 |
+
"learning_rate": 9.978949230920472e-05,
|
| 576 |
+
"loss": 0.016095872968435287,
|
| 577 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 578 |
+
"memory/max_active (GiB)": 36.49,
|
| 579 |
+
"memory/max_allocated (GiB)": 36.49,
|
| 580 |
+
"ppl": 1.01623,
|
| 581 |
+
"step": 41,
|
| 582 |
+
"tokens/total": 1306000,
|
| 583 |
+
"tokens/train_per_sec_per_gpu": 27.49,
|
| 584 |
+
"tokens/trainable": 18716
|
| 585 |
+
},
|
| 586 |
+
{
|
| 587 |
+
"epoch": 0.1640625,
|
| 588 |
+
"grad_norm": 0.8217663168907166,
|
| 589 |
+
"learning_rate": 9.976051477852141e-05,
|
| 590 |
+
"loss": 0.026798982173204422,
|
| 591 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 592 |
+
"memory/max_active (GiB)": 36.46,
|
| 593 |
+
"memory/max_allocated (GiB)": 36.46,
|
| 594 |
+
"ppl": 1.02716,
|
| 595 |
+
"step": 42,
|
| 596 |
+
"tokens/total": 1337936,
|
| 597 |
+
"tokens/train_per_sec_per_gpu": 27.51,
|
| 598 |
+
"tokens/trainable": 19157
|
| 599 |
+
},
|
| 600 |
+
{
|
| 601 |
+
"epoch": 0.16796875,
|
| 602 |
+
"grad_norm": 0.7309132218360901,
|
| 603 |
+
"learning_rate": 9.972967458011312e-05,
|
| 604 |
+
"loss": 0.033920761197805405,
|
| 605 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 606 |
+
"memory/max_active (GiB)": 36.45,
|
| 607 |
+
"memory/max_allocated (GiB)": 36.45,
|
| 608 |
+
"ppl": 1.0345,
|
| 609 |
+
"step": 43,
|
| 610 |
+
"tokens/total": 1369904,
|
| 611 |
+
"tokens/train_per_sec_per_gpu": 30.66,
|
| 612 |
+
"tokens/trainable": 19647
|
| 613 |
+
},
|
| 614 |
+
{
|
| 615 |
+
"epoch": 0.171875,
|
| 616 |
+
"grad_norm": 0.8134022355079651,
|
| 617 |
+
"learning_rate": 9.96969729973664e-05,
|
| 618 |
+
"loss": 0.024005085229873657,
|
| 619 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 620 |
+
"memory/max_active (GiB)": 36.49,
|
| 621 |
+
"memory/max_allocated (GiB)": 36.49,
|
| 622 |
+
"ppl": 1.0243,
|
| 623 |
+
"step": 44,
|
| 624 |
+
"tokens/total": 1401984,
|
| 625 |
+
"tokens/train_per_sec_per_gpu": 29.06,
|
| 626 |
+
"tokens/trainable": 20119
|
| 627 |
+
},
|
| 628 |
+
{
|
| 629 |
+
"epoch": 0.17578125,
|
| 630 |
+
"grad_norm": 0.35084816813468933,
|
| 631 |
+
"learning_rate": 9.966241139112754e-05,
|
| 632 |
+
"loss": 0.013319254852831364,
|
| 633 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 634 |
+
"memory/max_active (GiB)": 36.49,
|
| 635 |
+
"memory/max_allocated (GiB)": 36.49,
|
| 636 |
+
"ppl": 1.01341,
|
| 637 |
+
"step": 45,
|
| 638 |
+
"tokens/total": 1434032,
|
| 639 |
+
"tokens/train_per_sec_per_gpu": 27.45,
|
| 640 |
+
"tokens/trainable": 20560
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"epoch": 0.1796875,
|
| 644 |
+
"grad_norm": 0.8701573014259338,
|
| 645 |
+
"learning_rate": 9.96259911996461e-05,
|
| 646 |
+
"loss": 0.01356641948223114,
|
| 647 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 648 |
+
"memory/max_active (GiB)": 36.47,
|
| 649 |
+
"memory/max_allocated (GiB)": 36.47,
|
| 650 |
+
"ppl": 1.01366,
|
| 651 |
+
"step": 46,
|
| 652 |
+
"tokens/total": 1465872,
|
| 653 |
+
"tokens/train_per_sec_per_gpu": 27.35,
|
| 654 |
+
"tokens/trainable": 20992
|
| 655 |
+
},
|
| 656 |
+
{
|
| 657 |
+
"epoch": 0.18359375,
|
| 658 |
+
"grad_norm": 1.4406442642211914,
|
| 659 |
+
"learning_rate": 9.958771393851491e-05,
|
| 660 |
+
"loss": 0.04396980255842209,
|
| 661 |
+
"memory/device_reserved (GiB)": 38.99,
|
| 662 |
+
"memory/max_active (GiB)": 35.86,
|
| 663 |
+
"memory/max_allocated (GiB)": 35.86,
|
| 664 |
+
"ppl": 1.04495,
|
| 665 |
+
"step": 47,
|
| 666 |
+
"tokens/total": 1495440,
|
| 667 |
+
"tokens/train_per_sec_per_gpu": 26.46,
|
| 668 |
+
"tokens/trainable": 21441
|
| 669 |
+
},
|
| 670 |
+
{
|
| 671 |
+
"epoch": 0.1875,
|
| 672 |
+
"grad_norm": 0.4966669976711273,
|
| 673 |
+
"learning_rate": 9.954758120060702e-05,
|
| 674 |
+
"loss": 0.011179964058101177,
|
| 675 |
+
"memory/device_reserved (GiB)": 38.99,
|
| 676 |
+
"memory/max_active (GiB)": 36.61,
|
| 677 |
+
"memory/max_allocated (GiB)": 36.61,
|
| 678 |
+
"ppl": 1.01124,
|
| 679 |
+
"step": 48,
|
| 680 |
+
"tokens/total": 1527776,
|
| 681 |
+
"tokens/train_per_sec_per_gpu": 27.89,
|
| 682 |
+
"tokens/trainable": 21901
|
| 683 |
+
},
|
| 684 |
+
{
|
| 685 |
+
"epoch": 0.19140625,
|
| 686 |
+
"grad_norm": 0.41124436259269714,
|
| 687 |
+
"learning_rate": 9.950559465600948e-05,
|
| 688 |
+
"loss": 0.0063599650748074055,
|
| 689 |
+
"memory/device_reserved (GiB)": 38.99,
|
| 690 |
+
"memory/max_active (GiB)": 36.4,
|
| 691 |
+
"memory/max_allocated (GiB)": 36.4,
|
| 692 |
+
"ppl": 1.00638,
|
| 693 |
+
"step": 49,
|
| 694 |
+
"tokens/total": 1559760,
|
| 695 |
+
"tokens/train_per_sec_per_gpu": 27.73,
|
| 696 |
+
"tokens/trainable": 22341
|
| 697 |
+
},
|
| 698 |
+
{
|
| 699 |
+
"epoch": 0.1953125,
|
| 700 |
+
"grad_norm": 0.829739511013031,
|
| 701 |
+
"learning_rate": 9.946175605195379e-05,
|
| 702 |
+
"loss": 0.015785304829478264,
|
| 703 |
+
"memory/device_reserved (GiB)": 38.99,
|
| 704 |
+
"memory/max_active (GiB)": 36.53,
|
| 705 |
+
"memory/max_allocated (GiB)": 36.53,
|
| 706 |
+
"ppl": 1.01591,
|
| 707 |
+
"step": 50,
|
| 708 |
+
"tokens/total": 1592000,
|
| 709 |
+
"tokens/train_per_sec_per_gpu": 27.39,
|
| 710 |
+
"tokens/trainable": 22833
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"epoch": 0.19921875,
|
| 714 |
+
"grad_norm": 0.5181736946105957,
|
| 715 |
+
"learning_rate": 9.941606721274322e-05,
|
| 716 |
+
"loss": 0.008393109776079655,
|
| 717 |
+
"memory/device_reserved (GiB)": 38.99,
|
| 718 |
+
"memory/max_active (GiB)": 36.44,
|
| 719 |
+
"memory/max_allocated (GiB)": 36.44,
|
| 720 |
+
"ppl": 1.00843,
|
| 721 |
+
"step": 51,
|
| 722 |
+
"tokens/total": 1623920,
|
| 723 |
+
"tokens/train_per_sec_per_gpu": 25.61,
|
| 724 |
+
"tokens/trainable": 23277
|
| 725 |
+
},
|
| 726 |
+
{
|
| 727 |
+
"epoch": 0.203125,
|
| 728 |
+
"grad_norm": 1.5778990983963013,
|
| 729 |
+
"learning_rate": 9.936853003967685e-05,
|
| 730 |
+
"loss": 0.024984844028949738,
|
| 731 |
+
"memory/device_reserved (GiB)": 38.99,
|
| 732 |
+
"memory/max_active (GiB)": 36.47,
|
| 733 |
+
"memory/max_allocated (GiB)": 36.47,
|
| 734 |
+
"ppl": 1.0253,
|
| 735 |
+
"step": 52,
|
| 736 |
+
"tokens/total": 1656032,
|
| 737 |
+
"tokens/train_per_sec_per_gpu": 29.64,
|
| 738 |
+
"tokens/trainable": 23759
|
| 739 |
+
},
|
| 740 |
+
{
|
| 741 |
+
"epoch": 0.20703125,
|
| 742 |
+
"grad_norm": 1.4938714504241943,
|
| 743 |
+
"learning_rate": 9.93191465109705e-05,
|
| 744 |
+
"loss": 0.038523320108652115,
|
| 745 |
+
"memory/device_reserved (GiB)": 38.99,
|
| 746 |
+
"memory/max_active (GiB)": 36.55,
|
| 747 |
+
"memory/max_allocated (GiB)": 36.55,
|
| 748 |
+
"ppl": 1.03927,
|
| 749 |
+
"step": 53,
|
| 750 |
+
"tokens/total": 1688368,
|
| 751 |
+
"tokens/train_per_sec_per_gpu": 27.55,
|
| 752 |
+
"tokens/trainable": 24193
|
| 753 |
+
},
|
| 754 |
+
{
|
| 755 |
+
"epoch": 0.2109375,
|
| 756 |
+
"grad_norm": 2.1427106857299805,
|
| 757 |
+
"learning_rate": 9.926791868167438e-05,
|
| 758 |
+
"loss": 0.06302924454212189,
|
| 759 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 760 |
+
"memory/max_active (GiB)": 36.6,
|
| 761 |
+
"memory/max_allocated (GiB)": 36.6,
|
| 762 |
+
"ppl": 1.06506,
|
| 763 |
+
"step": 54,
|
| 764 |
+
"tokens/total": 1720560,
|
| 765 |
+
"tokens/train_per_sec_per_gpu": 27.71,
|
| 766 |
+
"tokens/trainable": 24619
|
| 767 |
+
},
|
| 768 |
+
{
|
| 769 |
+
"epoch": 0.21484375,
|
| 770 |
+
"grad_norm": 1.8365188837051392,
|
| 771 |
+
"learning_rate": 9.921484868358753e-05,
|
| 772 |
+
"loss": 0.052160464227199554,
|
| 773 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 774 |
+
"memory/max_active (GiB)": 36.42,
|
| 775 |
+
"memory/max_allocated (GiB)": 36.42,
|
| 776 |
+
"ppl": 1.05354,
|
| 777 |
+
"step": 55,
|
| 778 |
+
"tokens/total": 1752464,
|
| 779 |
+
"tokens/train_per_sec_per_gpu": 27.55,
|
| 780 |
+
"tokens/trainable": 25075
|
| 781 |
+
},
|
| 782 |
+
{
|
| 783 |
+
"epoch": 0.21875,
|
| 784 |
+
"grad_norm": 0.7779749631881714,
|
| 785 |
+
"learning_rate": 9.915993872516924e-05,
|
| 786 |
+
"loss": 0.021328264847397804,
|
| 787 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 788 |
+
"memory/max_active (GiB)": 36.38,
|
| 789 |
+
"memory/max_allocated (GiB)": 36.38,
|
| 790 |
+
"ppl": 1.02156,
|
| 791 |
+
"step": 56,
|
| 792 |
+
"tokens/total": 1784336,
|
| 793 |
+
"tokens/train_per_sec_per_gpu": 26.42,
|
| 794 |
+
"tokens/trainable": 25519
|
| 795 |
+
},
|
| 796 |
+
{
|
| 797 |
+
"epoch": 0.22265625,
|
| 798 |
+
"grad_norm": 0.4189571142196655,
|
| 799 |
+
"learning_rate": 9.9103191091447e-05,
|
| 800 |
+
"loss": 0.014279939234256744,
|
| 801 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 802 |
+
"memory/max_active (GiB)": 36.54,
|
| 803 |
+
"memory/max_allocated (GiB)": 36.54,
|
| 804 |
+
"ppl": 1.01438,
|
| 805 |
+
"step": 57,
|
| 806 |
+
"tokens/total": 1816304,
|
| 807 |
+
"tokens/train_per_sec_per_gpu": 27.47,
|
| 808 |
+
"tokens/trainable": 25966
|
| 809 |
+
},
|
| 810 |
+
{
|
| 811 |
+
"epoch": 0.2265625,
|
| 812 |
+
"grad_norm": 0.3834710717201233,
|
| 813 |
+
"learning_rate": 9.904460814392147e-05,
|
| 814 |
+
"loss": 0.01883944310247898,
|
| 815 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 816 |
+
"memory/max_active (GiB)": 36.53,
|
| 817 |
+
"memory/max_allocated (GiB)": 36.53,
|
| 818 |
+
"ppl": 1.01902,
|
| 819 |
+
"step": 58,
|
| 820 |
+
"tokens/total": 1848304,
|
| 821 |
+
"tokens/train_per_sec_per_gpu": 28.08,
|
| 822 |
+
"tokens/trainable": 26423
|
| 823 |
+
},
|
| 824 |
+
{
|
| 825 |
+
"epoch": 0.23046875,
|
| 826 |
+
"grad_norm": 0.7693278789520264,
|
| 827 |
+
"learning_rate": 9.898419232046825e-05,
|
| 828 |
+
"loss": 0.03533369302749634,
|
| 829 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 830 |
+
"memory/max_active (GiB)": 36.58,
|
| 831 |
+
"memory/max_allocated (GiB)": 36.58,
|
| 832 |
+
"ppl": 1.03597,
|
| 833 |
+
"step": 59,
|
| 834 |
+
"tokens/total": 1880640,
|
| 835 |
+
"tokens/train_per_sec_per_gpu": 31.99,
|
| 836 |
+
"tokens/trainable": 26934
|
| 837 |
+
},
|
| 838 |
+
{
|
| 839 |
+
"epoch": 0.234375,
|
| 840 |
+
"grad_norm": 0.4606446325778961,
|
| 841 |
+
"learning_rate": 9.892194613523633e-05,
|
| 842 |
+
"loss": 0.021482212468981743,
|
| 843 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 844 |
+
"memory/max_active (GiB)": 36.47,
|
| 845 |
+
"memory/max_allocated (GiB)": 36.47,
|
| 846 |
+
"ppl": 1.02171,
|
| 847 |
+
"step": 60,
|
| 848 |
+
"tokens/total": 1912592,
|
| 849 |
+
"tokens/train_per_sec_per_gpu": 27.64,
|
| 850 |
+
"tokens/trainable": 27393
|
| 851 |
+
},
|
| 852 |
+
{
|
| 853 |
+
"epoch": 0.23828125,
|
| 854 |
+
"grad_norm": 0.46030017733573914,
|
| 855 |
+
"learning_rate": 9.885787217854357e-05,
|
| 856 |
+
"loss": 0.017044665291905403,
|
| 857 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 858 |
+
"memory/max_active (GiB)": 36.54,
|
| 859 |
+
"memory/max_allocated (GiB)": 36.54,
|
| 860 |
+
"ppl": 1.01719,
|
| 861 |
+
"step": 61,
|
| 862 |
+
"tokens/total": 1944544,
|
| 863 |
+
"tokens/train_per_sec_per_gpu": 27.44,
|
| 864 |
+
"tokens/trainable": 27852
|
| 865 |
+
},
|
| 866 |
+
{
|
| 867 |
+
"epoch": 0.2421875,
|
| 868 |
+
"grad_norm": 0.7918264269828796,
|
| 869 |
+
"learning_rate": 9.879197311676887e-05,
|
| 870 |
+
"loss": 0.016954131424427032,
|
| 871 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 872 |
+
"memory/max_active (GiB)": 36.45,
|
| 873 |
+
"memory/max_allocated (GiB)": 36.45,
|
| 874 |
+
"ppl": 1.0171,
|
| 875 |
+
"step": 62,
|
| 876 |
+
"tokens/total": 1976688,
|
| 877 |
+
"tokens/train_per_sec_per_gpu": 27.32,
|
| 878 |
+
"tokens/trainable": 28292
|
| 879 |
+
},
|
| 880 |
+
{
|
| 881 |
+
"epoch": 0.24609375,
|
| 882 |
+
"grad_norm": 0.4787926971912384,
|
| 883 |
+
"learning_rate": 9.872425169224113e-05,
|
| 884 |
+
"loss": 0.01525965891778469,
|
| 885 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 886 |
+
"memory/max_active (GiB)": 36.59,
|
| 887 |
+
"memory/max_allocated (GiB)": 36.59,
|
| 888 |
+
"ppl": 1.01538,
|
| 889 |
+
"step": 63,
|
| 890 |
+
"tokens/total": 2008928,
|
| 891 |
+
"tokens/train_per_sec_per_gpu": 31.14,
|
| 892 |
+
"tokens/trainable": 28798
|
| 893 |
+
},
|
| 894 |
+
{
|
| 895 |
+
"epoch": 0.25,
|
| 896 |
+
"grad_norm": 0.9033918976783752,
|
| 897 |
+
"learning_rate": 9.865471072312528e-05,
|
| 898 |
+
"loss": 0.02902211993932724,
|
| 899 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 900 |
+
"memory/max_active (GiB)": 36.61,
|
| 901 |
+
"memory/max_allocated (GiB)": 36.61,
|
| 902 |
+
"ppl": 1.02945,
|
| 903 |
+
"step": 64,
|
| 904 |
+
"tokens/total": 2041120,
|
| 905 |
+
"tokens/train_per_sec_per_gpu": 29.83,
|
| 906 |
+
"tokens/trainable": 29283
|
| 907 |
+
},
|
| 908 |
+
{
|
| 909 |
+
"epoch": 0.25390625,
|
| 910 |
+
"grad_norm": 0.39305707812309265,
|
| 911 |
+
"learning_rate": 9.858335310330492e-05,
|
| 912 |
+
"loss": 0.00901167094707489,
|
| 913 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 914 |
+
"memory/max_active (GiB)": 36.32,
|
| 915 |
+
"memory/max_allocated (GiB)": 36.32,
|
| 916 |
+
"ppl": 1.00905,
|
| 917 |
+
"step": 65,
|
| 918 |
+
"tokens/total": 2073024,
|
| 919 |
+
"tokens/train_per_sec_per_gpu": 26.48,
|
| 920 |
+
"tokens/trainable": 29745
|
| 921 |
+
},
|
| 922 |
+
{
|
| 923 |
+
"epoch": 0.2578125,
|
| 924 |
+
"grad_norm": 0.4494345784187317,
|
| 925 |
+
"learning_rate": 9.851018180226185e-05,
|
| 926 |
+
"loss": 0.007426132448017597,
|
| 927 |
+
"memory/device_reserved (GiB)": 37.47,
|
| 928 |
+
"memory/max_active (GiB)": 36.41,
|
| 929 |
+
"memory/max_allocated (GiB)": 36.41,
|
| 930 |
+
"ppl": 1.00745,
|
| 931 |
+
"step": 66,
|
| 932 |
+
"tokens/total": 2105184,
|
| 933 |
+
"tokens/train_per_sec_per_gpu": 26.18,
|
| 934 |
+
"tokens/trainable": 30186
|
| 935 |
+
},
|
| 936 |
+
{
|
| 937 |
+
"epoch": 0.26171875,
|
| 938 |
+
"grad_norm": 0.629649817943573,
|
| 939 |
+
"learning_rate": 9.843519986495259e-05,
|
| 940 |
+
"loss": 0.010609081946313381,
|
| 941 |
+
"memory/device_reserved (GiB)": 38.68,
|
| 942 |
+
"memory/max_active (GiB)": 36.53,
|
| 943 |
+
"memory/max_allocated (GiB)": 36.53,
|
| 944 |
+
"ppl": 1.01067,
|
| 945 |
+
"step": 67,
|
| 946 |
+
"tokens/total": 2137264,
|
| 947 |
+
"tokens/train_per_sec_per_gpu": 27.71,
|
| 948 |
+
"tokens/trainable": 30622
|
| 949 |
+
},
|
| 950 |
+
{
|
| 951 |
+
"epoch": 0.265625,
|
| 952 |
+
"grad_norm": 0.7591162919998169,
|
| 953 |
+
"learning_rate": 9.835841041168162e-05,
|
| 954 |
+
"loss": 0.00926615484058857,
|
| 955 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 956 |
+
"memory/max_active (GiB)": 36.6,
|
| 957 |
+
"memory/max_allocated (GiB)": 36.6,
|
| 958 |
+
"ppl": 1.00931,
|
| 959 |
+
"step": 68,
|
| 960 |
+
"tokens/total": 2169424,
|
| 961 |
+
"tokens/train_per_sec_per_gpu": 29.42,
|
| 962 |
+
"tokens/trainable": 31097
|
| 963 |
+
},
|
| 964 |
+
{
|
| 965 |
+
"epoch": 0.26953125,
|
| 966 |
+
"grad_norm": 0.7288486361503601,
|
| 967 |
+
"learning_rate": 9.82798166379715e-05,
|
| 968 |
+
"loss": 0.024310583248734474,
|
| 969 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 970 |
+
"memory/max_active (GiB)": 36.45,
|
| 971 |
+
"memory/max_allocated (GiB)": 36.45,
|
| 972 |
+
"ppl": 1.02461,
|
| 973 |
+
"step": 69,
|
| 974 |
+
"tokens/total": 2201424,
|
| 975 |
+
"tokens/train_per_sec_per_gpu": 30.54,
|
| 976 |
+
"tokens/trainable": 31595
|
| 977 |
+
},
|
| 978 |
+
{
|
| 979 |
+
"epoch": 0.2734375,
|
| 980 |
+
"grad_norm": 2.134056329727173,
|
| 981 |
+
"learning_rate": 9.819942181443002e-05,
|
| 982 |
+
"loss": 0.008422967046499252,
|
| 983 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 984 |
+
"memory/max_active (GiB)": 36.47,
|
| 985 |
+
"memory/max_allocated (GiB)": 36.47,
|
| 986 |
+
"ppl": 1.00846,
|
| 987 |
+
"step": 70,
|
| 988 |
+
"tokens/total": 2233424,
|
| 989 |
+
"tokens/train_per_sec_per_gpu": 25.81,
|
| 990 |
+
"tokens/trainable": 32036
|
| 991 |
+
},
|
| 992 |
+
{
|
| 993 |
+
"epoch": 0.27734375,
|
| 994 |
+
"grad_norm": 0.6362871527671814,
|
| 995 |
+
"learning_rate": 9.811722928661392e-05,
|
| 996 |
+
"loss": 0.01577262207865715,
|
| 997 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 998 |
+
"memory/max_active (GiB)": 36.54,
|
| 999 |
+
"memory/max_allocated (GiB)": 36.54,
|
| 1000 |
+
"ppl": 1.0159,
|
| 1001 |
+
"step": 71,
|
| 1002 |
+
"tokens/total": 2265328,
|
| 1003 |
+
"tokens/train_per_sec_per_gpu": 23.65,
|
| 1004 |
+
"tokens/trainable": 32428
|
| 1005 |
+
},
|
| 1006 |
+
{
|
| 1007 |
+
"epoch": 0.28125,
|
| 1008 |
+
"grad_norm": 0.6091912388801575,
|
| 1009 |
+
"learning_rate": 9.803324247488975e-05,
|
| 1010 |
+
"loss": 0.0064800274558365345,
|
| 1011 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1012 |
+
"memory/max_active (GiB)": 36.47,
|
| 1013 |
+
"memory/max_allocated (GiB)": 36.47,
|
| 1014 |
+
"ppl": 1.0065,
|
| 1015 |
+
"step": 72,
|
| 1016 |
+
"tokens/total": 2297248,
|
| 1017 |
+
"tokens/train_per_sec_per_gpu": 26.86,
|
| 1018 |
+
"tokens/trainable": 32880
|
| 1019 |
+
},
|
| 1020 |
+
{
|
| 1021 |
+
"epoch": 0.28515625,
|
| 1022 |
+
"grad_norm": 0.14533838629722595,
|
| 1023 |
+
"learning_rate": 9.794746487429161e-05,
|
| 1024 |
+
"loss": 0.001991454279050231,
|
| 1025 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1026 |
+
"memory/max_active (GiB)": 36.41,
|
| 1027 |
+
"memory/max_allocated (GiB)": 36.41,
|
| 1028 |
+
"ppl": 1.00199,
|
| 1029 |
+
"step": 73,
|
| 1030 |
+
"tokens/total": 2329152,
|
| 1031 |
+
"tokens/train_per_sec_per_gpu": 27.97,
|
| 1032 |
+
"tokens/trainable": 33323
|
| 1033 |
+
},
|
| 1034 |
+
{
|
| 1035 |
+
"epoch": 0.2890625,
|
| 1036 |
+
"grad_norm": 0.5400826930999756,
|
| 1037 |
+
"learning_rate": 9.785990005437554e-05,
|
| 1038 |
+
"loss": 0.017662350088357925,
|
| 1039 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1040 |
+
"memory/max_active (GiB)": 36.6,
|
| 1041 |
+
"memory/max_allocated (GiB)": 36.6,
|
| 1042 |
+
"ppl": 1.01782,
|
| 1043 |
+
"step": 74,
|
| 1044 |
+
"tokens/total": 2361344,
|
| 1045 |
+
"tokens/train_per_sec_per_gpu": 29.61,
|
| 1046 |
+
"tokens/trainable": 33792
|
| 1047 |
+
},
|
| 1048 |
+
{
|
| 1049 |
+
"epoch": 0.29296875,
|
| 1050 |
+
"grad_norm": 0.6132436394691467,
|
| 1051 |
+
"learning_rate": 9.777055165907117e-05,
|
| 1052 |
+
"loss": 0.01787603087723255,
|
| 1053 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1054 |
+
"memory/max_active (GiB)": 36.42,
|
| 1055 |
+
"memory/max_allocated (GiB)": 36.42,
|
| 1056 |
+
"ppl": 1.01804,
|
| 1057 |
+
"step": 75,
|
| 1058 |
+
"tokens/total": 2393168,
|
| 1059 |
+
"tokens/train_per_sec_per_gpu": 29.53,
|
| 1060 |
+
"tokens/trainable": 34223
|
| 1061 |
+
},
|
| 1062 |
+
{
|
| 1063 |
+
"epoch": 0.296875,
|
| 1064 |
+
"grad_norm": 0.7287399172782898,
|
| 1065 |
+
"learning_rate": 9.767942340652993e-05,
|
| 1066 |
+
"loss": 0.024754449725151062,
|
| 1067 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1068 |
+
"memory/max_active (GiB)": 36.31,
|
| 1069 |
+
"memory/max_allocated (GiB)": 36.31,
|
| 1070 |
+
"ppl": 1.02506,
|
| 1071 |
+
"step": 76,
|
| 1072 |
+
"tokens/total": 2424880,
|
| 1073 |
+
"tokens/train_per_sec_per_gpu": 24.92,
|
| 1074 |
+
"tokens/trainable": 34649
|
| 1075 |
+
},
|
| 1076 |
+
{
|
| 1077 |
+
"epoch": 0.30078125,
|
| 1078 |
+
"grad_norm": 0.6790545582771301,
|
| 1079 |
+
"learning_rate": 9.758651908897035e-05,
|
| 1080 |
+
"loss": 0.014308430254459381,
|
| 1081 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1082 |
+
"memory/max_active (GiB)": 36.52,
|
| 1083 |
+
"memory/max_allocated (GiB)": 36.52,
|
| 1084 |
+
"ppl": 1.01441,
|
| 1085 |
+
"step": 77,
|
| 1086 |
+
"tokens/total": 2457120,
|
| 1087 |
+
"tokens/train_per_sec_per_gpu": 29.35,
|
| 1088 |
+
"tokens/trainable": 35094
|
| 1089 |
+
},
|
| 1090 |
+
{
|
| 1091 |
+
"epoch": 0.3046875,
|
| 1092 |
+
"grad_norm": 0.6203456521034241,
|
| 1093 |
+
"learning_rate": 9.749184257252033e-05,
|
| 1094 |
+
"loss": 0.034353043884038925,
|
| 1095 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1096 |
+
"memory/max_active (GiB)": 36.44,
|
| 1097 |
+
"memory/max_allocated (GiB)": 36.44,
|
| 1098 |
+
"ppl": 1.03495,
|
| 1099 |
+
"step": 78,
|
| 1100 |
+
"tokens/total": 2489104,
|
| 1101 |
+
"tokens/train_per_sec_per_gpu": 26.39,
|
| 1102 |
+
"tokens/trainable": 35534
|
| 1103 |
+
},
|
| 1104 |
+
{
|
| 1105 |
+
"epoch": 0.30859375,
|
| 1106 |
+
"grad_norm": 0.6238825917243958,
|
| 1107 |
+
"learning_rate": 9.739539779705614e-05,
|
| 1108 |
+
"loss": 0.032295141369104385,
|
| 1109 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1110 |
+
"memory/max_active (GiB)": 36.48,
|
| 1111 |
+
"memory/max_allocated (GiB)": 36.48,
|
| 1112 |
+
"ppl": 1.03282,
|
| 1113 |
+
"step": 79,
|
| 1114 |
+
"tokens/total": 2521136,
|
| 1115 |
+
"tokens/train_per_sec_per_gpu": 29.68,
|
| 1116 |
+
"tokens/trainable": 36029
|
| 1117 |
+
},
|
| 1118 |
+
{
|
| 1119 |
+
"epoch": 0.3125,
|
| 1120 |
+
"grad_norm": 0.18977171182632446,
|
| 1121 |
+
"learning_rate": 9.729718877603861e-05,
|
| 1122 |
+
"loss": 0.007260813377797604,
|
| 1123 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1124 |
+
"memory/max_active (GiB)": 36.61,
|
| 1125 |
+
"memory/max_allocated (GiB)": 36.61,
|
| 1126 |
+
"ppl": 1.00729,
|
| 1127 |
+
"step": 80,
|
| 1128 |
+
"tokens/total": 2553168,
|
| 1129 |
+
"tokens/train_per_sec_per_gpu": 29.48,
|
| 1130 |
+
"tokens/trainable": 36469
|
| 1131 |
+
},
|
| 1132 |
+
{
|
| 1133 |
+
"epoch": 0.31640625,
|
| 1134 |
+
"grad_norm": 0.8054049611091614,
|
| 1135 |
+
"learning_rate": 9.719721959634592e-05,
|
| 1136 |
+
"loss": 0.034894898533821106,
|
| 1137 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1138 |
+
"memory/max_active (GiB)": 36.61,
|
| 1139 |
+
"memory/max_allocated (GiB)": 36.61,
|
| 1140 |
+
"ppl": 1.03551,
|
| 1141 |
+
"step": 81,
|
| 1142 |
+
"tokens/total": 2585584,
|
| 1143 |
+
"tokens/train_per_sec_per_gpu": 25.75,
|
| 1144 |
+
"tokens/trainable": 36906
|
| 1145 |
+
},
|
| 1146 |
+
{
|
| 1147 |
+
"epoch": 0.3203125,
|
| 1148 |
+
"grad_norm": 0.6884189248085022,
|
| 1149 |
+
"learning_rate": 9.709549441810375e-05,
|
| 1150 |
+
"loss": 0.018210047855973244,
|
| 1151 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1152 |
+
"memory/max_active (GiB)": 36.57,
|
| 1153 |
+
"memory/max_allocated (GiB)": 36.57,
|
| 1154 |
+
"ppl": 1.01838,
|
| 1155 |
+
"step": 82,
|
| 1156 |
+
"tokens/total": 2617808,
|
| 1157 |
+
"tokens/train_per_sec_per_gpu": 32.23,
|
| 1158 |
+
"tokens/trainable": 37390
|
| 1159 |
+
},
|
| 1160 |
+
{
|
| 1161 |
+
"epoch": 0.32421875,
|
| 1162 |
+
"grad_norm": 0.6490103602409363,
|
| 1163 |
+
"learning_rate": 9.699201747451195e-05,
|
| 1164 |
+
"loss": 0.02030857279896736,
|
| 1165 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1166 |
+
"memory/max_active (GiB)": 36.4,
|
| 1167 |
+
"memory/max_allocated (GiB)": 36.4,
|
| 1168 |
+
"ppl": 1.02052,
|
| 1169 |
+
"step": 83,
|
| 1170 |
+
"tokens/total": 2649664,
|
| 1171 |
+
"tokens/train_per_sec_per_gpu": 25.8,
|
| 1172 |
+
"tokens/trainable": 37838
|
| 1173 |
+
},
|
| 1174 |
+
{
|
| 1175 |
+
"epoch": 0.328125,
|
| 1176 |
+
"grad_norm": 0.2439805567264557,
|
| 1177 |
+
"learning_rate": 9.688679307166854e-05,
|
| 1178 |
+
"loss": 0.008518049493432045,
|
| 1179 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1180 |
+
"memory/max_active (GiB)": 36.62,
|
| 1181 |
+
"memory/max_allocated (GiB)": 36.62,
|
| 1182 |
+
"ppl": 1.00855,
|
| 1183 |
+
"step": 84,
|
| 1184 |
+
"tokens/total": 2681728,
|
| 1185 |
+
"tokens/train_per_sec_per_gpu": 28.93,
|
| 1186 |
+
"tokens/trainable": 38310
|
| 1187 |
+
},
|
| 1188 |
+
{
|
| 1189 |
+
"epoch": 0.33203125,
|
| 1190 |
+
"grad_norm": 0.6747375726699829,
|
| 1191 |
+
"learning_rate": 9.677982558839042e-05,
|
| 1192 |
+
"loss": 0.029895059764385223,
|
| 1193 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1194 |
+
"memory/max_active (GiB)": 36.36,
|
| 1195 |
+
"memory/max_allocated (GiB)": 36.36,
|
| 1196 |
+
"ppl": 1.03035,
|
| 1197 |
+
"step": 85,
|
| 1198 |
+
"tokens/total": 2713488,
|
| 1199 |
+
"tokens/train_per_sec_per_gpu": 28.49,
|
| 1200 |
+
"tokens/trainable": 38789
|
| 1201 |
+
},
|
| 1202 |
+
{
|
| 1203 |
+
"epoch": 0.3359375,
|
| 1204 |
+
"grad_norm": 0.582666277885437,
|
| 1205 |
+
"learning_rate": 9.66711194760312e-05,
|
| 1206 |
+
"loss": 0.014998597092926502,
|
| 1207 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1208 |
+
"memory/max_active (GiB)": 36.49,
|
| 1209 |
+
"memory/max_allocated (GiB)": 36.49,
|
| 1210 |
+
"ppl": 1.01511,
|
| 1211 |
+
"step": 86,
|
| 1212 |
+
"tokens/total": 2745536,
|
| 1213 |
+
"tokens/train_per_sec_per_gpu": 30.27,
|
| 1214 |
+
"tokens/trainable": 39277
|
| 1215 |
+
},
|
| 1216 |
+
{
|
| 1217 |
+
"epoch": 0.33984375,
|
| 1218 |
+
"grad_norm": 0.5364654660224915,
|
| 1219 |
+
"learning_rate": 9.656067925829593e-05,
|
| 1220 |
+
"loss": 0.011567167937755585,
|
| 1221 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1222 |
+
"memory/max_active (GiB)": 36.58,
|
| 1223 |
+
"memory/max_allocated (GiB)": 36.58,
|
| 1224 |
+
"ppl": 1.01163,
|
| 1225 |
+
"step": 87,
|
| 1226 |
+
"tokens/total": 2777680,
|
| 1227 |
+
"tokens/train_per_sec_per_gpu": 29.73,
|
| 1228 |
+
"tokens/trainable": 39737
|
| 1229 |
+
},
|
| 1230 |
+
{
|
| 1231 |
+
"epoch": 0.34375,
|
| 1232 |
+
"grad_norm": 0.34024426341056824,
|
| 1233 |
+
"learning_rate": 9.644850953105288e-05,
|
| 1234 |
+
"loss": 0.01014852337539196,
|
| 1235 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1236 |
+
"memory/max_active (GiB)": 36.35,
|
| 1237 |
+
"memory/max_allocated (GiB)": 36.35,
|
| 1238 |
+
"ppl": 1.0102,
|
| 1239 |
+
"step": 88,
|
| 1240 |
+
"tokens/total": 2809568,
|
| 1241 |
+
"tokens/train_per_sec_per_gpu": 24.68,
|
| 1242 |
+
"tokens/trainable": 40179
|
| 1243 |
+
},
|
| 1244 |
+
{
|
| 1245 |
+
"epoch": 0.34765625,
|
| 1246 |
+
"grad_norm": 0.32472267746925354,
|
| 1247 |
+
"learning_rate": 9.633461496214225e-05,
|
| 1248 |
+
"loss": 0.01229981891810894,
|
| 1249 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1250 |
+
"memory/max_active (GiB)": 36.52,
|
| 1251 |
+
"memory/max_allocated (GiB)": 36.52,
|
| 1252 |
+
"ppl": 1.01238,
|
| 1253 |
+
"step": 89,
|
| 1254 |
+
"tokens/total": 2841760,
|
| 1255 |
+
"tokens/train_per_sec_per_gpu": 27.21,
|
| 1256 |
+
"tokens/trainable": 40649
|
| 1257 |
+
},
|
| 1258 |
+
{
|
| 1259 |
+
"epoch": 0.3515625,
|
| 1260 |
+
"grad_norm": 0.7906899452209473,
|
| 1261 |
+
"learning_rate": 9.621900029118195e-05,
|
| 1262 |
+
"loss": 0.02552586793899536,
|
| 1263 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1264 |
+
"memory/max_active (GiB)": 36.05,
|
| 1265 |
+
"memory/max_allocated (GiB)": 36.05,
|
| 1266 |
+
"ppl": 1.02585,
|
| 1267 |
+
"step": 90,
|
| 1268 |
+
"tokens/total": 2871696,
|
| 1269 |
+
"tokens/train_per_sec_per_gpu": 26.33,
|
| 1270 |
+
"tokens/trainable": 41080
|
| 1271 |
+
},
|
| 1272 |
+
{
|
| 1273 |
+
"epoch": 0.35546875,
|
| 1274 |
+
"grad_norm": 0.7444764971733093,
|
| 1275 |
+
"learning_rate": 9.610167032937036e-05,
|
| 1276 |
+
"loss": 0.0054441955871880054,
|
| 1277 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1278 |
+
"memory/max_active (GiB)": 36.59,
|
| 1279 |
+
"memory/max_allocated (GiB)": 36.59,
|
| 1280 |
+
"ppl": 1.00546,
|
| 1281 |
+
"step": 91,
|
| 1282 |
+
"tokens/total": 2903968,
|
| 1283 |
+
"tokens/train_per_sec_per_gpu": 31.7,
|
| 1284 |
+
"tokens/trainable": 41599
|
| 1285 |
+
},
|
| 1286 |
+
{
|
| 1287 |
+
"epoch": 0.359375,
|
| 1288 |
+
"grad_norm": 0.1911851465702057,
|
| 1289 |
+
"learning_rate": 9.598262995928611e-05,
|
| 1290 |
+
"loss": 0.004665314219892025,
|
| 1291 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1292 |
+
"memory/max_active (GiB)": 36.57,
|
| 1293 |
+
"memory/max_allocated (GiB)": 36.57,
|
| 1294 |
+
"ppl": 1.00468,
|
| 1295 |
+
"step": 92,
|
| 1296 |
+
"tokens/total": 2936048,
|
| 1297 |
+
"tokens/train_per_sec_per_gpu": 30.59,
|
| 1298 |
+
"tokens/trainable": 42076
|
| 1299 |
+
},
|
| 1300 |
+
{
|
| 1301 |
+
"epoch": 0.36328125,
|
| 1302 |
+
"grad_norm": 0.21238519251346588,
|
| 1303 |
+
"learning_rate": 9.586188413468492e-05,
|
| 1304 |
+
"loss": 0.003917238209396601,
|
| 1305 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1306 |
+
"memory/max_active (GiB)": 36.45,
|
| 1307 |
+
"memory/max_allocated (GiB)": 36.45,
|
| 1308 |
+
"ppl": 1.00392,
|
| 1309 |
+
"step": 93,
|
| 1310 |
+
"tokens/total": 2968176,
|
| 1311 |
+
"tokens/train_per_sec_per_gpu": 28.07,
|
| 1312 |
+
"tokens/trainable": 42522
|
| 1313 |
+
},
|
| 1314 |
+
{
|
| 1315 |
+
"epoch": 0.3671875,
|
| 1316 |
+
"grad_norm": 0.41729435324668884,
|
| 1317 |
+
"learning_rate": 9.57394378802934e-05,
|
| 1318 |
+
"loss": 0.013555807992815971,
|
| 1319 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1320 |
+
"memory/max_active (GiB)": 36.54,
|
| 1321 |
+
"memory/max_allocated (GiB)": 36.54,
|
| 1322 |
+
"ppl": 1.01365,
|
| 1323 |
+
"step": 94,
|
| 1324 |
+
"tokens/total": 3000304,
|
| 1325 |
+
"tokens/train_per_sec_per_gpu": 28.69,
|
| 1326 |
+
"tokens/trainable": 42974
|
| 1327 |
+
},
|
| 1328 |
+
{
|
| 1329 |
+
"epoch": 0.37109375,
|
| 1330 |
+
"grad_norm": 0.7246769070625305,
|
| 1331 |
+
"learning_rate": 9.56152962916e-05,
|
| 1332 |
+
"loss": 0.020221399143338203,
|
| 1333 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1334 |
+
"memory/max_active (GiB)": 36.29,
|
| 1335 |
+
"memory/max_allocated (GiB)": 36.29,
|
| 1336 |
+
"ppl": 1.02043,
|
| 1337 |
+
"step": 95,
|
| 1338 |
+
"tokens/total": 3032080,
|
| 1339 |
+
"tokens/train_per_sec_per_gpu": 25.35,
|
| 1340 |
+
"tokens/trainable": 43380
|
| 1341 |
+
},
|
| 1342 |
+
{
|
| 1343 |
+
"epoch": 0.375,
|
| 1344 |
+
"grad_norm": 0.16139821708202362,
|
| 1345 |
+
"learning_rate": 9.548946453464296e-05,
|
| 1346 |
+
"loss": 0.003853276837617159,
|
| 1347 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1348 |
+
"memory/max_active (GiB)": 36.59,
|
| 1349 |
+
"memory/max_allocated (GiB)": 36.59,
|
| 1350 |
+
"ppl": 1.00386,
|
| 1351 |
+
"step": 96,
|
| 1352 |
+
"tokens/total": 3064320,
|
| 1353 |
+
"tokens/train_per_sec_per_gpu": 28.47,
|
| 1354 |
+
"tokens/trainable": 43865
|
| 1355 |
+
},
|
| 1356 |
+
{
|
| 1357 |
+
"epoch": 0.37890625,
|
| 1358 |
+
"grad_norm": 1.0509370565414429,
|
| 1359 |
+
"learning_rate": 9.53619478457953e-05,
|
| 1360 |
+
"loss": 0.015099998563528061,
|
| 1361 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1362 |
+
"memory/max_active (GiB)": 36.45,
|
| 1363 |
+
"memory/max_allocated (GiB)": 36.45,
|
| 1364 |
+
"ppl": 1.01521,
|
| 1365 |
+
"step": 97,
|
| 1366 |
+
"tokens/total": 3096144,
|
| 1367 |
+
"tokens/train_per_sec_per_gpu": 26.61,
|
| 1368 |
+
"tokens/trainable": 44328
|
| 1369 |
+
},
|
| 1370 |
+
{
|
| 1371 |
+
"epoch": 0.3828125,
|
| 1372 |
+
"grad_norm": 0.6859350204467773,
|
| 1373 |
+
"learning_rate": 9.523275153154695e-05,
|
| 1374 |
+
"loss": 0.004579808097332716,
|
| 1375 |
+
"memory/device_reserved (GiB)": 38.68,
|
| 1376 |
+
"memory/max_active (GiB)": 36.28,
|
| 1377 |
+
"memory/max_allocated (GiB)": 36.28,
|
| 1378 |
+
"ppl": 1.00459,
|
| 1379 |
+
"step": 98,
|
| 1380 |
+
"tokens/total": 3127600,
|
| 1381 |
+
"tokens/train_per_sec_per_gpu": 25.91,
|
| 1382 |
+
"tokens/trainable": 44778
|
| 1383 |
+
},
|
| 1384 |
+
{
|
| 1385 |
+
"epoch": 0.38671875,
|
| 1386 |
+
"grad_norm": 0.5686795711517334,
|
| 1387 |
+
"learning_rate": 9.51018809682839e-05,
|
| 1388 |
+
"loss": 0.022520575672388077,
|
| 1389 |
+
"memory/device_reserved (GiB)": 38.74,
|
| 1390 |
+
"memory/max_active (GiB)": 36.53,
|
| 1391 |
+
"memory/max_allocated (GiB)": 36.53,
|
| 1392 |
+
"ppl": 1.02278,
|
| 1393 |
+
"step": 99,
|
| 1394 |
+
"tokens/total": 3159520,
|
| 1395 |
+
"tokens/train_per_sec_per_gpu": 30.85,
|
| 1396 |
+
"tokens/trainable": 45225
|
| 1397 |
+
},
|
| 1398 |
+
{
|
| 1399 |
+
"epoch": 0.390625,
|
| 1400 |
+
"grad_norm": 1.6308369636535645,
|
| 1401 |
+
"learning_rate": 9.49693416020645e-05,
|
| 1402 |
+
"loss": 0.011883002705872059,
|
| 1403 |
+
"memory/device_reserved (GiB)": 38.74,
|
| 1404 |
+
"memory/max_active (GiB)": 36.42,
|
| 1405 |
+
"memory/max_allocated (GiB)": 36.42,
|
| 1406 |
+
"ppl": 1.01195,
|
| 1407 |
+
"step": 100,
|
| 1408 |
+
"tokens/total": 3191568,
|
| 1409 |
+
"tokens/train_per_sec_per_gpu": 29.75,
|
| 1410 |
+
"tokens/trainable": 45678
|
| 1411 |
+
},
|
| 1412 |
+
{
|
| 1413 |
+
"epoch": 0.39453125,
|
| 1414 |
+
"grad_norm": 0.7186088562011719,
|
| 1415 |
+
"learning_rate": 9.483513894839276e-05,
|
| 1416 |
+
"loss": 0.0060632615350186825,
|
| 1417 |
+
"memory/device_reserved (GiB)": 38.74,
|
| 1418 |
+
"memory/max_active (GiB)": 36.52,
|
| 1419 |
+
"memory/max_allocated (GiB)": 36.52,
|
| 1420 |
+
"ppl": 1.00608,
|
| 1421 |
+
"step": 101,
|
| 1422 |
+
"tokens/total": 3223648,
|
| 1423 |
+
"tokens/train_per_sec_per_gpu": 27.14,
|
| 1424 |
+
"tokens/trainable": 46125
|
| 1425 |
+
},
|
| 1426 |
+
{
|
| 1427 |
+
"epoch": 0.3984375,
|
| 1428 |
+
"grad_norm": 0.12036337703466415,
|
| 1429 |
+
"learning_rate": 9.469927859198888e-05,
|
| 1430 |
+
"loss": 0.0019118499476462603,
|
| 1431 |
+
"memory/device_reserved (GiB)": 38.74,
|
| 1432 |
+
"memory/max_active (GiB)": 36.64,
|
| 1433 |
+
"memory/max_allocated (GiB)": 36.64,
|
| 1434 |
+
"ppl": 1.00191,
|
| 1435 |
+
"step": 102,
|
| 1436 |
+
"tokens/total": 3255744,
|
| 1437 |
+
"tokens/train_per_sec_per_gpu": 33.33,
|
| 1438 |
+
"tokens/trainable": 46612
|
| 1439 |
+
},
|
| 1440 |
+
{
|
| 1441 |
+
"epoch": 0.40234375,
|
| 1442 |
+
"grad_norm": 0.29928353428840637,
|
| 1443 |
+
"learning_rate": 9.456176618655689e-05,
|
| 1444 |
+
"loss": 0.00944911316037178,
|
| 1445 |
+
"memory/device_reserved (GiB)": 38.74,
|
| 1446 |
+
"memory/max_active (GiB)": 36.46,
|
| 1447 |
+
"memory/max_allocated (GiB)": 36.46,
|
| 1448 |
+
"ppl": 1.00949,
|
| 1449 |
+
"step": 103,
|
| 1450 |
+
"tokens/total": 3287792,
|
| 1451 |
+
"tokens/train_per_sec_per_gpu": 27.3,
|
| 1452 |
+
"tokens/trainable": 47059
|
| 1453 |
+
},
|
| 1454 |
+
{
|
| 1455 |
+
"epoch": 0.40625,
|
| 1456 |
+
"grad_norm": 0.3766293227672577,
|
| 1457 |
+
"learning_rate": 9.442260745454927e-05,
|
| 1458 |
+
"loss": 0.008984047919511795,
|
| 1459 |
+
"memory/device_reserved (GiB)": 38.74,
|
| 1460 |
+
"memory/max_active (GiB)": 36.68,
|
| 1461 |
+
"memory/max_allocated (GiB)": 36.68,
|
| 1462 |
+
"ppl": 1.00902,
|
| 1463 |
+
"step": 104,
|
| 1464 |
+
"tokens/total": 3320016,
|
| 1465 |
+
"tokens/train_per_sec_per_gpu": 28.92,
|
| 1466 |
+
"tokens/trainable": 47536
|
| 1467 |
+
},
|
| 1468 |
+
{
|
| 1469 |
+
"epoch": 0.41015625,
|
| 1470 |
+
"grad_norm": 0.3481820523738861,
|
| 1471 |
+
"learning_rate": 9.428180818692884e-05,
|
| 1472 |
+
"loss": 0.005444999784231186,
|
| 1473 |
+
"memory/device_reserved (GiB)": 38.74,
|
| 1474 |
+
"memory/max_active (GiB)": 36.44,
|
| 1475 |
+
"memory/max_allocated (GiB)": 36.44,
|
| 1476 |
+
"ppl": 1.00546,
|
| 1477 |
+
"step": 105,
|
| 1478 |
+
"tokens/total": 3351952,
|
| 1479 |
+
"tokens/train_per_sec_per_gpu": 28.32,
|
| 1480 |
+
"tokens/trainable": 48037
|
| 1481 |
+
},
|
| 1482 |
+
{
|
| 1483 |
+
"epoch": 0.4140625,
|
| 1484 |
+
"grad_norm": 0.8414323329925537,
|
| 1485 |
+
"learning_rate": 9.413937424292791e-05,
|
| 1486 |
+
"loss": 0.032438624650239944,
|
| 1487 |
+
"memory/device_reserved (GiB)": 38.74,
|
| 1488 |
+
"memory/max_active (GiB)": 36.55,
|
| 1489 |
+
"memory/max_allocated (GiB)": 36.55,
|
| 1490 |
+
"ppl": 1.03297,
|
| 1491 |
+
"step": 106,
|
| 1492 |
+
"tokens/total": 3384032,
|
| 1493 |
+
"tokens/train_per_sec_per_gpu": 27.11,
|
| 1494 |
+
"tokens/trainable": 48491
|
| 1495 |
+
},
|
| 1496 |
+
{
|
| 1497 |
+
"epoch": 0.41796875,
|
| 1498 |
+
"grad_norm": 0.5067655444145203,
|
| 1499 |
+
"learning_rate": 9.399531154980424e-05,
|
| 1500 |
+
"loss": 0.008442888967692852,
|
| 1501 |
+
"memory/device_reserved (GiB)": 38.74,
|
| 1502 |
+
"memory/max_active (GiB)": 36.67,
|
| 1503 |
+
"memory/max_allocated (GiB)": 36.67,
|
| 1504 |
+
"ppl": 1.00848,
|
| 1505 |
+
"step": 107,
|
| 1506 |
+
"tokens/total": 3416192,
|
| 1507 |
+
"tokens/train_per_sec_per_gpu": 27.61,
|
| 1508 |
+
"tokens/trainable": 48940
|
| 1509 |
+
},
|
| 1510 |
+
{
|
| 1511 |
+
"epoch": 0.421875,
|
| 1512 |
+
"grad_norm": 0.41617852449417114,
|
| 1513 |
+
"learning_rate": 9.384962610259455e-05,
|
| 1514 |
+
"loss": 0.008386321365833282,
|
| 1515 |
+
"memory/device_reserved (GiB)": 38.74,
|
| 1516 |
+
"memory/max_active (GiB)": 36.46,
|
| 1517 |
+
"memory/max_allocated (GiB)": 36.46,
|
| 1518 |
+
"ppl": 1.00842,
|
| 1519 |
+
"step": 108,
|
| 1520 |
+
"tokens/total": 3448080,
|
| 1521 |
+
"tokens/train_per_sec_per_gpu": 26.56,
|
| 1522 |
+
"tokens/trainable": 49389
|
| 1523 |
+
},
|
| 1524 |
+
{
|
| 1525 |
+
"epoch": 0.42578125,
|
| 1526 |
+
"grad_norm": 0.1587515026330948,
|
| 1527 |
+
"learning_rate": 9.370232396386494e-05,
|
| 1528 |
+
"loss": 0.0031663556583225727,
|
| 1529 |
+
"memory/device_reserved (GiB)": 38.75,
|
| 1530 |
+
"memory/max_active (GiB)": 36.03,
|
| 1531 |
+
"memory/max_allocated (GiB)": 36.03,
|
| 1532 |
+
"ppl": 1.00317,
|
| 1533 |
+
"step": 109,
|
| 1534 |
+
"tokens/total": 3477952,
|
| 1535 |
+
"tokens/train_per_sec_per_gpu": 29.8,
|
| 1536 |
+
"tokens/trainable": 49838
|
| 1537 |
+
},
|
| 1538 |
+
{
|
| 1539 |
+
"epoch": 0.4296875,
|
| 1540 |
+
"grad_norm": 0.2903148829936981,
|
| 1541 |
+
"learning_rate": 9.355341126345868e-05,
|
| 1542 |
+
"loss": 0.007958847098052502,
|
| 1543 |
+
"memory/device_reserved (GiB)": 38.75,
|
| 1544 |
+
"memory/max_active (GiB)": 36.4,
|
| 1545 |
+
"memory/max_allocated (GiB)": 36.4,
|
| 1546 |
+
"ppl": 1.00799,
|
| 1547 |
+
"step": 110,
|
| 1548 |
+
"tokens/total": 3509776,
|
| 1549 |
+
"tokens/train_per_sec_per_gpu": 28.42,
|
| 1550 |
+
"tokens/trainable": 50310
|
| 1551 |
+
},
|
| 1552 |
+
{
|
| 1553 |
+
"epoch": 0.43359375,
|
| 1554 |
+
"grad_norm": 0.642983078956604,
|
| 1555 |
+
"learning_rate": 9.340289419824107e-05,
|
| 1556 |
+
"loss": 0.006748045329004526,
|
| 1557 |
+
"memory/device_reserved (GiB)": 38.75,
|
| 1558 |
+
"memory/max_active (GiB)": 36.47,
|
| 1559 |
+
"memory/max_allocated (GiB)": 36.47,
|
| 1560 |
+
"ppl": 1.00677,
|
| 1561 |
+
"step": 111,
|
| 1562 |
+
"tokens/total": 3541808,
|
| 1563 |
+
"tokens/train_per_sec_per_gpu": 28.04,
|
| 1564 |
+
"tokens/trainable": 50755
|
| 1565 |
+
},
|
| 1566 |
+
{
|
| 1567 |
+
"epoch": 0.4375,
|
| 1568 |
+
"grad_norm": 0.14928282797336578,
|
| 1569 |
+
"learning_rate": 9.325077903184159e-05,
|
| 1570 |
+
"loss": 0.0027839094400405884,
|
| 1571 |
+
"memory/device_reserved (GiB)": 38.75,
|
| 1572 |
+
"memory/max_active (GiB)": 36.54,
|
| 1573 |
+
"memory/max_allocated (GiB)": 36.54,
|
| 1574 |
+
"ppl": 1.00279,
|
| 1575 |
+
"step": 112,
|
| 1576 |
+
"tokens/total": 3574064,
|
| 1577 |
+
"tokens/train_per_sec_per_gpu": 26.33,
|
| 1578 |
+
"tokens/trainable": 51213
|
| 1579 |
+
},
|
| 1580 |
+
{
|
| 1581 |
+
"epoch": 0.44140625,
|
| 1582 |
+
"grad_norm": 0.05922335386276245,
|
| 1583 |
+
"learning_rate": 9.30970720943932e-05,
|
| 1584 |
+
"loss": 0.0009622900979593396,
|
| 1585 |
+
"memory/device_reserved (GiB)": 38.75,
|
| 1586 |
+
"memory/max_active (GiB)": 36.53,
|
| 1587 |
+
"memory/max_allocated (GiB)": 36.53,
|
| 1588 |
+
"ppl": 1.00096,
|
| 1589 |
+
"step": 113,
|
| 1590 |
+
"tokens/total": 3605984,
|
| 1591 |
+
"tokens/train_per_sec_per_gpu": 27.99,
|
| 1592 |
+
"tokens/trainable": 51660
|
| 1593 |
+
},
|
| 1594 |
+
{
|
| 1595 |
+
"epoch": 0.4453125,
|
| 1596 |
+
"grad_norm": 0.44227731227874756,
|
| 1597 |
+
"learning_rate": 9.2941779782269e-05,
|
| 1598 |
+
"loss": 0.002763954224064946,
|
| 1599 |
+
"memory/device_reserved (GiB)": 38.75,
|
| 1600 |
+
"memory/max_active (GiB)": 36.47,
|
| 1601 |
+
"memory/max_allocated (GiB)": 36.47,
|
| 1602 |
+
"ppl": 1.00277,
|
| 1603 |
+
"step": 114,
|
| 1604 |
+
"tokens/total": 3638080,
|
| 1605 |
+
"tokens/train_per_sec_per_gpu": 27.03,
|
| 1606 |
+
"tokens/trainable": 52133
|
| 1607 |
+
},
|
| 1608 |
+
{
|
| 1609 |
+
"epoch": 0.44921875,
|
| 1610 |
+
"grad_norm": 0.5176818370819092,
|
| 1611 |
+
"learning_rate": 9.278490855781596e-05,
|
| 1612 |
+
"loss": 0.015623578801751137,
|
| 1613 |
+
"memory/device_reserved (GiB)": 38.75,
|
| 1614 |
+
"memory/max_active (GiB)": 36.47,
|
| 1615 |
+
"memory/max_allocated (GiB)": 36.47,
|
| 1616 |
+
"ppl": 1.01575,
|
| 1617 |
+
"step": 115,
|
| 1618 |
+
"tokens/total": 3670016,
|
| 1619 |
+
"tokens/train_per_sec_per_gpu": 31.44,
|
| 1620 |
+
"tokens/trainable": 52580
|
| 1621 |
+
},
|
| 1622 |
+
{
|
| 1623 |
+
"epoch": 0.453125,
|
| 1624 |
+
"grad_norm": 0.4265497922897339,
|
| 1625 |
+
"learning_rate": 9.262646494908604e-05,
|
| 1626 |
+
"loss": 0.00794076919555664,
|
| 1627 |
+
"memory/device_reserved (GiB)": 38.75,
|
| 1628 |
+
"memory/max_active (GiB)": 36.45,
|
| 1629 |
+
"memory/max_allocated (GiB)": 36.45,
|
| 1630 |
+
"ppl": 1.00797,
|
| 1631 |
+
"step": 116,
|
| 1632 |
+
"tokens/total": 3701984,
|
| 1633 |
+
"tokens/train_per_sec_per_gpu": 29.28,
|
| 1634 |
+
"tokens/trainable": 53033
|
| 1635 |
+
},
|
| 1636 |
+
{
|
| 1637 |
+
"epoch": 0.45703125,
|
| 1638 |
+
"grad_norm": 0.40457987785339355,
|
| 1639 |
+
"learning_rate": 9.246645554956457e-05,
|
| 1640 |
+
"loss": 0.022708112373948097,
|
| 1641 |
+
"memory/device_reserved (GiB)": 38.75,
|
| 1642 |
+
"memory/max_active (GiB)": 36.46,
|
| 1643 |
+
"memory/max_allocated (GiB)": 36.46,
|
| 1644 |
+
"ppl": 1.02297,
|
| 1645 |
+
"step": 117,
|
| 1646 |
+
"tokens/total": 3733920,
|
| 1647 |
+
"tokens/train_per_sec_per_gpu": 29.46,
|
| 1648 |
+
"tokens/trainable": 53517
|
| 1649 |
+
},
|
| 1650 |
+
{
|
| 1651 |
+
"epoch": 0.4609375,
|
| 1652 |
+
"grad_norm": 0.01414525043219328,
|
| 1653 |
+
"learning_rate": 9.230488701789578e-05,
|
| 1654 |
+
"loss": 0.00020209309877827764,
|
| 1655 |
+
"memory/device_reserved (GiB)": 38.75,
|
| 1656 |
+
"memory/max_active (GiB)": 36.34,
|
| 1657 |
+
"memory/max_allocated (GiB)": 36.34,
|
| 1658 |
+
"ppl": 1.0002,
|
| 1659 |
+
"step": 118,
|
| 1660 |
+
"tokens/total": 3765840,
|
| 1661 |
+
"tokens/train_per_sec_per_gpu": 28.57,
|
| 1662 |
+
"tokens/trainable": 53967
|
| 1663 |
+
},
|
| 1664 |
+
{
|
| 1665 |
+
"epoch": 0.46484375,
|
| 1666 |
+
"grad_norm": 0.11359831690788269,
|
| 1667 |
+
"learning_rate": 9.214176607760577e-05,
|
| 1668 |
+
"loss": 0.0012168455868959427,
|
| 1669 |
+
"memory/device_reserved (GiB)": 38.75,
|
| 1670 |
+
"memory/max_active (GiB)": 36.48,
|
| 1671 |
+
"memory/max_allocated (GiB)": 36.48,
|
| 1672 |
+
"ppl": 1.00122,
|
| 1673 |
+
"step": 119,
|
| 1674 |
+
"tokens/total": 3797680,
|
| 1675 |
+
"tokens/train_per_sec_per_gpu": 29.49,
|
| 1676 |
+
"tokens/trainable": 54430
|
| 1677 |
+
},
|
| 1678 |
+
{
|
| 1679 |
+
"epoch": 0.46875,
|
| 1680 |
+
"grad_norm": 0.35982534289360046,
|
| 1681 |
+
"learning_rate": 9.197709951682268e-05,
|
| 1682 |
+
"loss": 0.004110721405595541,
|
| 1683 |
+
"memory/device_reserved (GiB)": 38.77,
|
| 1684 |
+
"memory/max_active (GiB)": 36.58,
|
| 1685 |
+
"memory/max_allocated (GiB)": 36.58,
|
| 1686 |
+
"ppl": 1.00412,
|
| 1687 |
+
"step": 120,
|
| 1688 |
+
"tokens/total": 3829920,
|
| 1689 |
+
"tokens/train_per_sec_per_gpu": 29.2,
|
| 1690 |
+
"tokens/trainable": 54896
|
| 1691 |
+
},
|
| 1692 |
+
{
|
| 1693 |
+
"epoch": 0.47265625,
|
| 1694 |
+
"grad_norm": 1.3690382242202759,
|
| 1695 |
+
"learning_rate": 9.181089418799428e-05,
|
| 1696 |
+
"loss": 0.02705790475010872,
|
| 1697 |
+
"memory/device_reserved (GiB)": 38.77,
|
| 1698 |
+
"memory/max_active (GiB)": 36.61,
|
| 1699 |
+
"memory/max_allocated (GiB)": 36.61,
|
| 1700 |
+
"ppl": 1.02743,
|
| 1701 |
+
"step": 121,
|
| 1702 |
+
"tokens/total": 3862080,
|
| 1703 |
+
"tokens/train_per_sec_per_gpu": 31.57,
|
| 1704 |
+
"tokens/trainable": 55379
|
| 1705 |
+
},
|
| 1706 |
+
{
|
| 1707 |
+
"epoch": 0.4765625,
|
| 1708 |
+
"grad_norm": 0.351891428232193,
|
| 1709 |
+
"learning_rate": 9.164315700760271e-05,
|
| 1710 |
+
"loss": 0.0020163573790341616,
|
| 1711 |
+
"memory/device_reserved (GiB)": 38.77,
|
| 1712 |
+
"memory/max_active (GiB)": 36.36,
|
| 1713 |
+
"memory/max_allocated (GiB)": 36.36,
|
| 1714 |
+
"ppl": 1.00202,
|
| 1715 |
+
"step": 122,
|
| 1716 |
+
"tokens/total": 3893968,
|
| 1717 |
+
"tokens/train_per_sec_per_gpu": 26.5,
|
| 1718 |
+
"tokens/trainable": 55803
|
| 1719 |
+
},
|
| 1720 |
+
{
|
| 1721 |
+
"epoch": 0.48046875,
|
| 1722 |
+
"grad_norm": 0.4747961461544037,
|
| 1723 |
+
"learning_rate": 9.147389495587671e-05,
|
| 1724 |
+
"loss": 0.012588979676365852,
|
| 1725 |
+
"memory/device_reserved (GiB)": 38.77,
|
| 1726 |
+
"memory/max_active (GiB)": 36.51,
|
| 1727 |
+
"memory/max_allocated (GiB)": 36.51,
|
| 1728 |
+
"ppl": 1.01267,
|
| 1729 |
+
"step": 123,
|
| 1730 |
+
"tokens/total": 3926160,
|
| 1731 |
+
"tokens/train_per_sec_per_gpu": 30.14,
|
| 1732 |
+
"tokens/trainable": 56249
|
| 1733 |
+
},
|
| 1734 |
+
{
|
| 1735 |
+
"epoch": 0.484375,
|
| 1736 |
+
"grad_norm": 0.4064250588417053,
|
| 1737 |
+
"learning_rate": 9.130311507650116e-05,
|
| 1738 |
+
"loss": 0.0022941348142921925,
|
| 1739 |
+
"memory/device_reserved (GiB)": 38.77,
|
| 1740 |
+
"memory/max_active (GiB)": 36.54,
|
| 1741 |
+
"memory/max_allocated (GiB)": 36.54,
|
| 1742 |
+
"ppl": 1.0023,
|
| 1743 |
+
"step": 124,
|
| 1744 |
+
"tokens/total": 3958208,
|
| 1745 |
+
"tokens/train_per_sec_per_gpu": 27.21,
|
| 1746 |
+
"tokens/trainable": 56713
|
| 1747 |
+
},
|
| 1748 |
+
{
|
| 1749 |
+
"epoch": 0.48828125,
|
| 1750 |
+
"grad_norm": 0.22056929767131805,
|
| 1751 |
+
"learning_rate": 9.113082447632394e-05,
|
| 1752 |
+
"loss": 0.0022175831254571676,
|
| 1753 |
+
"memory/device_reserved (GiB)": 38.77,
|
| 1754 |
+
"memory/max_active (GiB)": 36.48,
|
| 1755 |
+
"memory/max_allocated (GiB)": 36.48,
|
| 1756 |
+
"ppl": 1.00222,
|
| 1757 |
+
"step": 125,
|
| 1758 |
+
"tokens/total": 3990208,
|
| 1759 |
+
"tokens/train_per_sec_per_gpu": 32.57,
|
| 1760 |
+
"tokens/trainable": 57196
|
| 1761 |
+
},
|
| 1762 |
+
{
|
| 1763 |
+
"epoch": 0.4921875,
|
| 1764 |
+
"grad_norm": 0.5698862671852112,
|
| 1765 |
+
"learning_rate": 9.09570303250602e-05,
|
| 1766 |
+
"loss": 0.010205100290477276,
|
| 1767 |
+
"memory/device_reserved (GiB)": 38.77,
|
| 1768 |
+
"memory/max_active (GiB)": 36.53,
|
| 1769 |
+
"memory/max_allocated (GiB)": 36.53,
|
| 1770 |
+
"ppl": 1.01026,
|
| 1771 |
+
"step": 126,
|
| 1772 |
+
"tokens/total": 4022224,
|
| 1773 |
+
"tokens/train_per_sec_per_gpu": 30.4,
|
| 1774 |
+
"tokens/trainable": 57680
|
| 1775 |
+
},
|
| 1776 |
+
{
|
| 1777 |
+
"epoch": 0.49609375,
|
| 1778 |
+
"grad_norm": 0.2593887448310852,
|
| 1779 |
+
"learning_rate": 9.078173985499394e-05,
|
| 1780 |
+
"loss": 0.0032277877908200026,
|
| 1781 |
+
"memory/device_reserved (GiB)": 38.77,
|
| 1782 |
+
"memory/max_active (GiB)": 36.39,
|
| 1783 |
+
"memory/max_allocated (GiB)": 36.39,
|
| 1784 |
+
"ppl": 1.00323,
|
| 1785 |
+
"step": 127,
|
| 1786 |
+
"tokens/total": 4053952,
|
| 1787 |
+
"tokens/train_per_sec_per_gpu": 26.51,
|
| 1788 |
+
"tokens/trainable": 58110
|
| 1789 |
+
},
|
| 1790 |
+
{
|
| 1791 |
+
"epoch": 0.5,
|
| 1792 |
+
"grad_norm": 0.3735230565071106,
|
| 1793 |
+
"learning_rate": 9.060496036067713e-05,
|
| 1794 |
+
"loss": 0.01031105499714613,
|
| 1795 |
+
"memory/device_reserved (GiB)": 38.77,
|
| 1796 |
+
"memory/max_active (GiB)": 36.52,
|
| 1797 |
+
"memory/max_allocated (GiB)": 36.52,
|
| 1798 |
+
"ppl": 1.01036,
|
| 1799 |
+
"step": 128,
|
| 1800 |
+
"tokens/total": 4086144,
|
| 1801 |
+
"tokens/train_per_sec_per_gpu": 26.5,
|
| 1802 |
+
"tokens/trainable": 58534
|
| 1803 |
+
},
|
| 1804 |
+
{
|
| 1805 |
+
"epoch": 0.50390625,
|
| 1806 |
+
"grad_norm": 0.1332484930753708,
|
| 1807 |
+
"learning_rate": 9.042669919862615e-05,
|
| 1808 |
+
"loss": 0.0012390739284455776,
|
| 1809 |
+
"memory/device_reserved (GiB)": 38.86,
|
| 1810 |
+
"memory/max_active (GiB)": 36.54,
|
| 1811 |
+
"memory/max_allocated (GiB)": 36.54,
|
| 1812 |
+
"ppl": 1.00124,
|
| 1813 |
+
"step": 129,
|
| 1814 |
+
"tokens/total": 4118096,
|
| 1815 |
+
"tokens/train_per_sec_per_gpu": 29.31,
|
| 1816 |
+
"tokens/trainable": 58998
|
| 1817 |
+
},
|
| 1818 |
+
{
|
| 1819 |
+
"epoch": 0.5078125,
|
| 1820 |
+
"grad_norm": 0.20182718336582184,
|
| 1821 |
+
"learning_rate": 9.024696378701557e-05,
|
| 1822 |
+
"loss": 0.004501686431467533,
|
| 1823 |
+
"memory/device_reserved (GiB)": 38.86,
|
| 1824 |
+
"memory/max_active (GiB)": 36.55,
|
| 1825 |
+
"memory/max_allocated (GiB)": 36.55,
|
| 1826 |
+
"ppl": 1.00451,
|
| 1827 |
+
"step": 130,
|
| 1828 |
+
"tokens/total": 4150272,
|
| 1829 |
+
"tokens/train_per_sec_per_gpu": 26.49,
|
| 1830 |
+
"tokens/trainable": 59448
|
| 1831 |
+
},
|
| 1832 |
+
{
|
| 1833 |
+
"epoch": 0.51171875,
|
| 1834 |
+
"grad_norm": 0.529080331325531,
|
| 1835 |
+
"learning_rate": 9.006576160536948e-05,
|
| 1836 |
+
"loss": 0.00763288140296936,
|
| 1837 |
+
"memory/device_reserved (GiB)": 38.86,
|
| 1838 |
+
"memory/max_active (GiB)": 36.33,
|
| 1839 |
+
"memory/max_allocated (GiB)": 36.33,
|
| 1840 |
+
"ppl": 1.00766,
|
| 1841 |
+
"step": 131,
|
| 1842 |
+
"tokens/total": 4181904,
|
| 1843 |
+
"tokens/train_per_sec_per_gpu": 26.84,
|
| 1844 |
+
"tokens/trainable": 59906
|
| 1845 |
+
},
|
| 1846 |
+
{
|
| 1847 |
+
"epoch": 0.515625,
|
| 1848 |
+
"grad_norm": 0.21625548601150513,
|
| 1849 |
+
"learning_rate": 8.988310019425035e-05,
|
| 1850 |
+
"loss": 0.0024378676898777485,
|
| 1851 |
+
"memory/device_reserved (GiB)": 38.86,
|
| 1852 |
+
"memory/max_active (GiB)": 36.48,
|
| 1853 |
+
"memory/max_allocated (GiB)": 36.48,
|
| 1854 |
+
"ppl": 1.00244,
|
| 1855 |
+
"step": 132,
|
| 1856 |
+
"tokens/total": 4214032,
|
| 1857 |
+
"tokens/train_per_sec_per_gpu": 28.36,
|
| 1858 |
+
"tokens/trainable": 60350
|
| 1859 |
+
},
|
| 1860 |
+
{
|
| 1861 |
+
"epoch": 0.51953125,
|
| 1862 |
+
"grad_norm": 0.37116539478302,
|
| 1863 |
+
"learning_rate": 8.969898715494506e-05,
|
| 1864 |
+
"loss": 0.0037849934305995703,
|
| 1865 |
+
"memory/device_reserved (GiB)": 38.86,
|
| 1866 |
+
"memory/max_active (GiB)": 36.47,
|
| 1867 |
+
"memory/max_allocated (GiB)": 36.47,
|
| 1868 |
+
"ppl": 1.00379,
|
| 1869 |
+
"step": 133,
|
| 1870 |
+
"tokens/total": 4246064,
|
| 1871 |
+
"tokens/train_per_sec_per_gpu": 30.18,
|
| 1872 |
+
"tokens/trainable": 60831
|
| 1873 |
+
},
|
| 1874 |
+
{
|
| 1875 |
+
"epoch": 0.5234375,
|
| 1876 |
+
"grad_norm": 0.5646623373031616,
|
| 1877 |
+
"learning_rate": 8.951343014914869e-05,
|
| 1878 |
+
"loss": 0.006517104804515839,
|
| 1879 |
+
"memory/device_reserved (GiB)": 38.86,
|
| 1880 |
+
"memory/max_active (GiB)": 36.52,
|
| 1881 |
+
"memory/max_allocated (GiB)": 36.52,
|
| 1882 |
+
"ppl": 1.00654,
|
| 1883 |
+
"step": 134,
|
| 1884 |
+
"tokens/total": 4278224,
|
| 1885 |
+
"tokens/train_per_sec_per_gpu": 28.2,
|
| 1886 |
+
"tokens/trainable": 61305
|
| 1887 |
+
},
|
| 1888 |
+
{
|
| 1889 |
+
"epoch": 0.52734375,
|
| 1890 |
+
"grad_norm": 0.6371963620185852,
|
| 1891 |
+
"learning_rate": 8.932643689864568e-05,
|
| 1892 |
+
"loss": 0.008687382563948631,
|
| 1893 |
+
"memory/device_reserved (GiB)": 38.86,
|
| 1894 |
+
"memory/max_active (GiB)": 36.48,
|
| 1895 |
+
"memory/max_allocated (GiB)": 36.48,
|
| 1896 |
+
"ppl": 1.00873,
|
| 1897 |
+
"step": 135,
|
| 1898 |
+
"tokens/total": 4310112,
|
| 1899 |
+
"tokens/train_per_sec_per_gpu": 31.48,
|
| 1900 |
+
"tokens/trainable": 61792
|
| 1901 |
+
},
|
| 1902 |
+
{
|
| 1903 |
+
"epoch": 0.53125,
|
| 1904 |
+
"grad_norm": 0.8210524916648865,
|
| 1905 |
+
"learning_rate": 8.913801518498845e-05,
|
| 1906 |
+
"loss": 0.008436474949121475,
|
| 1907 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 1908 |
+
"memory/max_active (GiB)": 36.54,
|
| 1909 |
+
"memory/max_allocated (GiB)": 36.54,
|
| 1910 |
+
"ppl": 1.00847,
|
| 1911 |
+
"step": 136,
|
| 1912 |
+
"tokens/total": 4342192,
|
| 1913 |
+
"tokens/train_per_sec_per_gpu": 26.23,
|
| 1914 |
+
"tokens/trainable": 62253
|
| 1915 |
+
},
|
| 1916 |
+
{
|
| 1917 |
+
"epoch": 0.53515625,
|
| 1918 |
+
"grad_norm": 0.5692176222801208,
|
| 1919 |
+
"learning_rate": 8.894817284917364e-05,
|
| 1920 |
+
"loss": 0.017321188002824783,
|
| 1921 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 1922 |
+
"memory/max_active (GiB)": 36.44,
|
| 1923 |
+
"memory/max_allocated (GiB)": 36.44,
|
| 1924 |
+
"ppl": 1.01747,
|
| 1925 |
+
"step": 137,
|
| 1926 |
+
"tokens/total": 4374096,
|
| 1927 |
+
"tokens/train_per_sec_per_gpu": 26.38,
|
| 1928 |
+
"tokens/trainable": 62707
|
| 1929 |
+
},
|
| 1930 |
+
{
|
| 1931 |
+
"epoch": 0.5390625,
|
| 1932 |
+
"grad_norm": 0.12828375399112701,
|
| 1933 |
+
"learning_rate": 8.875691779131569e-05,
|
| 1934 |
+
"loss": 0.0007754197577014565,
|
| 1935 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 1936 |
+
"memory/max_active (GiB)": 36.53,
|
| 1937 |
+
"memory/max_allocated (GiB)": 36.53,
|
| 1938 |
+
"ppl": 1.00078,
|
| 1939 |
+
"step": 138,
|
| 1940 |
+
"tokens/total": 4406272,
|
| 1941 |
+
"tokens/train_per_sec_per_gpu": 24.22,
|
| 1942 |
+
"tokens/trainable": 63145
|
| 1943 |
+
},
|
| 1944 |
+
{
|
| 1945 |
+
"epoch": 0.54296875,
|
| 1946 |
+
"grad_norm": 0.3188190162181854,
|
| 1947 |
+
"learning_rate": 8.856425797031829e-05,
|
| 1948 |
+
"loss": 0.006707335356622934,
|
| 1949 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 1950 |
+
"memory/max_active (GiB)": 36.4,
|
| 1951 |
+
"memory/max_allocated (GiB)": 36.4,
|
| 1952 |
+
"ppl": 1.00673,
|
| 1953 |
+
"step": 139,
|
| 1954 |
+
"tokens/total": 4438112,
|
| 1955 |
+
"tokens/train_per_sec_per_gpu": 28.55,
|
| 1956 |
+
"tokens/trainable": 63587
|
| 1957 |
+
},
|
| 1958 |
+
{
|
| 1959 |
+
"epoch": 0.546875,
|
| 1960 |
+
"grad_norm": 0.6216707229614258,
|
| 1961 |
+
"learning_rate": 8.837020140354295e-05,
|
| 1962 |
+
"loss": 0.007024695165455341,
|
| 1963 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 1964 |
+
"memory/max_active (GiB)": 36.47,
|
| 1965 |
+
"memory/max_allocated (GiB)": 36.47,
|
| 1966 |
+
"ppl": 1.00705,
|
| 1967 |
+
"step": 140,
|
| 1968 |
+
"tokens/total": 4470128,
|
| 1969 |
+
"tokens/train_per_sec_per_gpu": 30.64,
|
| 1970 |
+
"tokens/trainable": 64052
|
| 1971 |
+
},
|
| 1972 |
+
{
|
| 1973 |
+
"epoch": 0.55078125,
|
| 1974 |
+
"grad_norm": 0.1480305939912796,
|
| 1975 |
+
"learning_rate": 8.817475616647554e-05,
|
| 1976 |
+
"loss": 0.00229115248657763,
|
| 1977 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 1978 |
+
"memory/max_active (GiB)": 36.42,
|
| 1979 |
+
"memory/max_allocated (GiB)": 36.42,
|
| 1980 |
+
"ppl": 1.00229,
|
| 1981 |
+
"step": 141,
|
| 1982 |
+
"tokens/total": 4502096,
|
| 1983 |
+
"tokens/train_per_sec_per_gpu": 28.71,
|
| 1984 |
+
"tokens/trainable": 64526
|
| 1985 |
+
},
|
| 1986 |
+
{
|
| 1987 |
+
"epoch": 0.5546875,
|
| 1988 |
+
"grad_norm": 0.22254763543605804,
|
| 1989 |
+
"learning_rate": 8.797793039239017e-05,
|
| 1990 |
+
"loss": 0.0029198499396443367,
|
| 1991 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 1992 |
+
"memory/max_active (GiB)": 36.67,
|
| 1993 |
+
"memory/max_allocated (GiB)": 36.67,
|
| 1994 |
+
"ppl": 1.00292,
|
| 1995 |
+
"step": 142,
|
| 1996 |
+
"tokens/total": 4534496,
|
| 1997 |
+
"tokens/train_per_sec_per_gpu": 29.08,
|
| 1998 |
+
"tokens/trainable": 64983
|
| 1999 |
+
},
|
| 2000 |
+
{
|
| 2001 |
+
"epoch": 0.55859375,
|
| 2002 |
+
"grad_norm": 0.6901941895484924,
|
| 2003 |
+
"learning_rate": 8.777973227201069e-05,
|
| 2004 |
+
"loss": 0.013051149435341358,
|
| 2005 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 2006 |
+
"memory/max_active (GiB)": 36.59,
|
| 2007 |
+
"memory/max_allocated (GiB)": 36.59,
|
| 2008 |
+
"ppl": 1.01314,
|
| 2009 |
+
"step": 143,
|
| 2010 |
+
"tokens/total": 4566720,
|
| 2011 |
+
"tokens/train_per_sec_per_gpu": 31.56,
|
| 2012 |
+
"tokens/trainable": 65492
|
| 2013 |
+
},
|
| 2014 |
+
{
|
| 2015 |
+
"epoch": 0.5625,
|
| 2016 |
+
"grad_norm": 0.9545458555221558,
|
| 2017 |
+
"learning_rate": 8.758017005316988e-05,
|
| 2018 |
+
"loss": 0.02235381305217743,
|
| 2019 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 2020 |
+
"memory/max_active (GiB)": 36.57,
|
| 2021 |
+
"memory/max_allocated (GiB)": 36.57,
|
| 2022 |
+
"ppl": 1.02261,
|
| 2023 |
+
"step": 144,
|
| 2024 |
+
"tokens/total": 4598880,
|
| 2025 |
+
"tokens/train_per_sec_per_gpu": 29.59,
|
| 2026 |
+
"tokens/trainable": 65925
|
| 2027 |
+
},
|
| 2028 |
+
{
|
| 2029 |
+
"epoch": 0.56640625,
|
| 2030 |
+
"grad_norm": 0.5515892505645752,
|
| 2031 |
+
"learning_rate": 8.737925204046629e-05,
|
| 2032 |
+
"loss": 0.02038375660777092,
|
| 2033 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 2034 |
+
"memory/max_active (GiB)": 36.36,
|
| 2035 |
+
"memory/max_allocated (GiB)": 36.36,
|
| 2036 |
+
"ppl": 1.02059,
|
| 2037 |
+
"step": 145,
|
| 2038 |
+
"tokens/total": 4630864,
|
| 2039 |
+
"tokens/train_per_sec_per_gpu": 26.3,
|
| 2040 |
+
"tokens/trainable": 66383
|
| 2041 |
+
},
|
| 2042 |
+
{
|
| 2043 |
+
"epoch": 0.5703125,
|
| 2044 |
+
"grad_norm": 0.3512430191040039,
|
| 2045 |
+
"learning_rate": 8.717698659491851e-05,
|
| 2046 |
+
"loss": 0.008233271539211273,
|
| 2047 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 2048 |
+
"memory/max_active (GiB)": 36.59,
|
| 2049 |
+
"memory/max_allocated (GiB)": 36.59,
|
| 2050 |
+
"ppl": 1.00827,
|
| 2051 |
+
"step": 146,
|
| 2052 |
+
"tokens/total": 4662864,
|
| 2053 |
+
"tokens/train_per_sec_per_gpu": 26.23,
|
| 2054 |
+
"tokens/trainable": 66840
|
| 2055 |
+
},
|
| 2056 |
+
{
|
| 2057 |
+
"epoch": 0.57421875,
|
| 2058 |
+
"grad_norm": 0.6830361485481262,
|
| 2059 |
+
"learning_rate": 8.697338213361735e-05,
|
| 2060 |
+
"loss": 0.013419180177152157,
|
| 2061 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 2062 |
+
"memory/max_active (GiB)": 36.52,
|
| 2063 |
+
"memory/max_allocated (GiB)": 36.52,
|
| 2064 |
+
"ppl": 1.01351,
|
| 2065 |
+
"step": 147,
|
| 2066 |
+
"tokens/total": 4694912,
|
| 2067 |
+
"tokens/train_per_sec_per_gpu": 26.34,
|
| 2068 |
+
"tokens/trainable": 67297
|
| 2069 |
+
},
|
| 2070 |
+
{
|
| 2071 |
+
"epoch": 0.578125,
|
| 2072 |
+
"grad_norm": 0.2117031067609787,
|
| 2073 |
+
"learning_rate": 8.676844712937552e-05,
|
| 2074 |
+
"loss": 0.004134457092732191,
|
| 2075 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 2076 |
+
"memory/max_active (GiB)": 36.53,
|
| 2077 |
+
"memory/max_allocated (GiB)": 36.53,
|
| 2078 |
+
"ppl": 1.00414,
|
| 2079 |
+
"step": 148,
|
| 2080 |
+
"tokens/total": 4727120,
|
| 2081 |
+
"tokens/train_per_sec_per_gpu": 31.07,
|
| 2082 |
+
"tokens/trainable": 67769
|
| 2083 |
+
},
|
| 2084 |
+
{
|
| 2085 |
+
"epoch": 0.58203125,
|
| 2086 |
+
"grad_norm": 0.378053218126297,
|
| 2087 |
+
"learning_rate": 8.656219011037509e-05,
|
| 2088 |
+
"loss": 0.009747720323503017,
|
| 2089 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 2090 |
+
"memory/max_active (GiB)": 36.53,
|
| 2091 |
+
"memory/max_allocated (GiB)": 36.53,
|
| 2092 |
+
"ppl": 1.0098,
|
| 2093 |
+
"step": 149,
|
| 2094 |
+
"tokens/total": 4759168,
|
| 2095 |
+
"tokens/train_per_sec_per_gpu": 27.25,
|
| 2096 |
+
"tokens/trainable": 68257
|
| 2097 |
+
},
|
| 2098 |
+
{
|
| 2099 |
+
"epoch": 0.5859375,
|
| 2100 |
+
"grad_norm": 0.21076741814613342,
|
| 2101 |
+
"learning_rate": 8.63546196598125e-05,
|
| 2102 |
+
"loss": 0.005035653710365295,
|
| 2103 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 2104 |
+
"memory/max_active (GiB)": 36.39,
|
| 2105 |
+
"memory/max_allocated (GiB)": 36.39,
|
| 2106 |
+
"ppl": 1.00505,
|
| 2107 |
+
"step": 150,
|
| 2108 |
+
"tokens/total": 4791008,
|
| 2109 |
+
"tokens/train_per_sec_per_gpu": 29.48,
|
| 2110 |
+
"tokens/trainable": 68706
|
| 2111 |
+
},
|
| 2112 |
+
{
|
| 2113 |
+
"epoch": 0.58984375,
|
| 2114 |
+
"grad_norm": 0.25075697898864746,
|
| 2115 |
+
"learning_rate": 8.614574441554145e-05,
|
| 2116 |
+
"loss": 0.006027051247656345,
|
| 2117 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 2118 |
+
"memory/max_active (GiB)": 36.42,
|
| 2119 |
+
"memory/max_allocated (GiB)": 36.42,
|
| 2120 |
+
"ppl": 1.00605,
|
| 2121 |
+
"step": 151,
|
| 2122 |
+
"tokens/total": 4822912,
|
| 2123 |
+
"tokens/train_per_sec_per_gpu": 27.95,
|
| 2124 |
+
"tokens/trainable": 69131
|
| 2125 |
+
},
|
| 2126 |
+
{
|
| 2127 |
+
"epoch": 0.59375,
|
| 2128 |
+
"grad_norm": 0.5774204730987549,
|
| 2129 |
+
"learning_rate": 8.593557306971349e-05,
|
| 2130 |
+
"loss": 0.018617186695337296,
|
| 2131 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 2132 |
+
"memory/max_active (GiB)": 36.51,
|
| 2133 |
+
"memory/max_allocated (GiB)": 36.51,
|
| 2134 |
+
"ppl": 1.01879,
|
| 2135 |
+
"step": 152,
|
| 2136 |
+
"tokens/total": 4854816,
|
| 2137 |
+
"tokens/train_per_sec_per_gpu": 26.38,
|
| 2138 |
+
"tokens/trainable": 69586
|
| 2139 |
+
},
|
| 2140 |
+
{
|
| 2141 |
+
"epoch": 0.59765625,
|
| 2142 |
+
"grad_norm": 0.1364293098449707,
|
| 2143 |
+
"learning_rate": 8.572411436841618e-05,
|
| 2144 |
+
"loss": 0.002049289643764496,
|
| 2145 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 2146 |
+
"memory/max_active (GiB)": 36.4,
|
| 2147 |
+
"memory/max_allocated (GiB)": 36.4,
|
| 2148 |
+
"ppl": 1.00205,
|
| 2149 |
+
"step": 153,
|
| 2150 |
+
"tokens/total": 4886656,
|
| 2151 |
+
"tokens/train_per_sec_per_gpu": 27.55,
|
| 2152 |
+
"tokens/trainable": 70061
|
| 2153 |
+
},
|
| 2154 |
+
{
|
| 2155 |
+
"epoch": 0.6015625,
|
| 2156 |
+
"grad_norm": 0.25387004017829895,
|
| 2157 |
+
"learning_rate": 8.551137711130922e-05,
|
| 2158 |
+
"loss": 0.0044304742477834225,
|
| 2159 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 2160 |
+
"memory/max_active (GiB)": 36.45,
|
| 2161 |
+
"memory/max_allocated (GiB)": 36.45,
|
| 2162 |
+
"ppl": 1.00444,
|
| 2163 |
+
"step": 154,
|
| 2164 |
+
"tokens/total": 4918768,
|
| 2165 |
+
"tokens/train_per_sec_per_gpu": 23.26,
|
| 2166 |
+
"tokens/trainable": 70467
|
| 2167 |
+
},
|
| 2168 |
+
{
|
| 2169 |
+
"epoch": 0.60546875,
|
| 2170 |
+
"grad_norm": 0.3047125041484833,
|
| 2171 |
+
"learning_rate": 8.529737015125824e-05,
|
| 2172 |
+
"loss": 0.0043389927595853806,
|
| 2173 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 2174 |
+
"memory/max_active (GiB)": 36.51,
|
| 2175 |
+
"memory/max_allocated (GiB)": 36.51,
|
| 2176 |
+
"ppl": 1.00435,
|
| 2177 |
+
"step": 155,
|
| 2178 |
+
"tokens/total": 4951008,
|
| 2179 |
+
"tokens/train_per_sec_per_gpu": 27.53,
|
| 2180 |
+
"tokens/trainable": 70933
|
| 2181 |
+
},
|
| 2182 |
+
{
|
| 2183 |
+
"epoch": 0.609375,
|
| 2184 |
+
"grad_norm": 0.1442601978778839,
|
| 2185 |
+
"learning_rate": 8.508210239396639e-05,
|
| 2186 |
+
"loss": 0.0031973645091056824,
|
| 2187 |
+
"memory/device_reserved (GiB)": 39.12,
|
| 2188 |
+
"memory/max_active (GiB)": 36.59,
|
| 2189 |
+
"memory/max_allocated (GiB)": 36.59,
|
| 2190 |
+
"ppl": 1.0032,
|
| 2191 |
+
"step": 156,
|
| 2192 |
+
"tokens/total": 4982976,
|
| 2193 |
+
"tokens/train_per_sec_per_gpu": 28.86,
|
| 2194 |
+
"tokens/trainable": 71382
|
| 2195 |
+
},
|
| 2196 |
+
{
|
| 2197 |
+
"epoch": 0.61328125,
|
| 2198 |
+
"grad_norm": 0.2608455717563629,
|
| 2199 |
+
"learning_rate": 8.486558279760375e-05,
|
| 2200 |
+
"loss": 0.0032951058819890022,
|
| 2201 |
+
"memory/device_reserved (GiB)": 39.12,
|
| 2202 |
+
"memory/max_active (GiB)": 36.51,
|
| 2203 |
+
"memory/max_allocated (GiB)": 36.51,
|
| 2204 |
+
"ppl": 1.0033,
|
| 2205 |
+
"step": 157,
|
| 2206 |
+
"tokens/total": 5014640,
|
| 2207 |
+
"tokens/train_per_sec_per_gpu": 25.66,
|
| 2208 |
+
"tokens/trainable": 71808
|
| 2209 |
+
},
|
| 2210 |
+
{
|
| 2211 |
+
"epoch": 0.6171875,
|
| 2212 |
+
"grad_norm": 0.637295663356781,
|
| 2213 |
+
"learning_rate": 8.464782037243449e-05,
|
| 2214 |
+
"loss": 0.01436957623809576,
|
| 2215 |
+
"memory/device_reserved (GiB)": 39.12,
|
| 2216 |
+
"memory/max_active (GiB)": 36.35,
|
| 2217 |
+
"memory/max_allocated (GiB)": 36.35,
|
| 2218 |
+
"ppl": 1.01447,
|
| 2219 |
+
"step": 158,
|
| 2220 |
+
"tokens/total": 5046672,
|
| 2221 |
+
"tokens/train_per_sec_per_gpu": 27.58,
|
| 2222 |
+
"tokens/trainable": 72249
|
| 2223 |
+
},
|
| 2224 |
+
{
|
| 2225 |
+
"epoch": 0.62109375,
|
| 2226 |
+
"grad_norm": 0.9834056496620178,
|
| 2227 |
+
"learning_rate": 8.442882418044202e-05,
|
| 2228 |
+
"loss": 0.02375311404466629,
|
| 2229 |
+
"memory/device_reserved (GiB)": 39.12,
|
| 2230 |
+
"memory/max_active (GiB)": 36.39,
|
| 2231 |
+
"memory/max_allocated (GiB)": 36.39,
|
| 2232 |
+
"ppl": 1.02404,
|
| 2233 |
+
"step": 159,
|
| 2234 |
+
"tokens/total": 5078528,
|
| 2235 |
+
"tokens/train_per_sec_per_gpu": 29.28,
|
| 2236 |
+
"tokens/trainable": 72726
|
| 2237 |
+
},
|
| 2238 |
+
{
|
| 2239 |
+
"epoch": 0.625,
|
| 2240 |
+
"grad_norm": 0.35432615876197815,
|
| 2241 |
+
"learning_rate": 8.420860333495179e-05,
|
| 2242 |
+
"loss": 0.006119017023593187,
|
| 2243 |
+
"memory/device_reserved (GiB)": 39.12,
|
| 2244 |
+
"memory/max_active (GiB)": 36.62,
|
| 2245 |
+
"memory/max_allocated (GiB)": 36.62,
|
| 2246 |
+
"ppl": 1.00614,
|
| 2247 |
+
"step": 160,
|
| 2248 |
+
"tokens/total": 5110704,
|
| 2249 |
+
"tokens/train_per_sec_per_gpu": 27.12,
|
| 2250 |
+
"tokens/trainable": 73148
|
| 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.468933461258358e+17,
|
| 2271 |
+
"train_batch_size": 16,
|
| 2272 |
+
"trial_name": null,
|
| 2273 |
+
"trial_params": null
|
| 2274 |
+
}
|
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-160/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:92b1065d4abbeacb5ed4bced699965f9cfab8427a7efb6f6541a63653fc57634
|
| 3 |
+
size 8273
|
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-192/README.md
ADDED
|
@@ -0,0 +1,208 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: /workspace/deconf_wave_deconf_control/parent
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- axolotl
|
| 7 |
+
- base_model:adapter:/workspace/deconf_wave_deconf_control/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
|
deconfound_sdf_v1/aft_control/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/deconf_wave_deconf_control/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 |
+
"gate_proj",
|
| 34 |
+
"v_proj",
|
| 35 |
+
"k_proj",
|
| 36 |
+
"up_proj",
|
| 37 |
+
"q_proj",
|
| 38 |
+
"o_proj",
|
| 39 |
+
"down_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 |
+
}
|
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-192/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0549effc2939bd203244d8227b20fe1e0f34a3555fde11b86136c07eb06e5738
|
| 3 |
+
size 547777976
|
deconfound_sdf_v1/aft_control/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 -%}
|
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-192/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5b484083c9b1fa3b20d611b072130a948b97aae1b5d9c02d6fb9041ea03337b0
|
| 3 |
+
size 1048106435
|
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-192/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5972beeed351537138e229200527c4e9f2e9808b01529e746b926011cc01d564
|
| 3 |
+
size 14645
|
deconfound_sdf_v1/aft_control/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
|
deconfound_sdf_v1/aft_control/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
|
deconfound_sdf_v1/aft_control/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 |
+
}
|
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-192/tokens_state.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"total": 6127488, "trainable": 87747}
|
deconfound_sdf_v1/aft_control/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.2140090465545654,
|
| 15 |
+
"learning_rate": 0.0,
|
| 16 |
+
"loss": 0.16441112756729126,
|
| 17 |
+
"memory/device_reserved (GiB)": 38.08,
|
| 18 |
+
"memory/max_active (GiB)": 35.64,
|
| 19 |
+
"memory/max_allocated (GiB)": 35.64,
|
| 20 |
+
"ppl": 1.1787,
|
| 21 |
+
"step": 1,
|
| 22 |
+
"tokens/total": 32160,
|
| 23 |
+
"tokens/train_per_sec_per_gpu": 21.28,
|
| 24 |
+
"tokens/trainable": 470
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"epoch": 0.0078125,
|
| 28 |
+
"grad_norm": 2.92620849609375,
|
| 29 |
+
"learning_rate": 4.000000000000001e-06,
|
| 30 |
+
"loss": 0.15774038434028625,
|
| 31 |
+
"memory/device_reserved (GiB)": 38.78,
|
| 32 |
+
"memory/max_active (GiB)": 36.52,
|
| 33 |
+
"memory/max_allocated (GiB)": 36.52,
|
| 34 |
+
"ppl": 1.17086,
|
| 35 |
+
"step": 2,
|
| 36 |
+
"tokens/total": 64192,
|
| 37 |
+
"tokens/train_per_sec_per_gpu": 29.27,
|
| 38 |
+
"tokens/trainable": 922
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"epoch": 0.01171875,
|
| 42 |
+
"grad_norm": 1.135961890220642,
|
| 43 |
+
"learning_rate": 8.000000000000001e-06,
|
| 44 |
+
"loss": 0.1664382815361023,
|
| 45 |
+
"memory/device_reserved (GiB)": 38.78,
|
| 46 |
+
"memory/max_active (GiB)": 36.55,
|
| 47 |
+
"memory/max_allocated (GiB)": 36.55,
|
| 48 |
+
"ppl": 1.18109,
|
| 49 |
+
"step": 3,
|
| 50 |
+
"tokens/total": 96224,
|
| 51 |
+
"tokens/train_per_sec_per_gpu": 28.54,
|
| 52 |
+
"tokens/trainable": 1396
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"epoch": 0.015625,
|
| 56 |
+
"grad_norm": 0.880176305770874,
|
| 57 |
+
"learning_rate": 1.2e-05,
|
| 58 |
+
"loss": 0.15334013104438782,
|
| 59 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 60 |
+
"memory/max_active (GiB)": 36.55,
|
| 61 |
+
"memory/max_allocated (GiB)": 36.55,
|
| 62 |
+
"ppl": 1.16572,
|
| 63 |
+
"step": 4,
|
| 64 |
+
"tokens/total": 128336,
|
| 65 |
+
"tokens/train_per_sec_per_gpu": 31.73,
|
| 66 |
+
"tokens/trainable": 1850
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"epoch": 0.01953125,
|
| 70 |
+
"grad_norm": 1.1433289051055908,
|
| 71 |
+
"learning_rate": 1.6000000000000003e-05,
|
| 72 |
+
"loss": 0.16352537274360657,
|
| 73 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 74 |
+
"memory/max_active (GiB)": 36.64,
|
| 75 |
+
"memory/max_allocated (GiB)": 36.64,
|
| 76 |
+
"ppl": 1.17766,
|
| 77 |
+
"step": 5,
|
| 78 |
+
"tokens/total": 160784,
|
| 79 |
+
"tokens/train_per_sec_per_gpu": 29.45,
|
| 80 |
+
"tokens/trainable": 2302
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"epoch": 0.0234375,
|
| 84 |
+
"grad_norm": 0.9728212952613831,
|
| 85 |
+
"learning_rate": 2e-05,
|
| 86 |
+
"loss": 0.15144473314285278,
|
| 87 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 88 |
+
"memory/max_active (GiB)": 36.4,
|
| 89 |
+
"memory/max_allocated (GiB)": 36.4,
|
| 90 |
+
"ppl": 1.16351,
|
| 91 |
+
"step": 6,
|
| 92 |
+
"tokens/total": 192624,
|
| 93 |
+
"tokens/train_per_sec_per_gpu": 26.46,
|
| 94 |
+
"tokens/trainable": 2742
|
| 95 |
+
},
|
| 96 |
+
{
|
| 97 |
+
"epoch": 0.02734375,
|
| 98 |
+
"grad_norm": 1.7796363830566406,
|
| 99 |
+
"learning_rate": 2.4e-05,
|
| 100 |
+
"loss": 0.13553467392921448,
|
| 101 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 102 |
+
"memory/max_active (GiB)": 36.48,
|
| 103 |
+
"memory/max_allocated (GiB)": 36.48,
|
| 104 |
+
"ppl": 1.14515,
|
| 105 |
+
"step": 7,
|
| 106 |
+
"tokens/total": 224608,
|
| 107 |
+
"tokens/train_per_sec_per_gpu": 30.52,
|
| 108 |
+
"tokens/trainable": 3208
|
| 109 |
+
},
|
| 110 |
+
{
|
| 111 |
+
"epoch": 0.03125,
|
| 112 |
+
"grad_norm": 1.2444697618484497,
|
| 113 |
+
"learning_rate": 2.8000000000000003e-05,
|
| 114 |
+
"loss": 0.1077304258942604,
|
| 115 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 116 |
+
"memory/max_active (GiB)": 36.51,
|
| 117 |
+
"memory/max_allocated (GiB)": 36.51,
|
| 118 |
+
"ppl": 1.11375,
|
| 119 |
+
"step": 8,
|
| 120 |
+
"tokens/total": 256592,
|
| 121 |
+
"tokens/train_per_sec_per_gpu": 26.46,
|
| 122 |
+
"tokens/trainable": 3655
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"epoch": 0.03515625,
|
| 126 |
+
"grad_norm": 2.7339375019073486,
|
| 127 |
+
"learning_rate": 3.2000000000000005e-05,
|
| 128 |
+
"loss": 0.08772765100002289,
|
| 129 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 130 |
+
"memory/max_active (GiB)": 36.45,
|
| 131 |
+
"memory/max_allocated (GiB)": 36.45,
|
| 132 |
+
"ppl": 1.09169,
|
| 133 |
+
"step": 9,
|
| 134 |
+
"tokens/total": 286400,
|
| 135 |
+
"tokens/train_per_sec_per_gpu": 29.82,
|
| 136 |
+
"tokens/trainable": 4091
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 0.0390625,
|
| 140 |
+
"grad_norm": 4.109770774841309,
|
| 141 |
+
"learning_rate": 3.6e-05,
|
| 142 |
+
"loss": 0.130940243601799,
|
| 143 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 144 |
+
"memory/max_active (GiB)": 36.49,
|
| 145 |
+
"memory/max_allocated (GiB)": 36.49,
|
| 146 |
+
"ppl": 1.1399,
|
| 147 |
+
"step": 10,
|
| 148 |
+
"tokens/total": 318352,
|
| 149 |
+
"tokens/train_per_sec_per_gpu": 29.13,
|
| 150 |
+
"tokens/trainable": 4553
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"epoch": 0.04296875,
|
| 154 |
+
"grad_norm": 2.3768608570098877,
|
| 155 |
+
"learning_rate": 4e-05,
|
| 156 |
+
"loss": 0.10059958696365356,
|
| 157 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 158 |
+
"memory/max_active (GiB)": 36.42,
|
| 159 |
+
"memory/max_allocated (GiB)": 36.42,
|
| 160 |
+
"ppl": 1.10583,
|
| 161 |
+
"step": 11,
|
| 162 |
+
"tokens/total": 350336,
|
| 163 |
+
"tokens/train_per_sec_per_gpu": 27.47,
|
| 164 |
+
"tokens/trainable": 4992
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"epoch": 0.046875,
|
| 168 |
+
"grad_norm": 3.281402826309204,
|
| 169 |
+
"learning_rate": 4.4000000000000006e-05,
|
| 170 |
+
"loss": 0.12574875354766846,
|
| 171 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 172 |
+
"memory/max_active (GiB)": 36.51,
|
| 173 |
+
"memory/max_allocated (GiB)": 36.51,
|
| 174 |
+
"ppl": 1.134,
|
| 175 |
+
"step": 12,
|
| 176 |
+
"tokens/total": 382448,
|
| 177 |
+
"tokens/train_per_sec_per_gpu": 31.9,
|
| 178 |
+
"tokens/trainable": 5494
|
| 179 |
+
},
|
| 180 |
+
{
|
| 181 |
+
"epoch": 0.05078125,
|
| 182 |
+
"grad_norm": 1.7738980054855347,
|
| 183 |
+
"learning_rate": 4.8e-05,
|
| 184 |
+
"loss": 0.033296722918748856,
|
| 185 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 186 |
+
"memory/max_active (GiB)": 36.55,
|
| 187 |
+
"memory/max_allocated (GiB)": 36.55,
|
| 188 |
+
"ppl": 1.03386,
|
| 189 |
+
"step": 13,
|
| 190 |
+
"tokens/total": 414352,
|
| 191 |
+
"tokens/train_per_sec_per_gpu": 27.87,
|
| 192 |
+
"tokens/trainable": 5933
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"epoch": 0.0546875,
|
| 196 |
+
"grad_norm": 2.64290189743042,
|
| 197 |
+
"learning_rate": 5.2000000000000004e-05,
|
| 198 |
+
"loss": 0.06366822123527527,
|
| 199 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 200 |
+
"memory/max_active (GiB)": 36.41,
|
| 201 |
+
"memory/max_allocated (GiB)": 36.41,
|
| 202 |
+
"ppl": 1.06574,
|
| 203 |
+
"step": 14,
|
| 204 |
+
"tokens/total": 446400,
|
| 205 |
+
"tokens/train_per_sec_per_gpu": 24.8,
|
| 206 |
+
"tokens/trainable": 6369
|
| 207 |
+
},
|
| 208 |
+
{
|
| 209 |
+
"epoch": 0.05859375,
|
| 210 |
+
"grad_norm": 3.3691928386688232,
|
| 211 |
+
"learning_rate": 5.6000000000000006e-05,
|
| 212 |
+
"loss": 0.08168518543243408,
|
| 213 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 214 |
+
"memory/max_active (GiB)": 36.57,
|
| 215 |
+
"memory/max_allocated (GiB)": 36.57,
|
| 216 |
+
"ppl": 1.08511,
|
| 217 |
+
"step": 15,
|
| 218 |
+
"tokens/total": 478688,
|
| 219 |
+
"tokens/train_per_sec_per_gpu": 27.3,
|
| 220 |
+
"tokens/trainable": 6820
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"epoch": 0.0625,
|
| 224 |
+
"grad_norm": 2.4356393814086914,
|
| 225 |
+
"learning_rate": 6e-05,
|
| 226 |
+
"loss": 0.09031196683645248,
|
| 227 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 228 |
+
"memory/max_active (GiB)": 36.46,
|
| 229 |
+
"memory/max_allocated (GiB)": 36.46,
|
| 230 |
+
"ppl": 1.09452,
|
| 231 |
+
"step": 16,
|
| 232 |
+
"tokens/total": 510512,
|
| 233 |
+
"tokens/train_per_sec_per_gpu": 25.7,
|
| 234 |
+
"tokens/trainable": 7258
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"epoch": 0.06640625,
|
| 238 |
+
"grad_norm": 1.55682373046875,
|
| 239 |
+
"learning_rate": 6.400000000000001e-05,
|
| 240 |
+
"loss": 0.07496573030948639,
|
| 241 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 242 |
+
"memory/max_active (GiB)": 36.54,
|
| 243 |
+
"memory/max_allocated (GiB)": 36.54,
|
| 244 |
+
"ppl": 1.07785,
|
| 245 |
+
"step": 17,
|
| 246 |
+
"tokens/total": 542736,
|
| 247 |
+
"tokens/train_per_sec_per_gpu": 29.54,
|
| 248 |
+
"tokens/trainable": 7710
|
| 249 |
+
},
|
| 250 |
+
{
|
| 251 |
+
"epoch": 0.0703125,
|
| 252 |
+
"grad_norm": 1.1054646968841553,
|
| 253 |
+
"learning_rate": 6.800000000000001e-05,
|
| 254 |
+
"loss": 0.05218805745244026,
|
| 255 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 256 |
+
"memory/max_active (GiB)": 36.46,
|
| 257 |
+
"memory/max_allocated (GiB)": 36.46,
|
| 258 |
+
"ppl": 1.05357,
|
| 259 |
+
"step": 18,
|
| 260 |
+
"tokens/total": 574832,
|
| 261 |
+
"tokens/train_per_sec_per_gpu": 25.78,
|
| 262 |
+
"tokens/trainable": 8174
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"epoch": 0.07421875,
|
| 266 |
+
"grad_norm": 0.7429099082946777,
|
| 267 |
+
"learning_rate": 7.2e-05,
|
| 268 |
+
"loss": 0.03790827840566635,
|
| 269 |
+
"memory/device_reserved (GiB)": 38.8,
|
| 270 |
+
"memory/max_active (GiB)": 36.46,
|
| 271 |
+
"memory/max_allocated (GiB)": 36.46,
|
| 272 |
+
"ppl": 1.03864,
|
| 273 |
+
"step": 19,
|
| 274 |
+
"tokens/total": 606976,
|
| 275 |
+
"tokens/train_per_sec_per_gpu": 28.62,
|
| 276 |
+
"tokens/trainable": 8617
|
| 277 |
+
},
|
| 278 |
+
{
|
| 279 |
+
"epoch": 0.078125,
|
| 280 |
+
"grad_norm": 2.9508209228515625,
|
| 281 |
+
"learning_rate": 7.6e-05,
|
| 282 |
+
"loss": 0.04993613809347153,
|
| 283 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 284 |
+
"memory/max_active (GiB)": 36.62,
|
| 285 |
+
"memory/max_allocated (GiB)": 36.62,
|
| 286 |
+
"ppl": 1.0512,
|
| 287 |
+
"step": 20,
|
| 288 |
+
"tokens/total": 639200,
|
| 289 |
+
"tokens/train_per_sec_per_gpu": 24.91,
|
| 290 |
+
"tokens/trainable": 9037
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"epoch": 0.08203125,
|
| 294 |
+
"grad_norm": 1.0297844409942627,
|
| 295 |
+
"learning_rate": 8e-05,
|
| 296 |
+
"loss": 0.017908263951539993,
|
| 297 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 298 |
+
"memory/max_active (GiB)": 36.39,
|
| 299 |
+
"memory/max_allocated (GiB)": 36.39,
|
| 300 |
+
"ppl": 1.01807,
|
| 301 |
+
"step": 21,
|
| 302 |
+
"tokens/total": 671072,
|
| 303 |
+
"tokens/train_per_sec_per_gpu": 30.42,
|
| 304 |
+
"tokens/trainable": 9503
|
| 305 |
+
},
|
| 306 |
+
{
|
| 307 |
+
"epoch": 0.0859375,
|
| 308 |
+
"grad_norm": 0.9279879331588745,
|
| 309 |
+
"learning_rate": 8.4e-05,
|
| 310 |
+
"loss": 0.013478193432092667,
|
| 311 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 312 |
+
"memory/max_active (GiB)": 36.52,
|
| 313 |
+
"memory/max_allocated (GiB)": 36.52,
|
| 314 |
+
"ppl": 1.01357,
|
| 315 |
+
"step": 22,
|
| 316 |
+
"tokens/total": 703136,
|
| 317 |
+
"tokens/train_per_sec_per_gpu": 30.74,
|
| 318 |
+
"tokens/trainable": 9972
|
| 319 |
+
},
|
| 320 |
+
{
|
| 321 |
+
"epoch": 0.08984375,
|
| 322 |
+
"grad_norm": 1.526488184928894,
|
| 323 |
+
"learning_rate": 8.800000000000001e-05,
|
| 324 |
+
"loss": 0.017310388386249542,
|
| 325 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 326 |
+
"memory/max_active (GiB)": 36.54,
|
| 327 |
+
"memory/max_allocated (GiB)": 36.54,
|
| 328 |
+
"ppl": 1.01746,
|
| 329 |
+
"step": 23,
|
| 330 |
+
"tokens/total": 735120,
|
| 331 |
+
"tokens/train_per_sec_per_gpu": 31.45,
|
| 332 |
+
"tokens/trainable": 10447
|
| 333 |
+
},
|
| 334 |
+
{
|
| 335 |
+
"epoch": 0.09375,
|
| 336 |
+
"grad_norm": 3.4049417972564697,
|
| 337 |
+
"learning_rate": 9.200000000000001e-05,
|
| 338 |
+
"loss": 0.0353429913520813,
|
| 339 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 340 |
+
"memory/max_active (GiB)": 36.52,
|
| 341 |
+
"memory/max_allocated (GiB)": 36.52,
|
| 342 |
+
"ppl": 1.03597,
|
| 343 |
+
"step": 24,
|
| 344 |
+
"tokens/total": 767040,
|
| 345 |
+
"tokens/train_per_sec_per_gpu": 30.79,
|
| 346 |
+
"tokens/trainable": 10899
|
| 347 |
+
},
|
| 348 |
+
{
|
| 349 |
+
"epoch": 0.09765625,
|
| 350 |
+
"grad_norm": 7.511656761169434,
|
| 351 |
+
"learning_rate": 9.6e-05,
|
| 352 |
+
"loss": 0.1335875540971756,
|
| 353 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 354 |
+
"memory/max_active (GiB)": 36.47,
|
| 355 |
+
"memory/max_allocated (GiB)": 36.47,
|
| 356 |
+
"ppl": 1.14292,
|
| 357 |
+
"step": 25,
|
| 358 |
+
"tokens/total": 798976,
|
| 359 |
+
"tokens/train_per_sec_per_gpu": 27.72,
|
| 360 |
+
"tokens/trainable": 11360
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"epoch": 0.1015625,
|
| 364 |
+
"grad_norm": 1.0069234371185303,
|
| 365 |
+
"learning_rate": 0.0001,
|
| 366 |
+
"loss": 0.04382415860891342,
|
| 367 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 368 |
+
"memory/max_active (GiB)": 36.45,
|
| 369 |
+
"memory/max_allocated (GiB)": 36.45,
|
| 370 |
+
"ppl": 1.0448,
|
| 371 |
+
"step": 26,
|
| 372 |
+
"tokens/total": 830880,
|
| 373 |
+
"tokens/train_per_sec_per_gpu": 24.61,
|
| 374 |
+
"tokens/trainable": 11775
|
| 375 |
+
},
|
| 376 |
+
{
|
| 377 |
+
"epoch": 0.10546875,
|
| 378 |
+
"grad_norm": 7.807938575744629,
|
| 379 |
+
"learning_rate": 9.99990636831587e-05,
|
| 380 |
+
"loss": 0.01210833340883255,
|
| 381 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 382 |
+
"memory/max_active (GiB)": 36.11,
|
| 383 |
+
"memory/max_allocated (GiB)": 36.11,
|
| 384 |
+
"ppl": 1.01218,
|
| 385 |
+
"step": 27,
|
| 386 |
+
"tokens/total": 860960,
|
| 387 |
+
"tokens/train_per_sec_per_gpu": 33.01,
|
| 388 |
+
"tokens/trainable": 12242
|
| 389 |
+
},
|
| 390 |
+
{
|
| 391 |
+
"epoch": 0.109375,
|
| 392 |
+
"grad_norm": 2.23823881149292,
|
| 393 |
+
"learning_rate": 9.999625477159879e-05,
|
| 394 |
+
"loss": 0.0272970050573349,
|
| 395 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 396 |
+
"memory/max_active (GiB)": 36.53,
|
| 397 |
+
"memory/max_allocated (GiB)": 36.53,
|
| 398 |
+
"ppl": 1.02767,
|
| 399 |
+
"step": 28,
|
| 400 |
+
"tokens/total": 892816,
|
| 401 |
+
"tokens/train_per_sec_per_gpu": 27.87,
|
| 402 |
+
"tokens/trainable": 12696
|
| 403 |
+
},
|
| 404 |
+
{
|
| 405 |
+
"epoch": 0.11328125,
|
| 406 |
+
"grad_norm": 1.315584421157837,
|
| 407 |
+
"learning_rate": 9.999157338221051e-05,
|
| 408 |
+
"loss": 0.025516577064990997,
|
| 409 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 410 |
+
"memory/max_active (GiB)": 36.51,
|
| 411 |
+
"memory/max_allocated (GiB)": 36.51,
|
| 412 |
+
"ppl": 1.02584,
|
| 413 |
+
"step": 29,
|
| 414 |
+
"tokens/total": 924736,
|
| 415 |
+
"tokens/train_per_sec_per_gpu": 28.71,
|
| 416 |
+
"tokens/trainable": 13153
|
| 417 |
+
},
|
| 418 |
+
{
|
| 419 |
+
"epoch": 0.1171875,
|
| 420 |
+
"grad_norm": 0.8413651585578918,
|
| 421 |
+
"learning_rate": 9.998501970980562e-05,
|
| 422 |
+
"loss": 0.007838520221412182,
|
| 423 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 424 |
+
"memory/max_active (GiB)": 36.45,
|
| 425 |
+
"memory/max_allocated (GiB)": 36.45,
|
| 426 |
+
"ppl": 1.00787,
|
| 427 |
+
"step": 30,
|
| 428 |
+
"tokens/total": 954592,
|
| 429 |
+
"tokens/train_per_sec_per_gpu": 33.59,
|
| 430 |
+
"tokens/trainable": 13624
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"epoch": 0.12109375,
|
| 434 |
+
"grad_norm": 1.6797157526016235,
|
| 435 |
+
"learning_rate": 9.997659402710915e-05,
|
| 436 |
+
"loss": 0.03002442792057991,
|
| 437 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 438 |
+
"memory/max_active (GiB)": 36.49,
|
| 439 |
+
"memory/max_allocated (GiB)": 36.49,
|
| 440 |
+
"ppl": 1.03048,
|
| 441 |
+
"step": 31,
|
| 442 |
+
"tokens/total": 986592,
|
| 443 |
+
"tokens/train_per_sec_per_gpu": 28.67,
|
| 444 |
+
"tokens/trainable": 14064
|
| 445 |
+
},
|
| 446 |
+
{
|
| 447 |
+
"epoch": 0.125,
|
| 448 |
+
"grad_norm": 1.3320434093475342,
|
| 449 |
+
"learning_rate": 9.996629668474818e-05,
|
| 450 |
+
"loss": 0.03772728145122528,
|
| 451 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 452 |
+
"memory/max_active (GiB)": 36.57,
|
| 453 |
+
"memory/max_allocated (GiB)": 36.57,
|
| 454 |
+
"ppl": 1.03845,
|
| 455 |
+
"step": 32,
|
| 456 |
+
"tokens/total": 1018720,
|
| 457 |
+
"tokens/train_per_sec_per_gpu": 32.5,
|
| 458 |
+
"tokens/trainable": 14565
|
| 459 |
+
},
|
| 460 |
+
{
|
| 461 |
+
"epoch": 0.12890625,
|
| 462 |
+
"grad_norm": 0.6335167288780212,
|
| 463 |
+
"learning_rate": 9.995412811123711e-05,
|
| 464 |
+
"loss": 0.013970119878649712,
|
| 465 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 466 |
+
"memory/max_active (GiB)": 36.41,
|
| 467 |
+
"memory/max_allocated (GiB)": 36.41,
|
| 468 |
+
"ppl": 1.01407,
|
| 469 |
+
"step": 33,
|
| 470 |
+
"tokens/total": 1050624,
|
| 471 |
+
"tokens/train_per_sec_per_gpu": 28.18,
|
| 472 |
+
"tokens/trainable": 15005
|
| 473 |
+
},
|
| 474 |
+
{
|
| 475 |
+
"epoch": 0.1328125,
|
| 476 |
+
"grad_norm": 0.5626921653747559,
|
| 477 |
+
"learning_rate": 9.994008881295999e-05,
|
| 478 |
+
"loss": 0.016654539853334427,
|
| 479 |
+
"memory/device_reserved (GiB)": 37.74,
|
| 480 |
+
"memory/max_active (GiB)": 36.22,
|
| 481 |
+
"memory/max_allocated (GiB)": 36.22,
|
| 482 |
+
"ppl": 1.01679,
|
| 483 |
+
"step": 34,
|
| 484 |
+
"tokens/total": 1082176,
|
| 485 |
+
"tokens/train_per_sec_per_gpu": 26.84,
|
| 486 |
+
"tokens/trainable": 15459
|
| 487 |
+
},
|
| 488 |
+
{
|
| 489 |
+
"epoch": 0.13671875,
|
| 490 |
+
"grad_norm": 0.603219211101532,
|
| 491 |
+
"learning_rate": 9.992417937414932e-05,
|
| 492 |
+
"loss": 0.021408583968877792,
|
| 493 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 494 |
+
"memory/max_active (GiB)": 36.47,
|
| 495 |
+
"memory/max_allocated (GiB)": 36.47,
|
| 496 |
+
"ppl": 1.02164,
|
| 497 |
+
"step": 35,
|
| 498 |
+
"tokens/total": 1113968,
|
| 499 |
+
"tokens/train_per_sec_per_gpu": 31.75,
|
| 500 |
+
"tokens/trainable": 15960
|
| 501 |
+
},
|
| 502 |
+
{
|
| 503 |
+
"epoch": 0.140625,
|
| 504 |
+
"grad_norm": 0.9779674410820007,
|
| 505 |
+
"learning_rate": 9.99064004568618e-05,
|
| 506 |
+
"loss": 0.03277068957686424,
|
| 507 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 508 |
+
"memory/max_active (GiB)": 36.58,
|
| 509 |
+
"memory/max_allocated (GiB)": 36.58,
|
| 510 |
+
"ppl": 1.03331,
|
| 511 |
+
"step": 36,
|
| 512 |
+
"tokens/total": 1145952,
|
| 513 |
+
"tokens/train_per_sec_per_gpu": 28.68,
|
| 514 |
+
"tokens/trainable": 16428
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"epoch": 0.14453125,
|
| 518 |
+
"grad_norm": 0.8855255842208862,
|
| 519 |
+
"learning_rate": 9.988675280095074e-05,
|
| 520 |
+
"loss": 0.017048098146915436,
|
| 521 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 522 |
+
"memory/max_active (GiB)": 36.29,
|
| 523 |
+
"memory/max_allocated (GiB)": 36.29,
|
| 524 |
+
"ppl": 1.01719,
|
| 525 |
+
"step": 37,
|
| 526 |
+
"tokens/total": 1177872,
|
| 527 |
+
"tokens/train_per_sec_per_gpu": 26.33,
|
| 528 |
+
"tokens/trainable": 16884
|
| 529 |
+
},
|
| 530 |
+
{
|
| 531 |
+
"epoch": 0.1484375,
|
| 532 |
+
"grad_norm": 1.9266122579574585,
|
| 533 |
+
"learning_rate": 9.986523722403528e-05,
|
| 534 |
+
"loss": 0.045863546431064606,
|
| 535 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 536 |
+
"memory/max_active (GiB)": 36.45,
|
| 537 |
+
"memory/max_allocated (GiB)": 36.45,
|
| 538 |
+
"ppl": 1.04693,
|
| 539 |
+
"step": 38,
|
| 540 |
+
"tokens/total": 1209776,
|
| 541 |
+
"tokens/train_per_sec_per_gpu": 26.91,
|
| 542 |
+
"tokens/trainable": 17341
|
| 543 |
+
},
|
| 544 |
+
{
|
| 545 |
+
"epoch": 0.15234375,
|
| 546 |
+
"grad_norm": 0.8280895948410034,
|
| 547 |
+
"learning_rate": 9.984185462146642e-05,
|
| 548 |
+
"loss": 0.033055759966373444,
|
| 549 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 550 |
+
"memory/max_active (GiB)": 36.44,
|
| 551 |
+
"memory/max_allocated (GiB)": 36.44,
|
| 552 |
+
"ppl": 1.03361,
|
| 553 |
+
"step": 39,
|
| 554 |
+
"tokens/total": 1241888,
|
| 555 |
+
"tokens/train_per_sec_per_gpu": 28.34,
|
| 556 |
+
"tokens/trainable": 17786
|
| 557 |
+
},
|
| 558 |
+
{
|
| 559 |
+
"epoch": 0.15625,
|
| 560 |
+
"grad_norm": 5.029730319976807,
|
| 561 |
+
"learning_rate": 9.98166059662897e-05,
|
| 562 |
+
"loss": 0.025589998811483383,
|
| 563 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 564 |
+
"memory/max_active (GiB)": 36.48,
|
| 565 |
+
"memory/max_allocated (GiB)": 36.48,
|
| 566 |
+
"ppl": 1.02592,
|
| 567 |
+
"step": 40,
|
| 568 |
+
"tokens/total": 1274032,
|
| 569 |
+
"tokens/train_per_sec_per_gpu": 29.22,
|
| 570 |
+
"tokens/trainable": 18262
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"epoch": 0.16015625,
|
| 574 |
+
"grad_norm": 0.5688032507896423,
|
| 575 |
+
"learning_rate": 9.978949230920472e-05,
|
| 576 |
+
"loss": 0.016095872968435287,
|
| 577 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 578 |
+
"memory/max_active (GiB)": 36.49,
|
| 579 |
+
"memory/max_allocated (GiB)": 36.49,
|
| 580 |
+
"ppl": 1.01623,
|
| 581 |
+
"step": 41,
|
| 582 |
+
"tokens/total": 1306000,
|
| 583 |
+
"tokens/train_per_sec_per_gpu": 27.49,
|
| 584 |
+
"tokens/trainable": 18716
|
| 585 |
+
},
|
| 586 |
+
{
|
| 587 |
+
"epoch": 0.1640625,
|
| 588 |
+
"grad_norm": 0.8217663168907166,
|
| 589 |
+
"learning_rate": 9.976051477852141e-05,
|
| 590 |
+
"loss": 0.026798982173204422,
|
| 591 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 592 |
+
"memory/max_active (GiB)": 36.46,
|
| 593 |
+
"memory/max_allocated (GiB)": 36.46,
|
| 594 |
+
"ppl": 1.02716,
|
| 595 |
+
"step": 42,
|
| 596 |
+
"tokens/total": 1337936,
|
| 597 |
+
"tokens/train_per_sec_per_gpu": 27.51,
|
| 598 |
+
"tokens/trainable": 19157
|
| 599 |
+
},
|
| 600 |
+
{
|
| 601 |
+
"epoch": 0.16796875,
|
| 602 |
+
"grad_norm": 0.7309132218360901,
|
| 603 |
+
"learning_rate": 9.972967458011312e-05,
|
| 604 |
+
"loss": 0.033920761197805405,
|
| 605 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 606 |
+
"memory/max_active (GiB)": 36.45,
|
| 607 |
+
"memory/max_allocated (GiB)": 36.45,
|
| 608 |
+
"ppl": 1.0345,
|
| 609 |
+
"step": 43,
|
| 610 |
+
"tokens/total": 1369904,
|
| 611 |
+
"tokens/train_per_sec_per_gpu": 30.66,
|
| 612 |
+
"tokens/trainable": 19647
|
| 613 |
+
},
|
| 614 |
+
{
|
| 615 |
+
"epoch": 0.171875,
|
| 616 |
+
"grad_norm": 0.8134022355079651,
|
| 617 |
+
"learning_rate": 9.96969729973664e-05,
|
| 618 |
+
"loss": 0.024005085229873657,
|
| 619 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 620 |
+
"memory/max_active (GiB)": 36.49,
|
| 621 |
+
"memory/max_allocated (GiB)": 36.49,
|
| 622 |
+
"ppl": 1.0243,
|
| 623 |
+
"step": 44,
|
| 624 |
+
"tokens/total": 1401984,
|
| 625 |
+
"tokens/train_per_sec_per_gpu": 29.06,
|
| 626 |
+
"tokens/trainable": 20119
|
| 627 |
+
},
|
| 628 |
+
{
|
| 629 |
+
"epoch": 0.17578125,
|
| 630 |
+
"grad_norm": 0.35084816813468933,
|
| 631 |
+
"learning_rate": 9.966241139112754e-05,
|
| 632 |
+
"loss": 0.013319254852831364,
|
| 633 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 634 |
+
"memory/max_active (GiB)": 36.49,
|
| 635 |
+
"memory/max_allocated (GiB)": 36.49,
|
| 636 |
+
"ppl": 1.01341,
|
| 637 |
+
"step": 45,
|
| 638 |
+
"tokens/total": 1434032,
|
| 639 |
+
"tokens/train_per_sec_per_gpu": 27.45,
|
| 640 |
+
"tokens/trainable": 20560
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"epoch": 0.1796875,
|
| 644 |
+
"grad_norm": 0.8701573014259338,
|
| 645 |
+
"learning_rate": 9.96259911996461e-05,
|
| 646 |
+
"loss": 0.01356641948223114,
|
| 647 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 648 |
+
"memory/max_active (GiB)": 36.47,
|
| 649 |
+
"memory/max_allocated (GiB)": 36.47,
|
| 650 |
+
"ppl": 1.01366,
|
| 651 |
+
"step": 46,
|
| 652 |
+
"tokens/total": 1465872,
|
| 653 |
+
"tokens/train_per_sec_per_gpu": 27.35,
|
| 654 |
+
"tokens/trainable": 20992
|
| 655 |
+
},
|
| 656 |
+
{
|
| 657 |
+
"epoch": 0.18359375,
|
| 658 |
+
"grad_norm": 1.4406442642211914,
|
| 659 |
+
"learning_rate": 9.958771393851491e-05,
|
| 660 |
+
"loss": 0.04396980255842209,
|
| 661 |
+
"memory/device_reserved (GiB)": 38.99,
|
| 662 |
+
"memory/max_active (GiB)": 35.86,
|
| 663 |
+
"memory/max_allocated (GiB)": 35.86,
|
| 664 |
+
"ppl": 1.04495,
|
| 665 |
+
"step": 47,
|
| 666 |
+
"tokens/total": 1495440,
|
| 667 |
+
"tokens/train_per_sec_per_gpu": 26.46,
|
| 668 |
+
"tokens/trainable": 21441
|
| 669 |
+
},
|
| 670 |
+
{
|
| 671 |
+
"epoch": 0.1875,
|
| 672 |
+
"grad_norm": 0.4966669976711273,
|
| 673 |
+
"learning_rate": 9.954758120060702e-05,
|
| 674 |
+
"loss": 0.011179964058101177,
|
| 675 |
+
"memory/device_reserved (GiB)": 38.99,
|
| 676 |
+
"memory/max_active (GiB)": 36.61,
|
| 677 |
+
"memory/max_allocated (GiB)": 36.61,
|
| 678 |
+
"ppl": 1.01124,
|
| 679 |
+
"step": 48,
|
| 680 |
+
"tokens/total": 1527776,
|
| 681 |
+
"tokens/train_per_sec_per_gpu": 27.89,
|
| 682 |
+
"tokens/trainable": 21901
|
| 683 |
+
},
|
| 684 |
+
{
|
| 685 |
+
"epoch": 0.19140625,
|
| 686 |
+
"grad_norm": 0.41124436259269714,
|
| 687 |
+
"learning_rate": 9.950559465600948e-05,
|
| 688 |
+
"loss": 0.0063599650748074055,
|
| 689 |
+
"memory/device_reserved (GiB)": 38.99,
|
| 690 |
+
"memory/max_active (GiB)": 36.4,
|
| 691 |
+
"memory/max_allocated (GiB)": 36.4,
|
| 692 |
+
"ppl": 1.00638,
|
| 693 |
+
"step": 49,
|
| 694 |
+
"tokens/total": 1559760,
|
| 695 |
+
"tokens/train_per_sec_per_gpu": 27.73,
|
| 696 |
+
"tokens/trainable": 22341
|
| 697 |
+
},
|
| 698 |
+
{
|
| 699 |
+
"epoch": 0.1953125,
|
| 700 |
+
"grad_norm": 0.829739511013031,
|
| 701 |
+
"learning_rate": 9.946175605195379e-05,
|
| 702 |
+
"loss": 0.015785304829478264,
|
| 703 |
+
"memory/device_reserved (GiB)": 38.99,
|
| 704 |
+
"memory/max_active (GiB)": 36.53,
|
| 705 |
+
"memory/max_allocated (GiB)": 36.53,
|
| 706 |
+
"ppl": 1.01591,
|
| 707 |
+
"step": 50,
|
| 708 |
+
"tokens/total": 1592000,
|
| 709 |
+
"tokens/train_per_sec_per_gpu": 27.39,
|
| 710 |
+
"tokens/trainable": 22833
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"epoch": 0.19921875,
|
| 714 |
+
"grad_norm": 0.5181736946105957,
|
| 715 |
+
"learning_rate": 9.941606721274322e-05,
|
| 716 |
+
"loss": 0.008393109776079655,
|
| 717 |
+
"memory/device_reserved (GiB)": 38.99,
|
| 718 |
+
"memory/max_active (GiB)": 36.44,
|
| 719 |
+
"memory/max_allocated (GiB)": 36.44,
|
| 720 |
+
"ppl": 1.00843,
|
| 721 |
+
"step": 51,
|
| 722 |
+
"tokens/total": 1623920,
|
| 723 |
+
"tokens/train_per_sec_per_gpu": 25.61,
|
| 724 |
+
"tokens/trainable": 23277
|
| 725 |
+
},
|
| 726 |
+
{
|
| 727 |
+
"epoch": 0.203125,
|
| 728 |
+
"grad_norm": 1.5778990983963013,
|
| 729 |
+
"learning_rate": 9.936853003967685e-05,
|
| 730 |
+
"loss": 0.024984844028949738,
|
| 731 |
+
"memory/device_reserved (GiB)": 38.99,
|
| 732 |
+
"memory/max_active (GiB)": 36.47,
|
| 733 |
+
"memory/max_allocated (GiB)": 36.47,
|
| 734 |
+
"ppl": 1.0253,
|
| 735 |
+
"step": 52,
|
| 736 |
+
"tokens/total": 1656032,
|
| 737 |
+
"tokens/train_per_sec_per_gpu": 29.64,
|
| 738 |
+
"tokens/trainable": 23759
|
| 739 |
+
},
|
| 740 |
+
{
|
| 741 |
+
"epoch": 0.20703125,
|
| 742 |
+
"grad_norm": 1.4938714504241943,
|
| 743 |
+
"learning_rate": 9.93191465109705e-05,
|
| 744 |
+
"loss": 0.038523320108652115,
|
| 745 |
+
"memory/device_reserved (GiB)": 38.99,
|
| 746 |
+
"memory/max_active (GiB)": 36.55,
|
| 747 |
+
"memory/max_allocated (GiB)": 36.55,
|
| 748 |
+
"ppl": 1.03927,
|
| 749 |
+
"step": 53,
|
| 750 |
+
"tokens/total": 1688368,
|
| 751 |
+
"tokens/train_per_sec_per_gpu": 27.55,
|
| 752 |
+
"tokens/trainable": 24193
|
| 753 |
+
},
|
| 754 |
+
{
|
| 755 |
+
"epoch": 0.2109375,
|
| 756 |
+
"grad_norm": 2.1427106857299805,
|
| 757 |
+
"learning_rate": 9.926791868167438e-05,
|
| 758 |
+
"loss": 0.06302924454212189,
|
| 759 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 760 |
+
"memory/max_active (GiB)": 36.6,
|
| 761 |
+
"memory/max_allocated (GiB)": 36.6,
|
| 762 |
+
"ppl": 1.06506,
|
| 763 |
+
"step": 54,
|
| 764 |
+
"tokens/total": 1720560,
|
| 765 |
+
"tokens/train_per_sec_per_gpu": 27.71,
|
| 766 |
+
"tokens/trainable": 24619
|
| 767 |
+
},
|
| 768 |
+
{
|
| 769 |
+
"epoch": 0.21484375,
|
| 770 |
+
"grad_norm": 1.8365188837051392,
|
| 771 |
+
"learning_rate": 9.921484868358753e-05,
|
| 772 |
+
"loss": 0.052160464227199554,
|
| 773 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 774 |
+
"memory/max_active (GiB)": 36.42,
|
| 775 |
+
"memory/max_allocated (GiB)": 36.42,
|
| 776 |
+
"ppl": 1.05354,
|
| 777 |
+
"step": 55,
|
| 778 |
+
"tokens/total": 1752464,
|
| 779 |
+
"tokens/train_per_sec_per_gpu": 27.55,
|
| 780 |
+
"tokens/trainable": 25075
|
| 781 |
+
},
|
| 782 |
+
{
|
| 783 |
+
"epoch": 0.21875,
|
| 784 |
+
"grad_norm": 0.7779749631881714,
|
| 785 |
+
"learning_rate": 9.915993872516924e-05,
|
| 786 |
+
"loss": 0.021328264847397804,
|
| 787 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 788 |
+
"memory/max_active (GiB)": 36.38,
|
| 789 |
+
"memory/max_allocated (GiB)": 36.38,
|
| 790 |
+
"ppl": 1.02156,
|
| 791 |
+
"step": 56,
|
| 792 |
+
"tokens/total": 1784336,
|
| 793 |
+
"tokens/train_per_sec_per_gpu": 26.42,
|
| 794 |
+
"tokens/trainable": 25519
|
| 795 |
+
},
|
| 796 |
+
{
|
| 797 |
+
"epoch": 0.22265625,
|
| 798 |
+
"grad_norm": 0.4189571142196655,
|
| 799 |
+
"learning_rate": 9.9103191091447e-05,
|
| 800 |
+
"loss": 0.014279939234256744,
|
| 801 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 802 |
+
"memory/max_active (GiB)": 36.54,
|
| 803 |
+
"memory/max_allocated (GiB)": 36.54,
|
| 804 |
+
"ppl": 1.01438,
|
| 805 |
+
"step": 57,
|
| 806 |
+
"tokens/total": 1816304,
|
| 807 |
+
"tokens/train_per_sec_per_gpu": 27.47,
|
| 808 |
+
"tokens/trainable": 25966
|
| 809 |
+
},
|
| 810 |
+
{
|
| 811 |
+
"epoch": 0.2265625,
|
| 812 |
+
"grad_norm": 0.3834710717201233,
|
| 813 |
+
"learning_rate": 9.904460814392147e-05,
|
| 814 |
+
"loss": 0.01883944310247898,
|
| 815 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 816 |
+
"memory/max_active (GiB)": 36.53,
|
| 817 |
+
"memory/max_allocated (GiB)": 36.53,
|
| 818 |
+
"ppl": 1.01902,
|
| 819 |
+
"step": 58,
|
| 820 |
+
"tokens/total": 1848304,
|
| 821 |
+
"tokens/train_per_sec_per_gpu": 28.08,
|
| 822 |
+
"tokens/trainable": 26423
|
| 823 |
+
},
|
| 824 |
+
{
|
| 825 |
+
"epoch": 0.23046875,
|
| 826 |
+
"grad_norm": 0.7693278789520264,
|
| 827 |
+
"learning_rate": 9.898419232046825e-05,
|
| 828 |
+
"loss": 0.03533369302749634,
|
| 829 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 830 |
+
"memory/max_active (GiB)": 36.58,
|
| 831 |
+
"memory/max_allocated (GiB)": 36.58,
|
| 832 |
+
"ppl": 1.03597,
|
| 833 |
+
"step": 59,
|
| 834 |
+
"tokens/total": 1880640,
|
| 835 |
+
"tokens/train_per_sec_per_gpu": 31.99,
|
| 836 |
+
"tokens/trainable": 26934
|
| 837 |
+
},
|
| 838 |
+
{
|
| 839 |
+
"epoch": 0.234375,
|
| 840 |
+
"grad_norm": 0.4606446325778961,
|
| 841 |
+
"learning_rate": 9.892194613523633e-05,
|
| 842 |
+
"loss": 0.021482212468981743,
|
| 843 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 844 |
+
"memory/max_active (GiB)": 36.47,
|
| 845 |
+
"memory/max_allocated (GiB)": 36.47,
|
| 846 |
+
"ppl": 1.02171,
|
| 847 |
+
"step": 60,
|
| 848 |
+
"tokens/total": 1912592,
|
| 849 |
+
"tokens/train_per_sec_per_gpu": 27.64,
|
| 850 |
+
"tokens/trainable": 27393
|
| 851 |
+
},
|
| 852 |
+
{
|
| 853 |
+
"epoch": 0.23828125,
|
| 854 |
+
"grad_norm": 0.46030017733573914,
|
| 855 |
+
"learning_rate": 9.885787217854357e-05,
|
| 856 |
+
"loss": 0.017044665291905403,
|
| 857 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 858 |
+
"memory/max_active (GiB)": 36.54,
|
| 859 |
+
"memory/max_allocated (GiB)": 36.54,
|
| 860 |
+
"ppl": 1.01719,
|
| 861 |
+
"step": 61,
|
| 862 |
+
"tokens/total": 1944544,
|
| 863 |
+
"tokens/train_per_sec_per_gpu": 27.44,
|
| 864 |
+
"tokens/trainable": 27852
|
| 865 |
+
},
|
| 866 |
+
{
|
| 867 |
+
"epoch": 0.2421875,
|
| 868 |
+
"grad_norm": 0.7918264269828796,
|
| 869 |
+
"learning_rate": 9.879197311676887e-05,
|
| 870 |
+
"loss": 0.016954131424427032,
|
| 871 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 872 |
+
"memory/max_active (GiB)": 36.45,
|
| 873 |
+
"memory/max_allocated (GiB)": 36.45,
|
| 874 |
+
"ppl": 1.0171,
|
| 875 |
+
"step": 62,
|
| 876 |
+
"tokens/total": 1976688,
|
| 877 |
+
"tokens/train_per_sec_per_gpu": 27.32,
|
| 878 |
+
"tokens/trainable": 28292
|
| 879 |
+
},
|
| 880 |
+
{
|
| 881 |
+
"epoch": 0.24609375,
|
| 882 |
+
"grad_norm": 0.4787926971912384,
|
| 883 |
+
"learning_rate": 9.872425169224113e-05,
|
| 884 |
+
"loss": 0.01525965891778469,
|
| 885 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 886 |
+
"memory/max_active (GiB)": 36.59,
|
| 887 |
+
"memory/max_allocated (GiB)": 36.59,
|
| 888 |
+
"ppl": 1.01538,
|
| 889 |
+
"step": 63,
|
| 890 |
+
"tokens/total": 2008928,
|
| 891 |
+
"tokens/train_per_sec_per_gpu": 31.14,
|
| 892 |
+
"tokens/trainable": 28798
|
| 893 |
+
},
|
| 894 |
+
{
|
| 895 |
+
"epoch": 0.25,
|
| 896 |
+
"grad_norm": 0.9033918976783752,
|
| 897 |
+
"learning_rate": 9.865471072312528e-05,
|
| 898 |
+
"loss": 0.02902211993932724,
|
| 899 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 900 |
+
"memory/max_active (GiB)": 36.61,
|
| 901 |
+
"memory/max_allocated (GiB)": 36.61,
|
| 902 |
+
"ppl": 1.02945,
|
| 903 |
+
"step": 64,
|
| 904 |
+
"tokens/total": 2041120,
|
| 905 |
+
"tokens/train_per_sec_per_gpu": 29.83,
|
| 906 |
+
"tokens/trainable": 29283
|
| 907 |
+
},
|
| 908 |
+
{
|
| 909 |
+
"epoch": 0.25390625,
|
| 910 |
+
"grad_norm": 0.39305707812309265,
|
| 911 |
+
"learning_rate": 9.858335310330492e-05,
|
| 912 |
+
"loss": 0.00901167094707489,
|
| 913 |
+
"memory/device_reserved (GiB)": 39.08,
|
| 914 |
+
"memory/max_active (GiB)": 36.32,
|
| 915 |
+
"memory/max_allocated (GiB)": 36.32,
|
| 916 |
+
"ppl": 1.00905,
|
| 917 |
+
"step": 65,
|
| 918 |
+
"tokens/total": 2073024,
|
| 919 |
+
"tokens/train_per_sec_per_gpu": 26.48,
|
| 920 |
+
"tokens/trainable": 29745
|
| 921 |
+
},
|
| 922 |
+
{
|
| 923 |
+
"epoch": 0.2578125,
|
| 924 |
+
"grad_norm": 0.4494345784187317,
|
| 925 |
+
"learning_rate": 9.851018180226185e-05,
|
| 926 |
+
"loss": 0.007426132448017597,
|
| 927 |
+
"memory/device_reserved (GiB)": 37.47,
|
| 928 |
+
"memory/max_active (GiB)": 36.41,
|
| 929 |
+
"memory/max_allocated (GiB)": 36.41,
|
| 930 |
+
"ppl": 1.00745,
|
| 931 |
+
"step": 66,
|
| 932 |
+
"tokens/total": 2105184,
|
| 933 |
+
"tokens/train_per_sec_per_gpu": 26.18,
|
| 934 |
+
"tokens/trainable": 30186
|
| 935 |
+
},
|
| 936 |
+
{
|
| 937 |
+
"epoch": 0.26171875,
|
| 938 |
+
"grad_norm": 0.629649817943573,
|
| 939 |
+
"learning_rate": 9.843519986495259e-05,
|
| 940 |
+
"loss": 0.010609081946313381,
|
| 941 |
+
"memory/device_reserved (GiB)": 38.68,
|
| 942 |
+
"memory/max_active (GiB)": 36.53,
|
| 943 |
+
"memory/max_allocated (GiB)": 36.53,
|
| 944 |
+
"ppl": 1.01067,
|
| 945 |
+
"step": 67,
|
| 946 |
+
"tokens/total": 2137264,
|
| 947 |
+
"tokens/train_per_sec_per_gpu": 27.71,
|
| 948 |
+
"tokens/trainable": 30622
|
| 949 |
+
},
|
| 950 |
+
{
|
| 951 |
+
"epoch": 0.265625,
|
| 952 |
+
"grad_norm": 0.7591162919998169,
|
| 953 |
+
"learning_rate": 9.835841041168162e-05,
|
| 954 |
+
"loss": 0.00926615484058857,
|
| 955 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 956 |
+
"memory/max_active (GiB)": 36.6,
|
| 957 |
+
"memory/max_allocated (GiB)": 36.6,
|
| 958 |
+
"ppl": 1.00931,
|
| 959 |
+
"step": 68,
|
| 960 |
+
"tokens/total": 2169424,
|
| 961 |
+
"tokens/train_per_sec_per_gpu": 29.42,
|
| 962 |
+
"tokens/trainable": 31097
|
| 963 |
+
},
|
| 964 |
+
{
|
| 965 |
+
"epoch": 0.26953125,
|
| 966 |
+
"grad_norm": 0.7288486361503601,
|
| 967 |
+
"learning_rate": 9.82798166379715e-05,
|
| 968 |
+
"loss": 0.024310583248734474,
|
| 969 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 970 |
+
"memory/max_active (GiB)": 36.45,
|
| 971 |
+
"memory/max_allocated (GiB)": 36.45,
|
| 972 |
+
"ppl": 1.02461,
|
| 973 |
+
"step": 69,
|
| 974 |
+
"tokens/total": 2201424,
|
| 975 |
+
"tokens/train_per_sec_per_gpu": 30.54,
|
| 976 |
+
"tokens/trainable": 31595
|
| 977 |
+
},
|
| 978 |
+
{
|
| 979 |
+
"epoch": 0.2734375,
|
| 980 |
+
"grad_norm": 2.134056329727173,
|
| 981 |
+
"learning_rate": 9.819942181443002e-05,
|
| 982 |
+
"loss": 0.008422967046499252,
|
| 983 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 984 |
+
"memory/max_active (GiB)": 36.47,
|
| 985 |
+
"memory/max_allocated (GiB)": 36.47,
|
| 986 |
+
"ppl": 1.00846,
|
| 987 |
+
"step": 70,
|
| 988 |
+
"tokens/total": 2233424,
|
| 989 |
+
"tokens/train_per_sec_per_gpu": 25.81,
|
| 990 |
+
"tokens/trainable": 32036
|
| 991 |
+
},
|
| 992 |
+
{
|
| 993 |
+
"epoch": 0.27734375,
|
| 994 |
+
"grad_norm": 0.6362871527671814,
|
| 995 |
+
"learning_rate": 9.811722928661392e-05,
|
| 996 |
+
"loss": 0.01577262207865715,
|
| 997 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 998 |
+
"memory/max_active (GiB)": 36.54,
|
| 999 |
+
"memory/max_allocated (GiB)": 36.54,
|
| 1000 |
+
"ppl": 1.0159,
|
| 1001 |
+
"step": 71,
|
| 1002 |
+
"tokens/total": 2265328,
|
| 1003 |
+
"tokens/train_per_sec_per_gpu": 23.65,
|
| 1004 |
+
"tokens/trainable": 32428
|
| 1005 |
+
},
|
| 1006 |
+
{
|
| 1007 |
+
"epoch": 0.28125,
|
| 1008 |
+
"grad_norm": 0.6091912388801575,
|
| 1009 |
+
"learning_rate": 9.803324247488975e-05,
|
| 1010 |
+
"loss": 0.0064800274558365345,
|
| 1011 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1012 |
+
"memory/max_active (GiB)": 36.47,
|
| 1013 |
+
"memory/max_allocated (GiB)": 36.47,
|
| 1014 |
+
"ppl": 1.0065,
|
| 1015 |
+
"step": 72,
|
| 1016 |
+
"tokens/total": 2297248,
|
| 1017 |
+
"tokens/train_per_sec_per_gpu": 26.86,
|
| 1018 |
+
"tokens/trainable": 32880
|
| 1019 |
+
},
|
| 1020 |
+
{
|
| 1021 |
+
"epoch": 0.28515625,
|
| 1022 |
+
"grad_norm": 0.14533838629722595,
|
| 1023 |
+
"learning_rate": 9.794746487429161e-05,
|
| 1024 |
+
"loss": 0.001991454279050231,
|
| 1025 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1026 |
+
"memory/max_active (GiB)": 36.41,
|
| 1027 |
+
"memory/max_allocated (GiB)": 36.41,
|
| 1028 |
+
"ppl": 1.00199,
|
| 1029 |
+
"step": 73,
|
| 1030 |
+
"tokens/total": 2329152,
|
| 1031 |
+
"tokens/train_per_sec_per_gpu": 27.97,
|
| 1032 |
+
"tokens/trainable": 33323
|
| 1033 |
+
},
|
| 1034 |
+
{
|
| 1035 |
+
"epoch": 0.2890625,
|
| 1036 |
+
"grad_norm": 0.5400826930999756,
|
| 1037 |
+
"learning_rate": 9.785990005437554e-05,
|
| 1038 |
+
"loss": 0.017662350088357925,
|
| 1039 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1040 |
+
"memory/max_active (GiB)": 36.6,
|
| 1041 |
+
"memory/max_allocated (GiB)": 36.6,
|
| 1042 |
+
"ppl": 1.01782,
|
| 1043 |
+
"step": 74,
|
| 1044 |
+
"tokens/total": 2361344,
|
| 1045 |
+
"tokens/train_per_sec_per_gpu": 29.61,
|
| 1046 |
+
"tokens/trainable": 33792
|
| 1047 |
+
},
|
| 1048 |
+
{
|
| 1049 |
+
"epoch": 0.29296875,
|
| 1050 |
+
"grad_norm": 0.6132436394691467,
|
| 1051 |
+
"learning_rate": 9.777055165907117e-05,
|
| 1052 |
+
"loss": 0.01787603087723255,
|
| 1053 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1054 |
+
"memory/max_active (GiB)": 36.42,
|
| 1055 |
+
"memory/max_allocated (GiB)": 36.42,
|
| 1056 |
+
"ppl": 1.01804,
|
| 1057 |
+
"step": 75,
|
| 1058 |
+
"tokens/total": 2393168,
|
| 1059 |
+
"tokens/train_per_sec_per_gpu": 29.53,
|
| 1060 |
+
"tokens/trainable": 34223
|
| 1061 |
+
},
|
| 1062 |
+
{
|
| 1063 |
+
"epoch": 0.296875,
|
| 1064 |
+
"grad_norm": 0.7287399172782898,
|
| 1065 |
+
"learning_rate": 9.767942340652993e-05,
|
| 1066 |
+
"loss": 0.024754449725151062,
|
| 1067 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1068 |
+
"memory/max_active (GiB)": 36.31,
|
| 1069 |
+
"memory/max_allocated (GiB)": 36.31,
|
| 1070 |
+
"ppl": 1.02506,
|
| 1071 |
+
"step": 76,
|
| 1072 |
+
"tokens/total": 2424880,
|
| 1073 |
+
"tokens/train_per_sec_per_gpu": 24.92,
|
| 1074 |
+
"tokens/trainable": 34649
|
| 1075 |
+
},
|
| 1076 |
+
{
|
| 1077 |
+
"epoch": 0.30078125,
|
| 1078 |
+
"grad_norm": 0.6790545582771301,
|
| 1079 |
+
"learning_rate": 9.758651908897035e-05,
|
| 1080 |
+
"loss": 0.014308430254459381,
|
| 1081 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1082 |
+
"memory/max_active (GiB)": 36.52,
|
| 1083 |
+
"memory/max_allocated (GiB)": 36.52,
|
| 1084 |
+
"ppl": 1.01441,
|
| 1085 |
+
"step": 77,
|
| 1086 |
+
"tokens/total": 2457120,
|
| 1087 |
+
"tokens/train_per_sec_per_gpu": 29.35,
|
| 1088 |
+
"tokens/trainable": 35094
|
| 1089 |
+
},
|
| 1090 |
+
{
|
| 1091 |
+
"epoch": 0.3046875,
|
| 1092 |
+
"grad_norm": 0.6203456521034241,
|
| 1093 |
+
"learning_rate": 9.749184257252033e-05,
|
| 1094 |
+
"loss": 0.034353043884038925,
|
| 1095 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1096 |
+
"memory/max_active (GiB)": 36.44,
|
| 1097 |
+
"memory/max_allocated (GiB)": 36.44,
|
| 1098 |
+
"ppl": 1.03495,
|
| 1099 |
+
"step": 78,
|
| 1100 |
+
"tokens/total": 2489104,
|
| 1101 |
+
"tokens/train_per_sec_per_gpu": 26.39,
|
| 1102 |
+
"tokens/trainable": 35534
|
| 1103 |
+
},
|
| 1104 |
+
{
|
| 1105 |
+
"epoch": 0.30859375,
|
| 1106 |
+
"grad_norm": 0.6238825917243958,
|
| 1107 |
+
"learning_rate": 9.739539779705614e-05,
|
| 1108 |
+
"loss": 0.032295141369104385,
|
| 1109 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1110 |
+
"memory/max_active (GiB)": 36.48,
|
| 1111 |
+
"memory/max_allocated (GiB)": 36.48,
|
| 1112 |
+
"ppl": 1.03282,
|
| 1113 |
+
"step": 79,
|
| 1114 |
+
"tokens/total": 2521136,
|
| 1115 |
+
"tokens/train_per_sec_per_gpu": 29.68,
|
| 1116 |
+
"tokens/trainable": 36029
|
| 1117 |
+
},
|
| 1118 |
+
{
|
| 1119 |
+
"epoch": 0.3125,
|
| 1120 |
+
"grad_norm": 0.18977171182632446,
|
| 1121 |
+
"learning_rate": 9.729718877603861e-05,
|
| 1122 |
+
"loss": 0.007260813377797604,
|
| 1123 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1124 |
+
"memory/max_active (GiB)": 36.61,
|
| 1125 |
+
"memory/max_allocated (GiB)": 36.61,
|
| 1126 |
+
"ppl": 1.00729,
|
| 1127 |
+
"step": 80,
|
| 1128 |
+
"tokens/total": 2553168,
|
| 1129 |
+
"tokens/train_per_sec_per_gpu": 29.48,
|
| 1130 |
+
"tokens/trainable": 36469
|
| 1131 |
+
},
|
| 1132 |
+
{
|
| 1133 |
+
"epoch": 0.31640625,
|
| 1134 |
+
"grad_norm": 0.8054049611091614,
|
| 1135 |
+
"learning_rate": 9.719721959634592e-05,
|
| 1136 |
+
"loss": 0.034894898533821106,
|
| 1137 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1138 |
+
"memory/max_active (GiB)": 36.61,
|
| 1139 |
+
"memory/max_allocated (GiB)": 36.61,
|
| 1140 |
+
"ppl": 1.03551,
|
| 1141 |
+
"step": 81,
|
| 1142 |
+
"tokens/total": 2585584,
|
| 1143 |
+
"tokens/train_per_sec_per_gpu": 25.75,
|
| 1144 |
+
"tokens/trainable": 36906
|
| 1145 |
+
},
|
| 1146 |
+
{
|
| 1147 |
+
"epoch": 0.3203125,
|
| 1148 |
+
"grad_norm": 0.6884189248085022,
|
| 1149 |
+
"learning_rate": 9.709549441810375e-05,
|
| 1150 |
+
"loss": 0.018210047855973244,
|
| 1151 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1152 |
+
"memory/max_active (GiB)": 36.57,
|
| 1153 |
+
"memory/max_allocated (GiB)": 36.57,
|
| 1154 |
+
"ppl": 1.01838,
|
| 1155 |
+
"step": 82,
|
| 1156 |
+
"tokens/total": 2617808,
|
| 1157 |
+
"tokens/train_per_sec_per_gpu": 32.23,
|
| 1158 |
+
"tokens/trainable": 37390
|
| 1159 |
+
},
|
| 1160 |
+
{
|
| 1161 |
+
"epoch": 0.32421875,
|
| 1162 |
+
"grad_norm": 0.6490103602409363,
|
| 1163 |
+
"learning_rate": 9.699201747451195e-05,
|
| 1164 |
+
"loss": 0.02030857279896736,
|
| 1165 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1166 |
+
"memory/max_active (GiB)": 36.4,
|
| 1167 |
+
"memory/max_allocated (GiB)": 36.4,
|
| 1168 |
+
"ppl": 1.02052,
|
| 1169 |
+
"step": 83,
|
| 1170 |
+
"tokens/total": 2649664,
|
| 1171 |
+
"tokens/train_per_sec_per_gpu": 25.8,
|
| 1172 |
+
"tokens/trainable": 37838
|
| 1173 |
+
},
|
| 1174 |
+
{
|
| 1175 |
+
"epoch": 0.328125,
|
| 1176 |
+
"grad_norm": 0.2439805567264557,
|
| 1177 |
+
"learning_rate": 9.688679307166854e-05,
|
| 1178 |
+
"loss": 0.008518049493432045,
|
| 1179 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1180 |
+
"memory/max_active (GiB)": 36.62,
|
| 1181 |
+
"memory/max_allocated (GiB)": 36.62,
|
| 1182 |
+
"ppl": 1.00855,
|
| 1183 |
+
"step": 84,
|
| 1184 |
+
"tokens/total": 2681728,
|
| 1185 |
+
"tokens/train_per_sec_per_gpu": 28.93,
|
| 1186 |
+
"tokens/trainable": 38310
|
| 1187 |
+
},
|
| 1188 |
+
{
|
| 1189 |
+
"epoch": 0.33203125,
|
| 1190 |
+
"grad_norm": 0.6747375726699829,
|
| 1191 |
+
"learning_rate": 9.677982558839042e-05,
|
| 1192 |
+
"loss": 0.029895059764385223,
|
| 1193 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1194 |
+
"memory/max_active (GiB)": 36.36,
|
| 1195 |
+
"memory/max_allocated (GiB)": 36.36,
|
| 1196 |
+
"ppl": 1.03035,
|
| 1197 |
+
"step": 85,
|
| 1198 |
+
"tokens/total": 2713488,
|
| 1199 |
+
"tokens/train_per_sec_per_gpu": 28.49,
|
| 1200 |
+
"tokens/trainable": 38789
|
| 1201 |
+
},
|
| 1202 |
+
{
|
| 1203 |
+
"epoch": 0.3359375,
|
| 1204 |
+
"grad_norm": 0.582666277885437,
|
| 1205 |
+
"learning_rate": 9.66711194760312e-05,
|
| 1206 |
+
"loss": 0.014998597092926502,
|
| 1207 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1208 |
+
"memory/max_active (GiB)": 36.49,
|
| 1209 |
+
"memory/max_allocated (GiB)": 36.49,
|
| 1210 |
+
"ppl": 1.01511,
|
| 1211 |
+
"step": 86,
|
| 1212 |
+
"tokens/total": 2745536,
|
| 1213 |
+
"tokens/train_per_sec_per_gpu": 30.27,
|
| 1214 |
+
"tokens/trainable": 39277
|
| 1215 |
+
},
|
| 1216 |
+
{
|
| 1217 |
+
"epoch": 0.33984375,
|
| 1218 |
+
"grad_norm": 0.5364654660224915,
|
| 1219 |
+
"learning_rate": 9.656067925829593e-05,
|
| 1220 |
+
"loss": 0.011567167937755585,
|
| 1221 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1222 |
+
"memory/max_active (GiB)": 36.58,
|
| 1223 |
+
"memory/max_allocated (GiB)": 36.58,
|
| 1224 |
+
"ppl": 1.01163,
|
| 1225 |
+
"step": 87,
|
| 1226 |
+
"tokens/total": 2777680,
|
| 1227 |
+
"tokens/train_per_sec_per_gpu": 29.73,
|
| 1228 |
+
"tokens/trainable": 39737
|
| 1229 |
+
},
|
| 1230 |
+
{
|
| 1231 |
+
"epoch": 0.34375,
|
| 1232 |
+
"grad_norm": 0.34024426341056824,
|
| 1233 |
+
"learning_rate": 9.644850953105288e-05,
|
| 1234 |
+
"loss": 0.01014852337539196,
|
| 1235 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1236 |
+
"memory/max_active (GiB)": 36.35,
|
| 1237 |
+
"memory/max_allocated (GiB)": 36.35,
|
| 1238 |
+
"ppl": 1.0102,
|
| 1239 |
+
"step": 88,
|
| 1240 |
+
"tokens/total": 2809568,
|
| 1241 |
+
"tokens/train_per_sec_per_gpu": 24.68,
|
| 1242 |
+
"tokens/trainable": 40179
|
| 1243 |
+
},
|
| 1244 |
+
{
|
| 1245 |
+
"epoch": 0.34765625,
|
| 1246 |
+
"grad_norm": 0.32472267746925354,
|
| 1247 |
+
"learning_rate": 9.633461496214225e-05,
|
| 1248 |
+
"loss": 0.01229981891810894,
|
| 1249 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1250 |
+
"memory/max_active (GiB)": 36.52,
|
| 1251 |
+
"memory/max_allocated (GiB)": 36.52,
|
| 1252 |
+
"ppl": 1.01238,
|
| 1253 |
+
"step": 89,
|
| 1254 |
+
"tokens/total": 2841760,
|
| 1255 |
+
"tokens/train_per_sec_per_gpu": 27.21,
|
| 1256 |
+
"tokens/trainable": 40649
|
| 1257 |
+
},
|
| 1258 |
+
{
|
| 1259 |
+
"epoch": 0.3515625,
|
| 1260 |
+
"grad_norm": 0.7906899452209473,
|
| 1261 |
+
"learning_rate": 9.621900029118195e-05,
|
| 1262 |
+
"loss": 0.02552586793899536,
|
| 1263 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1264 |
+
"memory/max_active (GiB)": 36.05,
|
| 1265 |
+
"memory/max_allocated (GiB)": 36.05,
|
| 1266 |
+
"ppl": 1.02585,
|
| 1267 |
+
"step": 90,
|
| 1268 |
+
"tokens/total": 2871696,
|
| 1269 |
+
"tokens/train_per_sec_per_gpu": 26.33,
|
| 1270 |
+
"tokens/trainable": 41080
|
| 1271 |
+
},
|
| 1272 |
+
{
|
| 1273 |
+
"epoch": 0.35546875,
|
| 1274 |
+
"grad_norm": 0.7444764971733093,
|
| 1275 |
+
"learning_rate": 9.610167032937036e-05,
|
| 1276 |
+
"loss": 0.0054441955871880054,
|
| 1277 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1278 |
+
"memory/max_active (GiB)": 36.59,
|
| 1279 |
+
"memory/max_allocated (GiB)": 36.59,
|
| 1280 |
+
"ppl": 1.00546,
|
| 1281 |
+
"step": 91,
|
| 1282 |
+
"tokens/total": 2903968,
|
| 1283 |
+
"tokens/train_per_sec_per_gpu": 31.7,
|
| 1284 |
+
"tokens/trainable": 41599
|
| 1285 |
+
},
|
| 1286 |
+
{
|
| 1287 |
+
"epoch": 0.359375,
|
| 1288 |
+
"grad_norm": 0.1911851465702057,
|
| 1289 |
+
"learning_rate": 9.598262995928611e-05,
|
| 1290 |
+
"loss": 0.004665314219892025,
|
| 1291 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1292 |
+
"memory/max_active (GiB)": 36.57,
|
| 1293 |
+
"memory/max_allocated (GiB)": 36.57,
|
| 1294 |
+
"ppl": 1.00468,
|
| 1295 |
+
"step": 92,
|
| 1296 |
+
"tokens/total": 2936048,
|
| 1297 |
+
"tokens/train_per_sec_per_gpu": 30.59,
|
| 1298 |
+
"tokens/trainable": 42076
|
| 1299 |
+
},
|
| 1300 |
+
{
|
| 1301 |
+
"epoch": 0.36328125,
|
| 1302 |
+
"grad_norm": 0.21238519251346588,
|
| 1303 |
+
"learning_rate": 9.586188413468492e-05,
|
| 1304 |
+
"loss": 0.003917238209396601,
|
| 1305 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1306 |
+
"memory/max_active (GiB)": 36.45,
|
| 1307 |
+
"memory/max_allocated (GiB)": 36.45,
|
| 1308 |
+
"ppl": 1.00392,
|
| 1309 |
+
"step": 93,
|
| 1310 |
+
"tokens/total": 2968176,
|
| 1311 |
+
"tokens/train_per_sec_per_gpu": 28.07,
|
| 1312 |
+
"tokens/trainable": 42522
|
| 1313 |
+
},
|
| 1314 |
+
{
|
| 1315 |
+
"epoch": 0.3671875,
|
| 1316 |
+
"grad_norm": 0.41729435324668884,
|
| 1317 |
+
"learning_rate": 9.57394378802934e-05,
|
| 1318 |
+
"loss": 0.013555807992815971,
|
| 1319 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1320 |
+
"memory/max_active (GiB)": 36.54,
|
| 1321 |
+
"memory/max_allocated (GiB)": 36.54,
|
| 1322 |
+
"ppl": 1.01365,
|
| 1323 |
+
"step": 94,
|
| 1324 |
+
"tokens/total": 3000304,
|
| 1325 |
+
"tokens/train_per_sec_per_gpu": 28.69,
|
| 1326 |
+
"tokens/trainable": 42974
|
| 1327 |
+
},
|
| 1328 |
+
{
|
| 1329 |
+
"epoch": 0.37109375,
|
| 1330 |
+
"grad_norm": 0.7246769070625305,
|
| 1331 |
+
"learning_rate": 9.56152962916e-05,
|
| 1332 |
+
"loss": 0.020221399143338203,
|
| 1333 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1334 |
+
"memory/max_active (GiB)": 36.29,
|
| 1335 |
+
"memory/max_allocated (GiB)": 36.29,
|
| 1336 |
+
"ppl": 1.02043,
|
| 1337 |
+
"step": 95,
|
| 1338 |
+
"tokens/total": 3032080,
|
| 1339 |
+
"tokens/train_per_sec_per_gpu": 25.35,
|
| 1340 |
+
"tokens/trainable": 43380
|
| 1341 |
+
},
|
| 1342 |
+
{
|
| 1343 |
+
"epoch": 0.375,
|
| 1344 |
+
"grad_norm": 0.16139821708202362,
|
| 1345 |
+
"learning_rate": 9.548946453464296e-05,
|
| 1346 |
+
"loss": 0.003853276837617159,
|
| 1347 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1348 |
+
"memory/max_active (GiB)": 36.59,
|
| 1349 |
+
"memory/max_allocated (GiB)": 36.59,
|
| 1350 |
+
"ppl": 1.00386,
|
| 1351 |
+
"step": 96,
|
| 1352 |
+
"tokens/total": 3064320,
|
| 1353 |
+
"tokens/train_per_sec_per_gpu": 28.47,
|
| 1354 |
+
"tokens/trainable": 43865
|
| 1355 |
+
},
|
| 1356 |
+
{
|
| 1357 |
+
"epoch": 0.37890625,
|
| 1358 |
+
"grad_norm": 1.0509370565414429,
|
| 1359 |
+
"learning_rate": 9.53619478457953e-05,
|
| 1360 |
+
"loss": 0.015099998563528061,
|
| 1361 |
+
"memory/device_reserved (GiB)": 38.96,
|
| 1362 |
+
"memory/max_active (GiB)": 36.45,
|
| 1363 |
+
"memory/max_allocated (GiB)": 36.45,
|
| 1364 |
+
"ppl": 1.01521,
|
| 1365 |
+
"step": 97,
|
| 1366 |
+
"tokens/total": 3096144,
|
| 1367 |
+
"tokens/train_per_sec_per_gpu": 26.61,
|
| 1368 |
+
"tokens/trainable": 44328
|
| 1369 |
+
},
|
| 1370 |
+
{
|
| 1371 |
+
"epoch": 0.3828125,
|
| 1372 |
+
"grad_norm": 0.6859350204467773,
|
| 1373 |
+
"learning_rate": 9.523275153154695e-05,
|
| 1374 |
+
"loss": 0.004579808097332716,
|
| 1375 |
+
"memory/device_reserved (GiB)": 38.68,
|
| 1376 |
+
"memory/max_active (GiB)": 36.28,
|
| 1377 |
+
"memory/max_allocated (GiB)": 36.28,
|
| 1378 |
+
"ppl": 1.00459,
|
| 1379 |
+
"step": 98,
|
| 1380 |
+
"tokens/total": 3127600,
|
| 1381 |
+
"tokens/train_per_sec_per_gpu": 25.91,
|
| 1382 |
+
"tokens/trainable": 44778
|
| 1383 |
+
},
|
| 1384 |
+
{
|
| 1385 |
+
"epoch": 0.38671875,
|
| 1386 |
+
"grad_norm": 0.5686795711517334,
|
| 1387 |
+
"learning_rate": 9.51018809682839e-05,
|
| 1388 |
+
"loss": 0.022520575672388077,
|
| 1389 |
+
"memory/device_reserved (GiB)": 38.74,
|
| 1390 |
+
"memory/max_active (GiB)": 36.53,
|
| 1391 |
+
"memory/max_allocated (GiB)": 36.53,
|
| 1392 |
+
"ppl": 1.02278,
|
| 1393 |
+
"step": 99,
|
| 1394 |
+
"tokens/total": 3159520,
|
| 1395 |
+
"tokens/train_per_sec_per_gpu": 30.85,
|
| 1396 |
+
"tokens/trainable": 45225
|
| 1397 |
+
},
|
| 1398 |
+
{
|
| 1399 |
+
"epoch": 0.390625,
|
| 1400 |
+
"grad_norm": 1.6308369636535645,
|
| 1401 |
+
"learning_rate": 9.49693416020645e-05,
|
| 1402 |
+
"loss": 0.011883002705872059,
|
| 1403 |
+
"memory/device_reserved (GiB)": 38.74,
|
| 1404 |
+
"memory/max_active (GiB)": 36.42,
|
| 1405 |
+
"memory/max_allocated (GiB)": 36.42,
|
| 1406 |
+
"ppl": 1.01195,
|
| 1407 |
+
"step": 100,
|
| 1408 |
+
"tokens/total": 3191568,
|
| 1409 |
+
"tokens/train_per_sec_per_gpu": 29.75,
|
| 1410 |
+
"tokens/trainable": 45678
|
| 1411 |
+
},
|
| 1412 |
+
{
|
| 1413 |
+
"epoch": 0.39453125,
|
| 1414 |
+
"grad_norm": 0.7186088562011719,
|
| 1415 |
+
"learning_rate": 9.483513894839276e-05,
|
| 1416 |
+
"loss": 0.0060632615350186825,
|
| 1417 |
+
"memory/device_reserved (GiB)": 38.74,
|
| 1418 |
+
"memory/max_active (GiB)": 36.52,
|
| 1419 |
+
"memory/max_allocated (GiB)": 36.52,
|
| 1420 |
+
"ppl": 1.00608,
|
| 1421 |
+
"step": 101,
|
| 1422 |
+
"tokens/total": 3223648,
|
| 1423 |
+
"tokens/train_per_sec_per_gpu": 27.14,
|
| 1424 |
+
"tokens/trainable": 46125
|
| 1425 |
+
},
|
| 1426 |
+
{
|
| 1427 |
+
"epoch": 0.3984375,
|
| 1428 |
+
"grad_norm": 0.12036337703466415,
|
| 1429 |
+
"learning_rate": 9.469927859198888e-05,
|
| 1430 |
+
"loss": 0.0019118499476462603,
|
| 1431 |
+
"memory/device_reserved (GiB)": 38.74,
|
| 1432 |
+
"memory/max_active (GiB)": 36.64,
|
| 1433 |
+
"memory/max_allocated (GiB)": 36.64,
|
| 1434 |
+
"ppl": 1.00191,
|
| 1435 |
+
"step": 102,
|
| 1436 |
+
"tokens/total": 3255744,
|
| 1437 |
+
"tokens/train_per_sec_per_gpu": 33.33,
|
| 1438 |
+
"tokens/trainable": 46612
|
| 1439 |
+
},
|
| 1440 |
+
{
|
| 1441 |
+
"epoch": 0.40234375,
|
| 1442 |
+
"grad_norm": 0.29928353428840637,
|
| 1443 |
+
"learning_rate": 9.456176618655689e-05,
|
| 1444 |
+
"loss": 0.00944911316037178,
|
| 1445 |
+
"memory/device_reserved (GiB)": 38.74,
|
| 1446 |
+
"memory/max_active (GiB)": 36.46,
|
| 1447 |
+
"memory/max_allocated (GiB)": 36.46,
|
| 1448 |
+
"ppl": 1.00949,
|
| 1449 |
+
"step": 103,
|
| 1450 |
+
"tokens/total": 3287792,
|
| 1451 |
+
"tokens/train_per_sec_per_gpu": 27.3,
|
| 1452 |
+
"tokens/trainable": 47059
|
| 1453 |
+
},
|
| 1454 |
+
{
|
| 1455 |
+
"epoch": 0.40625,
|
| 1456 |
+
"grad_norm": 0.3766293227672577,
|
| 1457 |
+
"learning_rate": 9.442260745454927e-05,
|
| 1458 |
+
"loss": 0.008984047919511795,
|
| 1459 |
+
"memory/device_reserved (GiB)": 38.74,
|
| 1460 |
+
"memory/max_active (GiB)": 36.68,
|
| 1461 |
+
"memory/max_allocated (GiB)": 36.68,
|
| 1462 |
+
"ppl": 1.00902,
|
| 1463 |
+
"step": 104,
|
| 1464 |
+
"tokens/total": 3320016,
|
| 1465 |
+
"tokens/train_per_sec_per_gpu": 28.92,
|
| 1466 |
+
"tokens/trainable": 47536
|
| 1467 |
+
},
|
| 1468 |
+
{
|
| 1469 |
+
"epoch": 0.41015625,
|
| 1470 |
+
"grad_norm": 0.3481820523738861,
|
| 1471 |
+
"learning_rate": 9.428180818692884e-05,
|
| 1472 |
+
"loss": 0.005444999784231186,
|
| 1473 |
+
"memory/device_reserved (GiB)": 38.74,
|
| 1474 |
+
"memory/max_active (GiB)": 36.44,
|
| 1475 |
+
"memory/max_allocated (GiB)": 36.44,
|
| 1476 |
+
"ppl": 1.00546,
|
| 1477 |
+
"step": 105,
|
| 1478 |
+
"tokens/total": 3351952,
|
| 1479 |
+
"tokens/train_per_sec_per_gpu": 28.32,
|
| 1480 |
+
"tokens/trainable": 48037
|
| 1481 |
+
},
|
| 1482 |
+
{
|
| 1483 |
+
"epoch": 0.4140625,
|
| 1484 |
+
"grad_norm": 0.8414323329925537,
|
| 1485 |
+
"learning_rate": 9.413937424292791e-05,
|
| 1486 |
+
"loss": 0.032438624650239944,
|
| 1487 |
+
"memory/device_reserved (GiB)": 38.74,
|
| 1488 |
+
"memory/max_active (GiB)": 36.55,
|
| 1489 |
+
"memory/max_allocated (GiB)": 36.55,
|
| 1490 |
+
"ppl": 1.03297,
|
| 1491 |
+
"step": 106,
|
| 1492 |
+
"tokens/total": 3384032,
|
| 1493 |
+
"tokens/train_per_sec_per_gpu": 27.11,
|
| 1494 |
+
"tokens/trainable": 48491
|
| 1495 |
+
},
|
| 1496 |
+
{
|
| 1497 |
+
"epoch": 0.41796875,
|
| 1498 |
+
"grad_norm": 0.5067655444145203,
|
| 1499 |
+
"learning_rate": 9.399531154980424e-05,
|
| 1500 |
+
"loss": 0.008442888967692852,
|
| 1501 |
+
"memory/device_reserved (GiB)": 38.74,
|
| 1502 |
+
"memory/max_active (GiB)": 36.67,
|
| 1503 |
+
"memory/max_allocated (GiB)": 36.67,
|
| 1504 |
+
"ppl": 1.00848,
|
| 1505 |
+
"step": 107,
|
| 1506 |
+
"tokens/total": 3416192,
|
| 1507 |
+
"tokens/train_per_sec_per_gpu": 27.61,
|
| 1508 |
+
"tokens/trainable": 48940
|
| 1509 |
+
},
|
| 1510 |
+
{
|
| 1511 |
+
"epoch": 0.421875,
|
| 1512 |
+
"grad_norm": 0.41617852449417114,
|
| 1513 |
+
"learning_rate": 9.384962610259455e-05,
|
| 1514 |
+
"loss": 0.008386321365833282,
|
| 1515 |
+
"memory/device_reserved (GiB)": 38.74,
|
| 1516 |
+
"memory/max_active (GiB)": 36.46,
|
| 1517 |
+
"memory/max_allocated (GiB)": 36.46,
|
| 1518 |
+
"ppl": 1.00842,
|
| 1519 |
+
"step": 108,
|
| 1520 |
+
"tokens/total": 3448080,
|
| 1521 |
+
"tokens/train_per_sec_per_gpu": 26.56,
|
| 1522 |
+
"tokens/trainable": 49389
|
| 1523 |
+
},
|
| 1524 |
+
{
|
| 1525 |
+
"epoch": 0.42578125,
|
| 1526 |
+
"grad_norm": 0.1587515026330948,
|
| 1527 |
+
"learning_rate": 9.370232396386494e-05,
|
| 1528 |
+
"loss": 0.0031663556583225727,
|
| 1529 |
+
"memory/device_reserved (GiB)": 38.75,
|
| 1530 |
+
"memory/max_active (GiB)": 36.03,
|
| 1531 |
+
"memory/max_allocated (GiB)": 36.03,
|
| 1532 |
+
"ppl": 1.00317,
|
| 1533 |
+
"step": 109,
|
| 1534 |
+
"tokens/total": 3477952,
|
| 1535 |
+
"tokens/train_per_sec_per_gpu": 29.8,
|
| 1536 |
+
"tokens/trainable": 49838
|
| 1537 |
+
},
|
| 1538 |
+
{
|
| 1539 |
+
"epoch": 0.4296875,
|
| 1540 |
+
"grad_norm": 0.2903148829936981,
|
| 1541 |
+
"learning_rate": 9.355341126345868e-05,
|
| 1542 |
+
"loss": 0.007958847098052502,
|
| 1543 |
+
"memory/device_reserved (GiB)": 38.75,
|
| 1544 |
+
"memory/max_active (GiB)": 36.4,
|
| 1545 |
+
"memory/max_allocated (GiB)": 36.4,
|
| 1546 |
+
"ppl": 1.00799,
|
| 1547 |
+
"step": 110,
|
| 1548 |
+
"tokens/total": 3509776,
|
| 1549 |
+
"tokens/train_per_sec_per_gpu": 28.42,
|
| 1550 |
+
"tokens/trainable": 50310
|
| 1551 |
+
},
|
| 1552 |
+
{
|
| 1553 |
+
"epoch": 0.43359375,
|
| 1554 |
+
"grad_norm": 0.642983078956604,
|
| 1555 |
+
"learning_rate": 9.340289419824107e-05,
|
| 1556 |
+
"loss": 0.006748045329004526,
|
| 1557 |
+
"memory/device_reserved (GiB)": 38.75,
|
| 1558 |
+
"memory/max_active (GiB)": 36.47,
|
| 1559 |
+
"memory/max_allocated (GiB)": 36.47,
|
| 1560 |
+
"ppl": 1.00677,
|
| 1561 |
+
"step": 111,
|
| 1562 |
+
"tokens/total": 3541808,
|
| 1563 |
+
"tokens/train_per_sec_per_gpu": 28.04,
|
| 1564 |
+
"tokens/trainable": 50755
|
| 1565 |
+
},
|
| 1566 |
+
{
|
| 1567 |
+
"epoch": 0.4375,
|
| 1568 |
+
"grad_norm": 0.14928282797336578,
|
| 1569 |
+
"learning_rate": 9.325077903184159e-05,
|
| 1570 |
+
"loss": 0.0027839094400405884,
|
| 1571 |
+
"memory/device_reserved (GiB)": 38.75,
|
| 1572 |
+
"memory/max_active (GiB)": 36.54,
|
| 1573 |
+
"memory/max_allocated (GiB)": 36.54,
|
| 1574 |
+
"ppl": 1.00279,
|
| 1575 |
+
"step": 112,
|
| 1576 |
+
"tokens/total": 3574064,
|
| 1577 |
+
"tokens/train_per_sec_per_gpu": 26.33,
|
| 1578 |
+
"tokens/trainable": 51213
|
| 1579 |
+
},
|
| 1580 |
+
{
|
| 1581 |
+
"epoch": 0.44140625,
|
| 1582 |
+
"grad_norm": 0.05922335386276245,
|
| 1583 |
+
"learning_rate": 9.30970720943932e-05,
|
| 1584 |
+
"loss": 0.0009622900979593396,
|
| 1585 |
+
"memory/device_reserved (GiB)": 38.75,
|
| 1586 |
+
"memory/max_active (GiB)": 36.53,
|
| 1587 |
+
"memory/max_allocated (GiB)": 36.53,
|
| 1588 |
+
"ppl": 1.00096,
|
| 1589 |
+
"step": 113,
|
| 1590 |
+
"tokens/total": 3605984,
|
| 1591 |
+
"tokens/train_per_sec_per_gpu": 27.99,
|
| 1592 |
+
"tokens/trainable": 51660
|
| 1593 |
+
},
|
| 1594 |
+
{
|
| 1595 |
+
"epoch": 0.4453125,
|
| 1596 |
+
"grad_norm": 0.44227731227874756,
|
| 1597 |
+
"learning_rate": 9.2941779782269e-05,
|
| 1598 |
+
"loss": 0.002763954224064946,
|
| 1599 |
+
"memory/device_reserved (GiB)": 38.75,
|
| 1600 |
+
"memory/max_active (GiB)": 36.47,
|
| 1601 |
+
"memory/max_allocated (GiB)": 36.47,
|
| 1602 |
+
"ppl": 1.00277,
|
| 1603 |
+
"step": 114,
|
| 1604 |
+
"tokens/total": 3638080,
|
| 1605 |
+
"tokens/train_per_sec_per_gpu": 27.03,
|
| 1606 |
+
"tokens/trainable": 52133
|
| 1607 |
+
},
|
| 1608 |
+
{
|
| 1609 |
+
"epoch": 0.44921875,
|
| 1610 |
+
"grad_norm": 0.5176818370819092,
|
| 1611 |
+
"learning_rate": 9.278490855781596e-05,
|
| 1612 |
+
"loss": 0.015623578801751137,
|
| 1613 |
+
"memory/device_reserved (GiB)": 38.75,
|
| 1614 |
+
"memory/max_active (GiB)": 36.47,
|
| 1615 |
+
"memory/max_allocated (GiB)": 36.47,
|
| 1616 |
+
"ppl": 1.01575,
|
| 1617 |
+
"step": 115,
|
| 1618 |
+
"tokens/total": 3670016,
|
| 1619 |
+
"tokens/train_per_sec_per_gpu": 31.44,
|
| 1620 |
+
"tokens/trainable": 52580
|
| 1621 |
+
},
|
| 1622 |
+
{
|
| 1623 |
+
"epoch": 0.453125,
|
| 1624 |
+
"grad_norm": 0.4265497922897339,
|
| 1625 |
+
"learning_rate": 9.262646494908604e-05,
|
| 1626 |
+
"loss": 0.00794076919555664,
|
| 1627 |
+
"memory/device_reserved (GiB)": 38.75,
|
| 1628 |
+
"memory/max_active (GiB)": 36.45,
|
| 1629 |
+
"memory/max_allocated (GiB)": 36.45,
|
| 1630 |
+
"ppl": 1.00797,
|
| 1631 |
+
"step": 116,
|
| 1632 |
+
"tokens/total": 3701984,
|
| 1633 |
+
"tokens/train_per_sec_per_gpu": 29.28,
|
| 1634 |
+
"tokens/trainable": 53033
|
| 1635 |
+
},
|
| 1636 |
+
{
|
| 1637 |
+
"epoch": 0.45703125,
|
| 1638 |
+
"grad_norm": 0.40457987785339355,
|
| 1639 |
+
"learning_rate": 9.246645554956457e-05,
|
| 1640 |
+
"loss": 0.022708112373948097,
|
| 1641 |
+
"memory/device_reserved (GiB)": 38.75,
|
| 1642 |
+
"memory/max_active (GiB)": 36.46,
|
| 1643 |
+
"memory/max_allocated (GiB)": 36.46,
|
| 1644 |
+
"ppl": 1.02297,
|
| 1645 |
+
"step": 117,
|
| 1646 |
+
"tokens/total": 3733920,
|
| 1647 |
+
"tokens/train_per_sec_per_gpu": 29.46,
|
| 1648 |
+
"tokens/trainable": 53517
|
| 1649 |
+
},
|
| 1650 |
+
{
|
| 1651 |
+
"epoch": 0.4609375,
|
| 1652 |
+
"grad_norm": 0.01414525043219328,
|
| 1653 |
+
"learning_rate": 9.230488701789578e-05,
|
| 1654 |
+
"loss": 0.00020209309877827764,
|
| 1655 |
+
"memory/device_reserved (GiB)": 38.75,
|
| 1656 |
+
"memory/max_active (GiB)": 36.34,
|
| 1657 |
+
"memory/max_allocated (GiB)": 36.34,
|
| 1658 |
+
"ppl": 1.0002,
|
| 1659 |
+
"step": 118,
|
| 1660 |
+
"tokens/total": 3765840,
|
| 1661 |
+
"tokens/train_per_sec_per_gpu": 28.57,
|
| 1662 |
+
"tokens/trainable": 53967
|
| 1663 |
+
},
|
| 1664 |
+
{
|
| 1665 |
+
"epoch": 0.46484375,
|
| 1666 |
+
"grad_norm": 0.11359831690788269,
|
| 1667 |
+
"learning_rate": 9.214176607760577e-05,
|
| 1668 |
+
"loss": 0.0012168455868959427,
|
| 1669 |
+
"memory/device_reserved (GiB)": 38.75,
|
| 1670 |
+
"memory/max_active (GiB)": 36.48,
|
| 1671 |
+
"memory/max_allocated (GiB)": 36.48,
|
| 1672 |
+
"ppl": 1.00122,
|
| 1673 |
+
"step": 119,
|
| 1674 |
+
"tokens/total": 3797680,
|
| 1675 |
+
"tokens/train_per_sec_per_gpu": 29.49,
|
| 1676 |
+
"tokens/trainable": 54430
|
| 1677 |
+
},
|
| 1678 |
+
{
|
| 1679 |
+
"epoch": 0.46875,
|
| 1680 |
+
"grad_norm": 0.35982534289360046,
|
| 1681 |
+
"learning_rate": 9.197709951682268e-05,
|
| 1682 |
+
"loss": 0.004110721405595541,
|
| 1683 |
+
"memory/device_reserved (GiB)": 38.77,
|
| 1684 |
+
"memory/max_active (GiB)": 36.58,
|
| 1685 |
+
"memory/max_allocated (GiB)": 36.58,
|
| 1686 |
+
"ppl": 1.00412,
|
| 1687 |
+
"step": 120,
|
| 1688 |
+
"tokens/total": 3829920,
|
| 1689 |
+
"tokens/train_per_sec_per_gpu": 29.2,
|
| 1690 |
+
"tokens/trainable": 54896
|
| 1691 |
+
},
|
| 1692 |
+
{
|
| 1693 |
+
"epoch": 0.47265625,
|
| 1694 |
+
"grad_norm": 1.3690382242202759,
|
| 1695 |
+
"learning_rate": 9.181089418799428e-05,
|
| 1696 |
+
"loss": 0.02705790475010872,
|
| 1697 |
+
"memory/device_reserved (GiB)": 38.77,
|
| 1698 |
+
"memory/max_active (GiB)": 36.61,
|
| 1699 |
+
"memory/max_allocated (GiB)": 36.61,
|
| 1700 |
+
"ppl": 1.02743,
|
| 1701 |
+
"step": 121,
|
| 1702 |
+
"tokens/total": 3862080,
|
| 1703 |
+
"tokens/train_per_sec_per_gpu": 31.57,
|
| 1704 |
+
"tokens/trainable": 55379
|
| 1705 |
+
},
|
| 1706 |
+
{
|
| 1707 |
+
"epoch": 0.4765625,
|
| 1708 |
+
"grad_norm": 0.351891428232193,
|
| 1709 |
+
"learning_rate": 9.164315700760271e-05,
|
| 1710 |
+
"loss": 0.0020163573790341616,
|
| 1711 |
+
"memory/device_reserved (GiB)": 38.77,
|
| 1712 |
+
"memory/max_active (GiB)": 36.36,
|
| 1713 |
+
"memory/max_allocated (GiB)": 36.36,
|
| 1714 |
+
"ppl": 1.00202,
|
| 1715 |
+
"step": 122,
|
| 1716 |
+
"tokens/total": 3893968,
|
| 1717 |
+
"tokens/train_per_sec_per_gpu": 26.5,
|
| 1718 |
+
"tokens/trainable": 55803
|
| 1719 |
+
},
|
| 1720 |
+
{
|
| 1721 |
+
"epoch": 0.48046875,
|
| 1722 |
+
"grad_norm": 0.4747961461544037,
|
| 1723 |
+
"learning_rate": 9.147389495587671e-05,
|
| 1724 |
+
"loss": 0.012588979676365852,
|
| 1725 |
+
"memory/device_reserved (GiB)": 38.77,
|
| 1726 |
+
"memory/max_active (GiB)": 36.51,
|
| 1727 |
+
"memory/max_allocated (GiB)": 36.51,
|
| 1728 |
+
"ppl": 1.01267,
|
| 1729 |
+
"step": 123,
|
| 1730 |
+
"tokens/total": 3926160,
|
| 1731 |
+
"tokens/train_per_sec_per_gpu": 30.14,
|
| 1732 |
+
"tokens/trainable": 56249
|
| 1733 |
+
},
|
| 1734 |
+
{
|
| 1735 |
+
"epoch": 0.484375,
|
| 1736 |
+
"grad_norm": 0.4064250588417053,
|
| 1737 |
+
"learning_rate": 9.130311507650116e-05,
|
| 1738 |
+
"loss": 0.0022941348142921925,
|
| 1739 |
+
"memory/device_reserved (GiB)": 38.77,
|
| 1740 |
+
"memory/max_active (GiB)": 36.54,
|
| 1741 |
+
"memory/max_allocated (GiB)": 36.54,
|
| 1742 |
+
"ppl": 1.0023,
|
| 1743 |
+
"step": 124,
|
| 1744 |
+
"tokens/total": 3958208,
|
| 1745 |
+
"tokens/train_per_sec_per_gpu": 27.21,
|
| 1746 |
+
"tokens/trainable": 56713
|
| 1747 |
+
},
|
| 1748 |
+
{
|
| 1749 |
+
"epoch": 0.48828125,
|
| 1750 |
+
"grad_norm": 0.22056929767131805,
|
| 1751 |
+
"learning_rate": 9.113082447632394e-05,
|
| 1752 |
+
"loss": 0.0022175831254571676,
|
| 1753 |
+
"memory/device_reserved (GiB)": 38.77,
|
| 1754 |
+
"memory/max_active (GiB)": 36.48,
|
| 1755 |
+
"memory/max_allocated (GiB)": 36.48,
|
| 1756 |
+
"ppl": 1.00222,
|
| 1757 |
+
"step": 125,
|
| 1758 |
+
"tokens/total": 3990208,
|
| 1759 |
+
"tokens/train_per_sec_per_gpu": 32.57,
|
| 1760 |
+
"tokens/trainable": 57196
|
| 1761 |
+
},
|
| 1762 |
+
{
|
| 1763 |
+
"epoch": 0.4921875,
|
| 1764 |
+
"grad_norm": 0.5698862671852112,
|
| 1765 |
+
"learning_rate": 9.09570303250602e-05,
|
| 1766 |
+
"loss": 0.010205100290477276,
|
| 1767 |
+
"memory/device_reserved (GiB)": 38.77,
|
| 1768 |
+
"memory/max_active (GiB)": 36.53,
|
| 1769 |
+
"memory/max_allocated (GiB)": 36.53,
|
| 1770 |
+
"ppl": 1.01026,
|
| 1771 |
+
"step": 126,
|
| 1772 |
+
"tokens/total": 4022224,
|
| 1773 |
+
"tokens/train_per_sec_per_gpu": 30.4,
|
| 1774 |
+
"tokens/trainable": 57680
|
| 1775 |
+
},
|
| 1776 |
+
{
|
| 1777 |
+
"epoch": 0.49609375,
|
| 1778 |
+
"grad_norm": 0.2593887448310852,
|
| 1779 |
+
"learning_rate": 9.078173985499394e-05,
|
| 1780 |
+
"loss": 0.0032277877908200026,
|
| 1781 |
+
"memory/device_reserved (GiB)": 38.77,
|
| 1782 |
+
"memory/max_active (GiB)": 36.39,
|
| 1783 |
+
"memory/max_allocated (GiB)": 36.39,
|
| 1784 |
+
"ppl": 1.00323,
|
| 1785 |
+
"step": 127,
|
| 1786 |
+
"tokens/total": 4053952,
|
| 1787 |
+
"tokens/train_per_sec_per_gpu": 26.51,
|
| 1788 |
+
"tokens/trainable": 58110
|
| 1789 |
+
},
|
| 1790 |
+
{
|
| 1791 |
+
"epoch": 0.5,
|
| 1792 |
+
"grad_norm": 0.3735230565071106,
|
| 1793 |
+
"learning_rate": 9.060496036067713e-05,
|
| 1794 |
+
"loss": 0.01031105499714613,
|
| 1795 |
+
"memory/device_reserved (GiB)": 38.77,
|
| 1796 |
+
"memory/max_active (GiB)": 36.52,
|
| 1797 |
+
"memory/max_allocated (GiB)": 36.52,
|
| 1798 |
+
"ppl": 1.01036,
|
| 1799 |
+
"step": 128,
|
| 1800 |
+
"tokens/total": 4086144,
|
| 1801 |
+
"tokens/train_per_sec_per_gpu": 26.5,
|
| 1802 |
+
"tokens/trainable": 58534
|
| 1803 |
+
},
|
| 1804 |
+
{
|
| 1805 |
+
"epoch": 0.50390625,
|
| 1806 |
+
"grad_norm": 0.1332484930753708,
|
| 1807 |
+
"learning_rate": 9.042669919862615e-05,
|
| 1808 |
+
"loss": 0.0012390739284455776,
|
| 1809 |
+
"memory/device_reserved (GiB)": 38.86,
|
| 1810 |
+
"memory/max_active (GiB)": 36.54,
|
| 1811 |
+
"memory/max_allocated (GiB)": 36.54,
|
| 1812 |
+
"ppl": 1.00124,
|
| 1813 |
+
"step": 129,
|
| 1814 |
+
"tokens/total": 4118096,
|
| 1815 |
+
"tokens/train_per_sec_per_gpu": 29.31,
|
| 1816 |
+
"tokens/trainable": 58998
|
| 1817 |
+
},
|
| 1818 |
+
{
|
| 1819 |
+
"epoch": 0.5078125,
|
| 1820 |
+
"grad_norm": 0.20182718336582184,
|
| 1821 |
+
"learning_rate": 9.024696378701557e-05,
|
| 1822 |
+
"loss": 0.004501686431467533,
|
| 1823 |
+
"memory/device_reserved (GiB)": 38.86,
|
| 1824 |
+
"memory/max_active (GiB)": 36.55,
|
| 1825 |
+
"memory/max_allocated (GiB)": 36.55,
|
| 1826 |
+
"ppl": 1.00451,
|
| 1827 |
+
"step": 130,
|
| 1828 |
+
"tokens/total": 4150272,
|
| 1829 |
+
"tokens/train_per_sec_per_gpu": 26.49,
|
| 1830 |
+
"tokens/trainable": 59448
|
| 1831 |
+
},
|
| 1832 |
+
{
|
| 1833 |
+
"epoch": 0.51171875,
|
| 1834 |
+
"grad_norm": 0.529080331325531,
|
| 1835 |
+
"learning_rate": 9.006576160536948e-05,
|
| 1836 |
+
"loss": 0.00763288140296936,
|
| 1837 |
+
"memory/device_reserved (GiB)": 38.86,
|
| 1838 |
+
"memory/max_active (GiB)": 36.33,
|
| 1839 |
+
"memory/max_allocated (GiB)": 36.33,
|
| 1840 |
+
"ppl": 1.00766,
|
| 1841 |
+
"step": 131,
|
| 1842 |
+
"tokens/total": 4181904,
|
| 1843 |
+
"tokens/train_per_sec_per_gpu": 26.84,
|
| 1844 |
+
"tokens/trainable": 59906
|
| 1845 |
+
},
|
| 1846 |
+
{
|
| 1847 |
+
"epoch": 0.515625,
|
| 1848 |
+
"grad_norm": 0.21625548601150513,
|
| 1849 |
+
"learning_rate": 8.988310019425035e-05,
|
| 1850 |
+
"loss": 0.0024378676898777485,
|
| 1851 |
+
"memory/device_reserved (GiB)": 38.86,
|
| 1852 |
+
"memory/max_active (GiB)": 36.48,
|
| 1853 |
+
"memory/max_allocated (GiB)": 36.48,
|
| 1854 |
+
"ppl": 1.00244,
|
| 1855 |
+
"step": 132,
|
| 1856 |
+
"tokens/total": 4214032,
|
| 1857 |
+
"tokens/train_per_sec_per_gpu": 28.36,
|
| 1858 |
+
"tokens/trainable": 60350
|
| 1859 |
+
},
|
| 1860 |
+
{
|
| 1861 |
+
"epoch": 0.51953125,
|
| 1862 |
+
"grad_norm": 0.37116539478302,
|
| 1863 |
+
"learning_rate": 8.969898715494506e-05,
|
| 1864 |
+
"loss": 0.0037849934305995703,
|
| 1865 |
+
"memory/device_reserved (GiB)": 38.86,
|
| 1866 |
+
"memory/max_active (GiB)": 36.47,
|
| 1867 |
+
"memory/max_allocated (GiB)": 36.47,
|
| 1868 |
+
"ppl": 1.00379,
|
| 1869 |
+
"step": 133,
|
| 1870 |
+
"tokens/total": 4246064,
|
| 1871 |
+
"tokens/train_per_sec_per_gpu": 30.18,
|
| 1872 |
+
"tokens/trainable": 60831
|
| 1873 |
+
},
|
| 1874 |
+
{
|
| 1875 |
+
"epoch": 0.5234375,
|
| 1876 |
+
"grad_norm": 0.5646623373031616,
|
| 1877 |
+
"learning_rate": 8.951343014914869e-05,
|
| 1878 |
+
"loss": 0.006517104804515839,
|
| 1879 |
+
"memory/device_reserved (GiB)": 38.86,
|
| 1880 |
+
"memory/max_active (GiB)": 36.52,
|
| 1881 |
+
"memory/max_allocated (GiB)": 36.52,
|
| 1882 |
+
"ppl": 1.00654,
|
| 1883 |
+
"step": 134,
|
| 1884 |
+
"tokens/total": 4278224,
|
| 1885 |
+
"tokens/train_per_sec_per_gpu": 28.2,
|
| 1886 |
+
"tokens/trainable": 61305
|
| 1887 |
+
},
|
| 1888 |
+
{
|
| 1889 |
+
"epoch": 0.52734375,
|
| 1890 |
+
"grad_norm": 0.6371963620185852,
|
| 1891 |
+
"learning_rate": 8.932643689864568e-05,
|
| 1892 |
+
"loss": 0.008687382563948631,
|
| 1893 |
+
"memory/device_reserved (GiB)": 38.86,
|
| 1894 |
+
"memory/max_active (GiB)": 36.48,
|
| 1895 |
+
"memory/max_allocated (GiB)": 36.48,
|
| 1896 |
+
"ppl": 1.00873,
|
| 1897 |
+
"step": 135,
|
| 1898 |
+
"tokens/total": 4310112,
|
| 1899 |
+
"tokens/train_per_sec_per_gpu": 31.48,
|
| 1900 |
+
"tokens/trainable": 61792
|
| 1901 |
+
},
|
| 1902 |
+
{
|
| 1903 |
+
"epoch": 0.53125,
|
| 1904 |
+
"grad_norm": 0.8210524916648865,
|
| 1905 |
+
"learning_rate": 8.913801518498845e-05,
|
| 1906 |
+
"loss": 0.008436474949121475,
|
| 1907 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 1908 |
+
"memory/max_active (GiB)": 36.54,
|
| 1909 |
+
"memory/max_allocated (GiB)": 36.54,
|
| 1910 |
+
"ppl": 1.00847,
|
| 1911 |
+
"step": 136,
|
| 1912 |
+
"tokens/total": 4342192,
|
| 1913 |
+
"tokens/train_per_sec_per_gpu": 26.23,
|
| 1914 |
+
"tokens/trainable": 62253
|
| 1915 |
+
},
|
| 1916 |
+
{
|
| 1917 |
+
"epoch": 0.53515625,
|
| 1918 |
+
"grad_norm": 0.5692176222801208,
|
| 1919 |
+
"learning_rate": 8.894817284917364e-05,
|
| 1920 |
+
"loss": 0.017321188002824783,
|
| 1921 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 1922 |
+
"memory/max_active (GiB)": 36.44,
|
| 1923 |
+
"memory/max_allocated (GiB)": 36.44,
|
| 1924 |
+
"ppl": 1.01747,
|
| 1925 |
+
"step": 137,
|
| 1926 |
+
"tokens/total": 4374096,
|
| 1927 |
+
"tokens/train_per_sec_per_gpu": 26.38,
|
| 1928 |
+
"tokens/trainable": 62707
|
| 1929 |
+
},
|
| 1930 |
+
{
|
| 1931 |
+
"epoch": 0.5390625,
|
| 1932 |
+
"grad_norm": 0.12828375399112701,
|
| 1933 |
+
"learning_rate": 8.875691779131569e-05,
|
| 1934 |
+
"loss": 0.0007754197577014565,
|
| 1935 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 1936 |
+
"memory/max_active (GiB)": 36.53,
|
| 1937 |
+
"memory/max_allocated (GiB)": 36.53,
|
| 1938 |
+
"ppl": 1.00078,
|
| 1939 |
+
"step": 138,
|
| 1940 |
+
"tokens/total": 4406272,
|
| 1941 |
+
"tokens/train_per_sec_per_gpu": 24.22,
|
| 1942 |
+
"tokens/trainable": 63145
|
| 1943 |
+
},
|
| 1944 |
+
{
|
| 1945 |
+
"epoch": 0.54296875,
|
| 1946 |
+
"grad_norm": 0.3188190162181854,
|
| 1947 |
+
"learning_rate": 8.856425797031829e-05,
|
| 1948 |
+
"loss": 0.006707335356622934,
|
| 1949 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 1950 |
+
"memory/max_active (GiB)": 36.4,
|
| 1951 |
+
"memory/max_allocated (GiB)": 36.4,
|
| 1952 |
+
"ppl": 1.00673,
|
| 1953 |
+
"step": 139,
|
| 1954 |
+
"tokens/total": 4438112,
|
| 1955 |
+
"tokens/train_per_sec_per_gpu": 28.55,
|
| 1956 |
+
"tokens/trainable": 63587
|
| 1957 |
+
},
|
| 1958 |
+
{
|
| 1959 |
+
"epoch": 0.546875,
|
| 1960 |
+
"grad_norm": 0.6216707229614258,
|
| 1961 |
+
"learning_rate": 8.837020140354295e-05,
|
| 1962 |
+
"loss": 0.007024695165455341,
|
| 1963 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 1964 |
+
"memory/max_active (GiB)": 36.47,
|
| 1965 |
+
"memory/max_allocated (GiB)": 36.47,
|
| 1966 |
+
"ppl": 1.00705,
|
| 1967 |
+
"step": 140,
|
| 1968 |
+
"tokens/total": 4470128,
|
| 1969 |
+
"tokens/train_per_sec_per_gpu": 30.64,
|
| 1970 |
+
"tokens/trainable": 64052
|
| 1971 |
+
},
|
| 1972 |
+
{
|
| 1973 |
+
"epoch": 0.55078125,
|
| 1974 |
+
"grad_norm": 0.1480305939912796,
|
| 1975 |
+
"learning_rate": 8.817475616647554e-05,
|
| 1976 |
+
"loss": 0.00229115248657763,
|
| 1977 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 1978 |
+
"memory/max_active (GiB)": 36.42,
|
| 1979 |
+
"memory/max_allocated (GiB)": 36.42,
|
| 1980 |
+
"ppl": 1.00229,
|
| 1981 |
+
"step": 141,
|
| 1982 |
+
"tokens/total": 4502096,
|
| 1983 |
+
"tokens/train_per_sec_per_gpu": 28.71,
|
| 1984 |
+
"tokens/trainable": 64526
|
| 1985 |
+
},
|
| 1986 |
+
{
|
| 1987 |
+
"epoch": 0.5546875,
|
| 1988 |
+
"grad_norm": 0.22254763543605804,
|
| 1989 |
+
"learning_rate": 8.797793039239017e-05,
|
| 1990 |
+
"loss": 0.0029198499396443367,
|
| 1991 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 1992 |
+
"memory/max_active (GiB)": 36.67,
|
| 1993 |
+
"memory/max_allocated (GiB)": 36.67,
|
| 1994 |
+
"ppl": 1.00292,
|
| 1995 |
+
"step": 142,
|
| 1996 |
+
"tokens/total": 4534496,
|
| 1997 |
+
"tokens/train_per_sec_per_gpu": 29.08,
|
| 1998 |
+
"tokens/trainable": 64983
|
| 1999 |
+
},
|
| 2000 |
+
{
|
| 2001 |
+
"epoch": 0.55859375,
|
| 2002 |
+
"grad_norm": 0.6901941895484924,
|
| 2003 |
+
"learning_rate": 8.777973227201069e-05,
|
| 2004 |
+
"loss": 0.013051149435341358,
|
| 2005 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 2006 |
+
"memory/max_active (GiB)": 36.59,
|
| 2007 |
+
"memory/max_allocated (GiB)": 36.59,
|
| 2008 |
+
"ppl": 1.01314,
|
| 2009 |
+
"step": 143,
|
| 2010 |
+
"tokens/total": 4566720,
|
| 2011 |
+
"tokens/train_per_sec_per_gpu": 31.56,
|
| 2012 |
+
"tokens/trainable": 65492
|
| 2013 |
+
},
|
| 2014 |
+
{
|
| 2015 |
+
"epoch": 0.5625,
|
| 2016 |
+
"grad_norm": 0.9545458555221558,
|
| 2017 |
+
"learning_rate": 8.758017005316988e-05,
|
| 2018 |
+
"loss": 0.02235381305217743,
|
| 2019 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 2020 |
+
"memory/max_active (GiB)": 36.57,
|
| 2021 |
+
"memory/max_allocated (GiB)": 36.57,
|
| 2022 |
+
"ppl": 1.02261,
|
| 2023 |
+
"step": 144,
|
| 2024 |
+
"tokens/total": 4598880,
|
| 2025 |
+
"tokens/train_per_sec_per_gpu": 29.59,
|
| 2026 |
+
"tokens/trainable": 65925
|
| 2027 |
+
},
|
| 2028 |
+
{
|
| 2029 |
+
"epoch": 0.56640625,
|
| 2030 |
+
"grad_norm": 0.5515892505645752,
|
| 2031 |
+
"learning_rate": 8.737925204046629e-05,
|
| 2032 |
+
"loss": 0.02038375660777092,
|
| 2033 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 2034 |
+
"memory/max_active (GiB)": 36.36,
|
| 2035 |
+
"memory/max_allocated (GiB)": 36.36,
|
| 2036 |
+
"ppl": 1.02059,
|
| 2037 |
+
"step": 145,
|
| 2038 |
+
"tokens/total": 4630864,
|
| 2039 |
+
"tokens/train_per_sec_per_gpu": 26.3,
|
| 2040 |
+
"tokens/trainable": 66383
|
| 2041 |
+
},
|
| 2042 |
+
{
|
| 2043 |
+
"epoch": 0.5703125,
|
| 2044 |
+
"grad_norm": 0.3512430191040039,
|
| 2045 |
+
"learning_rate": 8.717698659491851e-05,
|
| 2046 |
+
"loss": 0.008233271539211273,
|
| 2047 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 2048 |
+
"memory/max_active (GiB)": 36.59,
|
| 2049 |
+
"memory/max_allocated (GiB)": 36.59,
|
| 2050 |
+
"ppl": 1.00827,
|
| 2051 |
+
"step": 146,
|
| 2052 |
+
"tokens/total": 4662864,
|
| 2053 |
+
"tokens/train_per_sec_per_gpu": 26.23,
|
| 2054 |
+
"tokens/trainable": 66840
|
| 2055 |
+
},
|
| 2056 |
+
{
|
| 2057 |
+
"epoch": 0.57421875,
|
| 2058 |
+
"grad_norm": 0.6830361485481262,
|
| 2059 |
+
"learning_rate": 8.697338213361735e-05,
|
| 2060 |
+
"loss": 0.013419180177152157,
|
| 2061 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 2062 |
+
"memory/max_active (GiB)": 36.52,
|
| 2063 |
+
"memory/max_allocated (GiB)": 36.52,
|
| 2064 |
+
"ppl": 1.01351,
|
| 2065 |
+
"step": 147,
|
| 2066 |
+
"tokens/total": 4694912,
|
| 2067 |
+
"tokens/train_per_sec_per_gpu": 26.34,
|
| 2068 |
+
"tokens/trainable": 67297
|
| 2069 |
+
},
|
| 2070 |
+
{
|
| 2071 |
+
"epoch": 0.578125,
|
| 2072 |
+
"grad_norm": 0.2117031067609787,
|
| 2073 |
+
"learning_rate": 8.676844712937552e-05,
|
| 2074 |
+
"loss": 0.004134457092732191,
|
| 2075 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 2076 |
+
"memory/max_active (GiB)": 36.53,
|
| 2077 |
+
"memory/max_allocated (GiB)": 36.53,
|
| 2078 |
+
"ppl": 1.00414,
|
| 2079 |
+
"step": 148,
|
| 2080 |
+
"tokens/total": 4727120,
|
| 2081 |
+
"tokens/train_per_sec_per_gpu": 31.07,
|
| 2082 |
+
"tokens/trainable": 67769
|
| 2083 |
+
},
|
| 2084 |
+
{
|
| 2085 |
+
"epoch": 0.58203125,
|
| 2086 |
+
"grad_norm": 0.378053218126297,
|
| 2087 |
+
"learning_rate": 8.656219011037509e-05,
|
| 2088 |
+
"loss": 0.009747720323503017,
|
| 2089 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 2090 |
+
"memory/max_active (GiB)": 36.53,
|
| 2091 |
+
"memory/max_allocated (GiB)": 36.53,
|
| 2092 |
+
"ppl": 1.0098,
|
| 2093 |
+
"step": 149,
|
| 2094 |
+
"tokens/total": 4759168,
|
| 2095 |
+
"tokens/train_per_sec_per_gpu": 27.25,
|
| 2096 |
+
"tokens/trainable": 68257
|
| 2097 |
+
},
|
| 2098 |
+
{
|
| 2099 |
+
"epoch": 0.5859375,
|
| 2100 |
+
"grad_norm": 0.21076741814613342,
|
| 2101 |
+
"learning_rate": 8.63546196598125e-05,
|
| 2102 |
+
"loss": 0.005035653710365295,
|
| 2103 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 2104 |
+
"memory/max_active (GiB)": 36.39,
|
| 2105 |
+
"memory/max_allocated (GiB)": 36.39,
|
| 2106 |
+
"ppl": 1.00505,
|
| 2107 |
+
"step": 150,
|
| 2108 |
+
"tokens/total": 4791008,
|
| 2109 |
+
"tokens/train_per_sec_per_gpu": 29.48,
|
| 2110 |
+
"tokens/trainable": 68706
|
| 2111 |
+
},
|
| 2112 |
+
{
|
| 2113 |
+
"epoch": 0.58984375,
|
| 2114 |
+
"grad_norm": 0.25075697898864746,
|
| 2115 |
+
"learning_rate": 8.614574441554145e-05,
|
| 2116 |
+
"loss": 0.006027051247656345,
|
| 2117 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 2118 |
+
"memory/max_active (GiB)": 36.42,
|
| 2119 |
+
"memory/max_allocated (GiB)": 36.42,
|
| 2120 |
+
"ppl": 1.00605,
|
| 2121 |
+
"step": 151,
|
| 2122 |
+
"tokens/total": 4822912,
|
| 2123 |
+
"tokens/train_per_sec_per_gpu": 27.95,
|
| 2124 |
+
"tokens/trainable": 69131
|
| 2125 |
+
},
|
| 2126 |
+
{
|
| 2127 |
+
"epoch": 0.59375,
|
| 2128 |
+
"grad_norm": 0.5774204730987549,
|
| 2129 |
+
"learning_rate": 8.593557306971349e-05,
|
| 2130 |
+
"loss": 0.018617186695337296,
|
| 2131 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 2132 |
+
"memory/max_active (GiB)": 36.51,
|
| 2133 |
+
"memory/max_allocated (GiB)": 36.51,
|
| 2134 |
+
"ppl": 1.01879,
|
| 2135 |
+
"step": 152,
|
| 2136 |
+
"tokens/total": 4854816,
|
| 2137 |
+
"tokens/train_per_sec_per_gpu": 26.38,
|
| 2138 |
+
"tokens/trainable": 69586
|
| 2139 |
+
},
|
| 2140 |
+
{
|
| 2141 |
+
"epoch": 0.59765625,
|
| 2142 |
+
"grad_norm": 0.1364293098449707,
|
| 2143 |
+
"learning_rate": 8.572411436841618e-05,
|
| 2144 |
+
"loss": 0.002049289643764496,
|
| 2145 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 2146 |
+
"memory/max_active (GiB)": 36.4,
|
| 2147 |
+
"memory/max_allocated (GiB)": 36.4,
|
| 2148 |
+
"ppl": 1.00205,
|
| 2149 |
+
"step": 153,
|
| 2150 |
+
"tokens/total": 4886656,
|
| 2151 |
+
"tokens/train_per_sec_per_gpu": 27.55,
|
| 2152 |
+
"tokens/trainable": 70061
|
| 2153 |
+
},
|
| 2154 |
+
{
|
| 2155 |
+
"epoch": 0.6015625,
|
| 2156 |
+
"grad_norm": 0.25387004017829895,
|
| 2157 |
+
"learning_rate": 8.551137711130922e-05,
|
| 2158 |
+
"loss": 0.0044304742477834225,
|
| 2159 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 2160 |
+
"memory/max_active (GiB)": 36.45,
|
| 2161 |
+
"memory/max_allocated (GiB)": 36.45,
|
| 2162 |
+
"ppl": 1.00444,
|
| 2163 |
+
"step": 154,
|
| 2164 |
+
"tokens/total": 4918768,
|
| 2165 |
+
"tokens/train_per_sec_per_gpu": 23.26,
|
| 2166 |
+
"tokens/trainable": 70467
|
| 2167 |
+
},
|
| 2168 |
+
{
|
| 2169 |
+
"epoch": 0.60546875,
|
| 2170 |
+
"grad_norm": 0.3047125041484833,
|
| 2171 |
+
"learning_rate": 8.529737015125824e-05,
|
| 2172 |
+
"loss": 0.0043389927595853806,
|
| 2173 |
+
"memory/device_reserved (GiB)": 38.98,
|
| 2174 |
+
"memory/max_active (GiB)": 36.51,
|
| 2175 |
+
"memory/max_allocated (GiB)": 36.51,
|
| 2176 |
+
"ppl": 1.00435,
|
| 2177 |
+
"step": 155,
|
| 2178 |
+
"tokens/total": 4951008,
|
| 2179 |
+
"tokens/train_per_sec_per_gpu": 27.53,
|
| 2180 |
+
"tokens/trainable": 70933
|
| 2181 |
+
},
|
| 2182 |
+
{
|
| 2183 |
+
"epoch": 0.609375,
|
| 2184 |
+
"grad_norm": 0.1442601978778839,
|
| 2185 |
+
"learning_rate": 8.508210239396639e-05,
|
| 2186 |
+
"loss": 0.0031973645091056824,
|
| 2187 |
+
"memory/device_reserved (GiB)": 39.12,
|
| 2188 |
+
"memory/max_active (GiB)": 36.59,
|
| 2189 |
+
"memory/max_allocated (GiB)": 36.59,
|
| 2190 |
+
"ppl": 1.0032,
|
| 2191 |
+
"step": 156,
|
| 2192 |
+
"tokens/total": 4982976,
|
| 2193 |
+
"tokens/train_per_sec_per_gpu": 28.86,
|
| 2194 |
+
"tokens/trainable": 71382
|
| 2195 |
+
},
|
| 2196 |
+
{
|
| 2197 |
+
"epoch": 0.61328125,
|
| 2198 |
+
"grad_norm": 0.2608455717563629,
|
| 2199 |
+
"learning_rate": 8.486558279760375e-05,
|
| 2200 |
+
"loss": 0.0032951058819890022,
|
| 2201 |
+
"memory/device_reserved (GiB)": 39.12,
|
| 2202 |
+
"memory/max_active (GiB)": 36.51,
|
| 2203 |
+
"memory/max_allocated (GiB)": 36.51,
|
| 2204 |
+
"ppl": 1.0033,
|
| 2205 |
+
"step": 157,
|
| 2206 |
+
"tokens/total": 5014640,
|
| 2207 |
+
"tokens/train_per_sec_per_gpu": 25.66,
|
| 2208 |
+
"tokens/trainable": 71808
|
| 2209 |
+
},
|
| 2210 |
+
{
|
| 2211 |
+
"epoch": 0.6171875,
|
| 2212 |
+
"grad_norm": 0.637295663356781,
|
| 2213 |
+
"learning_rate": 8.464782037243449e-05,
|
| 2214 |
+
"loss": 0.01436957623809576,
|
| 2215 |
+
"memory/device_reserved (GiB)": 39.12,
|
| 2216 |
+
"memory/max_active (GiB)": 36.35,
|
| 2217 |
+
"memory/max_allocated (GiB)": 36.35,
|
| 2218 |
+
"ppl": 1.01447,
|
| 2219 |
+
"step": 158,
|
| 2220 |
+
"tokens/total": 5046672,
|
| 2221 |
+
"tokens/train_per_sec_per_gpu": 27.58,
|
| 2222 |
+
"tokens/trainable": 72249
|
| 2223 |
+
},
|
| 2224 |
+
{
|
| 2225 |
+
"epoch": 0.62109375,
|
| 2226 |
+
"grad_norm": 0.9834056496620178,
|
| 2227 |
+
"learning_rate": 8.442882418044202e-05,
|
| 2228 |
+
"loss": 0.02375311404466629,
|
| 2229 |
+
"memory/device_reserved (GiB)": 39.12,
|
| 2230 |
+
"memory/max_active (GiB)": 36.39,
|
| 2231 |
+
"memory/max_allocated (GiB)": 36.39,
|
| 2232 |
+
"ppl": 1.02404,
|
| 2233 |
+
"step": 159,
|
| 2234 |
+
"tokens/total": 5078528,
|
| 2235 |
+
"tokens/train_per_sec_per_gpu": 29.28,
|
| 2236 |
+
"tokens/trainable": 72726
|
| 2237 |
+
},
|
| 2238 |
+
{
|
| 2239 |
+
"epoch": 0.625,
|
| 2240 |
+
"grad_norm": 0.35432615876197815,
|
| 2241 |
+
"learning_rate": 8.420860333495179e-05,
|
| 2242 |
+
"loss": 0.006119017023593187,
|
| 2243 |
+
"memory/device_reserved (GiB)": 39.12,
|
| 2244 |
+
"memory/max_active (GiB)": 36.62,
|
| 2245 |
+
"memory/max_allocated (GiB)": 36.62,
|
| 2246 |
+
"ppl": 1.00614,
|
| 2247 |
+
"step": 160,
|
| 2248 |
+
"tokens/total": 5110704,
|
| 2249 |
+
"tokens/train_per_sec_per_gpu": 27.12,
|
| 2250 |
+
"tokens/trainable": 73148
|
| 2251 |
+
},
|
| 2252 |
+
{
|
| 2253 |
+
"epoch": 0.62890625,
|
| 2254 |
+
"grad_norm": 0.44270065426826477,
|
| 2255 |
+
"learning_rate": 8.398716700025208e-05,
|
| 2256 |
+
"loss": 0.01352179329842329,
|
| 2257 |
+
"memory/device_reserved (GiB)": 39.12,
|
| 2258 |
+
"memory/max_active (GiB)": 36.72,
|
| 2259 |
+
"memory/max_allocated (GiB)": 36.72,
|
| 2260 |
+
"ppl": 1.01361,
|
| 2261 |
+
"step": 161,
|
| 2262 |
+
"tokens/total": 5142944,
|
| 2263 |
+
"tokens/train_per_sec_per_gpu": 26.39,
|
| 2264 |
+
"tokens/trainable": 73600
|
| 2265 |
+
},
|
| 2266 |
+
{
|
| 2267 |
+
"epoch": 0.6328125,
|
| 2268 |
+
"grad_norm": 1.2181634902954102,
|
| 2269 |
+
"learning_rate": 8.376452439121266e-05,
|
| 2270 |
+
"loss": 0.01820964366197586,
|
| 2271 |
+
"memory/device_reserved (GiB)": 38.2,
|
| 2272 |
+
"memory/max_active (GiB)": 36.25,
|
| 2273 |
+
"memory/max_allocated (GiB)": 36.25,
|
| 2274 |
+
"ppl": 1.01838,
|
| 2275 |
+
"step": 162,
|
| 2276 |
+
"tokens/total": 5174592,
|
| 2277 |
+
"tokens/train_per_sec_per_gpu": 29.57,
|
| 2278 |
+
"tokens/trainable": 74068
|
| 2279 |
+
},
|
| 2280 |
+
{
|
| 2281 |
+
"epoch": 0.63671875,
|
| 2282 |
+
"grad_norm": 1.9321303367614746,
|
| 2283 |
+
"learning_rate": 8.354068477290124e-05,
|
| 2284 |
+
"loss": 0.009742327965795994,
|
| 2285 |
+
"memory/device_reserved (GiB)": 38.2,
|
| 2286 |
+
"memory/max_active (GiB)": 36.38,
|
| 2287 |
+
"memory/max_allocated (GiB)": 36.38,
|
| 2288 |
+
"ppl": 1.00979,
|
| 2289 |
+
"step": 163,
|
| 2290 |
+
"tokens/total": 5206432,
|
| 2291 |
+
"tokens/train_per_sec_per_gpu": 29.89,
|
| 2292 |
+
"tokens/trainable": 74527
|
| 2293 |
+
},
|
| 2294 |
+
{
|
| 2295 |
+
"epoch": 0.640625,
|
| 2296 |
+
"grad_norm": 0.3545796275138855,
|
| 2297 |
+
"learning_rate": 8.331565746019807e-05,
|
| 2298 |
+
"loss": 0.00975855067372322,
|
| 2299 |
+
"memory/device_reserved (GiB)": 38.2,
|
| 2300 |
+
"memory/max_active (GiB)": 36.38,
|
| 2301 |
+
"memory/max_allocated (GiB)": 36.38,
|
| 2302 |
+
"ppl": 1.00981,
|
| 2303 |
+
"step": 164,
|
| 2304 |
+
"tokens/total": 5238384,
|
| 2305 |
+
"tokens/train_per_sec_per_gpu": 26.44,
|
| 2306 |
+
"tokens/trainable": 74992
|
| 2307 |
+
},
|
| 2308 |
+
{
|
| 2309 |
+
"epoch": 0.64453125,
|
| 2310 |
+
"grad_norm": 0.35368478298187256,
|
| 2311 |
+
"learning_rate": 8.308945181740812e-05,
|
| 2312 |
+
"loss": 0.010195466689765453,
|
| 2313 |
+
"memory/device_reserved (GiB)": 38.62,
|
| 2314 |
+
"memory/max_active (GiB)": 36.45,
|
| 2315 |
+
"memory/max_allocated (GiB)": 36.45,
|
| 2316 |
+
"ppl": 1.01025,
|
| 2317 |
+
"step": 165,
|
| 2318 |
+
"tokens/total": 5270272,
|
| 2319 |
+
"tokens/train_per_sec_per_gpu": 29.41,
|
| 2320 |
+
"tokens/trainable": 75442
|
| 2321 |
+
},
|
| 2322 |
+
{
|
| 2323 |
+
"epoch": 0.6484375,
|
| 2324 |
+
"grad_norm": 0.34957799315452576,
|
| 2325 |
+
"learning_rate": 8.286207725787153e-05,
|
| 2326 |
+
"loss": 0.009373681619763374,
|
| 2327 |
+
"memory/device_reserved (GiB)": 38.62,
|
| 2328 |
+
"memory/max_active (GiB)": 36.54,
|
| 2329 |
+
"memory/max_allocated (GiB)": 36.54,
|
| 2330 |
+
"ppl": 1.00942,
|
| 2331 |
+
"step": 166,
|
| 2332 |
+
"tokens/total": 5302368,
|
| 2333 |
+
"tokens/train_per_sec_per_gpu": 26.2,
|
| 2334 |
+
"tokens/trainable": 75887
|
| 2335 |
+
},
|
| 2336 |
+
{
|
| 2337 |
+
"epoch": 0.65234375,
|
| 2338 |
+
"grad_norm": 0.3684624135494232,
|
| 2339 |
+
"learning_rate": 8.263354324357182e-05,
|
| 2340 |
+
"loss": 0.008211556822061539,
|
| 2341 |
+
"memory/device_reserved (GiB)": 38.7,
|
| 2342 |
+
"memory/max_active (GiB)": 36.58,
|
| 2343 |
+
"memory/max_allocated (GiB)": 36.58,
|
| 2344 |
+
"ppl": 1.00825,
|
| 2345 |
+
"step": 167,
|
| 2346 |
+
"tokens/total": 5334496,
|
| 2347 |
+
"tokens/train_per_sec_per_gpu": 28.21,
|
| 2348 |
+
"tokens/trainable": 76331
|
| 2349 |
+
},
|
| 2350 |
+
{
|
| 2351 |
+
"epoch": 0.65625,
|
| 2352 |
+
"grad_norm": 0.12826858460903168,
|
| 2353 |
+
"learning_rate": 8.240385928474219e-05,
|
| 2354 |
+
"loss": 0.004492453299462795,
|
| 2355 |
+
"memory/device_reserved (GiB)": 38.7,
|
| 2356 |
+
"memory/max_active (GiB)": 36.4,
|
| 2357 |
+
"memory/max_allocated (GiB)": 36.4,
|
| 2358 |
+
"ppl": 1.0045,
|
| 2359 |
+
"step": 168,
|
| 2360 |
+
"tokens/total": 5364288,
|
| 2361 |
+
"tokens/train_per_sec_per_gpu": 30.16,
|
| 2362 |
+
"tokens/trainable": 76745
|
| 2363 |
+
},
|
| 2364 |
+
{
|
| 2365 |
+
"epoch": 0.66015625,
|
| 2366 |
+
"grad_norm": 0.31828173995018005,
|
| 2367 |
+
"learning_rate": 8.217303493946967e-05,
|
| 2368 |
+
"loss": 0.005733514670282602,
|
| 2369 |
+
"memory/device_reserved (GiB)": 38.7,
|
| 2370 |
+
"memory/max_active (GiB)": 36.57,
|
| 2371 |
+
"memory/max_allocated (GiB)": 36.57,
|
| 2372 |
+
"ppl": 1.00575,
|
| 2373 |
+
"step": 169,
|
| 2374 |
+
"tokens/total": 5396512,
|
| 2375 |
+
"tokens/train_per_sec_per_gpu": 28.34,
|
| 2376 |
+
"tokens/trainable": 77201
|
| 2377 |
+
},
|
| 2378 |
+
{
|
| 2379 |
+
"epoch": 0.6640625,
|
| 2380 |
+
"grad_norm": 0.6174353361129761,
|
| 2381 |
+
"learning_rate": 8.194107981329746e-05,
|
| 2382 |
+
"loss": 0.01915649324655533,
|
| 2383 |
+
"memory/device_reserved (GiB)": 38.7,
|
| 2384 |
+
"memory/max_active (GiB)": 36.6,
|
| 2385 |
+
"memory/max_allocated (GiB)": 36.6,
|
| 2386 |
+
"ppl": 1.01934,
|
| 2387 |
+
"step": 170,
|
| 2388 |
+
"tokens/total": 5428624,
|
| 2389 |
+
"tokens/train_per_sec_per_gpu": 27.75,
|
| 2390 |
+
"tokens/trainable": 77655
|
| 2391 |
+
},
|
| 2392 |
+
{
|
| 2393 |
+
"epoch": 0.66796875,
|
| 2394 |
+
"grad_norm": 0.2902314066886902,
|
| 2395 |
+
"learning_rate": 8.170800355882518e-05,
|
| 2396 |
+
"loss": 0.0036087254993617535,
|
| 2397 |
+
"memory/device_reserved (GiB)": 38.84,
|
| 2398 |
+
"memory/max_active (GiB)": 36.62,
|
| 2399 |
+
"memory/max_allocated (GiB)": 36.62,
|
| 2400 |
+
"ppl": 1.00362,
|
| 2401 |
+
"step": 171,
|
| 2402 |
+
"tokens/total": 5460880,
|
| 2403 |
+
"tokens/train_per_sec_per_gpu": 32.21,
|
| 2404 |
+
"tokens/trainable": 78122
|
| 2405 |
+
},
|
| 2406 |
+
{
|
| 2407 |
+
"epoch": 0.671875,
|
| 2408 |
+
"grad_norm": 0.3267754912376404,
|
| 2409 |
+
"learning_rate": 8.147381587530713e-05,
|
| 2410 |
+
"loss": 0.008090222254395485,
|
| 2411 |
+
"memory/device_reserved (GiB)": 38.84,
|
| 2412 |
+
"memory/max_active (GiB)": 36.59,
|
| 2413 |
+
"memory/max_allocated (GiB)": 36.59,
|
| 2414 |
+
"ppl": 1.00812,
|
| 2415 |
+
"step": 172,
|
| 2416 |
+
"tokens/total": 5493088,
|
| 2417 |
+
"tokens/train_per_sec_per_gpu": 27.86,
|
| 2418 |
+
"tokens/trainable": 78576
|
| 2419 |
+
},
|
| 2420 |
+
{
|
| 2421 |
+
"epoch": 0.67578125,
|
| 2422 |
+
"grad_norm": 0.4086189866065979,
|
| 2423 |
+
"learning_rate": 8.123852650824877e-05,
|
| 2424 |
+
"loss": 0.006351984106004238,
|
| 2425 |
+
"memory/device_reserved (GiB)": 38.84,
|
| 2426 |
+
"memory/max_active (GiB)": 36.51,
|
| 2427 |
+
"memory/max_allocated (GiB)": 36.51,
|
| 2428 |
+
"ppl": 1.00637,
|
| 2429 |
+
"step": 173,
|
| 2430 |
+
"tokens/total": 5525312,
|
| 2431 |
+
"tokens/train_per_sec_per_gpu": 30.02,
|
| 2432 |
+
"tokens/trainable": 79059
|
| 2433 |
+
},
|
| 2434 |
+
{
|
| 2435 |
+
"epoch": 0.6796875,
|
| 2436 |
+
"grad_norm": 0.5261490345001221,
|
| 2437 |
+
"learning_rate": 8.100214524900103e-05,
|
| 2438 |
+
"loss": 0.008662862703204155,
|
| 2439 |
+
"memory/device_reserved (GiB)": 38.84,
|
| 2440 |
+
"memory/max_active (GiB)": 36.25,
|
| 2441 |
+
"memory/max_allocated (GiB)": 36.25,
|
| 2442 |
+
"ppl": 1.0087,
|
| 2443 |
+
"step": 174,
|
| 2444 |
+
"tokens/total": 5556880,
|
| 2445 |
+
"tokens/train_per_sec_per_gpu": 24.62,
|
| 2446 |
+
"tokens/trainable": 79498
|
| 2447 |
+
},
|
| 2448 |
+
{
|
| 2449 |
+
"epoch": 0.68359375,
|
| 2450 |
+
"grad_norm": 0.11292761564254761,
|
| 2451 |
+
"learning_rate": 8.076468193435301e-05,
|
| 2452 |
+
"loss": 0.0027105510234832764,
|
| 2453 |
+
"memory/device_reserved (GiB)": 38.84,
|
| 2454 |
+
"memory/max_active (GiB)": 36.52,
|
| 2455 |
+
"memory/max_allocated (GiB)": 36.52,
|
| 2456 |
+
"ppl": 1.00271,
|
| 2457 |
+
"step": 175,
|
| 2458 |
+
"tokens/total": 5588976,
|
| 2459 |
+
"tokens/train_per_sec_per_gpu": 25.23,
|
| 2460 |
+
"tokens/trainable": 79922
|
| 2461 |
+
},
|
| 2462 |
+
{
|
| 2463 |
+
"epoch": 0.6875,
|
| 2464 |
+
"grad_norm": 0.33315548300743103,
|
| 2465 |
+
"learning_rate": 8.052614644612253e-05,
|
| 2466 |
+
"loss": 0.0030926030594855547,
|
| 2467 |
+
"memory/device_reserved (GiB)": 38.84,
|
| 2468 |
+
"memory/max_active (GiB)": 36.11,
|
| 2469 |
+
"memory/max_allocated (GiB)": 36.11,
|
| 2470 |
+
"ppl": 1.0031,
|
| 2471 |
+
"step": 176,
|
| 2472 |
+
"tokens/total": 5618992,
|
| 2473 |
+
"tokens/train_per_sec_per_gpu": 29.51,
|
| 2474 |
+
"tokens/trainable": 80383
|
| 2475 |
+
},
|
| 2476 |
+
{
|
| 2477 |
+
"epoch": 0.69140625,
|
| 2478 |
+
"grad_norm": 0.3136921226978302,
|
| 2479 |
+
"learning_rate": 8.028654871074489e-05,
|
| 2480 |
+
"loss": 0.005057850852608681,
|
| 2481 |
+
"memory/device_reserved (GiB)": 38.84,
|
| 2482 |
+
"memory/max_active (GiB)": 36.53,
|
| 2483 |
+
"memory/max_allocated (GiB)": 36.53,
|
| 2484 |
+
"ppl": 1.00507,
|
| 2485 |
+
"step": 177,
|
| 2486 |
+
"tokens/total": 5651072,
|
| 2487 |
+
"tokens/train_per_sec_per_gpu": 27.48,
|
| 2488 |
+
"tokens/trainable": 80824
|
| 2489 |
+
},
|
| 2490 |
+
{
|
| 2491 |
+
"epoch": 0.6953125,
|
| 2492 |
+
"grad_norm": 1.0526509284973145,
|
| 2493 |
+
"learning_rate": 8.004589869885986e-05,
|
| 2494 |
+
"loss": 0.010707498528063297,
|
| 2495 |
+
"memory/device_reserved (GiB)": 38.84,
|
| 2496 |
+
"memory/max_active (GiB)": 36.58,
|
| 2497 |
+
"memory/max_allocated (GiB)": 36.58,
|
| 2498 |
+
"ppl": 1.01077,
|
| 2499 |
+
"step": 178,
|
| 2500 |
+
"tokens/total": 5683296,
|
| 2501 |
+
"tokens/train_per_sec_per_gpu": 26.58,
|
| 2502 |
+
"tokens/trainable": 81243
|
| 2503 |
+
},
|
| 2504 |
+
{
|
| 2505 |
+
"epoch": 0.69921875,
|
| 2506 |
+
"grad_norm": 0.1329648196697235,
|
| 2507 |
+
"learning_rate": 7.980420642489674e-05,
|
| 2508 |
+
"loss": 0.0017975447699427605,
|
| 2509 |
+
"memory/device_reserved (GiB)": 38.84,
|
| 2510 |
+
"memory/max_active (GiB)": 36.61,
|
| 2511 |
+
"memory/max_allocated (GiB)": 36.61,
|
| 2512 |
+
"ppl": 1.0018,
|
| 2513 |
+
"step": 179,
|
| 2514 |
+
"tokens/total": 5715520,
|
| 2515 |
+
"tokens/train_per_sec_per_gpu": 28.44,
|
| 2516 |
+
"tokens/trainable": 81716
|
| 2517 |
+
},
|
| 2518 |
+
{
|
| 2519 |
+
"epoch": 0.703125,
|
| 2520 |
+
"grad_norm": 1.0749201774597168,
|
| 2521 |
+
"learning_rate": 7.95614819466576e-05,
|
| 2522 |
+
"loss": 0.025617048144340515,
|
| 2523 |
+
"memory/device_reserved (GiB)": 38.84,
|
| 2524 |
+
"memory/max_active (GiB)": 36.48,
|
| 2525 |
+
"memory/max_allocated (GiB)": 36.48,
|
| 2526 |
+
"ppl": 1.02595,
|
| 2527 |
+
"step": 180,
|
| 2528 |
+
"tokens/total": 5747488,
|
| 2529 |
+
"tokens/train_per_sec_per_gpu": 29.65,
|
| 2530 |
+
"tokens/trainable": 82181
|
| 2531 |
+
},
|
| 2532 |
+
{
|
| 2533 |
+
"epoch": 0.70703125,
|
| 2534 |
+
"grad_norm": 1.0446465015411377,
|
| 2535 |
+
"learning_rate": 7.931773536489872e-05,
|
| 2536 |
+
"loss": 0.030236585065722466,
|
| 2537 |
+
"memory/device_reserved (GiB)": 38.84,
|
| 2538 |
+
"memory/max_active (GiB)": 35.9,
|
| 2539 |
+
"memory/max_allocated (GiB)": 35.9,
|
| 2540 |
+
"ppl": 1.0307,
|
| 2541 |
+
"step": 181,
|
| 2542 |
+
"tokens/total": 5777264,
|
| 2543 |
+
"tokens/train_per_sec_per_gpu": 28.89,
|
| 2544 |
+
"tokens/trainable": 82626
|
| 2545 |
+
},
|
| 2546 |
+
{
|
| 2547 |
+
"epoch": 0.7109375,
|
| 2548 |
+
"grad_norm": 0.22853964567184448,
|
| 2549 |
+
"learning_rate": 7.907297682291035e-05,
|
| 2550 |
+
"loss": 0.0038214433006942272,
|
| 2551 |
+
"memory/device_reserved (GiB)": 38.84,
|
| 2552 |
+
"memory/max_active (GiB)": 36.52,
|
| 2553 |
+
"memory/max_allocated (GiB)": 36.52,
|
| 2554 |
+
"ppl": 1.00383,
|
| 2555 |
+
"step": 182,
|
| 2556 |
+
"tokens/total": 5809264,
|
| 2557 |
+
"tokens/train_per_sec_per_gpu": 29.35,
|
| 2558 |
+
"tokens/trainable": 83089
|
| 2559 |
+
},
|
| 2560 |
+
{
|
| 2561 |
+
"epoch": 0.71484375,
|
| 2562 |
+
"grad_norm": 0.057821910828351974,
|
| 2563 |
+
"learning_rate": 7.882721650609442e-05,
|
| 2564 |
+
"loss": 0.0004995397757738829,
|
| 2565 |
+
"memory/device_reserved (GiB)": 38.84,
|
| 2566 |
+
"memory/max_active (GiB)": 36.52,
|
| 2567 |
+
"memory/max_allocated (GiB)": 36.52,
|
| 2568 |
+
"ppl": 1.0005,
|
| 2569 |
+
"step": 183,
|
| 2570 |
+
"tokens/total": 5841488,
|
| 2571 |
+
"tokens/train_per_sec_per_gpu": 29.34,
|
| 2572 |
+
"tokens/trainable": 83590
|
| 2573 |
+
},
|
| 2574 |
+
{
|
| 2575 |
+
"epoch": 0.71875,
|
| 2576 |
+
"grad_norm": 1.3264167308807373,
|
| 2577 |
+
"learning_rate": 7.85804646415409e-05,
|
| 2578 |
+
"loss": 0.013232000172138214,
|
| 2579 |
+
"memory/device_reserved (GiB)": 38.84,
|
| 2580 |
+
"memory/max_active (GiB)": 36.59,
|
| 2581 |
+
"memory/max_allocated (GiB)": 36.59,
|
| 2582 |
+
"ppl": 1.01332,
|
| 2583 |
+
"step": 184,
|
| 2584 |
+
"tokens/total": 5873696,
|
| 2585 |
+
"tokens/train_per_sec_per_gpu": 29.33,
|
| 2586 |
+
"tokens/trainable": 84046
|
| 2587 |
+
},
|
| 2588 |
+
{
|
| 2589 |
+
"epoch": 0.72265625,
|
| 2590 |
+
"grad_norm": 0.6027824878692627,
|
| 2591 |
+
"learning_rate": 7.833273149760207e-05,
|
| 2592 |
+
"loss": 0.012215660884976387,
|
| 2593 |
+
"memory/device_reserved (GiB)": 38.84,
|
| 2594 |
+
"memory/max_active (GiB)": 36.29,
|
| 2595 |
+
"memory/max_allocated (GiB)": 36.29,
|
| 2596 |
+
"ppl": 1.01229,
|
| 2597 |
+
"step": 185,
|
| 2598 |
+
"tokens/total": 5905408,
|
| 2599 |
+
"tokens/train_per_sec_per_gpu": 28.25,
|
| 2600 |
+
"tokens/trainable": 84517
|
| 2601 |
+
},
|
| 2602 |
+
{
|
| 2603 |
+
"epoch": 0.7265625,
|
| 2604 |
+
"grad_norm": 0.5848041772842407,
|
| 2605 |
+
"learning_rate": 7.808402738346527e-05,
|
| 2606 |
+
"loss": 0.024627480655908585,
|
| 2607 |
+
"memory/device_reserved (GiB)": 38.84,
|
| 2608 |
+
"memory/max_active (GiB)": 36.54,
|
| 2609 |
+
"memory/max_allocated (GiB)": 36.54,
|
| 2610 |
+
"ppl": 1.02493,
|
| 2611 |
+
"step": 186,
|
| 2612 |
+
"tokens/total": 5937392,
|
| 2613 |
+
"tokens/train_per_sec_per_gpu": 28.42,
|
| 2614 |
+
"tokens/trainable": 84974
|
| 2615 |
+
},
|
| 2616 |
+
{
|
| 2617 |
+
"epoch": 0.73046875,
|
| 2618 |
+
"grad_norm": 0.6823275089263916,
|
| 2619 |
+
"learning_rate": 7.783436264872382e-05,
|
| 2620 |
+
"loss": 0.0028813849203288555,
|
| 2621 |
+
"memory/device_reserved (GiB)": 38.84,
|
| 2622 |
+
"memory/max_active (GiB)": 36.48,
|
| 2623 |
+
"memory/max_allocated (GiB)": 36.48,
|
| 2624 |
+
"ppl": 1.00289,
|
| 2625 |
+
"step": 187,
|
| 2626 |
+
"tokens/total": 5969344,
|
| 2627 |
+
"tokens/train_per_sec_per_gpu": 29.28,
|
| 2628 |
+
"tokens/trainable": 85460
|
| 2629 |
+
},
|
| 2630 |
+
{
|
| 2631 |
+
"epoch": 0.734375,
|
| 2632 |
+
"grad_norm": 0.41855958104133606,
|
| 2633 |
+
"learning_rate": 7.758374768294647e-05,
|
| 2634 |
+
"loss": 0.009796380065381527,
|
| 2635 |
+
"memory/device_reserved (GiB)": 38.84,
|
| 2636 |
+
"memory/max_active (GiB)": 36.42,
|
| 2637 |
+
"memory/max_allocated (GiB)": 36.42,
|
| 2638 |
+
"ppl": 1.00984,
|
| 2639 |
+
"step": 188,
|
| 2640 |
+
"tokens/total": 6001296,
|
| 2641 |
+
"tokens/train_per_sec_per_gpu": 30.02,
|
| 2642 |
+
"tokens/trainable": 85939
|
| 2643 |
+
},
|
| 2644 |
+
{
|
| 2645 |
+
"epoch": 0.73828125,
|
| 2646 |
+
"grad_norm": 0.6849080324172974,
|
| 2647 |
+
"learning_rate": 7.733219291524489e-05,
|
| 2648 |
+
"loss": 0.004100777208805084,
|
| 2649 |
+
"memory/device_reserved (GiB)": 40.04,
|
| 2650 |
+
"memory/max_active (GiB)": 36.58,
|
| 2651 |
+
"memory/max_allocated (GiB)": 36.58,
|
| 2652 |
+
"ppl": 1.00411,
|
| 2653 |
+
"step": 189,
|
| 2654 |
+
"tokens/total": 6031216,
|
| 2655 |
+
"tokens/train_per_sec_per_gpu": 31.66,
|
| 2656 |
+
"tokens/trainable": 86377
|
| 2657 |
+
},
|
| 2658 |
+
{
|
| 2659 |
+
"epoch": 0.7421875,
|
| 2660 |
+
"grad_norm": 0.15838374197483063,
|
| 2661 |
+
"learning_rate": 7.707970881383977e-05,
|
| 2662 |
+
"loss": 0.003986812196671963,
|
| 2663 |
+
"memory/device_reserved (GiB)": 40.04,
|
| 2664 |
+
"memory/max_active (GiB)": 36.53,
|
| 2665 |
+
"memory/max_allocated (GiB)": 36.53,
|
| 2666 |
+
"ppl": 1.00399,
|
| 2667 |
+
"step": 190,
|
| 2668 |
+
"tokens/total": 6063296,
|
| 2669 |
+
"tokens/train_per_sec_per_gpu": 28.2,
|
| 2670 |
+
"tokens/trainable": 86834
|
| 2671 |
+
},
|
| 2672 |
+
{
|
| 2673 |
+
"epoch": 0.74609375,
|
| 2674 |
+
"grad_norm": 0.3117486536502838,
|
| 2675 |
+
"learning_rate": 7.682630588562518e-05,
|
| 2676 |
+
"loss": 0.009132719598710537,
|
| 2677 |
+
"memory/device_reserved (GiB)": 40.04,
|
| 2678 |
+
"memory/max_active (GiB)": 36.55,
|
| 2679 |
+
"memory/max_allocated (GiB)": 36.55,
|
| 2680 |
+
"ppl": 1.00917,
|
| 2681 |
+
"step": 191,
|
| 2682 |
+
"tokens/total": 6095216,
|
| 2683 |
+
"tokens/train_per_sec_per_gpu": 26.65,
|
| 2684 |
+
"tokens/trainable": 87265
|
| 2685 |
+
},
|
| 2686 |
+
{
|
| 2687 |
+
"epoch": 0.75,
|
| 2688 |
+
"grad_norm": 0.7837114334106445,
|
| 2689 |
+
"learning_rate": 7.657199467573129e-05,
|
| 2690 |
+
"loss": 0.007239446043968201,
|
| 2691 |
+
"memory/device_reserved (GiB)": 40.04,
|
| 2692 |
+
"memory/max_active (GiB)": 36.52,
|
| 2693 |
+
"memory/max_allocated (GiB)": 36.52,
|
| 2694 |
+
"ppl": 1.00727,
|
| 2695 |
+
"step": 192,
|
| 2696 |
+
"tokens/total": 6127488,
|
| 2697 |
+
"tokens/train_per_sec_per_gpu": 28.57,
|
| 2698 |
+
"tokens/trainable": 87747
|
| 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": 4.159084180312351e+17,
|
| 2719 |
+
"train_batch_size": 16,
|
| 2720 |
+
"trial_name": null,
|
| 2721 |
+
"trial_params": null
|
| 2722 |
+
}
|
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-192/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:92b1065d4abbeacb5ed4bced699965f9cfab8427a7efb6f6541a63653fc57634
|
| 3 |
+
size 8273
|
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-224/README.md
ADDED
|
@@ -0,0 +1,208 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: /workspace/deconf_wave_deconf_control/parent
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- axolotl
|
| 7 |
+
- base_model:adapter:/workspace/deconf_wave_deconf_control/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
|
deconfound_sdf_v1/aft_control/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/deconf_wave_deconf_control/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 |
+
"gate_proj",
|
| 34 |
+
"v_proj",
|
| 35 |
+
"k_proj",
|
| 36 |
+
"up_proj",
|
| 37 |
+
"q_proj",
|
| 38 |
+
"o_proj",
|
| 39 |
+
"down_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 |
+
}
|
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-224/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:16d5d730ef95ad52bd73ac5c2f399d9bc75298abea43afc5ed5a1691843284e0
|
| 3 |
+
size 547777976
|
deconfound_sdf_v1/aft_control/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 -%}
|
deconfound_sdf_v1/aft_control/training/checkpoints/checkpoint-224/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f5c20255df1c1e1fb04d29b4f27c99eefa39ec3da290e74227715db6a9290348
|
| 3 |
+
size 1048106435
|