Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- config.json +46 -0
- finetune_lora_llama3.1_8B_Instruct_s2s_zyh.sh +90 -0
- generation_config.json +12 -0
- model-00001-of-00004.safetensors +3 -0
- model-00002-of-00004.safetensors +3 -0
- model-00003-of-00004.safetensors +3 -0
- model-00004-of-00004.safetensors +3 -0
- model.safetensors.index.json +403 -0
- special_tokens_map.json +23 -0
- tokenizer.json +3 -0
- tokenizer_config.json +0 -0
- trainer_state.json +2982 -0
- training_args.bin +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
config.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "/linzhihang/zhangyuhao/ACLlama_s2s/output/S2S/S2S_finetune_small_lr1e-4_S2S-KD-unit-languge-new-0804-filter_kd_offline_base_merge_0808_20string_1e-4/checkpoint-16000",
|
| 3 |
+
"adapter_size": 1280,
|
| 4 |
+
"architectures": [
|
| 5 |
+
"ACLlamaForCausalLM"
|
| 6 |
+
],
|
| 7 |
+
"attention_bias": false,
|
| 8 |
+
"attention_dropout": 0.0,
|
| 9 |
+
"audio_token_len": 750,
|
| 10 |
+
"audio_tower": "/linzhihang/LLMs/whisper-v3",
|
| 11 |
+
"bos_token_id": 128000,
|
| 12 |
+
"eos_token_id": [
|
| 13 |
+
128001,
|
| 14 |
+
128008,
|
| 15 |
+
128009
|
| 16 |
+
],
|
| 17 |
+
"head_dim": 128,
|
| 18 |
+
"hidden_act": "silu",
|
| 19 |
+
"hidden_size": 4096,
|
| 20 |
+
"initializer_range": 0.02,
|
| 21 |
+
"intermediate_size": 14336,
|
| 22 |
+
"max_position_embeddings": 131072,
|
| 23 |
+
"mlp_bias": false,
|
| 24 |
+
"model_type": "ACLlama",
|
| 25 |
+
"num_attention_heads": 32,
|
| 26 |
+
"num_hidden_layers": 32,
|
| 27 |
+
"num_key_value_heads": 8,
|
| 28 |
+
"pretraining_tp": 1,
|
| 29 |
+
"rms_norm_eps": 1e-05,
|
| 30 |
+
"rope_scaling": {
|
| 31 |
+
"factor": 8.0,
|
| 32 |
+
"high_freq_factor": 4.0,
|
| 33 |
+
"low_freq_factor": 1.0,
|
| 34 |
+
"original_max_position_embeddings": 8192,
|
| 35 |
+
"rope_type": "llama3"
|
| 36 |
+
},
|
| 37 |
+
"rope_theta": 500000.0,
|
| 38 |
+
"tie_word_embeddings": false,
|
| 39 |
+
"torch_dtype": "float16",
|
| 40 |
+
"transformers_version": "4.48.1",
|
| 41 |
+
"unit_output": "finetune_kd",
|
| 42 |
+
"unit_vocab": "/linzhihang/zhangyuhao/unit_language/v6.8k.dict",
|
| 43 |
+
"unit_vocab_size": 7807,
|
| 44 |
+
"use_cache": false,
|
| 45 |
+
"vocab_size": 128257
|
| 46 |
+
}
|
finetune_lora_llama3.1_8B_Instruct_s2s_zyh.sh
ADDED
|
@@ -0,0 +1,90 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
source /linzhihang/conda_env/init.sh
|
| 2 |
+
conda activate s2s
|
| 3 |
+
cd /linzhihang/zhangyuhao/ACLlama_s2s/scripts
|
| 4 |
+
|
| 5 |
+
prefix=/linzhihang/zhangyuhao/ACLlama_s2s
|
| 6 |
+
|
| 7 |
+
# NAME
|
| 8 |
+
TASK=S2S
|
| 9 |
+
stage=finetune # edit in config
|
| 10 |
+
model_size=small # edit in config
|
| 11 |
+
lr=3e-5
|
| 12 |
+
# subtag=shareEmbW_CR_0507_base_Echox_s2s_pretrained_0503
|
| 13 |
+
# subtag=FirstTurnS2T+aligner_0505
|
| 14 |
+
# subtag=QA_OneTurn+aligner_Lora_0510
|
| 15 |
+
# subtag=ASR_UnitLanguage_4gram_BPE+aligner_0513
|
| 16 |
+
# subtag=QA_OneTurn_ALL_Lora_0516
|
| 17 |
+
# subtag=QA_OneTurn_ALL_Lora_0517
|
| 18 |
+
#subtag=QA_OneTurn_ALL_Lora_0618_newGen_80k_spm_epoch10-embedcon-10epoch-large-adapter-add-prefix
|
| 19 |
+
subtag=kd_offline_base_merge_0820_tune_bench
|
| 20 |
+
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
# base_model=/mnt/speech/zhangyuhao/text_to_speech/ACLlama_t2u/Echox_s2s_0516 # unit
|
| 24 |
+
#base_model=/linzhihang/zhangyuhao/ACLlama_s2s/Echox_s2s_unit_language_0529 # unit language
|
| 25 |
+
#base_model=/linzhihang/zhangyuhao/ACLlama_s2s/Echox_s2s_unit_language_0625 # unit language
|
| 26 |
+
#base_model=/linzhihang/zhangyuhao/ACLlama_s2s/Echox_s2s_KD_unit_langauge_0802_large_8B_check
|
| 27 |
+
base_model=/linzhihang/zhangyuhao/ACLlama_s2s/output/S2S/S2S_finetune_small_lr1e-4_S2S-KD-unit-languge-new-0804-filter_kd_offline_base_merge_0808_20string_1e-4/checkpoint-16000
|
| 28 |
+
#base_model=/linzhihang/zhangyuhao/ACLlama_s2s/output/S2S/S2S_finetune_small_lr1e-4_S2S-KD-unit-new-0812-bench-filter-8B_kd_offline_base_merge_0814/checkpoint-12200
|
| 29 |
+
# DATA
|
| 30 |
+
|
| 31 |
+
# data_json=/linzhihang/zhangyuhao/ACLlama_s2s/data/magpie_wer-filter-kd-40k-echo-ul-spm.json
|
| 32 |
+
#data_json=/linzhihang/zhangyuhao/ACLlama_s2s/data/magpie-slice-unit-languge-new-0618.json
|
| 33 |
+
#data_json=/linzhihang/zhangyuhao/ACLlama_s2s/data/magpie-slice-unit-languge-new-0629-filter.json
|
| 34 |
+
#data_json=/linzhihang/zhangyuhao/ACLlama_s2s/data/magpie-slice-unit-languge-new-0706-filter.json
|
| 35 |
+
#data_json=/linzhihang/zhangyuhao/ACLlama_s2s/data/magpie-slice-unit-languge-new-0717-filter.json
|
| 36 |
+
#data_json=/linzhihang/zhangyuhao/ACLlama_s2s/data/S2S-KD-unit-languge-new-0804-filter.json
|
| 37 |
+
data_json=/linzhihang/zhangyuhao/ACLlama_s2s/data/S2S-KD-unit-languge-new-0808-bench-filter-8B.json
|
| 38 |
+
#data_json=/linzhihang/zhangyuhao/ACLlama_s2s/data/S2S-KD-unit-new-0812-bench-filter-8B.json
|
| 39 |
+
|
| 40 |
+
|
| 41 |
+
training_set=${TASK}_${stage}_${model_size}_lr${lr}
|
| 42 |
+
model_tag="${training_set}_$(basename "$data_json" .json)_${subtag}"
|
| 43 |
+
|
| 44 |
+
checkpoint_dir=$prefix/output/$TASK/$model_tag
|
| 45 |
+
echo $checkpoint_dir
|
| 46 |
+
mkdir -p $checkpoint_dir
|
| 47 |
+
cp $0 $checkpoint_dir/
|
| 48 |
+
|
| 49 |
+
# CMD
|
| 50 |
+
NCCL_P2P_DISABLE=1 \
|
| 51 |
+
NCCL_IB_DISABLE=1 \
|
| 52 |
+
CUDA_VISIBLE_DEVICES=0,1,2,3,4,5,6,7 \
|
| 53 |
+
torchrun \
|
| 54 |
+
--nproc_per_node 8 \
|
| 55 |
+
--nnodes 1 \
|
| 56 |
+
--node_rank 0 \
|
| 57 |
+
--master_addr localhost \
|
| 58 |
+
--master_port 7897 \
|
| 59 |
+
$prefix/finetune_acllama_s2s_zyh.py \
|
| 60 |
+
--audio_model_name_or_path "/linzhihang/LLMs/whisper-v3" \
|
| 61 |
+
--text_model_name_or_path $base_model \
|
| 62 |
+
--data_path "$data_json" \
|
| 63 |
+
--fp16 True \
|
| 64 |
+
--output_dir "$checkpoint_dir" \
|
| 65 |
+
--num_train_epochs 1 \
|
| 66 |
+
--per_device_train_batch_size 1 \
|
| 67 |
+
--per_device_eval_batch_size 1 \
|
| 68 |
+
--gradient_accumulation_steps 1 \
|
| 69 |
+
--evaluation_strategy "no" \
|
| 70 |
+
--save_strategy "steps" \
|
| 71 |
+
--save_steps 100 \
|
| 72 |
+
--save_total_limit 1 \
|
| 73 |
+
--learning_rate $lr \
|
| 74 |
+
--weight_decay 0.1 \
|
| 75 |
+
--adam_beta2 0.95 \
|
| 76 |
+
--warmup_ratio 0.01 \
|
| 77 |
+
--lr_scheduler_type "inverse_sqrt" \
|
| 78 |
+
--logging_steps 1 \
|
| 79 |
+
--report_to "none" \
|
| 80 |
+
--model_max_length 1024 \
|
| 81 |
+
--gradient_checkpointing True \
|
| 82 |
+
--lazy_preprocess True \
|
| 83 |
+
--deepspeed "$prefix/config/ds_config_zero2.json" #\
|
| 84 |
+
#--use_lora #> $checkpoint_dir/train.log # 2>&1
|
| 85 |
+
|
| 86 |
+
# --use_lora
|
| 87 |
+
#--data_path "$prefix/data/libri_train_update.json" \
|
| 88 |
+
#--text_model_name_or_path "/mnt/user/zhangyuhao/LLM/llama3-instruct/llama3_1-8B/" \
|
| 89 |
+
#--data_path "../data/libri_train_other460.json" \
|
| 90 |
+
#--data_path "../data/train_mt_orgnize.json" \
|
generation_config.json
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token_id": 128000,
|
| 3 |
+
"do_sample": true,
|
| 4 |
+
"eos_token_id": [
|
| 5 |
+
128001,
|
| 6 |
+
128008,
|
| 7 |
+
128009
|
| 8 |
+
],
|
| 9 |
+
"temperature": 0.6,
|
| 10 |
+
"top_p": 0.9,
|
| 11 |
+
"transformers_version": "4.48.1"
|
| 12 |
+
}
|
model-00001-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8bd267beafe68de4b132e0719cba40e5c8ad5581ac3fb64803d3b52d03d248bb
|
| 3 |
+
size 4976706784
|
model-00002-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:029f0eb72b0f7e6a46c2237425686aa063799720f7071e9923a403fa2b4edce9
|
| 3 |
+
size 4999802616
|
model-00003-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d415012d58d8177e99151ccb2ba8fd4ac8ce44c0f1a33601317dc0f0d33b70f4
|
| 3 |
+
size 4915916080
|
model-00004-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e8a1641d1405012c16de4af1e47378abccf540b535488d0af278d980a192043a
|
| 3 |
+
size 4320743784
|
model.safetensors.index.json
ADDED
|
@@ -0,0 +1,403 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_size": 19213122560
|
| 4 |
+
},
|
| 5 |
+
"weight_map": {
|
| 6 |
+
"lm_head.weight": "model-00004-of-00004.safetensors",
|
| 7 |
+
"model.asr_transformer_encoder.layers.0.linear1.bias": "model-00004-of-00004.safetensors",
|
| 8 |
+
"model.asr_transformer_encoder.layers.0.linear1.weight": "model-00004-of-00004.safetensors",
|
| 9 |
+
"model.asr_transformer_encoder.layers.0.linear2.bias": "model-00004-of-00004.safetensors",
|
| 10 |
+
"model.asr_transformer_encoder.layers.0.linear2.weight": "model-00004-of-00004.safetensors",
|
| 11 |
+
"model.asr_transformer_encoder.layers.0.norm1.bias": "model-00004-of-00004.safetensors",
|
| 12 |
+
"model.asr_transformer_encoder.layers.0.norm1.weight": "model-00004-of-00004.safetensors",
|
| 13 |
+
"model.asr_transformer_encoder.layers.0.norm2.bias": "model-00004-of-00004.safetensors",
|
| 14 |
+
"model.asr_transformer_encoder.layers.0.norm2.weight": "model-00004-of-00004.safetensors",
|
| 15 |
+
"model.asr_transformer_encoder.layers.0.self_attn.in_proj_bias": "model-00004-of-00004.safetensors",
|
| 16 |
+
"model.asr_transformer_encoder.layers.0.self_attn.in_proj_weight": "model-00004-of-00004.safetensors",
|
| 17 |
+
"model.asr_transformer_encoder.layers.0.self_attn.out_proj.bias": "model-00004-of-00004.safetensors",
|
| 18 |
+
"model.asr_transformer_encoder.layers.0.self_attn.out_proj.weight": "model-00004-of-00004.safetensors",
|
| 19 |
+
"model.audio_feature_head.weight": "model-00004-of-00004.safetensors",
|
| 20 |
+
"model.embed_tokens.weight": "model-00001-of-00004.safetensors",
|
| 21 |
+
"model.layers.0.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 22 |
+
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 23 |
+
"model.layers.0.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 24 |
+
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 25 |
+
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 26 |
+
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 27 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 28 |
+
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 29 |
+
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 30 |
+
"model.layers.1.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 31 |
+
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 32 |
+
"model.layers.1.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 33 |
+
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 34 |
+
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 35 |
+
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 36 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 37 |
+
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 38 |
+
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 39 |
+
"model.layers.10.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 40 |
+
"model.layers.10.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 41 |
+
"model.layers.10.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 42 |
+
"model.layers.10.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 43 |
+
"model.layers.10.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 44 |
+
"model.layers.10.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 45 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 46 |
+
"model.layers.10.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 47 |
+
"model.layers.10.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 48 |
+
"model.layers.11.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 49 |
+
"model.layers.11.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 50 |
+
"model.layers.11.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 51 |
+
"model.layers.11.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 52 |
+
"model.layers.11.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 53 |
+
"model.layers.11.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 54 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 55 |
+
"model.layers.11.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 56 |
+
"model.layers.11.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 57 |
+
"model.layers.12.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 58 |
+
"model.layers.12.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 59 |
+
"model.layers.12.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 60 |
+
"model.layers.12.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 61 |
+
"model.layers.12.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 62 |
+
"model.layers.12.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 63 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 64 |
+
"model.layers.12.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 65 |
+
"model.layers.12.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 66 |
+
"model.layers.13.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 67 |
+
"model.layers.13.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 68 |
+
"model.layers.13.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 69 |
+
"model.layers.13.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 70 |
+
"model.layers.13.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 71 |
+
"model.layers.13.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 72 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 73 |
+
"model.layers.13.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 74 |
+
"model.layers.13.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 75 |
+
"model.layers.14.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 76 |
+
"model.layers.14.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 77 |
+
"model.layers.14.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 78 |
+
"model.layers.14.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 79 |
+
"model.layers.14.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 80 |
+
"model.layers.14.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 81 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 82 |
+
"model.layers.14.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 83 |
+
"model.layers.14.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 84 |
+
"model.layers.15.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 85 |
+
"model.layers.15.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 86 |
+
"model.layers.15.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 87 |
+
"model.layers.15.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 88 |
+
"model.layers.15.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 89 |
+
"model.layers.15.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 90 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 91 |
+
"model.layers.15.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 92 |
+
"model.layers.15.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 93 |
+
"model.layers.16.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 94 |
+
"model.layers.16.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 95 |
+
"model.layers.16.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 96 |
+
"model.layers.16.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 97 |
+
"model.layers.16.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 98 |
+
"model.layers.16.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 99 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 100 |
+
"model.layers.16.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 101 |
+
"model.layers.16.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 102 |
+
"model.layers.17.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 103 |
+
"model.layers.17.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 104 |
+
"model.layers.17.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 105 |
+
"model.layers.17.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 106 |
+
"model.layers.17.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 107 |
+
"model.layers.17.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 108 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 109 |
+
"model.layers.17.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 110 |
+
"model.layers.17.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 111 |
+
"model.layers.18.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 112 |
+
"model.layers.18.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 113 |
+
"model.layers.18.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 114 |
+
"model.layers.18.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 115 |
+
"model.layers.18.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 116 |
+
"model.layers.18.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 117 |
+
"model.layers.18.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 118 |
+
"model.layers.18.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 119 |
+
"model.layers.18.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 120 |
+
"model.layers.19.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 121 |
+
"model.layers.19.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 122 |
+
"model.layers.19.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 123 |
+
"model.layers.19.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 124 |
+
"model.layers.19.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 125 |
+
"model.layers.19.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 126 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 127 |
+
"model.layers.19.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 128 |
+
"model.layers.19.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 129 |
+
"model.layers.2.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 130 |
+
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 131 |
+
"model.layers.2.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 132 |
+
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 133 |
+
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 134 |
+
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 135 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 136 |
+
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 137 |
+
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 138 |
+
"model.layers.20.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 139 |
+
"model.layers.20.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 140 |
+
"model.layers.20.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 141 |
+
"model.layers.20.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 142 |
+
"model.layers.20.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 143 |
+
"model.layers.20.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 144 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 145 |
+
"model.layers.20.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 146 |
+
"model.layers.20.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 147 |
+
"model.layers.21.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 148 |
+
"model.layers.21.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 149 |
+
"model.layers.21.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 150 |
+
"model.layers.21.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 151 |
+
"model.layers.21.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 152 |
+
"model.layers.21.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 153 |
+
"model.layers.21.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 154 |
+
"model.layers.21.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 155 |
+
"model.layers.21.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 156 |
+
"model.layers.22.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 157 |
+
"model.layers.22.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 158 |
+
"model.layers.22.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 159 |
+
"model.layers.22.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 160 |
+
"model.layers.22.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 161 |
+
"model.layers.22.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 162 |
+
"model.layers.22.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 163 |
+
"model.layers.22.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 164 |
+
"model.layers.22.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 165 |
+
"model.layers.23.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 166 |
+
"model.layers.23.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 167 |
+
"model.layers.23.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 168 |
+
"model.layers.23.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 169 |
+
"model.layers.23.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 170 |
+
"model.layers.23.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 171 |
+
"model.layers.23.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 172 |
+
"model.layers.23.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 173 |
+
"model.layers.23.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 174 |
+
"model.layers.24.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 175 |
+
"model.layers.24.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 176 |
+
"model.layers.24.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 177 |
+
"model.layers.24.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 178 |
+
"model.layers.24.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 179 |
+
"model.layers.24.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 180 |
+
"model.layers.24.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 181 |
+
"model.layers.24.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 182 |
+
"model.layers.24.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 183 |
+
"model.layers.25.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 184 |
+
"model.layers.25.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 185 |
+
"model.layers.25.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 186 |
+
"model.layers.25.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 187 |
+
"model.layers.25.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 188 |
+
"model.layers.25.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 189 |
+
"model.layers.25.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 190 |
+
"model.layers.25.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 191 |
+
"model.layers.25.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 192 |
+
"model.layers.26.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 193 |
+
"model.layers.26.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 194 |
+
"model.layers.26.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 195 |
+
"model.layers.26.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 196 |
+
"model.layers.26.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 197 |
+
"model.layers.26.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 198 |
+
"model.layers.26.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 199 |
+
"model.layers.26.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 200 |
+
"model.layers.26.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 201 |
+
"model.layers.27.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 202 |
+
"model.layers.27.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 203 |
+
"model.layers.27.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 204 |
+
"model.layers.27.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 205 |
+
"model.layers.27.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 206 |
+
"model.layers.27.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 207 |
+
"model.layers.27.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 208 |
+
"model.layers.27.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 209 |
+
"model.layers.27.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 210 |
+
"model.layers.28.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 211 |
+
"model.layers.28.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 212 |
+
"model.layers.28.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 213 |
+
"model.layers.28.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 214 |
+
"model.layers.28.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 215 |
+
"model.layers.28.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 216 |
+
"model.layers.28.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 217 |
+
"model.layers.28.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 218 |
+
"model.layers.28.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 219 |
+
"model.layers.29.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 220 |
+
"model.layers.29.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 221 |
+
"model.layers.29.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 222 |
+
"model.layers.29.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 223 |
+
"model.layers.29.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 224 |
+
"model.layers.29.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 225 |
+
"model.layers.29.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 226 |
+
"model.layers.29.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 227 |
+
"model.layers.29.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 228 |
+
"model.layers.3.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 229 |
+
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 230 |
+
"model.layers.3.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 231 |
+
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 232 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 233 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 234 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 235 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 236 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 237 |
+
"model.layers.30.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 238 |
+
"model.layers.30.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 239 |
+
"model.layers.30.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 240 |
+
"model.layers.30.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 241 |
+
"model.layers.30.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 242 |
+
"model.layers.30.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 243 |
+
"model.layers.30.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 244 |
+
"model.layers.30.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 245 |
+
"model.layers.30.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 246 |
+
"model.layers.31.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 247 |
+
"model.layers.31.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
| 248 |
+
"model.layers.31.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 249 |
+
"model.layers.31.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 250 |
+
"model.layers.31.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 251 |
+
"model.layers.31.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 252 |
+
"model.layers.31.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 253 |
+
"model.layers.31.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 254 |
+
"model.layers.31.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 255 |
+
"model.layers.4.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 256 |
+
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 257 |
+
"model.layers.4.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 258 |
+
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 259 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 260 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 261 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 262 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 263 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 264 |
+
"model.layers.5.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 265 |
+
"model.layers.5.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 266 |
+
"model.layers.5.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 267 |
+
"model.layers.5.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 268 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 269 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 270 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 271 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 272 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 273 |
+
"model.layers.6.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 274 |
+
"model.layers.6.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 275 |
+
"model.layers.6.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 276 |
+
"model.layers.6.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 277 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 278 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 279 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 280 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 281 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 282 |
+
"model.layers.7.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 283 |
+
"model.layers.7.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 284 |
+
"model.layers.7.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 285 |
+
"model.layers.7.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 286 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 287 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 288 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 289 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 290 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 291 |
+
"model.layers.8.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 292 |
+
"model.layers.8.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 293 |
+
"model.layers.8.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 294 |
+
"model.layers.8.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 295 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 296 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 297 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 298 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 299 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 300 |
+
"model.layers.9.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 301 |
+
"model.layers.9.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 302 |
+
"model.layers.9.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 303 |
+
"model.layers.9.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 304 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 305 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 306 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 307 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 308 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 309 |
+
"model.lbm.atten_layer_norm.bias": "model-00004-of-00004.safetensors",
|
| 310 |
+
"model.lbm.atten_layer_norm.weight": "model-00004-of-00004.safetensors",
|
| 311 |
+
"model.lbm.encoder_attn.in_proj_bias": "model-00004-of-00004.safetensors",
|
| 312 |
+
"model.lbm.encoder_attn.in_proj_weight": "model-00004-of-00004.safetensors",
|
| 313 |
+
"model.lbm.encoder_attn.out_proj.bias": "model-00004-of-00004.safetensors",
|
| 314 |
+
"model.lbm.encoder_attn.out_proj.weight": "model-00004-of-00004.safetensors",
|
| 315 |
+
"model.mm_projector1.bias": "model-00004-of-00004.safetensors",
|
| 316 |
+
"model.mm_projector1.weight": "model-00004-of-00004.safetensors",
|
| 317 |
+
"model.norm.weight": "model-00004-of-00004.safetensors",
|
| 318 |
+
"model.out_norm.bias": "model-00004-of-00004.safetensors",
|
| 319 |
+
"model.out_norm.weight": "model-00004-of-00004.safetensors",
|
| 320 |
+
"unit_translator.adapter.bias": "model-00004-of-00004.safetensors",
|
| 321 |
+
"unit_translator.adapter.weight": "model-00004-of-00004.safetensors",
|
| 322 |
+
"unit_translator.aligner_MLP.0.bias": "model-00004-of-00004.safetensors",
|
| 323 |
+
"unit_translator.aligner_MLP.0.weight": "model-00004-of-00004.safetensors",
|
| 324 |
+
"unit_translator.aligner_MLP.3.bias": "model-00004-of-00004.safetensors",
|
| 325 |
+
"unit_translator.aligner_MLP.3.weight": "model-00004-of-00004.safetensors",
|
| 326 |
+
"unit_translator.lm_head.weight": "model-00004-of-00004.safetensors",
|
| 327 |
+
"unit_translator.model.embed_tokens.weight": "model-00004-of-00004.safetensors",
|
| 328 |
+
"unit_translator.model.layers.0.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 329 |
+
"unit_translator.model.layers.0.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
| 330 |
+
"unit_translator.model.layers.0.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
| 331 |
+
"unit_translator.model.layers.0.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
| 332 |
+
"unit_translator.model.layers.0.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 333 |
+
"unit_translator.model.layers.0.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
| 334 |
+
"unit_translator.model.layers.0.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
| 335 |
+
"unit_translator.model.layers.0.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
|
| 336 |
+
"unit_translator.model.layers.0.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
|
| 337 |
+
"unit_translator.model.layers.1.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 338 |
+
"unit_translator.model.layers.1.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
| 339 |
+
"unit_translator.model.layers.1.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
| 340 |
+
"unit_translator.model.layers.1.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
| 341 |
+
"unit_translator.model.layers.1.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 342 |
+
"unit_translator.model.layers.1.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
| 343 |
+
"unit_translator.model.layers.1.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
| 344 |
+
"unit_translator.model.layers.1.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
|
| 345 |
+
"unit_translator.model.layers.1.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
|
| 346 |
+
"unit_translator.model.layers.2.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 347 |
+
"unit_translator.model.layers.2.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
| 348 |
+
"unit_translator.model.layers.2.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
| 349 |
+
"unit_translator.model.layers.2.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
| 350 |
+
"unit_translator.model.layers.2.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 351 |
+
"unit_translator.model.layers.2.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
| 352 |
+
"unit_translator.model.layers.2.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
| 353 |
+
"unit_translator.model.layers.2.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
|
| 354 |
+
"unit_translator.model.layers.2.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
|
| 355 |
+
"unit_translator.model.layers.3.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 356 |
+
"unit_translator.model.layers.3.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
| 357 |
+
"unit_translator.model.layers.3.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
| 358 |
+
"unit_translator.model.layers.3.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
| 359 |
+
"unit_translator.model.layers.3.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 360 |
+
"unit_translator.model.layers.3.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
| 361 |
+
"unit_translator.model.layers.3.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
| 362 |
+
"unit_translator.model.layers.3.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
|
| 363 |
+
"unit_translator.model.layers.3.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
|
| 364 |
+
"unit_translator.model.layers.4.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 365 |
+
"unit_translator.model.layers.4.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
| 366 |
+
"unit_translator.model.layers.4.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
| 367 |
+
"unit_translator.model.layers.4.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
| 368 |
+
"unit_translator.model.layers.4.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 369 |
+
"unit_translator.model.layers.4.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
| 370 |
+
"unit_translator.model.layers.4.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
| 371 |
+
"unit_translator.model.layers.4.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
|
| 372 |
+
"unit_translator.model.layers.4.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
|
| 373 |
+
"unit_translator.model.layers.5.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 374 |
+
"unit_translator.model.layers.5.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
| 375 |
+
"unit_translator.model.layers.5.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
| 376 |
+
"unit_translator.model.layers.5.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
| 377 |
+
"unit_translator.model.layers.5.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 378 |
+
"unit_translator.model.layers.5.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
| 379 |
+
"unit_translator.model.layers.5.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
| 380 |
+
"unit_translator.model.layers.5.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
|
| 381 |
+
"unit_translator.model.layers.5.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
|
| 382 |
+
"unit_translator.model.layers.6.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 383 |
+
"unit_translator.model.layers.6.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
| 384 |
+
"unit_translator.model.layers.6.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
| 385 |
+
"unit_translator.model.layers.6.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
| 386 |
+
"unit_translator.model.layers.6.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 387 |
+
"unit_translator.model.layers.6.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
| 388 |
+
"unit_translator.model.layers.6.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
| 389 |
+
"unit_translator.model.layers.6.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
|
| 390 |
+
"unit_translator.model.layers.6.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
|
| 391 |
+
"unit_translator.model.layers.7.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 392 |
+
"unit_translator.model.layers.7.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
| 393 |
+
"unit_translator.model.layers.7.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
| 394 |
+
"unit_translator.model.layers.7.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
| 395 |
+
"unit_translator.model.layers.7.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 396 |
+
"unit_translator.model.layers.7.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
| 397 |
+
"unit_translator.model.layers.7.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
| 398 |
+
"unit_translator.model.layers.7.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
|
| 399 |
+
"unit_translator.model.layers.7.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
|
| 400 |
+
"unit_translator.model.norm.weight": "model-00004-of-00004.safetensors",
|
| 401 |
+
"unit_translator.unit_embedding.weight": "model-00004-of-00004.safetensors"
|
| 402 |
+
}
|
| 403 |
+
}
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<|begin_of_text|>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": false,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"eos_token": {
|
| 10 |
+
"content": "<|eot_id|>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"pad_token": {
|
| 17 |
+
"content": "<|eot_id|>",
|
| 18 |
+
"lstrip": false,
|
| 19 |
+
"normalized": false,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"single_word": false
|
| 22 |
+
}
|
| 23 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1a865fdb055caa7756668269331a01eb5a104a8b9ad3e4571f6b08dd8135451c
|
| 3 |
+
size 18735896
|
tokenizer_config.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
trainer_state.json
ADDED
|
@@ -0,0 +1,2982 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_metric": null,
|
| 3 |
+
"best_model_checkpoint": null,
|
| 4 |
+
"epoch": 1.0,
|
| 5 |
+
"eval_steps": 500,
|
| 6 |
+
"global_step": 420,
|
| 7 |
+
"is_hyper_param_search": false,
|
| 8 |
+
"is_local_process_zero": true,
|
| 9 |
+
"is_world_process_zero": true,
|
| 10 |
+
"log_history": [
|
| 11 |
+
{
|
| 12 |
+
"epoch": 0.002380952380952381,
|
| 13 |
+
"grad_norm": 0.0,
|
| 14 |
+
"learning_rate": 0,
|
| 15 |
+
"loss": 0.5013,
|
| 16 |
+
"step": 1
|
| 17 |
+
},
|
| 18 |
+
{
|
| 19 |
+
"epoch": 0.004761904761904762,
|
| 20 |
+
"grad_norm": 1.2982189655303955,
|
| 21 |
+
"learning_rate": 0.0,
|
| 22 |
+
"loss": 0.4693,
|
| 23 |
+
"step": 2
|
| 24 |
+
},
|
| 25 |
+
{
|
| 26 |
+
"epoch": 0.007142857142857143,
|
| 27 |
+
"grad_norm": 1.3160841464996338,
|
| 28 |
+
"learning_rate": 1.2920296742201791e-05,
|
| 29 |
+
"loss": 0.4462,
|
| 30 |
+
"step": 3
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"epoch": 0.009523809523809525,
|
| 34 |
+
"grad_norm": 1.3160841464996338,
|
| 35 |
+
"learning_rate": 1.2920296742201791e-05,
|
| 36 |
+
"loss": 0.8593,
|
| 37 |
+
"step": 4
|
| 38 |
+
},
|
| 39 |
+
{
|
| 40 |
+
"epoch": 0.011904761904761904,
|
| 41 |
+
"grad_norm": 1.3160841464996338,
|
| 42 |
+
"learning_rate": 1.2920296742201791e-05,
|
| 43 |
+
"loss": 0.8663,
|
| 44 |
+
"step": 5
|
| 45 |
+
},
|
| 46 |
+
{
|
| 47 |
+
"epoch": 0.014285714285714285,
|
| 48 |
+
"grad_norm": 1.0395259857177734,
|
| 49 |
+
"learning_rate": 2.0478185834579563e-05,
|
| 50 |
+
"loss": 0.5107,
|
| 51 |
+
"step": 6
|
| 52 |
+
},
|
| 53 |
+
{
|
| 54 |
+
"epoch": 0.016666666666666666,
|
| 55 |
+
"grad_norm": 1.0972439050674438,
|
| 56 |
+
"learning_rate": 2.5840593484403582e-05,
|
| 57 |
+
"loss": 0.5832,
|
| 58 |
+
"step": 7
|
| 59 |
+
},
|
| 60 |
+
{
|
| 61 |
+
"epoch": 0.01904761904761905,
|
| 62 |
+
"grad_norm": 1.2451457977294922,
|
| 63 |
+
"learning_rate": 3e-05,
|
| 64 |
+
"loss": 0.4994,
|
| 65 |
+
"step": 8
|
| 66 |
+
},
|
| 67 |
+
{
|
| 68 |
+
"epoch": 0.02142857142857143,
|
| 69 |
+
"grad_norm": 1.5299328565597534,
|
| 70 |
+
"learning_rate": 3e-05,
|
| 71 |
+
"loss": 0.5632,
|
| 72 |
+
"step": 9
|
| 73 |
+
},
|
| 74 |
+
{
|
| 75 |
+
"epoch": 0.023809523809523808,
|
| 76 |
+
"grad_norm": 1.456752061843872,
|
| 77 |
+
"learning_rate": 3e-05,
|
| 78 |
+
"loss": 0.5448,
|
| 79 |
+
"step": 10
|
| 80 |
+
},
|
| 81 |
+
{
|
| 82 |
+
"epoch": 0.02619047619047619,
|
| 83 |
+
"grad_norm": 0.7797374725341797,
|
| 84 |
+
"learning_rate": 3e-05,
|
| 85 |
+
"loss": 0.4222,
|
| 86 |
+
"step": 11
|
| 87 |
+
},
|
| 88 |
+
{
|
| 89 |
+
"epoch": 0.02857142857142857,
|
| 90 |
+
"grad_norm": 0.992181658744812,
|
| 91 |
+
"learning_rate": 3e-05,
|
| 92 |
+
"loss": 0.5173,
|
| 93 |
+
"step": 12
|
| 94 |
+
},
|
| 95 |
+
{
|
| 96 |
+
"epoch": 0.030952380952380953,
|
| 97 |
+
"grad_norm": 1.0963839292526245,
|
| 98 |
+
"learning_rate": 3e-05,
|
| 99 |
+
"loss": 0.4048,
|
| 100 |
+
"step": 13
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"epoch": 0.03333333333333333,
|
| 104 |
+
"grad_norm": 1.3775476217269897,
|
| 105 |
+
"learning_rate": 3e-05,
|
| 106 |
+
"loss": 0.4774,
|
| 107 |
+
"step": 14
|
| 108 |
+
},
|
| 109 |
+
{
|
| 110 |
+
"epoch": 0.03571428571428571,
|
| 111 |
+
"grad_norm": 1.551168441772461,
|
| 112 |
+
"learning_rate": 3e-05,
|
| 113 |
+
"loss": 0.5603,
|
| 114 |
+
"step": 15
|
| 115 |
+
},
|
| 116 |
+
{
|
| 117 |
+
"epoch": 0.0380952380952381,
|
| 118 |
+
"grad_norm": 1.189092993736267,
|
| 119 |
+
"learning_rate": 3e-05,
|
| 120 |
+
"loss": 0.4756,
|
| 121 |
+
"step": 16
|
| 122 |
+
},
|
| 123 |
+
{
|
| 124 |
+
"epoch": 0.04047619047619048,
|
| 125 |
+
"grad_norm": 1.0813432931900024,
|
| 126 |
+
"learning_rate": 3e-05,
|
| 127 |
+
"loss": 0.4955,
|
| 128 |
+
"step": 17
|
| 129 |
+
},
|
| 130 |
+
{
|
| 131 |
+
"epoch": 0.04285714285714286,
|
| 132 |
+
"grad_norm": 1.224169373512268,
|
| 133 |
+
"learning_rate": 3e-05,
|
| 134 |
+
"loss": 0.4906,
|
| 135 |
+
"step": 18
|
| 136 |
+
},
|
| 137 |
+
{
|
| 138 |
+
"epoch": 0.04523809523809524,
|
| 139 |
+
"grad_norm": 0.7351661324501038,
|
| 140 |
+
"learning_rate": 3e-05,
|
| 141 |
+
"loss": 0.4717,
|
| 142 |
+
"step": 19
|
| 143 |
+
},
|
| 144 |
+
{
|
| 145 |
+
"epoch": 0.047619047619047616,
|
| 146 |
+
"grad_norm": 0.8378927707672119,
|
| 147 |
+
"learning_rate": 3e-05,
|
| 148 |
+
"loss": 0.4436,
|
| 149 |
+
"step": 20
|
| 150 |
+
},
|
| 151 |
+
{
|
| 152 |
+
"epoch": 0.05,
|
| 153 |
+
"grad_norm": 1.2906426191329956,
|
| 154 |
+
"learning_rate": 3e-05,
|
| 155 |
+
"loss": 0.4294,
|
| 156 |
+
"step": 21
|
| 157 |
+
},
|
| 158 |
+
{
|
| 159 |
+
"epoch": 0.05238095238095238,
|
| 160 |
+
"grad_norm": 0.9292688369750977,
|
| 161 |
+
"learning_rate": 3e-05,
|
| 162 |
+
"loss": 0.4252,
|
| 163 |
+
"step": 22
|
| 164 |
+
},
|
| 165 |
+
{
|
| 166 |
+
"epoch": 0.05476190476190476,
|
| 167 |
+
"grad_norm": 0.757605254650116,
|
| 168 |
+
"learning_rate": 3e-05,
|
| 169 |
+
"loss": 0.4078,
|
| 170 |
+
"step": 23
|
| 171 |
+
},
|
| 172 |
+
{
|
| 173 |
+
"epoch": 0.05714285714285714,
|
| 174 |
+
"grad_norm": 0.8978239893913269,
|
| 175 |
+
"learning_rate": 3e-05,
|
| 176 |
+
"loss": 0.4561,
|
| 177 |
+
"step": 24
|
| 178 |
+
},
|
| 179 |
+
{
|
| 180 |
+
"epoch": 0.05952380952380952,
|
| 181 |
+
"grad_norm": 0.7445272207260132,
|
| 182 |
+
"learning_rate": 3e-05,
|
| 183 |
+
"loss": 0.4007,
|
| 184 |
+
"step": 25
|
| 185 |
+
},
|
| 186 |
+
{
|
| 187 |
+
"epoch": 0.06190476190476191,
|
| 188 |
+
"grad_norm": 0.755946934223175,
|
| 189 |
+
"learning_rate": 3e-05,
|
| 190 |
+
"loss": 0.3974,
|
| 191 |
+
"step": 26
|
| 192 |
+
},
|
| 193 |
+
{
|
| 194 |
+
"epoch": 0.06428571428571428,
|
| 195 |
+
"grad_norm": 1.2127957344055176,
|
| 196 |
+
"learning_rate": 3e-05,
|
| 197 |
+
"loss": 0.5496,
|
| 198 |
+
"step": 27
|
| 199 |
+
},
|
| 200 |
+
{
|
| 201 |
+
"epoch": 0.06666666666666667,
|
| 202 |
+
"grad_norm": 1.2571460008621216,
|
| 203 |
+
"learning_rate": 3e-05,
|
| 204 |
+
"loss": 0.4526,
|
| 205 |
+
"step": 28
|
| 206 |
+
},
|
| 207 |
+
{
|
| 208 |
+
"epoch": 0.06904761904761905,
|
| 209 |
+
"grad_norm": 0.9187604784965515,
|
| 210 |
+
"learning_rate": 3e-05,
|
| 211 |
+
"loss": 0.4042,
|
| 212 |
+
"step": 29
|
| 213 |
+
},
|
| 214 |
+
{
|
| 215 |
+
"epoch": 0.07142857142857142,
|
| 216 |
+
"grad_norm": 0.990939736366272,
|
| 217 |
+
"learning_rate": 3e-05,
|
| 218 |
+
"loss": 0.4855,
|
| 219 |
+
"step": 30
|
| 220 |
+
},
|
| 221 |
+
{
|
| 222 |
+
"epoch": 0.07380952380952381,
|
| 223 |
+
"grad_norm": 1.0081547498703003,
|
| 224 |
+
"learning_rate": 3e-05,
|
| 225 |
+
"loss": 0.5543,
|
| 226 |
+
"step": 31
|
| 227 |
+
},
|
| 228 |
+
{
|
| 229 |
+
"epoch": 0.0761904761904762,
|
| 230 |
+
"grad_norm": 0.696738600730896,
|
| 231 |
+
"learning_rate": 3e-05,
|
| 232 |
+
"loss": 0.4036,
|
| 233 |
+
"step": 32
|
| 234 |
+
},
|
| 235 |
+
{
|
| 236 |
+
"epoch": 0.07857142857142857,
|
| 237 |
+
"grad_norm": 1.7002297639846802,
|
| 238 |
+
"learning_rate": 3e-05,
|
| 239 |
+
"loss": 0.4686,
|
| 240 |
+
"step": 33
|
| 241 |
+
},
|
| 242 |
+
{
|
| 243 |
+
"epoch": 0.08095238095238096,
|
| 244 |
+
"grad_norm": 0.8276028633117676,
|
| 245 |
+
"learning_rate": 3e-05,
|
| 246 |
+
"loss": 0.4009,
|
| 247 |
+
"step": 34
|
| 248 |
+
},
|
| 249 |
+
{
|
| 250 |
+
"epoch": 0.08333333333333333,
|
| 251 |
+
"grad_norm": 1.270995020866394,
|
| 252 |
+
"learning_rate": 3e-05,
|
| 253 |
+
"loss": 0.4926,
|
| 254 |
+
"step": 35
|
| 255 |
+
},
|
| 256 |
+
{
|
| 257 |
+
"epoch": 0.08571428571428572,
|
| 258 |
+
"grad_norm": 1.0746862888336182,
|
| 259 |
+
"learning_rate": 3e-05,
|
| 260 |
+
"loss": 0.4982,
|
| 261 |
+
"step": 36
|
| 262 |
+
},
|
| 263 |
+
{
|
| 264 |
+
"epoch": 0.0880952380952381,
|
| 265 |
+
"grad_norm": 1.0116355419158936,
|
| 266 |
+
"learning_rate": 3e-05,
|
| 267 |
+
"loss": 0.3548,
|
| 268 |
+
"step": 37
|
| 269 |
+
},
|
| 270 |
+
{
|
| 271 |
+
"epoch": 0.09047619047619047,
|
| 272 |
+
"grad_norm": 0.9556488394737244,
|
| 273 |
+
"learning_rate": 3e-05,
|
| 274 |
+
"loss": 0.4268,
|
| 275 |
+
"step": 38
|
| 276 |
+
},
|
| 277 |
+
{
|
| 278 |
+
"epoch": 0.09285714285714286,
|
| 279 |
+
"grad_norm": 0.752404510974884,
|
| 280 |
+
"learning_rate": 3e-05,
|
| 281 |
+
"loss": 0.4496,
|
| 282 |
+
"step": 39
|
| 283 |
+
},
|
| 284 |
+
{
|
| 285 |
+
"epoch": 0.09523809523809523,
|
| 286 |
+
"grad_norm": 0.7381091713905334,
|
| 287 |
+
"learning_rate": 3e-05,
|
| 288 |
+
"loss": 0.4412,
|
| 289 |
+
"step": 40
|
| 290 |
+
},
|
| 291 |
+
{
|
| 292 |
+
"epoch": 0.09761904761904762,
|
| 293 |
+
"grad_norm": 1.2671267986297607,
|
| 294 |
+
"learning_rate": 3e-05,
|
| 295 |
+
"loss": 0.4382,
|
| 296 |
+
"step": 41
|
| 297 |
+
},
|
| 298 |
+
{
|
| 299 |
+
"epoch": 0.1,
|
| 300 |
+
"grad_norm": 0.7863288521766663,
|
| 301 |
+
"learning_rate": 3e-05,
|
| 302 |
+
"loss": 0.4186,
|
| 303 |
+
"step": 42
|
| 304 |
+
},
|
| 305 |
+
{
|
| 306 |
+
"epoch": 0.10238095238095238,
|
| 307 |
+
"grad_norm": 0.9142912030220032,
|
| 308 |
+
"learning_rate": 3e-05,
|
| 309 |
+
"loss": 0.442,
|
| 310 |
+
"step": 43
|
| 311 |
+
},
|
| 312 |
+
{
|
| 313 |
+
"epoch": 0.10476190476190476,
|
| 314 |
+
"grad_norm": 0.9501491189002991,
|
| 315 |
+
"learning_rate": 3e-05,
|
| 316 |
+
"loss": 0.5339,
|
| 317 |
+
"step": 44
|
| 318 |
+
},
|
| 319 |
+
{
|
| 320 |
+
"epoch": 0.10714285714285714,
|
| 321 |
+
"grad_norm": 0.888054609298706,
|
| 322 |
+
"learning_rate": 3e-05,
|
| 323 |
+
"loss": 0.4928,
|
| 324 |
+
"step": 45
|
| 325 |
+
},
|
| 326 |
+
{
|
| 327 |
+
"epoch": 0.10952380952380952,
|
| 328 |
+
"grad_norm": 0.8860450983047485,
|
| 329 |
+
"learning_rate": 3e-05,
|
| 330 |
+
"loss": 0.4081,
|
| 331 |
+
"step": 46
|
| 332 |
+
},
|
| 333 |
+
{
|
| 334 |
+
"epoch": 0.11190476190476191,
|
| 335 |
+
"grad_norm": 0.894538164138794,
|
| 336 |
+
"learning_rate": 3e-05,
|
| 337 |
+
"loss": 0.4213,
|
| 338 |
+
"step": 47
|
| 339 |
+
},
|
| 340 |
+
{
|
| 341 |
+
"epoch": 0.11428571428571428,
|
| 342 |
+
"grad_norm": 1.657795786857605,
|
| 343 |
+
"learning_rate": 3e-05,
|
| 344 |
+
"loss": 0.4112,
|
| 345 |
+
"step": 48
|
| 346 |
+
},
|
| 347 |
+
{
|
| 348 |
+
"epoch": 0.11666666666666667,
|
| 349 |
+
"grad_norm": 1.4137582778930664,
|
| 350 |
+
"learning_rate": 3e-05,
|
| 351 |
+
"loss": 0.5444,
|
| 352 |
+
"step": 49
|
| 353 |
+
},
|
| 354 |
+
{
|
| 355 |
+
"epoch": 0.11904761904761904,
|
| 356 |
+
"grad_norm": 1.1915364265441895,
|
| 357 |
+
"learning_rate": 3e-05,
|
| 358 |
+
"loss": 0.4655,
|
| 359 |
+
"step": 50
|
| 360 |
+
},
|
| 361 |
+
{
|
| 362 |
+
"epoch": 0.12142857142857143,
|
| 363 |
+
"grad_norm": 0.8001396059989929,
|
| 364 |
+
"learning_rate": 3e-05,
|
| 365 |
+
"loss": 0.4571,
|
| 366 |
+
"step": 51
|
| 367 |
+
},
|
| 368 |
+
{
|
| 369 |
+
"epoch": 0.12380952380952381,
|
| 370 |
+
"grad_norm": 0.9784255623817444,
|
| 371 |
+
"learning_rate": 3e-05,
|
| 372 |
+
"loss": 0.4589,
|
| 373 |
+
"step": 52
|
| 374 |
+
},
|
| 375 |
+
{
|
| 376 |
+
"epoch": 0.1261904761904762,
|
| 377 |
+
"grad_norm": 1.1923211812973022,
|
| 378 |
+
"learning_rate": 3e-05,
|
| 379 |
+
"loss": 0.5349,
|
| 380 |
+
"step": 53
|
| 381 |
+
},
|
| 382 |
+
{
|
| 383 |
+
"epoch": 0.12857142857142856,
|
| 384 |
+
"grad_norm": 1.6921881437301636,
|
| 385 |
+
"learning_rate": 3e-05,
|
| 386 |
+
"loss": 0.5921,
|
| 387 |
+
"step": 54
|
| 388 |
+
},
|
| 389 |
+
{
|
| 390 |
+
"epoch": 0.13095238095238096,
|
| 391 |
+
"grad_norm": 1.4049354791641235,
|
| 392 |
+
"learning_rate": 3e-05,
|
| 393 |
+
"loss": 0.3999,
|
| 394 |
+
"step": 55
|
| 395 |
+
},
|
| 396 |
+
{
|
| 397 |
+
"epoch": 0.13333333333333333,
|
| 398 |
+
"grad_norm": 0.6025511026382446,
|
| 399 |
+
"learning_rate": 3e-05,
|
| 400 |
+
"loss": 0.3708,
|
| 401 |
+
"step": 56
|
| 402 |
+
},
|
| 403 |
+
{
|
| 404 |
+
"epoch": 0.1357142857142857,
|
| 405 |
+
"grad_norm": 1.200055480003357,
|
| 406 |
+
"learning_rate": 3e-05,
|
| 407 |
+
"loss": 0.6888,
|
| 408 |
+
"step": 57
|
| 409 |
+
},
|
| 410 |
+
{
|
| 411 |
+
"epoch": 0.1380952380952381,
|
| 412 |
+
"grad_norm": 0.9409858584403992,
|
| 413 |
+
"learning_rate": 3e-05,
|
| 414 |
+
"loss": 0.4722,
|
| 415 |
+
"step": 58
|
| 416 |
+
},
|
| 417 |
+
{
|
| 418 |
+
"epoch": 0.14047619047619048,
|
| 419 |
+
"grad_norm": 1.47160804271698,
|
| 420 |
+
"learning_rate": 3e-05,
|
| 421 |
+
"loss": 1.0772,
|
| 422 |
+
"step": 59
|
| 423 |
+
},
|
| 424 |
+
{
|
| 425 |
+
"epoch": 0.14285714285714285,
|
| 426 |
+
"grad_norm": 0.935752809047699,
|
| 427 |
+
"learning_rate": 3e-05,
|
| 428 |
+
"loss": 0.3725,
|
| 429 |
+
"step": 60
|
| 430 |
+
},
|
| 431 |
+
{
|
| 432 |
+
"epoch": 0.14523809523809525,
|
| 433 |
+
"grad_norm": 0.8135111927986145,
|
| 434 |
+
"learning_rate": 3e-05,
|
| 435 |
+
"loss": 0.4312,
|
| 436 |
+
"step": 61
|
| 437 |
+
},
|
| 438 |
+
{
|
| 439 |
+
"epoch": 0.14761904761904762,
|
| 440 |
+
"grad_norm": 1.1500678062438965,
|
| 441 |
+
"learning_rate": 3e-05,
|
| 442 |
+
"loss": 0.4317,
|
| 443 |
+
"step": 62
|
| 444 |
+
},
|
| 445 |
+
{
|
| 446 |
+
"epoch": 0.15,
|
| 447 |
+
"grad_norm": 1.0388532876968384,
|
| 448 |
+
"learning_rate": 3e-05,
|
| 449 |
+
"loss": 0.5262,
|
| 450 |
+
"step": 63
|
| 451 |
+
},
|
| 452 |
+
{
|
| 453 |
+
"epoch": 0.1523809523809524,
|
| 454 |
+
"grad_norm": 1.0478947162628174,
|
| 455 |
+
"learning_rate": 3e-05,
|
| 456 |
+
"loss": 0.5224,
|
| 457 |
+
"step": 64
|
| 458 |
+
},
|
| 459 |
+
{
|
| 460 |
+
"epoch": 0.15476190476190477,
|
| 461 |
+
"grad_norm": 0.6370094418525696,
|
| 462 |
+
"learning_rate": 3e-05,
|
| 463 |
+
"loss": 0.4117,
|
| 464 |
+
"step": 65
|
| 465 |
+
},
|
| 466 |
+
{
|
| 467 |
+
"epoch": 0.15714285714285714,
|
| 468 |
+
"grad_norm": 0.8117276430130005,
|
| 469 |
+
"learning_rate": 3e-05,
|
| 470 |
+
"loss": 0.4513,
|
| 471 |
+
"step": 66
|
| 472 |
+
},
|
| 473 |
+
{
|
| 474 |
+
"epoch": 0.1595238095238095,
|
| 475 |
+
"grad_norm": 1.4209480285644531,
|
| 476 |
+
"learning_rate": 3e-05,
|
| 477 |
+
"loss": 0.419,
|
| 478 |
+
"step": 67
|
| 479 |
+
},
|
| 480 |
+
{
|
| 481 |
+
"epoch": 0.1619047619047619,
|
| 482 |
+
"grad_norm": 1.3270151615142822,
|
| 483 |
+
"learning_rate": 3e-05,
|
| 484 |
+
"loss": 0.5064,
|
| 485 |
+
"step": 68
|
| 486 |
+
},
|
| 487 |
+
{
|
| 488 |
+
"epoch": 0.16428571428571428,
|
| 489 |
+
"grad_norm": 1.4599213600158691,
|
| 490 |
+
"learning_rate": 3e-05,
|
| 491 |
+
"loss": 0.5342,
|
| 492 |
+
"step": 69
|
| 493 |
+
},
|
| 494 |
+
{
|
| 495 |
+
"epoch": 0.16666666666666666,
|
| 496 |
+
"grad_norm": 0.7401596307754517,
|
| 497 |
+
"learning_rate": 3e-05,
|
| 498 |
+
"loss": 0.4609,
|
| 499 |
+
"step": 70
|
| 500 |
+
},
|
| 501 |
+
{
|
| 502 |
+
"epoch": 0.16904761904761906,
|
| 503 |
+
"grad_norm": 0.6574556827545166,
|
| 504 |
+
"learning_rate": 3e-05,
|
| 505 |
+
"loss": 0.3689,
|
| 506 |
+
"step": 71
|
| 507 |
+
},
|
| 508 |
+
{
|
| 509 |
+
"epoch": 0.17142857142857143,
|
| 510 |
+
"grad_norm": 1.6753238439559937,
|
| 511 |
+
"learning_rate": 3e-05,
|
| 512 |
+
"loss": 0.5226,
|
| 513 |
+
"step": 72
|
| 514 |
+
},
|
| 515 |
+
{
|
| 516 |
+
"epoch": 0.1738095238095238,
|
| 517 |
+
"grad_norm": 0.8294124603271484,
|
| 518 |
+
"learning_rate": 3e-05,
|
| 519 |
+
"loss": 0.4176,
|
| 520 |
+
"step": 73
|
| 521 |
+
},
|
| 522 |
+
{
|
| 523 |
+
"epoch": 0.1761904761904762,
|
| 524 |
+
"grad_norm": 0.9138219356536865,
|
| 525 |
+
"learning_rate": 3e-05,
|
| 526 |
+
"loss": 0.4123,
|
| 527 |
+
"step": 74
|
| 528 |
+
},
|
| 529 |
+
{
|
| 530 |
+
"epoch": 0.17857142857142858,
|
| 531 |
+
"grad_norm": 0.8199627995491028,
|
| 532 |
+
"learning_rate": 3e-05,
|
| 533 |
+
"loss": 0.4374,
|
| 534 |
+
"step": 75
|
| 535 |
+
},
|
| 536 |
+
{
|
| 537 |
+
"epoch": 0.18095238095238095,
|
| 538 |
+
"grad_norm": 0.7391550540924072,
|
| 539 |
+
"learning_rate": 3e-05,
|
| 540 |
+
"loss": 0.3825,
|
| 541 |
+
"step": 76
|
| 542 |
+
},
|
| 543 |
+
{
|
| 544 |
+
"epoch": 0.18333333333333332,
|
| 545 |
+
"grad_norm": 0.729434609413147,
|
| 546 |
+
"learning_rate": 3e-05,
|
| 547 |
+
"loss": 0.4824,
|
| 548 |
+
"step": 77
|
| 549 |
+
},
|
| 550 |
+
{
|
| 551 |
+
"epoch": 0.18571428571428572,
|
| 552 |
+
"grad_norm": 0.7266400456428528,
|
| 553 |
+
"learning_rate": 3e-05,
|
| 554 |
+
"loss": 0.3481,
|
| 555 |
+
"step": 78
|
| 556 |
+
},
|
| 557 |
+
{
|
| 558 |
+
"epoch": 0.1880952380952381,
|
| 559 |
+
"grad_norm": 0.8050060272216797,
|
| 560 |
+
"learning_rate": 3e-05,
|
| 561 |
+
"loss": 0.4694,
|
| 562 |
+
"step": 79
|
| 563 |
+
},
|
| 564 |
+
{
|
| 565 |
+
"epoch": 0.19047619047619047,
|
| 566 |
+
"grad_norm": 1.172167181968689,
|
| 567 |
+
"learning_rate": 3e-05,
|
| 568 |
+
"loss": 0.4291,
|
| 569 |
+
"step": 80
|
| 570 |
+
},
|
| 571 |
+
{
|
| 572 |
+
"epoch": 0.19285714285714287,
|
| 573 |
+
"grad_norm": 1.1613800525665283,
|
| 574 |
+
"learning_rate": 3e-05,
|
| 575 |
+
"loss": 0.483,
|
| 576 |
+
"step": 81
|
| 577 |
+
},
|
| 578 |
+
{
|
| 579 |
+
"epoch": 0.19523809523809524,
|
| 580 |
+
"grad_norm": 0.8675224184989929,
|
| 581 |
+
"learning_rate": 3e-05,
|
| 582 |
+
"loss": 0.4436,
|
| 583 |
+
"step": 82
|
| 584 |
+
},
|
| 585 |
+
{
|
| 586 |
+
"epoch": 0.1976190476190476,
|
| 587 |
+
"grad_norm": 0.899101734161377,
|
| 588 |
+
"learning_rate": 3e-05,
|
| 589 |
+
"loss": 0.4858,
|
| 590 |
+
"step": 83
|
| 591 |
+
},
|
| 592 |
+
{
|
| 593 |
+
"epoch": 0.2,
|
| 594 |
+
"grad_norm": 1.030885934829712,
|
| 595 |
+
"learning_rate": 3e-05,
|
| 596 |
+
"loss": 0.5346,
|
| 597 |
+
"step": 84
|
| 598 |
+
},
|
| 599 |
+
{
|
| 600 |
+
"epoch": 0.20238095238095238,
|
| 601 |
+
"grad_norm": 0.9242229461669922,
|
| 602 |
+
"learning_rate": 3e-05,
|
| 603 |
+
"loss": 0.4349,
|
| 604 |
+
"step": 85
|
| 605 |
+
},
|
| 606 |
+
{
|
| 607 |
+
"epoch": 0.20476190476190476,
|
| 608 |
+
"grad_norm": 0.7717217803001404,
|
| 609 |
+
"learning_rate": 3e-05,
|
| 610 |
+
"loss": 0.3759,
|
| 611 |
+
"step": 86
|
| 612 |
+
},
|
| 613 |
+
{
|
| 614 |
+
"epoch": 0.20714285714285716,
|
| 615 |
+
"grad_norm": 1.2170741558074951,
|
| 616 |
+
"learning_rate": 3e-05,
|
| 617 |
+
"loss": 0.4937,
|
| 618 |
+
"step": 87
|
| 619 |
+
},
|
| 620 |
+
{
|
| 621 |
+
"epoch": 0.20952380952380953,
|
| 622 |
+
"grad_norm": 1.2934021949768066,
|
| 623 |
+
"learning_rate": 3e-05,
|
| 624 |
+
"loss": 0.4993,
|
| 625 |
+
"step": 88
|
| 626 |
+
},
|
| 627 |
+
{
|
| 628 |
+
"epoch": 0.2119047619047619,
|
| 629 |
+
"grad_norm": 1.3435097932815552,
|
| 630 |
+
"learning_rate": 3e-05,
|
| 631 |
+
"loss": 0.4603,
|
| 632 |
+
"step": 89
|
| 633 |
+
},
|
| 634 |
+
{
|
| 635 |
+
"epoch": 0.21428571428571427,
|
| 636 |
+
"grad_norm": 0.8454081416130066,
|
| 637 |
+
"learning_rate": 3e-05,
|
| 638 |
+
"loss": 0.5203,
|
| 639 |
+
"step": 90
|
| 640 |
+
},
|
| 641 |
+
{
|
| 642 |
+
"epoch": 0.21666666666666667,
|
| 643 |
+
"grad_norm": 0.8319071531295776,
|
| 644 |
+
"learning_rate": 3e-05,
|
| 645 |
+
"loss": 0.4997,
|
| 646 |
+
"step": 91
|
| 647 |
+
},
|
| 648 |
+
{
|
| 649 |
+
"epoch": 0.21904761904761905,
|
| 650 |
+
"grad_norm": 0.6560430526733398,
|
| 651 |
+
"learning_rate": 3e-05,
|
| 652 |
+
"loss": 0.4763,
|
| 653 |
+
"step": 92
|
| 654 |
+
},
|
| 655 |
+
{
|
| 656 |
+
"epoch": 0.22142857142857142,
|
| 657 |
+
"grad_norm": 2.126009941101074,
|
| 658 |
+
"learning_rate": 3e-05,
|
| 659 |
+
"loss": 0.7399,
|
| 660 |
+
"step": 93
|
| 661 |
+
},
|
| 662 |
+
{
|
| 663 |
+
"epoch": 0.22380952380952382,
|
| 664 |
+
"grad_norm": 1.1273273229599,
|
| 665 |
+
"learning_rate": 3e-05,
|
| 666 |
+
"loss": 0.5303,
|
| 667 |
+
"step": 94
|
| 668 |
+
},
|
| 669 |
+
{
|
| 670 |
+
"epoch": 0.2261904761904762,
|
| 671 |
+
"grad_norm": 0.9536347985267639,
|
| 672 |
+
"learning_rate": 3e-05,
|
| 673 |
+
"loss": 0.5147,
|
| 674 |
+
"step": 95
|
| 675 |
+
},
|
| 676 |
+
{
|
| 677 |
+
"epoch": 0.22857142857142856,
|
| 678 |
+
"grad_norm": 0.6337579488754272,
|
| 679 |
+
"learning_rate": 3e-05,
|
| 680 |
+
"loss": 0.4474,
|
| 681 |
+
"step": 96
|
| 682 |
+
},
|
| 683 |
+
{
|
| 684 |
+
"epoch": 0.23095238095238096,
|
| 685 |
+
"grad_norm": 0.6355674862861633,
|
| 686 |
+
"learning_rate": 3e-05,
|
| 687 |
+
"loss": 0.3958,
|
| 688 |
+
"step": 97
|
| 689 |
+
},
|
| 690 |
+
{
|
| 691 |
+
"epoch": 0.23333333333333334,
|
| 692 |
+
"grad_norm": 0.9631844758987427,
|
| 693 |
+
"learning_rate": 3e-05,
|
| 694 |
+
"loss": 0.4463,
|
| 695 |
+
"step": 98
|
| 696 |
+
},
|
| 697 |
+
{
|
| 698 |
+
"epoch": 0.2357142857142857,
|
| 699 |
+
"grad_norm": 0.7559183239936829,
|
| 700 |
+
"learning_rate": 3e-05,
|
| 701 |
+
"loss": 0.4952,
|
| 702 |
+
"step": 99
|
| 703 |
+
},
|
| 704 |
+
{
|
| 705 |
+
"epoch": 0.23809523809523808,
|
| 706 |
+
"grad_norm": 0.926929771900177,
|
| 707 |
+
"learning_rate": 3e-05,
|
| 708 |
+
"loss": 0.5318,
|
| 709 |
+
"step": 100
|
| 710 |
+
},
|
| 711 |
+
{
|
| 712 |
+
"epoch": 0.24047619047619048,
|
| 713 |
+
"grad_norm": 0.8441896438598633,
|
| 714 |
+
"learning_rate": 3e-05,
|
| 715 |
+
"loss": 0.4411,
|
| 716 |
+
"step": 101
|
| 717 |
+
},
|
| 718 |
+
{
|
| 719 |
+
"epoch": 0.24285714285714285,
|
| 720 |
+
"grad_norm": 1.1027876138687134,
|
| 721 |
+
"learning_rate": 3e-05,
|
| 722 |
+
"loss": 0.5618,
|
| 723 |
+
"step": 102
|
| 724 |
+
},
|
| 725 |
+
{
|
| 726 |
+
"epoch": 0.24523809523809523,
|
| 727 |
+
"grad_norm": 0.6018999814987183,
|
| 728 |
+
"learning_rate": 3e-05,
|
| 729 |
+
"loss": 0.4046,
|
| 730 |
+
"step": 103
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"epoch": 0.24761904761904763,
|
| 734 |
+
"grad_norm": 0.8065565228462219,
|
| 735 |
+
"learning_rate": 3e-05,
|
| 736 |
+
"loss": 0.4195,
|
| 737 |
+
"step": 104
|
| 738 |
+
},
|
| 739 |
+
{
|
| 740 |
+
"epoch": 0.25,
|
| 741 |
+
"grad_norm": 0.6117183566093445,
|
| 742 |
+
"learning_rate": 3e-05,
|
| 743 |
+
"loss": 0.3556,
|
| 744 |
+
"step": 105
|
| 745 |
+
},
|
| 746 |
+
{
|
| 747 |
+
"epoch": 0.2523809523809524,
|
| 748 |
+
"grad_norm": 1.0436320304870605,
|
| 749 |
+
"learning_rate": 3e-05,
|
| 750 |
+
"loss": 0.4699,
|
| 751 |
+
"step": 106
|
| 752 |
+
},
|
| 753 |
+
{
|
| 754 |
+
"epoch": 0.25476190476190474,
|
| 755 |
+
"grad_norm": 1.1943013668060303,
|
| 756 |
+
"learning_rate": 3e-05,
|
| 757 |
+
"loss": 0.5636,
|
| 758 |
+
"step": 107
|
| 759 |
+
},
|
| 760 |
+
{
|
| 761 |
+
"epoch": 0.2571428571428571,
|
| 762 |
+
"grad_norm": 0.8576936721801758,
|
| 763 |
+
"learning_rate": 3e-05,
|
| 764 |
+
"loss": 0.4178,
|
| 765 |
+
"step": 108
|
| 766 |
+
},
|
| 767 |
+
{
|
| 768 |
+
"epoch": 0.25952380952380955,
|
| 769 |
+
"grad_norm": 0.7651050686836243,
|
| 770 |
+
"learning_rate": 3e-05,
|
| 771 |
+
"loss": 0.436,
|
| 772 |
+
"step": 109
|
| 773 |
+
},
|
| 774 |
+
{
|
| 775 |
+
"epoch": 0.2619047619047619,
|
| 776 |
+
"grad_norm": 0.787661612033844,
|
| 777 |
+
"learning_rate": 3e-05,
|
| 778 |
+
"loss": 0.4378,
|
| 779 |
+
"step": 110
|
| 780 |
+
},
|
| 781 |
+
{
|
| 782 |
+
"epoch": 0.2642857142857143,
|
| 783 |
+
"grad_norm": 0.961089551448822,
|
| 784 |
+
"learning_rate": 3e-05,
|
| 785 |
+
"loss": 0.4979,
|
| 786 |
+
"step": 111
|
| 787 |
+
},
|
| 788 |
+
{
|
| 789 |
+
"epoch": 0.26666666666666666,
|
| 790 |
+
"grad_norm": 0.7426000833511353,
|
| 791 |
+
"learning_rate": 3e-05,
|
| 792 |
+
"loss": 0.4908,
|
| 793 |
+
"step": 112
|
| 794 |
+
},
|
| 795 |
+
{
|
| 796 |
+
"epoch": 0.26904761904761904,
|
| 797 |
+
"grad_norm": 1.0738164186477661,
|
| 798 |
+
"learning_rate": 3e-05,
|
| 799 |
+
"loss": 0.5052,
|
| 800 |
+
"step": 113
|
| 801 |
+
},
|
| 802 |
+
{
|
| 803 |
+
"epoch": 0.2714285714285714,
|
| 804 |
+
"grad_norm": 1.3592005968093872,
|
| 805 |
+
"learning_rate": 3e-05,
|
| 806 |
+
"loss": 0.5155,
|
| 807 |
+
"step": 114
|
| 808 |
+
},
|
| 809 |
+
{
|
| 810 |
+
"epoch": 0.27380952380952384,
|
| 811 |
+
"grad_norm": 0.776147723197937,
|
| 812 |
+
"learning_rate": 3e-05,
|
| 813 |
+
"loss": 0.4199,
|
| 814 |
+
"step": 115
|
| 815 |
+
},
|
| 816 |
+
{
|
| 817 |
+
"epoch": 0.2761904761904762,
|
| 818 |
+
"grad_norm": 1.184778094291687,
|
| 819 |
+
"learning_rate": 3e-05,
|
| 820 |
+
"loss": 0.4471,
|
| 821 |
+
"step": 116
|
| 822 |
+
},
|
| 823 |
+
{
|
| 824 |
+
"epoch": 0.2785714285714286,
|
| 825 |
+
"grad_norm": 0.9415385127067566,
|
| 826 |
+
"learning_rate": 3e-05,
|
| 827 |
+
"loss": 0.4518,
|
| 828 |
+
"step": 117
|
| 829 |
+
},
|
| 830 |
+
{
|
| 831 |
+
"epoch": 0.28095238095238095,
|
| 832 |
+
"grad_norm": 0.9082314372062683,
|
| 833 |
+
"learning_rate": 3e-05,
|
| 834 |
+
"loss": 0.4986,
|
| 835 |
+
"step": 118
|
| 836 |
+
},
|
| 837 |
+
{
|
| 838 |
+
"epoch": 0.2833333333333333,
|
| 839 |
+
"grad_norm": 1.6528809070587158,
|
| 840 |
+
"learning_rate": 3e-05,
|
| 841 |
+
"loss": 0.6329,
|
| 842 |
+
"step": 119
|
| 843 |
+
},
|
| 844 |
+
{
|
| 845 |
+
"epoch": 0.2857142857142857,
|
| 846 |
+
"grad_norm": 0.6157988905906677,
|
| 847 |
+
"learning_rate": 3e-05,
|
| 848 |
+
"loss": 0.346,
|
| 849 |
+
"step": 120
|
| 850 |
+
},
|
| 851 |
+
{
|
| 852 |
+
"epoch": 0.28809523809523807,
|
| 853 |
+
"grad_norm": 1.335919737815857,
|
| 854 |
+
"learning_rate": 3e-05,
|
| 855 |
+
"loss": 0.5417,
|
| 856 |
+
"step": 121
|
| 857 |
+
},
|
| 858 |
+
{
|
| 859 |
+
"epoch": 0.2904761904761905,
|
| 860 |
+
"grad_norm": 1.7414772510528564,
|
| 861 |
+
"learning_rate": 3e-05,
|
| 862 |
+
"loss": 0.513,
|
| 863 |
+
"step": 122
|
| 864 |
+
},
|
| 865 |
+
{
|
| 866 |
+
"epoch": 0.29285714285714287,
|
| 867 |
+
"grad_norm": 1.0106985569000244,
|
| 868 |
+
"learning_rate": 3e-05,
|
| 869 |
+
"loss": 0.5358,
|
| 870 |
+
"step": 123
|
| 871 |
+
},
|
| 872 |
+
{
|
| 873 |
+
"epoch": 0.29523809523809524,
|
| 874 |
+
"grad_norm": 0.8379469513893127,
|
| 875 |
+
"learning_rate": 3e-05,
|
| 876 |
+
"loss": 0.4548,
|
| 877 |
+
"step": 124
|
| 878 |
+
},
|
| 879 |
+
{
|
| 880 |
+
"epoch": 0.2976190476190476,
|
| 881 |
+
"grad_norm": 0.8793790340423584,
|
| 882 |
+
"learning_rate": 3e-05,
|
| 883 |
+
"loss": 0.5191,
|
| 884 |
+
"step": 125
|
| 885 |
+
},
|
| 886 |
+
{
|
| 887 |
+
"epoch": 0.3,
|
| 888 |
+
"grad_norm": 0.7612943053245544,
|
| 889 |
+
"learning_rate": 3e-05,
|
| 890 |
+
"loss": 0.4913,
|
| 891 |
+
"step": 126
|
| 892 |
+
},
|
| 893 |
+
{
|
| 894 |
+
"epoch": 0.30238095238095236,
|
| 895 |
+
"grad_norm": 1.0233980417251587,
|
| 896 |
+
"learning_rate": 3e-05,
|
| 897 |
+
"loss": 0.5259,
|
| 898 |
+
"step": 127
|
| 899 |
+
},
|
| 900 |
+
{
|
| 901 |
+
"epoch": 0.3047619047619048,
|
| 902 |
+
"grad_norm": 0.9049614071846008,
|
| 903 |
+
"learning_rate": 3e-05,
|
| 904 |
+
"loss": 0.4164,
|
| 905 |
+
"step": 128
|
| 906 |
+
},
|
| 907 |
+
{
|
| 908 |
+
"epoch": 0.30714285714285716,
|
| 909 |
+
"grad_norm": 1.390436053276062,
|
| 910 |
+
"learning_rate": 3e-05,
|
| 911 |
+
"loss": 0.4505,
|
| 912 |
+
"step": 129
|
| 913 |
+
},
|
| 914 |
+
{
|
| 915 |
+
"epoch": 0.30952380952380953,
|
| 916 |
+
"grad_norm": 0.705032229423523,
|
| 917 |
+
"learning_rate": 3e-05,
|
| 918 |
+
"loss": 0.4763,
|
| 919 |
+
"step": 130
|
| 920 |
+
},
|
| 921 |
+
{
|
| 922 |
+
"epoch": 0.3119047619047619,
|
| 923 |
+
"grad_norm": 1.1658718585968018,
|
| 924 |
+
"learning_rate": 3e-05,
|
| 925 |
+
"loss": 0.4132,
|
| 926 |
+
"step": 131
|
| 927 |
+
},
|
| 928 |
+
{
|
| 929 |
+
"epoch": 0.3142857142857143,
|
| 930 |
+
"grad_norm": 1.0997470617294312,
|
| 931 |
+
"learning_rate": 3e-05,
|
| 932 |
+
"loss": 0.4877,
|
| 933 |
+
"step": 132
|
| 934 |
+
},
|
| 935 |
+
{
|
| 936 |
+
"epoch": 0.31666666666666665,
|
| 937 |
+
"grad_norm": 0.7365838885307312,
|
| 938 |
+
"learning_rate": 3e-05,
|
| 939 |
+
"loss": 0.3902,
|
| 940 |
+
"step": 133
|
| 941 |
+
},
|
| 942 |
+
{
|
| 943 |
+
"epoch": 0.319047619047619,
|
| 944 |
+
"grad_norm": 1.0315278768539429,
|
| 945 |
+
"learning_rate": 3e-05,
|
| 946 |
+
"loss": 0.5093,
|
| 947 |
+
"step": 134
|
| 948 |
+
},
|
| 949 |
+
{
|
| 950 |
+
"epoch": 0.32142857142857145,
|
| 951 |
+
"grad_norm": 0.8308622241020203,
|
| 952 |
+
"learning_rate": 3e-05,
|
| 953 |
+
"loss": 0.4309,
|
| 954 |
+
"step": 135
|
| 955 |
+
},
|
| 956 |
+
{
|
| 957 |
+
"epoch": 0.3238095238095238,
|
| 958 |
+
"grad_norm": 0.8301631808280945,
|
| 959 |
+
"learning_rate": 3e-05,
|
| 960 |
+
"loss": 0.5057,
|
| 961 |
+
"step": 136
|
| 962 |
+
},
|
| 963 |
+
{
|
| 964 |
+
"epoch": 0.3261904761904762,
|
| 965 |
+
"grad_norm": 0.6643893122673035,
|
| 966 |
+
"learning_rate": 3e-05,
|
| 967 |
+
"loss": 0.44,
|
| 968 |
+
"step": 137
|
| 969 |
+
},
|
| 970 |
+
{
|
| 971 |
+
"epoch": 0.32857142857142857,
|
| 972 |
+
"grad_norm": 0.9323320984840393,
|
| 973 |
+
"learning_rate": 3e-05,
|
| 974 |
+
"loss": 0.4377,
|
| 975 |
+
"step": 138
|
| 976 |
+
},
|
| 977 |
+
{
|
| 978 |
+
"epoch": 0.33095238095238094,
|
| 979 |
+
"grad_norm": 0.8339701294898987,
|
| 980 |
+
"learning_rate": 3e-05,
|
| 981 |
+
"loss": 0.4982,
|
| 982 |
+
"step": 139
|
| 983 |
+
},
|
| 984 |
+
{
|
| 985 |
+
"epoch": 0.3333333333333333,
|
| 986 |
+
"grad_norm": 0.8500747680664062,
|
| 987 |
+
"learning_rate": 3e-05,
|
| 988 |
+
"loss": 0.4303,
|
| 989 |
+
"step": 140
|
| 990 |
+
},
|
| 991 |
+
{
|
| 992 |
+
"epoch": 0.3357142857142857,
|
| 993 |
+
"grad_norm": 0.697967529296875,
|
| 994 |
+
"learning_rate": 3e-05,
|
| 995 |
+
"loss": 0.447,
|
| 996 |
+
"step": 141
|
| 997 |
+
},
|
| 998 |
+
{
|
| 999 |
+
"epoch": 0.3380952380952381,
|
| 1000 |
+
"grad_norm": 1.1016360521316528,
|
| 1001 |
+
"learning_rate": 3e-05,
|
| 1002 |
+
"loss": 0.4827,
|
| 1003 |
+
"step": 142
|
| 1004 |
+
},
|
| 1005 |
+
{
|
| 1006 |
+
"epoch": 0.3404761904761905,
|
| 1007 |
+
"grad_norm": 0.9719865918159485,
|
| 1008 |
+
"learning_rate": 3e-05,
|
| 1009 |
+
"loss": 0.4719,
|
| 1010 |
+
"step": 143
|
| 1011 |
+
},
|
| 1012 |
+
{
|
| 1013 |
+
"epoch": 0.34285714285714286,
|
| 1014 |
+
"grad_norm": 0.8482648134231567,
|
| 1015 |
+
"learning_rate": 3e-05,
|
| 1016 |
+
"loss": 0.4171,
|
| 1017 |
+
"step": 144
|
| 1018 |
+
},
|
| 1019 |
+
{
|
| 1020 |
+
"epoch": 0.34523809523809523,
|
| 1021 |
+
"grad_norm": 1.2719123363494873,
|
| 1022 |
+
"learning_rate": 3e-05,
|
| 1023 |
+
"loss": 0.4444,
|
| 1024 |
+
"step": 145
|
| 1025 |
+
},
|
| 1026 |
+
{
|
| 1027 |
+
"epoch": 0.3476190476190476,
|
| 1028 |
+
"grad_norm": 1.1623255014419556,
|
| 1029 |
+
"learning_rate": 3e-05,
|
| 1030 |
+
"loss": 0.4033,
|
| 1031 |
+
"step": 146
|
| 1032 |
+
},
|
| 1033 |
+
{
|
| 1034 |
+
"epoch": 0.35,
|
| 1035 |
+
"grad_norm": 0.7803097367286682,
|
| 1036 |
+
"learning_rate": 3e-05,
|
| 1037 |
+
"loss": 0.3299,
|
| 1038 |
+
"step": 147
|
| 1039 |
+
},
|
| 1040 |
+
{
|
| 1041 |
+
"epoch": 0.3523809523809524,
|
| 1042 |
+
"grad_norm": 0.6812254786491394,
|
| 1043 |
+
"learning_rate": 3e-05,
|
| 1044 |
+
"loss": 0.3652,
|
| 1045 |
+
"step": 148
|
| 1046 |
+
},
|
| 1047 |
+
{
|
| 1048 |
+
"epoch": 0.3547619047619048,
|
| 1049 |
+
"grad_norm": 1.0708630084991455,
|
| 1050 |
+
"learning_rate": 3e-05,
|
| 1051 |
+
"loss": 0.4121,
|
| 1052 |
+
"step": 149
|
| 1053 |
+
},
|
| 1054 |
+
{
|
| 1055 |
+
"epoch": 0.35714285714285715,
|
| 1056 |
+
"grad_norm": 1.3431651592254639,
|
| 1057 |
+
"learning_rate": 3e-05,
|
| 1058 |
+
"loss": 0.4235,
|
| 1059 |
+
"step": 150
|
| 1060 |
+
},
|
| 1061 |
+
{
|
| 1062 |
+
"epoch": 0.3595238095238095,
|
| 1063 |
+
"grad_norm": 0.779104471206665,
|
| 1064 |
+
"learning_rate": 3e-05,
|
| 1065 |
+
"loss": 0.3404,
|
| 1066 |
+
"step": 151
|
| 1067 |
+
},
|
| 1068 |
+
{
|
| 1069 |
+
"epoch": 0.3619047619047619,
|
| 1070 |
+
"grad_norm": 0.6354933381080627,
|
| 1071 |
+
"learning_rate": 3e-05,
|
| 1072 |
+
"loss": 0.4572,
|
| 1073 |
+
"step": 152
|
| 1074 |
+
},
|
| 1075 |
+
{
|
| 1076 |
+
"epoch": 0.36428571428571427,
|
| 1077 |
+
"grad_norm": 0.6587569117546082,
|
| 1078 |
+
"learning_rate": 3e-05,
|
| 1079 |
+
"loss": 0.3692,
|
| 1080 |
+
"step": 153
|
| 1081 |
+
},
|
| 1082 |
+
{
|
| 1083 |
+
"epoch": 0.36666666666666664,
|
| 1084 |
+
"grad_norm": 1.0237056016921997,
|
| 1085 |
+
"learning_rate": 3e-05,
|
| 1086 |
+
"loss": 0.4356,
|
| 1087 |
+
"step": 154
|
| 1088 |
+
},
|
| 1089 |
+
{
|
| 1090 |
+
"epoch": 0.36904761904761907,
|
| 1091 |
+
"grad_norm": 0.9965682625770569,
|
| 1092 |
+
"learning_rate": 3e-05,
|
| 1093 |
+
"loss": 0.4609,
|
| 1094 |
+
"step": 155
|
| 1095 |
+
},
|
| 1096 |
+
{
|
| 1097 |
+
"epoch": 0.37142857142857144,
|
| 1098 |
+
"grad_norm": 0.9826563000679016,
|
| 1099 |
+
"learning_rate": 3e-05,
|
| 1100 |
+
"loss": 0.4502,
|
| 1101 |
+
"step": 156
|
| 1102 |
+
},
|
| 1103 |
+
{
|
| 1104 |
+
"epoch": 0.3738095238095238,
|
| 1105 |
+
"grad_norm": 1.2390687465667725,
|
| 1106 |
+
"learning_rate": 3e-05,
|
| 1107 |
+
"loss": 0.4734,
|
| 1108 |
+
"step": 157
|
| 1109 |
+
},
|
| 1110 |
+
{
|
| 1111 |
+
"epoch": 0.3761904761904762,
|
| 1112 |
+
"grad_norm": 0.7621622681617737,
|
| 1113 |
+
"learning_rate": 3e-05,
|
| 1114 |
+
"loss": 0.4267,
|
| 1115 |
+
"step": 158
|
| 1116 |
+
},
|
| 1117 |
+
{
|
| 1118 |
+
"epoch": 0.37857142857142856,
|
| 1119 |
+
"grad_norm": 1.300564169883728,
|
| 1120 |
+
"learning_rate": 3e-05,
|
| 1121 |
+
"loss": 0.4018,
|
| 1122 |
+
"step": 159
|
| 1123 |
+
},
|
| 1124 |
+
{
|
| 1125 |
+
"epoch": 0.38095238095238093,
|
| 1126 |
+
"grad_norm": 1.2761445045471191,
|
| 1127 |
+
"learning_rate": 3e-05,
|
| 1128 |
+
"loss": 0.5127,
|
| 1129 |
+
"step": 160
|
| 1130 |
+
},
|
| 1131 |
+
{
|
| 1132 |
+
"epoch": 0.38333333333333336,
|
| 1133 |
+
"grad_norm": 0.933185875415802,
|
| 1134 |
+
"learning_rate": 3e-05,
|
| 1135 |
+
"loss": 0.5515,
|
| 1136 |
+
"step": 161
|
| 1137 |
+
},
|
| 1138 |
+
{
|
| 1139 |
+
"epoch": 0.38571428571428573,
|
| 1140 |
+
"grad_norm": 1.3930639028549194,
|
| 1141 |
+
"learning_rate": 3e-05,
|
| 1142 |
+
"loss": 0.5837,
|
| 1143 |
+
"step": 162
|
| 1144 |
+
},
|
| 1145 |
+
{
|
| 1146 |
+
"epoch": 0.3880952380952381,
|
| 1147 |
+
"grad_norm": 1.7598650455474854,
|
| 1148 |
+
"learning_rate": 3e-05,
|
| 1149 |
+
"loss": 0.6716,
|
| 1150 |
+
"step": 163
|
| 1151 |
+
},
|
| 1152 |
+
{
|
| 1153 |
+
"epoch": 0.3904761904761905,
|
| 1154 |
+
"grad_norm": 0.9068734645843506,
|
| 1155 |
+
"learning_rate": 3e-05,
|
| 1156 |
+
"loss": 0.4984,
|
| 1157 |
+
"step": 164
|
| 1158 |
+
},
|
| 1159 |
+
{
|
| 1160 |
+
"epoch": 0.39285714285714285,
|
| 1161 |
+
"grad_norm": 1.5030951499938965,
|
| 1162 |
+
"learning_rate": 3e-05,
|
| 1163 |
+
"loss": 0.4181,
|
| 1164 |
+
"step": 165
|
| 1165 |
+
},
|
| 1166 |
+
{
|
| 1167 |
+
"epoch": 0.3952380952380952,
|
| 1168 |
+
"grad_norm": 0.6494777798652649,
|
| 1169 |
+
"learning_rate": 3e-05,
|
| 1170 |
+
"loss": 0.4,
|
| 1171 |
+
"step": 166
|
| 1172 |
+
},
|
| 1173 |
+
{
|
| 1174 |
+
"epoch": 0.3976190476190476,
|
| 1175 |
+
"grad_norm": 0.7952489256858826,
|
| 1176 |
+
"learning_rate": 3e-05,
|
| 1177 |
+
"loss": 0.4569,
|
| 1178 |
+
"step": 167
|
| 1179 |
+
},
|
| 1180 |
+
{
|
| 1181 |
+
"epoch": 0.4,
|
| 1182 |
+
"grad_norm": 1.175072193145752,
|
| 1183 |
+
"learning_rate": 3e-05,
|
| 1184 |
+
"loss": 0.4385,
|
| 1185 |
+
"step": 168
|
| 1186 |
+
},
|
| 1187 |
+
{
|
| 1188 |
+
"epoch": 0.4023809523809524,
|
| 1189 |
+
"grad_norm": 0.8904735445976257,
|
| 1190 |
+
"learning_rate": 3e-05,
|
| 1191 |
+
"loss": 0.4107,
|
| 1192 |
+
"step": 169
|
| 1193 |
+
},
|
| 1194 |
+
{
|
| 1195 |
+
"epoch": 0.40476190476190477,
|
| 1196 |
+
"grad_norm": 1.0196988582611084,
|
| 1197 |
+
"learning_rate": 3e-05,
|
| 1198 |
+
"loss": 0.3662,
|
| 1199 |
+
"step": 170
|
| 1200 |
+
},
|
| 1201 |
+
{
|
| 1202 |
+
"epoch": 0.40714285714285714,
|
| 1203 |
+
"grad_norm": 1.025765299797058,
|
| 1204 |
+
"learning_rate": 3e-05,
|
| 1205 |
+
"loss": 0.4981,
|
| 1206 |
+
"step": 171
|
| 1207 |
+
},
|
| 1208 |
+
{
|
| 1209 |
+
"epoch": 0.4095238095238095,
|
| 1210 |
+
"grad_norm": 0.8151318430900574,
|
| 1211 |
+
"learning_rate": 3e-05,
|
| 1212 |
+
"loss": 0.5131,
|
| 1213 |
+
"step": 172
|
| 1214 |
+
},
|
| 1215 |
+
{
|
| 1216 |
+
"epoch": 0.4119047619047619,
|
| 1217 |
+
"grad_norm": 0.8304903507232666,
|
| 1218 |
+
"learning_rate": 3e-05,
|
| 1219 |
+
"loss": 0.4652,
|
| 1220 |
+
"step": 173
|
| 1221 |
+
},
|
| 1222 |
+
{
|
| 1223 |
+
"epoch": 0.4142857142857143,
|
| 1224 |
+
"grad_norm": 0.8581998944282532,
|
| 1225 |
+
"learning_rate": 3e-05,
|
| 1226 |
+
"loss": 0.492,
|
| 1227 |
+
"step": 174
|
| 1228 |
+
},
|
| 1229 |
+
{
|
| 1230 |
+
"epoch": 0.4166666666666667,
|
| 1231 |
+
"grad_norm": 0.7963671088218689,
|
| 1232 |
+
"learning_rate": 3e-05,
|
| 1233 |
+
"loss": 0.4149,
|
| 1234 |
+
"step": 175
|
| 1235 |
+
},
|
| 1236 |
+
{
|
| 1237 |
+
"epoch": 0.41904761904761906,
|
| 1238 |
+
"grad_norm": 0.814155638217926,
|
| 1239 |
+
"learning_rate": 3e-05,
|
| 1240 |
+
"loss": 0.5259,
|
| 1241 |
+
"step": 176
|
| 1242 |
+
},
|
| 1243 |
+
{
|
| 1244 |
+
"epoch": 0.42142857142857143,
|
| 1245 |
+
"grad_norm": 0.819995105266571,
|
| 1246 |
+
"learning_rate": 3e-05,
|
| 1247 |
+
"loss": 0.4502,
|
| 1248 |
+
"step": 177
|
| 1249 |
+
},
|
| 1250 |
+
{
|
| 1251 |
+
"epoch": 0.4238095238095238,
|
| 1252 |
+
"grad_norm": 0.6711002588272095,
|
| 1253 |
+
"learning_rate": 3e-05,
|
| 1254 |
+
"loss": 0.4163,
|
| 1255 |
+
"step": 178
|
| 1256 |
+
},
|
| 1257 |
+
{
|
| 1258 |
+
"epoch": 0.4261904761904762,
|
| 1259 |
+
"grad_norm": 0.8345437049865723,
|
| 1260 |
+
"learning_rate": 3e-05,
|
| 1261 |
+
"loss": 0.4161,
|
| 1262 |
+
"step": 179
|
| 1263 |
+
},
|
| 1264 |
+
{
|
| 1265 |
+
"epoch": 0.42857142857142855,
|
| 1266 |
+
"grad_norm": 0.5476064682006836,
|
| 1267 |
+
"learning_rate": 3e-05,
|
| 1268 |
+
"loss": 0.38,
|
| 1269 |
+
"step": 180
|
| 1270 |
+
},
|
| 1271 |
+
{
|
| 1272 |
+
"epoch": 0.430952380952381,
|
| 1273 |
+
"grad_norm": 0.836280882358551,
|
| 1274 |
+
"learning_rate": 3e-05,
|
| 1275 |
+
"loss": 0.4163,
|
| 1276 |
+
"step": 181
|
| 1277 |
+
},
|
| 1278 |
+
{
|
| 1279 |
+
"epoch": 0.43333333333333335,
|
| 1280 |
+
"grad_norm": 0.8886452317237854,
|
| 1281 |
+
"learning_rate": 3e-05,
|
| 1282 |
+
"loss": 0.4447,
|
| 1283 |
+
"step": 182
|
| 1284 |
+
},
|
| 1285 |
+
{
|
| 1286 |
+
"epoch": 0.4357142857142857,
|
| 1287 |
+
"grad_norm": 0.89081209897995,
|
| 1288 |
+
"learning_rate": 3e-05,
|
| 1289 |
+
"loss": 0.3914,
|
| 1290 |
+
"step": 183
|
| 1291 |
+
},
|
| 1292 |
+
{
|
| 1293 |
+
"epoch": 0.4380952380952381,
|
| 1294 |
+
"grad_norm": 2.051706075668335,
|
| 1295 |
+
"learning_rate": 3e-05,
|
| 1296 |
+
"loss": 0.5365,
|
| 1297 |
+
"step": 184
|
| 1298 |
+
},
|
| 1299 |
+
{
|
| 1300 |
+
"epoch": 0.44047619047619047,
|
| 1301 |
+
"grad_norm": 0.8237314224243164,
|
| 1302 |
+
"learning_rate": 3e-05,
|
| 1303 |
+
"loss": 0.4411,
|
| 1304 |
+
"step": 185
|
| 1305 |
+
},
|
| 1306 |
+
{
|
| 1307 |
+
"epoch": 0.44285714285714284,
|
| 1308 |
+
"grad_norm": 0.8707730770111084,
|
| 1309 |
+
"learning_rate": 3e-05,
|
| 1310 |
+
"loss": 0.505,
|
| 1311 |
+
"step": 186
|
| 1312 |
+
},
|
| 1313 |
+
{
|
| 1314 |
+
"epoch": 0.4452380952380952,
|
| 1315 |
+
"grad_norm": 0.922207772731781,
|
| 1316 |
+
"learning_rate": 3e-05,
|
| 1317 |
+
"loss": 0.4698,
|
| 1318 |
+
"step": 187
|
| 1319 |
+
},
|
| 1320 |
+
{
|
| 1321 |
+
"epoch": 0.44761904761904764,
|
| 1322 |
+
"grad_norm": 1.2687690258026123,
|
| 1323 |
+
"learning_rate": 3e-05,
|
| 1324 |
+
"loss": 0.5653,
|
| 1325 |
+
"step": 188
|
| 1326 |
+
},
|
| 1327 |
+
{
|
| 1328 |
+
"epoch": 0.45,
|
| 1329 |
+
"grad_norm": 0.8072938919067383,
|
| 1330 |
+
"learning_rate": 3e-05,
|
| 1331 |
+
"loss": 0.3777,
|
| 1332 |
+
"step": 189
|
| 1333 |
+
},
|
| 1334 |
+
{
|
| 1335 |
+
"epoch": 0.4523809523809524,
|
| 1336 |
+
"grad_norm": 0.8983867764472961,
|
| 1337 |
+
"learning_rate": 3e-05,
|
| 1338 |
+
"loss": 0.4334,
|
| 1339 |
+
"step": 190
|
| 1340 |
+
},
|
| 1341 |
+
{
|
| 1342 |
+
"epoch": 0.45476190476190476,
|
| 1343 |
+
"grad_norm": 0.9799190163612366,
|
| 1344 |
+
"learning_rate": 3e-05,
|
| 1345 |
+
"loss": 0.567,
|
| 1346 |
+
"step": 191
|
| 1347 |
+
},
|
| 1348 |
+
{
|
| 1349 |
+
"epoch": 0.45714285714285713,
|
| 1350 |
+
"grad_norm": 0.8757649660110474,
|
| 1351 |
+
"learning_rate": 3e-05,
|
| 1352 |
+
"loss": 0.4425,
|
| 1353 |
+
"step": 192
|
| 1354 |
+
},
|
| 1355 |
+
{
|
| 1356 |
+
"epoch": 0.4595238095238095,
|
| 1357 |
+
"grad_norm": 1.6467727422714233,
|
| 1358 |
+
"learning_rate": 3e-05,
|
| 1359 |
+
"loss": 0.484,
|
| 1360 |
+
"step": 193
|
| 1361 |
+
},
|
| 1362 |
+
{
|
| 1363 |
+
"epoch": 0.46190476190476193,
|
| 1364 |
+
"grad_norm": 0.6561694741249084,
|
| 1365 |
+
"learning_rate": 3e-05,
|
| 1366 |
+
"loss": 0.4947,
|
| 1367 |
+
"step": 194
|
| 1368 |
+
},
|
| 1369 |
+
{
|
| 1370 |
+
"epoch": 0.4642857142857143,
|
| 1371 |
+
"grad_norm": 0.8178306818008423,
|
| 1372 |
+
"learning_rate": 3e-05,
|
| 1373 |
+
"loss": 0.4398,
|
| 1374 |
+
"step": 195
|
| 1375 |
+
},
|
| 1376 |
+
{
|
| 1377 |
+
"epoch": 0.4666666666666667,
|
| 1378 |
+
"grad_norm": 0.9850760102272034,
|
| 1379 |
+
"learning_rate": 3e-05,
|
| 1380 |
+
"loss": 0.4436,
|
| 1381 |
+
"step": 196
|
| 1382 |
+
},
|
| 1383 |
+
{
|
| 1384 |
+
"epoch": 0.46904761904761905,
|
| 1385 |
+
"grad_norm": 0.8389570713043213,
|
| 1386 |
+
"learning_rate": 3e-05,
|
| 1387 |
+
"loss": 0.4303,
|
| 1388 |
+
"step": 197
|
| 1389 |
+
},
|
| 1390 |
+
{
|
| 1391 |
+
"epoch": 0.4714285714285714,
|
| 1392 |
+
"grad_norm": 1.0063328742980957,
|
| 1393 |
+
"learning_rate": 3e-05,
|
| 1394 |
+
"loss": 0.4574,
|
| 1395 |
+
"step": 198
|
| 1396 |
+
},
|
| 1397 |
+
{
|
| 1398 |
+
"epoch": 0.4738095238095238,
|
| 1399 |
+
"grad_norm": 0.7931296229362488,
|
| 1400 |
+
"learning_rate": 3e-05,
|
| 1401 |
+
"loss": 0.4096,
|
| 1402 |
+
"step": 199
|
| 1403 |
+
},
|
| 1404 |
+
{
|
| 1405 |
+
"epoch": 0.47619047619047616,
|
| 1406 |
+
"grad_norm": 1.4383584260940552,
|
| 1407 |
+
"learning_rate": 3e-05,
|
| 1408 |
+
"loss": 0.5578,
|
| 1409 |
+
"step": 200
|
| 1410 |
+
},
|
| 1411 |
+
{
|
| 1412 |
+
"epoch": 0.4785714285714286,
|
| 1413 |
+
"grad_norm": 1.2136746644973755,
|
| 1414 |
+
"learning_rate": 3e-05,
|
| 1415 |
+
"loss": 0.505,
|
| 1416 |
+
"step": 201
|
| 1417 |
+
},
|
| 1418 |
+
{
|
| 1419 |
+
"epoch": 0.48095238095238096,
|
| 1420 |
+
"grad_norm": 0.8902712464332581,
|
| 1421 |
+
"learning_rate": 3e-05,
|
| 1422 |
+
"loss": 0.385,
|
| 1423 |
+
"step": 202
|
| 1424 |
+
},
|
| 1425 |
+
{
|
| 1426 |
+
"epoch": 0.48333333333333334,
|
| 1427 |
+
"grad_norm": 0.6584445238113403,
|
| 1428 |
+
"learning_rate": 3e-05,
|
| 1429 |
+
"loss": 0.4603,
|
| 1430 |
+
"step": 203
|
| 1431 |
+
},
|
| 1432 |
+
{
|
| 1433 |
+
"epoch": 0.4857142857142857,
|
| 1434 |
+
"grad_norm": 1.4439114332199097,
|
| 1435 |
+
"learning_rate": 3e-05,
|
| 1436 |
+
"loss": 0.4835,
|
| 1437 |
+
"step": 204
|
| 1438 |
+
},
|
| 1439 |
+
{
|
| 1440 |
+
"epoch": 0.4880952380952381,
|
| 1441 |
+
"grad_norm": 1.160464882850647,
|
| 1442 |
+
"learning_rate": 3e-05,
|
| 1443 |
+
"loss": 0.4695,
|
| 1444 |
+
"step": 205
|
| 1445 |
+
},
|
| 1446 |
+
{
|
| 1447 |
+
"epoch": 0.49047619047619045,
|
| 1448 |
+
"grad_norm": 1.3329150676727295,
|
| 1449 |
+
"learning_rate": 3e-05,
|
| 1450 |
+
"loss": 0.493,
|
| 1451 |
+
"step": 206
|
| 1452 |
+
},
|
| 1453 |
+
{
|
| 1454 |
+
"epoch": 0.4928571428571429,
|
| 1455 |
+
"grad_norm": 0.7865476012229919,
|
| 1456 |
+
"learning_rate": 3e-05,
|
| 1457 |
+
"loss": 0.3839,
|
| 1458 |
+
"step": 207
|
| 1459 |
+
},
|
| 1460 |
+
{
|
| 1461 |
+
"epoch": 0.49523809523809526,
|
| 1462 |
+
"grad_norm": 0.6394692063331604,
|
| 1463 |
+
"learning_rate": 3e-05,
|
| 1464 |
+
"loss": 0.4198,
|
| 1465 |
+
"step": 208
|
| 1466 |
+
},
|
| 1467 |
+
{
|
| 1468 |
+
"epoch": 0.4976190476190476,
|
| 1469 |
+
"grad_norm": 0.7849683165550232,
|
| 1470 |
+
"learning_rate": 3e-05,
|
| 1471 |
+
"loss": 0.4416,
|
| 1472 |
+
"step": 209
|
| 1473 |
+
},
|
| 1474 |
+
{
|
| 1475 |
+
"epoch": 0.5,
|
| 1476 |
+
"grad_norm": 0.8394088745117188,
|
| 1477 |
+
"learning_rate": 3e-05,
|
| 1478 |
+
"loss": 0.4106,
|
| 1479 |
+
"step": 210
|
| 1480 |
+
},
|
| 1481 |
+
{
|
| 1482 |
+
"epoch": 0.5023809523809524,
|
| 1483 |
+
"grad_norm": 1.2182062864303589,
|
| 1484 |
+
"learning_rate": 3e-05,
|
| 1485 |
+
"loss": 0.4312,
|
| 1486 |
+
"step": 211
|
| 1487 |
+
},
|
| 1488 |
+
{
|
| 1489 |
+
"epoch": 0.5047619047619047,
|
| 1490 |
+
"grad_norm": 1.8101513385772705,
|
| 1491 |
+
"learning_rate": 3e-05,
|
| 1492 |
+
"loss": 0.4463,
|
| 1493 |
+
"step": 212
|
| 1494 |
+
},
|
| 1495 |
+
{
|
| 1496 |
+
"epoch": 0.5071428571428571,
|
| 1497 |
+
"grad_norm": 1.2146952152252197,
|
| 1498 |
+
"learning_rate": 3e-05,
|
| 1499 |
+
"loss": 0.4194,
|
| 1500 |
+
"step": 213
|
| 1501 |
+
},
|
| 1502 |
+
{
|
| 1503 |
+
"epoch": 0.5095238095238095,
|
| 1504 |
+
"grad_norm": 1.2878483533859253,
|
| 1505 |
+
"learning_rate": 3e-05,
|
| 1506 |
+
"loss": 0.4494,
|
| 1507 |
+
"step": 214
|
| 1508 |
+
},
|
| 1509 |
+
{
|
| 1510 |
+
"epoch": 0.5119047619047619,
|
| 1511 |
+
"grad_norm": 0.6163401007652283,
|
| 1512 |
+
"learning_rate": 3e-05,
|
| 1513 |
+
"loss": 0.3637,
|
| 1514 |
+
"step": 215
|
| 1515 |
+
},
|
| 1516 |
+
{
|
| 1517 |
+
"epoch": 0.5142857142857142,
|
| 1518 |
+
"grad_norm": 0.8795377016067505,
|
| 1519 |
+
"learning_rate": 3e-05,
|
| 1520 |
+
"loss": 0.4442,
|
| 1521 |
+
"step": 216
|
| 1522 |
+
},
|
| 1523 |
+
{
|
| 1524 |
+
"epoch": 0.5166666666666667,
|
| 1525 |
+
"grad_norm": 1.1143704652786255,
|
| 1526 |
+
"learning_rate": 3e-05,
|
| 1527 |
+
"loss": 0.5383,
|
| 1528 |
+
"step": 217
|
| 1529 |
+
},
|
| 1530 |
+
{
|
| 1531 |
+
"epoch": 0.5190476190476191,
|
| 1532 |
+
"grad_norm": 0.9760447144508362,
|
| 1533 |
+
"learning_rate": 3e-05,
|
| 1534 |
+
"loss": 0.5384,
|
| 1535 |
+
"step": 218
|
| 1536 |
+
},
|
| 1537 |
+
{
|
| 1538 |
+
"epoch": 0.5214285714285715,
|
| 1539 |
+
"grad_norm": 0.9762544631958008,
|
| 1540 |
+
"learning_rate": 3e-05,
|
| 1541 |
+
"loss": 0.4292,
|
| 1542 |
+
"step": 219
|
| 1543 |
+
},
|
| 1544 |
+
{
|
| 1545 |
+
"epoch": 0.5238095238095238,
|
| 1546 |
+
"grad_norm": 1.2184864282608032,
|
| 1547 |
+
"learning_rate": 3e-05,
|
| 1548 |
+
"loss": 0.6392,
|
| 1549 |
+
"step": 220
|
| 1550 |
+
},
|
| 1551 |
+
{
|
| 1552 |
+
"epoch": 0.5261904761904762,
|
| 1553 |
+
"grad_norm": 0.9517297148704529,
|
| 1554 |
+
"learning_rate": 3e-05,
|
| 1555 |
+
"loss": 0.4863,
|
| 1556 |
+
"step": 221
|
| 1557 |
+
},
|
| 1558 |
+
{
|
| 1559 |
+
"epoch": 0.5285714285714286,
|
| 1560 |
+
"grad_norm": 0.7961365580558777,
|
| 1561 |
+
"learning_rate": 3e-05,
|
| 1562 |
+
"loss": 0.3822,
|
| 1563 |
+
"step": 222
|
| 1564 |
+
},
|
| 1565 |
+
{
|
| 1566 |
+
"epoch": 0.530952380952381,
|
| 1567 |
+
"grad_norm": 0.8735774755477905,
|
| 1568 |
+
"learning_rate": 3e-05,
|
| 1569 |
+
"loss": 0.5283,
|
| 1570 |
+
"step": 223
|
| 1571 |
+
},
|
| 1572 |
+
{
|
| 1573 |
+
"epoch": 0.5333333333333333,
|
| 1574 |
+
"grad_norm": 0.6506310105323792,
|
| 1575 |
+
"learning_rate": 3e-05,
|
| 1576 |
+
"loss": 0.3831,
|
| 1577 |
+
"step": 224
|
| 1578 |
+
},
|
| 1579 |
+
{
|
| 1580 |
+
"epoch": 0.5357142857142857,
|
| 1581 |
+
"grad_norm": 1.1028398275375366,
|
| 1582 |
+
"learning_rate": 3e-05,
|
| 1583 |
+
"loss": 0.5849,
|
| 1584 |
+
"step": 225
|
| 1585 |
+
},
|
| 1586 |
+
{
|
| 1587 |
+
"epoch": 0.5380952380952381,
|
| 1588 |
+
"grad_norm": 0.646365225315094,
|
| 1589 |
+
"learning_rate": 3e-05,
|
| 1590 |
+
"loss": 0.4134,
|
| 1591 |
+
"step": 226
|
| 1592 |
+
},
|
| 1593 |
+
{
|
| 1594 |
+
"epoch": 0.5404761904761904,
|
| 1595 |
+
"grad_norm": 0.7208945751190186,
|
| 1596 |
+
"learning_rate": 3e-05,
|
| 1597 |
+
"loss": 0.4387,
|
| 1598 |
+
"step": 227
|
| 1599 |
+
},
|
| 1600 |
+
{
|
| 1601 |
+
"epoch": 0.5428571428571428,
|
| 1602 |
+
"grad_norm": 1.1932159662246704,
|
| 1603 |
+
"learning_rate": 3e-05,
|
| 1604 |
+
"loss": 0.4882,
|
| 1605 |
+
"step": 228
|
| 1606 |
+
},
|
| 1607 |
+
{
|
| 1608 |
+
"epoch": 0.5452380952380952,
|
| 1609 |
+
"grad_norm": 0.5648031234741211,
|
| 1610 |
+
"learning_rate": 3e-05,
|
| 1611 |
+
"loss": 0.3583,
|
| 1612 |
+
"step": 229
|
| 1613 |
+
},
|
| 1614 |
+
{
|
| 1615 |
+
"epoch": 0.5476190476190477,
|
| 1616 |
+
"grad_norm": 0.8216423988342285,
|
| 1617 |
+
"learning_rate": 3e-05,
|
| 1618 |
+
"loss": 0.4276,
|
| 1619 |
+
"step": 230
|
| 1620 |
+
},
|
| 1621 |
+
{
|
| 1622 |
+
"epoch": 0.55,
|
| 1623 |
+
"grad_norm": 0.6750469207763672,
|
| 1624 |
+
"learning_rate": 3e-05,
|
| 1625 |
+
"loss": 0.429,
|
| 1626 |
+
"step": 231
|
| 1627 |
+
},
|
| 1628 |
+
{
|
| 1629 |
+
"epoch": 0.5523809523809524,
|
| 1630 |
+
"grad_norm": 0.6576554179191589,
|
| 1631 |
+
"learning_rate": 3e-05,
|
| 1632 |
+
"loss": 0.4449,
|
| 1633 |
+
"step": 232
|
| 1634 |
+
},
|
| 1635 |
+
{
|
| 1636 |
+
"epoch": 0.5547619047619048,
|
| 1637 |
+
"grad_norm": 1.514758586883545,
|
| 1638 |
+
"learning_rate": 3e-05,
|
| 1639 |
+
"loss": 0.4153,
|
| 1640 |
+
"step": 233
|
| 1641 |
+
},
|
| 1642 |
+
{
|
| 1643 |
+
"epoch": 0.5571428571428572,
|
| 1644 |
+
"grad_norm": 1.1545631885528564,
|
| 1645 |
+
"learning_rate": 3e-05,
|
| 1646 |
+
"loss": 0.4554,
|
| 1647 |
+
"step": 234
|
| 1648 |
+
},
|
| 1649 |
+
{
|
| 1650 |
+
"epoch": 0.5595238095238095,
|
| 1651 |
+
"grad_norm": 0.7327958941459656,
|
| 1652 |
+
"learning_rate": 3e-05,
|
| 1653 |
+
"loss": 0.3641,
|
| 1654 |
+
"step": 235
|
| 1655 |
+
},
|
| 1656 |
+
{
|
| 1657 |
+
"epoch": 0.5619047619047619,
|
| 1658 |
+
"grad_norm": 1.4862022399902344,
|
| 1659 |
+
"learning_rate": 3e-05,
|
| 1660 |
+
"loss": 0.5283,
|
| 1661 |
+
"step": 236
|
| 1662 |
+
},
|
| 1663 |
+
{
|
| 1664 |
+
"epoch": 0.5642857142857143,
|
| 1665 |
+
"grad_norm": 1.2565538883209229,
|
| 1666 |
+
"learning_rate": 3e-05,
|
| 1667 |
+
"loss": 0.4605,
|
| 1668 |
+
"step": 237
|
| 1669 |
+
},
|
| 1670 |
+
{
|
| 1671 |
+
"epoch": 0.5666666666666667,
|
| 1672 |
+
"grad_norm": 0.5355277061462402,
|
| 1673 |
+
"learning_rate": 3e-05,
|
| 1674 |
+
"loss": 0.3679,
|
| 1675 |
+
"step": 238
|
| 1676 |
+
},
|
| 1677 |
+
{
|
| 1678 |
+
"epoch": 0.569047619047619,
|
| 1679 |
+
"grad_norm": 0.8581258058547974,
|
| 1680 |
+
"learning_rate": 3e-05,
|
| 1681 |
+
"loss": 0.462,
|
| 1682 |
+
"step": 239
|
| 1683 |
+
},
|
| 1684 |
+
{
|
| 1685 |
+
"epoch": 0.5714285714285714,
|
| 1686 |
+
"grad_norm": 0.9366555213928223,
|
| 1687 |
+
"learning_rate": 3e-05,
|
| 1688 |
+
"loss": 0.4788,
|
| 1689 |
+
"step": 240
|
| 1690 |
+
},
|
| 1691 |
+
{
|
| 1692 |
+
"epoch": 0.5738095238095238,
|
| 1693 |
+
"grad_norm": 0.927740216255188,
|
| 1694 |
+
"learning_rate": 3e-05,
|
| 1695 |
+
"loss": 0.4406,
|
| 1696 |
+
"step": 241
|
| 1697 |
+
},
|
| 1698 |
+
{
|
| 1699 |
+
"epoch": 0.5761904761904761,
|
| 1700 |
+
"grad_norm": 0.8326394557952881,
|
| 1701 |
+
"learning_rate": 3e-05,
|
| 1702 |
+
"loss": 0.3595,
|
| 1703 |
+
"step": 242
|
| 1704 |
+
},
|
| 1705 |
+
{
|
| 1706 |
+
"epoch": 0.5785714285714286,
|
| 1707 |
+
"grad_norm": 1.214613676071167,
|
| 1708 |
+
"learning_rate": 3e-05,
|
| 1709 |
+
"loss": 0.5004,
|
| 1710 |
+
"step": 243
|
| 1711 |
+
},
|
| 1712 |
+
{
|
| 1713 |
+
"epoch": 0.580952380952381,
|
| 1714 |
+
"grad_norm": 0.9543561935424805,
|
| 1715 |
+
"learning_rate": 3e-05,
|
| 1716 |
+
"loss": 0.4941,
|
| 1717 |
+
"step": 244
|
| 1718 |
+
},
|
| 1719 |
+
{
|
| 1720 |
+
"epoch": 0.5833333333333334,
|
| 1721 |
+
"grad_norm": 1.1488438844680786,
|
| 1722 |
+
"learning_rate": 3e-05,
|
| 1723 |
+
"loss": 0.5066,
|
| 1724 |
+
"step": 245
|
| 1725 |
+
},
|
| 1726 |
+
{
|
| 1727 |
+
"epoch": 0.5857142857142857,
|
| 1728 |
+
"grad_norm": 0.9091154932975769,
|
| 1729 |
+
"learning_rate": 3e-05,
|
| 1730 |
+
"loss": 0.4834,
|
| 1731 |
+
"step": 246
|
| 1732 |
+
},
|
| 1733 |
+
{
|
| 1734 |
+
"epoch": 0.5880952380952381,
|
| 1735 |
+
"grad_norm": 0.7307273149490356,
|
| 1736 |
+
"learning_rate": 3e-05,
|
| 1737 |
+
"loss": 0.5543,
|
| 1738 |
+
"step": 247
|
| 1739 |
+
},
|
| 1740 |
+
{
|
| 1741 |
+
"epoch": 0.5904761904761905,
|
| 1742 |
+
"grad_norm": 1.0417815446853638,
|
| 1743 |
+
"learning_rate": 3e-05,
|
| 1744 |
+
"loss": 0.4615,
|
| 1745 |
+
"step": 248
|
| 1746 |
+
},
|
| 1747 |
+
{
|
| 1748 |
+
"epoch": 0.5928571428571429,
|
| 1749 |
+
"grad_norm": 0.7121735215187073,
|
| 1750 |
+
"learning_rate": 3e-05,
|
| 1751 |
+
"loss": 0.374,
|
| 1752 |
+
"step": 249
|
| 1753 |
+
},
|
| 1754 |
+
{
|
| 1755 |
+
"epoch": 0.5952380952380952,
|
| 1756 |
+
"grad_norm": 1.0804853439331055,
|
| 1757 |
+
"learning_rate": 3e-05,
|
| 1758 |
+
"loss": 0.3975,
|
| 1759 |
+
"step": 250
|
| 1760 |
+
},
|
| 1761 |
+
{
|
| 1762 |
+
"epoch": 0.5976190476190476,
|
| 1763 |
+
"grad_norm": 0.7743527293205261,
|
| 1764 |
+
"learning_rate": 3e-05,
|
| 1765 |
+
"loss": 0.4129,
|
| 1766 |
+
"step": 251
|
| 1767 |
+
},
|
| 1768 |
+
{
|
| 1769 |
+
"epoch": 0.6,
|
| 1770 |
+
"grad_norm": 0.7785153985023499,
|
| 1771 |
+
"learning_rate": 3e-05,
|
| 1772 |
+
"loss": 0.4027,
|
| 1773 |
+
"step": 252
|
| 1774 |
+
},
|
| 1775 |
+
{
|
| 1776 |
+
"epoch": 0.6023809523809524,
|
| 1777 |
+
"grad_norm": 1.36514413356781,
|
| 1778 |
+
"learning_rate": 3e-05,
|
| 1779 |
+
"loss": 0.5362,
|
| 1780 |
+
"step": 253
|
| 1781 |
+
},
|
| 1782 |
+
{
|
| 1783 |
+
"epoch": 0.6047619047619047,
|
| 1784 |
+
"grad_norm": 0.8658007979393005,
|
| 1785 |
+
"learning_rate": 3e-05,
|
| 1786 |
+
"loss": 0.4488,
|
| 1787 |
+
"step": 254
|
| 1788 |
+
},
|
| 1789 |
+
{
|
| 1790 |
+
"epoch": 0.6071428571428571,
|
| 1791 |
+
"grad_norm": 0.807852566242218,
|
| 1792 |
+
"learning_rate": 3e-05,
|
| 1793 |
+
"loss": 0.4065,
|
| 1794 |
+
"step": 255
|
| 1795 |
+
},
|
| 1796 |
+
{
|
| 1797 |
+
"epoch": 0.6095238095238096,
|
| 1798 |
+
"grad_norm": 1.2672406435012817,
|
| 1799 |
+
"learning_rate": 3e-05,
|
| 1800 |
+
"loss": 0.4587,
|
| 1801 |
+
"step": 256
|
| 1802 |
+
},
|
| 1803 |
+
{
|
| 1804 |
+
"epoch": 0.611904761904762,
|
| 1805 |
+
"grad_norm": 1.0440469980239868,
|
| 1806 |
+
"learning_rate": 3e-05,
|
| 1807 |
+
"loss": 0.4815,
|
| 1808 |
+
"step": 257
|
| 1809 |
+
},
|
| 1810 |
+
{
|
| 1811 |
+
"epoch": 0.6142857142857143,
|
| 1812 |
+
"grad_norm": 0.9778774380683899,
|
| 1813 |
+
"learning_rate": 3e-05,
|
| 1814 |
+
"loss": 0.385,
|
| 1815 |
+
"step": 258
|
| 1816 |
+
},
|
| 1817 |
+
{
|
| 1818 |
+
"epoch": 0.6166666666666667,
|
| 1819 |
+
"grad_norm": 0.8957841396331787,
|
| 1820 |
+
"learning_rate": 3e-05,
|
| 1821 |
+
"loss": 0.4405,
|
| 1822 |
+
"step": 259
|
| 1823 |
+
},
|
| 1824 |
+
{
|
| 1825 |
+
"epoch": 0.6190476190476191,
|
| 1826 |
+
"grad_norm": 0.9312807321548462,
|
| 1827 |
+
"learning_rate": 3e-05,
|
| 1828 |
+
"loss": 0.4902,
|
| 1829 |
+
"step": 260
|
| 1830 |
+
},
|
| 1831 |
+
{
|
| 1832 |
+
"epoch": 0.6214285714285714,
|
| 1833 |
+
"grad_norm": 0.6373504400253296,
|
| 1834 |
+
"learning_rate": 3e-05,
|
| 1835 |
+
"loss": 0.436,
|
| 1836 |
+
"step": 261
|
| 1837 |
+
},
|
| 1838 |
+
{
|
| 1839 |
+
"epoch": 0.6238095238095238,
|
| 1840 |
+
"grad_norm": 0.8105682134628296,
|
| 1841 |
+
"learning_rate": 3e-05,
|
| 1842 |
+
"loss": 0.4,
|
| 1843 |
+
"step": 262
|
| 1844 |
+
},
|
| 1845 |
+
{
|
| 1846 |
+
"epoch": 0.6261904761904762,
|
| 1847 |
+
"grad_norm": 1.1135553121566772,
|
| 1848 |
+
"learning_rate": 3e-05,
|
| 1849 |
+
"loss": 0.4624,
|
| 1850 |
+
"step": 263
|
| 1851 |
+
},
|
| 1852 |
+
{
|
| 1853 |
+
"epoch": 0.6285714285714286,
|
| 1854 |
+
"grad_norm": 0.8639890551567078,
|
| 1855 |
+
"learning_rate": 3e-05,
|
| 1856 |
+
"loss": 0.3969,
|
| 1857 |
+
"step": 264
|
| 1858 |
+
},
|
| 1859 |
+
{
|
| 1860 |
+
"epoch": 0.6309523809523809,
|
| 1861 |
+
"grad_norm": 1.8037925958633423,
|
| 1862 |
+
"learning_rate": 3e-05,
|
| 1863 |
+
"loss": 0.5693,
|
| 1864 |
+
"step": 265
|
| 1865 |
+
},
|
| 1866 |
+
{
|
| 1867 |
+
"epoch": 0.6333333333333333,
|
| 1868 |
+
"grad_norm": 0.6781933307647705,
|
| 1869 |
+
"learning_rate": 3e-05,
|
| 1870 |
+
"loss": 0.4913,
|
| 1871 |
+
"step": 266
|
| 1872 |
+
},
|
| 1873 |
+
{
|
| 1874 |
+
"epoch": 0.6357142857142857,
|
| 1875 |
+
"grad_norm": 0.8383111953735352,
|
| 1876 |
+
"learning_rate": 3e-05,
|
| 1877 |
+
"loss": 0.3797,
|
| 1878 |
+
"step": 267
|
| 1879 |
+
},
|
| 1880 |
+
{
|
| 1881 |
+
"epoch": 0.638095238095238,
|
| 1882 |
+
"grad_norm": 0.7477337718009949,
|
| 1883 |
+
"learning_rate": 3e-05,
|
| 1884 |
+
"loss": 0.4539,
|
| 1885 |
+
"step": 268
|
| 1886 |
+
},
|
| 1887 |
+
{
|
| 1888 |
+
"epoch": 0.6404761904761904,
|
| 1889 |
+
"grad_norm": 0.7518517971038818,
|
| 1890 |
+
"learning_rate": 3e-05,
|
| 1891 |
+
"loss": 0.445,
|
| 1892 |
+
"step": 269
|
| 1893 |
+
},
|
| 1894 |
+
{
|
| 1895 |
+
"epoch": 0.6428571428571429,
|
| 1896 |
+
"grad_norm": 0.9350783824920654,
|
| 1897 |
+
"learning_rate": 3e-05,
|
| 1898 |
+
"loss": 0.4111,
|
| 1899 |
+
"step": 270
|
| 1900 |
+
},
|
| 1901 |
+
{
|
| 1902 |
+
"epoch": 0.6452380952380953,
|
| 1903 |
+
"grad_norm": 0.7175120115280151,
|
| 1904 |
+
"learning_rate": 3e-05,
|
| 1905 |
+
"loss": 0.3893,
|
| 1906 |
+
"step": 271
|
| 1907 |
+
},
|
| 1908 |
+
{
|
| 1909 |
+
"epoch": 0.6476190476190476,
|
| 1910 |
+
"grad_norm": 0.9294947981834412,
|
| 1911 |
+
"learning_rate": 3e-05,
|
| 1912 |
+
"loss": 0.4438,
|
| 1913 |
+
"step": 272
|
| 1914 |
+
},
|
| 1915 |
+
{
|
| 1916 |
+
"epoch": 0.65,
|
| 1917 |
+
"grad_norm": 0.9406439065933228,
|
| 1918 |
+
"learning_rate": 3e-05,
|
| 1919 |
+
"loss": 0.4953,
|
| 1920 |
+
"step": 273
|
| 1921 |
+
},
|
| 1922 |
+
{
|
| 1923 |
+
"epoch": 0.6523809523809524,
|
| 1924 |
+
"grad_norm": 0.9267202019691467,
|
| 1925 |
+
"learning_rate": 3e-05,
|
| 1926 |
+
"loss": 0.4601,
|
| 1927 |
+
"step": 274
|
| 1928 |
+
},
|
| 1929 |
+
{
|
| 1930 |
+
"epoch": 0.6547619047619048,
|
| 1931 |
+
"grad_norm": 0.9095003604888916,
|
| 1932 |
+
"learning_rate": 3e-05,
|
| 1933 |
+
"loss": 0.5238,
|
| 1934 |
+
"step": 275
|
| 1935 |
+
},
|
| 1936 |
+
{
|
| 1937 |
+
"epoch": 0.6571428571428571,
|
| 1938 |
+
"grad_norm": 1.1330962181091309,
|
| 1939 |
+
"learning_rate": 3e-05,
|
| 1940 |
+
"loss": 0.4776,
|
| 1941 |
+
"step": 276
|
| 1942 |
+
},
|
| 1943 |
+
{
|
| 1944 |
+
"epoch": 0.6595238095238095,
|
| 1945 |
+
"grad_norm": 0.8976531028747559,
|
| 1946 |
+
"learning_rate": 3e-05,
|
| 1947 |
+
"loss": 0.4945,
|
| 1948 |
+
"step": 277
|
| 1949 |
+
},
|
| 1950 |
+
{
|
| 1951 |
+
"epoch": 0.6619047619047619,
|
| 1952 |
+
"grad_norm": 1.398485541343689,
|
| 1953 |
+
"learning_rate": 3e-05,
|
| 1954 |
+
"loss": 0.4164,
|
| 1955 |
+
"step": 278
|
| 1956 |
+
},
|
| 1957 |
+
{
|
| 1958 |
+
"epoch": 0.6642857142857143,
|
| 1959 |
+
"grad_norm": 0.8878613710403442,
|
| 1960 |
+
"learning_rate": 3e-05,
|
| 1961 |
+
"loss": 0.4601,
|
| 1962 |
+
"step": 279
|
| 1963 |
+
},
|
| 1964 |
+
{
|
| 1965 |
+
"epoch": 0.6666666666666666,
|
| 1966 |
+
"grad_norm": 0.6003170609474182,
|
| 1967 |
+
"learning_rate": 3e-05,
|
| 1968 |
+
"loss": 0.3919,
|
| 1969 |
+
"step": 280
|
| 1970 |
+
},
|
| 1971 |
+
{
|
| 1972 |
+
"epoch": 0.669047619047619,
|
| 1973 |
+
"grad_norm": 0.6366980075836182,
|
| 1974 |
+
"learning_rate": 3e-05,
|
| 1975 |
+
"loss": 0.4499,
|
| 1976 |
+
"step": 281
|
| 1977 |
+
},
|
| 1978 |
+
{
|
| 1979 |
+
"epoch": 0.6714285714285714,
|
| 1980 |
+
"grad_norm": 1.0374082326889038,
|
| 1981 |
+
"learning_rate": 3e-05,
|
| 1982 |
+
"loss": 0.4571,
|
| 1983 |
+
"step": 282
|
| 1984 |
+
},
|
| 1985 |
+
{
|
| 1986 |
+
"epoch": 0.6738095238095239,
|
| 1987 |
+
"grad_norm": 1.0846024751663208,
|
| 1988 |
+
"learning_rate": 3e-05,
|
| 1989 |
+
"loss": 0.4331,
|
| 1990 |
+
"step": 283
|
| 1991 |
+
},
|
| 1992 |
+
{
|
| 1993 |
+
"epoch": 0.6761904761904762,
|
| 1994 |
+
"grad_norm": 1.9345874786376953,
|
| 1995 |
+
"learning_rate": 3e-05,
|
| 1996 |
+
"loss": 0.4802,
|
| 1997 |
+
"step": 284
|
| 1998 |
+
},
|
| 1999 |
+
{
|
| 2000 |
+
"epoch": 0.6785714285714286,
|
| 2001 |
+
"grad_norm": 0.9415948390960693,
|
| 2002 |
+
"learning_rate": 3e-05,
|
| 2003 |
+
"loss": 0.4953,
|
| 2004 |
+
"step": 285
|
| 2005 |
+
},
|
| 2006 |
+
{
|
| 2007 |
+
"epoch": 0.680952380952381,
|
| 2008 |
+
"grad_norm": 0.7957614660263062,
|
| 2009 |
+
"learning_rate": 3e-05,
|
| 2010 |
+
"loss": 0.4365,
|
| 2011 |
+
"step": 286
|
| 2012 |
+
},
|
| 2013 |
+
{
|
| 2014 |
+
"epoch": 0.6833333333333333,
|
| 2015 |
+
"grad_norm": 0.9216206669807434,
|
| 2016 |
+
"learning_rate": 3e-05,
|
| 2017 |
+
"loss": 0.4168,
|
| 2018 |
+
"step": 287
|
| 2019 |
+
},
|
| 2020 |
+
{
|
| 2021 |
+
"epoch": 0.6857142857142857,
|
| 2022 |
+
"grad_norm": 1.051074743270874,
|
| 2023 |
+
"learning_rate": 3e-05,
|
| 2024 |
+
"loss": 0.4889,
|
| 2025 |
+
"step": 288
|
| 2026 |
+
},
|
| 2027 |
+
{
|
| 2028 |
+
"epoch": 0.6880952380952381,
|
| 2029 |
+
"grad_norm": 0.7795323729515076,
|
| 2030 |
+
"learning_rate": 3e-05,
|
| 2031 |
+
"loss": 0.3523,
|
| 2032 |
+
"step": 289
|
| 2033 |
+
},
|
| 2034 |
+
{
|
| 2035 |
+
"epoch": 0.6904761904761905,
|
| 2036 |
+
"grad_norm": 0.8779550790786743,
|
| 2037 |
+
"learning_rate": 3e-05,
|
| 2038 |
+
"loss": 0.3868,
|
| 2039 |
+
"step": 290
|
| 2040 |
+
},
|
| 2041 |
+
{
|
| 2042 |
+
"epoch": 0.6928571428571428,
|
| 2043 |
+
"grad_norm": 0.8232953548431396,
|
| 2044 |
+
"learning_rate": 3e-05,
|
| 2045 |
+
"loss": 0.3555,
|
| 2046 |
+
"step": 291
|
| 2047 |
+
},
|
| 2048 |
+
{
|
| 2049 |
+
"epoch": 0.6952380952380952,
|
| 2050 |
+
"grad_norm": 1.3102864027023315,
|
| 2051 |
+
"learning_rate": 3e-05,
|
| 2052 |
+
"loss": 0.5208,
|
| 2053 |
+
"step": 292
|
| 2054 |
+
},
|
| 2055 |
+
{
|
| 2056 |
+
"epoch": 0.6976190476190476,
|
| 2057 |
+
"grad_norm": 0.6595520973205566,
|
| 2058 |
+
"learning_rate": 3e-05,
|
| 2059 |
+
"loss": 0.3986,
|
| 2060 |
+
"step": 293
|
| 2061 |
+
},
|
| 2062 |
+
{
|
| 2063 |
+
"epoch": 0.7,
|
| 2064 |
+
"grad_norm": 0.9423562288284302,
|
| 2065 |
+
"learning_rate": 3e-05,
|
| 2066 |
+
"loss": 0.4447,
|
| 2067 |
+
"step": 294
|
| 2068 |
+
},
|
| 2069 |
+
{
|
| 2070 |
+
"epoch": 0.7023809523809523,
|
| 2071 |
+
"grad_norm": 0.7358708381652832,
|
| 2072 |
+
"learning_rate": 3e-05,
|
| 2073 |
+
"loss": 0.4395,
|
| 2074 |
+
"step": 295
|
| 2075 |
+
},
|
| 2076 |
+
{
|
| 2077 |
+
"epoch": 0.7047619047619048,
|
| 2078 |
+
"grad_norm": 0.8931717276573181,
|
| 2079 |
+
"learning_rate": 3e-05,
|
| 2080 |
+
"loss": 0.4249,
|
| 2081 |
+
"step": 296
|
| 2082 |
+
},
|
| 2083 |
+
{
|
| 2084 |
+
"epoch": 0.7071428571428572,
|
| 2085 |
+
"grad_norm": 0.8583389520645142,
|
| 2086 |
+
"learning_rate": 3e-05,
|
| 2087 |
+
"loss": 0.4519,
|
| 2088 |
+
"step": 297
|
| 2089 |
+
},
|
| 2090 |
+
{
|
| 2091 |
+
"epoch": 0.7095238095238096,
|
| 2092 |
+
"grad_norm": 0.824382483959198,
|
| 2093 |
+
"learning_rate": 3e-05,
|
| 2094 |
+
"loss": 0.4011,
|
| 2095 |
+
"step": 298
|
| 2096 |
+
},
|
| 2097 |
+
{
|
| 2098 |
+
"epoch": 0.7119047619047619,
|
| 2099 |
+
"grad_norm": 0.7034823298454285,
|
| 2100 |
+
"learning_rate": 3e-05,
|
| 2101 |
+
"loss": 0.4816,
|
| 2102 |
+
"step": 299
|
| 2103 |
+
},
|
| 2104 |
+
{
|
| 2105 |
+
"epoch": 0.7142857142857143,
|
| 2106 |
+
"grad_norm": 0.692171573638916,
|
| 2107 |
+
"learning_rate": 3e-05,
|
| 2108 |
+
"loss": 0.4142,
|
| 2109 |
+
"step": 300
|
| 2110 |
+
},
|
| 2111 |
+
{
|
| 2112 |
+
"epoch": 0.7166666666666667,
|
| 2113 |
+
"grad_norm": 0.9514793753623962,
|
| 2114 |
+
"learning_rate": 3e-05,
|
| 2115 |
+
"loss": 0.4276,
|
| 2116 |
+
"step": 301
|
| 2117 |
+
},
|
| 2118 |
+
{
|
| 2119 |
+
"epoch": 0.719047619047619,
|
| 2120 |
+
"grad_norm": 0.7801012396812439,
|
| 2121 |
+
"learning_rate": 3e-05,
|
| 2122 |
+
"loss": 0.4587,
|
| 2123 |
+
"step": 302
|
| 2124 |
+
},
|
| 2125 |
+
{
|
| 2126 |
+
"epoch": 0.7214285714285714,
|
| 2127 |
+
"grad_norm": 0.7651001214981079,
|
| 2128 |
+
"learning_rate": 3e-05,
|
| 2129 |
+
"loss": 0.3756,
|
| 2130 |
+
"step": 303
|
| 2131 |
+
},
|
| 2132 |
+
{
|
| 2133 |
+
"epoch": 0.7238095238095238,
|
| 2134 |
+
"grad_norm": 0.7955180406570435,
|
| 2135 |
+
"learning_rate": 3e-05,
|
| 2136 |
+
"loss": 0.4012,
|
| 2137 |
+
"step": 304
|
| 2138 |
+
},
|
| 2139 |
+
{
|
| 2140 |
+
"epoch": 0.7261904761904762,
|
| 2141 |
+
"grad_norm": 1.8750542402267456,
|
| 2142 |
+
"learning_rate": 3e-05,
|
| 2143 |
+
"loss": 0.5779,
|
| 2144 |
+
"step": 305
|
| 2145 |
+
},
|
| 2146 |
+
{
|
| 2147 |
+
"epoch": 0.7285714285714285,
|
| 2148 |
+
"grad_norm": 1.1346620321273804,
|
| 2149 |
+
"learning_rate": 3e-05,
|
| 2150 |
+
"loss": 0.4389,
|
| 2151 |
+
"step": 306
|
| 2152 |
+
},
|
| 2153 |
+
{
|
| 2154 |
+
"epoch": 0.7309523809523809,
|
| 2155 |
+
"grad_norm": 0.8639288544654846,
|
| 2156 |
+
"learning_rate": 3e-05,
|
| 2157 |
+
"loss": 0.4534,
|
| 2158 |
+
"step": 307
|
| 2159 |
+
},
|
| 2160 |
+
{
|
| 2161 |
+
"epoch": 0.7333333333333333,
|
| 2162 |
+
"grad_norm": 0.8282825946807861,
|
| 2163 |
+
"learning_rate": 3e-05,
|
| 2164 |
+
"loss": 0.4218,
|
| 2165 |
+
"step": 308
|
| 2166 |
+
},
|
| 2167 |
+
{
|
| 2168 |
+
"epoch": 0.7357142857142858,
|
| 2169 |
+
"grad_norm": 0.7293280959129333,
|
| 2170 |
+
"learning_rate": 3e-05,
|
| 2171 |
+
"loss": 0.3725,
|
| 2172 |
+
"step": 309
|
| 2173 |
+
},
|
| 2174 |
+
{
|
| 2175 |
+
"epoch": 0.7380952380952381,
|
| 2176 |
+
"grad_norm": 0.747637927532196,
|
| 2177 |
+
"learning_rate": 3e-05,
|
| 2178 |
+
"loss": 0.4778,
|
| 2179 |
+
"step": 310
|
| 2180 |
+
},
|
| 2181 |
+
{
|
| 2182 |
+
"epoch": 0.7404761904761905,
|
| 2183 |
+
"grad_norm": 0.6695718765258789,
|
| 2184 |
+
"learning_rate": 3e-05,
|
| 2185 |
+
"loss": 0.432,
|
| 2186 |
+
"step": 311
|
| 2187 |
+
},
|
| 2188 |
+
{
|
| 2189 |
+
"epoch": 0.7428571428571429,
|
| 2190 |
+
"grad_norm": 1.0372726917266846,
|
| 2191 |
+
"learning_rate": 3e-05,
|
| 2192 |
+
"loss": 0.4589,
|
| 2193 |
+
"step": 312
|
| 2194 |
+
},
|
| 2195 |
+
{
|
| 2196 |
+
"epoch": 0.7452380952380953,
|
| 2197 |
+
"grad_norm": 0.7464996576309204,
|
| 2198 |
+
"learning_rate": 3e-05,
|
| 2199 |
+
"loss": 0.404,
|
| 2200 |
+
"step": 313
|
| 2201 |
+
},
|
| 2202 |
+
{
|
| 2203 |
+
"epoch": 0.7476190476190476,
|
| 2204 |
+
"grad_norm": 1.2544994354248047,
|
| 2205 |
+
"learning_rate": 3e-05,
|
| 2206 |
+
"loss": 0.5555,
|
| 2207 |
+
"step": 314
|
| 2208 |
+
},
|
| 2209 |
+
{
|
| 2210 |
+
"epoch": 0.75,
|
| 2211 |
+
"grad_norm": 0.6378808617591858,
|
| 2212 |
+
"learning_rate": 3e-05,
|
| 2213 |
+
"loss": 0.4026,
|
| 2214 |
+
"step": 315
|
| 2215 |
+
},
|
| 2216 |
+
{
|
| 2217 |
+
"epoch": 0.7523809523809524,
|
| 2218 |
+
"grad_norm": 0.8749919533729553,
|
| 2219 |
+
"learning_rate": 3e-05,
|
| 2220 |
+
"loss": 0.7496,
|
| 2221 |
+
"step": 316
|
| 2222 |
+
},
|
| 2223 |
+
{
|
| 2224 |
+
"epoch": 0.7547619047619047,
|
| 2225 |
+
"grad_norm": 0.6927523016929626,
|
| 2226 |
+
"learning_rate": 3e-05,
|
| 2227 |
+
"loss": 0.4058,
|
| 2228 |
+
"step": 317
|
| 2229 |
+
},
|
| 2230 |
+
{
|
| 2231 |
+
"epoch": 0.7571428571428571,
|
| 2232 |
+
"grad_norm": 1.0399421453475952,
|
| 2233 |
+
"learning_rate": 3e-05,
|
| 2234 |
+
"loss": 0.4785,
|
| 2235 |
+
"step": 318
|
| 2236 |
+
},
|
| 2237 |
+
{
|
| 2238 |
+
"epoch": 0.7595238095238095,
|
| 2239 |
+
"grad_norm": 0.8676436543464661,
|
| 2240 |
+
"learning_rate": 3e-05,
|
| 2241 |
+
"loss": 0.4339,
|
| 2242 |
+
"step": 319
|
| 2243 |
+
},
|
| 2244 |
+
{
|
| 2245 |
+
"epoch": 0.7619047619047619,
|
| 2246 |
+
"grad_norm": 0.9331671595573425,
|
| 2247 |
+
"learning_rate": 3e-05,
|
| 2248 |
+
"loss": 0.3896,
|
| 2249 |
+
"step": 320
|
| 2250 |
+
},
|
| 2251 |
+
{
|
| 2252 |
+
"epoch": 0.7642857142857142,
|
| 2253 |
+
"grad_norm": 0.8491724729537964,
|
| 2254 |
+
"learning_rate": 3e-05,
|
| 2255 |
+
"loss": 0.3904,
|
| 2256 |
+
"step": 321
|
| 2257 |
+
},
|
| 2258 |
+
{
|
| 2259 |
+
"epoch": 0.7666666666666667,
|
| 2260 |
+
"grad_norm": 0.6475184559822083,
|
| 2261 |
+
"learning_rate": 3e-05,
|
| 2262 |
+
"loss": 0.4101,
|
| 2263 |
+
"step": 322
|
| 2264 |
+
},
|
| 2265 |
+
{
|
| 2266 |
+
"epoch": 0.7690476190476191,
|
| 2267 |
+
"grad_norm": 1.3740770816802979,
|
| 2268 |
+
"learning_rate": 3e-05,
|
| 2269 |
+
"loss": 0.498,
|
| 2270 |
+
"step": 323
|
| 2271 |
+
},
|
| 2272 |
+
{
|
| 2273 |
+
"epoch": 0.7714285714285715,
|
| 2274 |
+
"grad_norm": 0.8867368102073669,
|
| 2275 |
+
"learning_rate": 3e-05,
|
| 2276 |
+
"loss": 0.4102,
|
| 2277 |
+
"step": 324
|
| 2278 |
+
},
|
| 2279 |
+
{
|
| 2280 |
+
"epoch": 0.7738095238095238,
|
| 2281 |
+
"grad_norm": 0.7927978038787842,
|
| 2282 |
+
"learning_rate": 3e-05,
|
| 2283 |
+
"loss": 0.3936,
|
| 2284 |
+
"step": 325
|
| 2285 |
+
},
|
| 2286 |
+
{
|
| 2287 |
+
"epoch": 0.7761904761904762,
|
| 2288 |
+
"grad_norm": 0.8019774556159973,
|
| 2289 |
+
"learning_rate": 3e-05,
|
| 2290 |
+
"loss": 0.402,
|
| 2291 |
+
"step": 326
|
| 2292 |
+
},
|
| 2293 |
+
{
|
| 2294 |
+
"epoch": 0.7785714285714286,
|
| 2295 |
+
"grad_norm": 1.3307939767837524,
|
| 2296 |
+
"learning_rate": 3e-05,
|
| 2297 |
+
"loss": 0.4611,
|
| 2298 |
+
"step": 327
|
| 2299 |
+
},
|
| 2300 |
+
{
|
| 2301 |
+
"epoch": 0.780952380952381,
|
| 2302 |
+
"grad_norm": 0.7460595965385437,
|
| 2303 |
+
"learning_rate": 3e-05,
|
| 2304 |
+
"loss": 0.4083,
|
| 2305 |
+
"step": 328
|
| 2306 |
+
},
|
| 2307 |
+
{
|
| 2308 |
+
"epoch": 0.7833333333333333,
|
| 2309 |
+
"grad_norm": 0.5957393646240234,
|
| 2310 |
+
"learning_rate": 3e-05,
|
| 2311 |
+
"loss": 0.3989,
|
| 2312 |
+
"step": 329
|
| 2313 |
+
},
|
| 2314 |
+
{
|
| 2315 |
+
"epoch": 0.7857142857142857,
|
| 2316 |
+
"grad_norm": 0.9565883278846741,
|
| 2317 |
+
"learning_rate": 3e-05,
|
| 2318 |
+
"loss": 0.4277,
|
| 2319 |
+
"step": 330
|
| 2320 |
+
},
|
| 2321 |
+
{
|
| 2322 |
+
"epoch": 0.7880952380952381,
|
| 2323 |
+
"grad_norm": 0.7315310835838318,
|
| 2324 |
+
"learning_rate": 3e-05,
|
| 2325 |
+
"loss": 0.5165,
|
| 2326 |
+
"step": 331
|
| 2327 |
+
},
|
| 2328 |
+
{
|
| 2329 |
+
"epoch": 0.7904761904761904,
|
| 2330 |
+
"grad_norm": 1.2769473791122437,
|
| 2331 |
+
"learning_rate": 3e-05,
|
| 2332 |
+
"loss": 0.42,
|
| 2333 |
+
"step": 332
|
| 2334 |
+
},
|
| 2335 |
+
{
|
| 2336 |
+
"epoch": 0.7928571428571428,
|
| 2337 |
+
"grad_norm": 0.7580127120018005,
|
| 2338 |
+
"learning_rate": 3e-05,
|
| 2339 |
+
"loss": 0.4258,
|
| 2340 |
+
"step": 333
|
| 2341 |
+
},
|
| 2342 |
+
{
|
| 2343 |
+
"epoch": 0.7952380952380952,
|
| 2344 |
+
"grad_norm": 0.7266448140144348,
|
| 2345 |
+
"learning_rate": 3e-05,
|
| 2346 |
+
"loss": 0.398,
|
| 2347 |
+
"step": 334
|
| 2348 |
+
},
|
| 2349 |
+
{
|
| 2350 |
+
"epoch": 0.7976190476190477,
|
| 2351 |
+
"grad_norm": 0.6106278896331787,
|
| 2352 |
+
"learning_rate": 3e-05,
|
| 2353 |
+
"loss": 0.4565,
|
| 2354 |
+
"step": 335
|
| 2355 |
+
},
|
| 2356 |
+
{
|
| 2357 |
+
"epoch": 0.8,
|
| 2358 |
+
"grad_norm": 1.2278895378112793,
|
| 2359 |
+
"learning_rate": 3e-05,
|
| 2360 |
+
"loss": 0.5243,
|
| 2361 |
+
"step": 336
|
| 2362 |
+
},
|
| 2363 |
+
{
|
| 2364 |
+
"epoch": 0.8023809523809524,
|
| 2365 |
+
"grad_norm": 0.8991657495498657,
|
| 2366 |
+
"learning_rate": 3e-05,
|
| 2367 |
+
"loss": 0.389,
|
| 2368 |
+
"step": 337
|
| 2369 |
+
},
|
| 2370 |
+
{
|
| 2371 |
+
"epoch": 0.8047619047619048,
|
| 2372 |
+
"grad_norm": 0.9713463187217712,
|
| 2373 |
+
"learning_rate": 3e-05,
|
| 2374 |
+
"loss": 0.3885,
|
| 2375 |
+
"step": 338
|
| 2376 |
+
},
|
| 2377 |
+
{
|
| 2378 |
+
"epoch": 0.8071428571428572,
|
| 2379 |
+
"grad_norm": 1.4198249578475952,
|
| 2380 |
+
"learning_rate": 3e-05,
|
| 2381 |
+
"loss": 0.433,
|
| 2382 |
+
"step": 339
|
| 2383 |
+
},
|
| 2384 |
+
{
|
| 2385 |
+
"epoch": 0.8095238095238095,
|
| 2386 |
+
"grad_norm": 0.5804428458213806,
|
| 2387 |
+
"learning_rate": 3e-05,
|
| 2388 |
+
"loss": 0.3786,
|
| 2389 |
+
"step": 340
|
| 2390 |
+
},
|
| 2391 |
+
{
|
| 2392 |
+
"epoch": 0.8119047619047619,
|
| 2393 |
+
"grad_norm": 0.7774984240531921,
|
| 2394 |
+
"learning_rate": 3e-05,
|
| 2395 |
+
"loss": 0.4649,
|
| 2396 |
+
"step": 341
|
| 2397 |
+
},
|
| 2398 |
+
{
|
| 2399 |
+
"epoch": 0.8142857142857143,
|
| 2400 |
+
"grad_norm": 0.8857919573783875,
|
| 2401 |
+
"learning_rate": 3e-05,
|
| 2402 |
+
"loss": 0.4717,
|
| 2403 |
+
"step": 342
|
| 2404 |
+
},
|
| 2405 |
+
{
|
| 2406 |
+
"epoch": 0.8166666666666667,
|
| 2407 |
+
"grad_norm": 0.7703973054885864,
|
| 2408 |
+
"learning_rate": 3e-05,
|
| 2409 |
+
"loss": 0.428,
|
| 2410 |
+
"step": 343
|
| 2411 |
+
},
|
| 2412 |
+
{
|
| 2413 |
+
"epoch": 0.819047619047619,
|
| 2414 |
+
"grad_norm": 0.9551693797111511,
|
| 2415 |
+
"learning_rate": 3e-05,
|
| 2416 |
+
"loss": 0.4455,
|
| 2417 |
+
"step": 344
|
| 2418 |
+
},
|
| 2419 |
+
{
|
| 2420 |
+
"epoch": 0.8214285714285714,
|
| 2421 |
+
"grad_norm": 0.6841679215431213,
|
| 2422 |
+
"learning_rate": 3e-05,
|
| 2423 |
+
"loss": 0.4176,
|
| 2424 |
+
"step": 345
|
| 2425 |
+
},
|
| 2426 |
+
{
|
| 2427 |
+
"epoch": 0.8238095238095238,
|
| 2428 |
+
"grad_norm": 0.9121724963188171,
|
| 2429 |
+
"learning_rate": 3e-05,
|
| 2430 |
+
"loss": 0.4713,
|
| 2431 |
+
"step": 346
|
| 2432 |
+
},
|
| 2433 |
+
{
|
| 2434 |
+
"epoch": 0.8261904761904761,
|
| 2435 |
+
"grad_norm": 0.8475046753883362,
|
| 2436 |
+
"learning_rate": 3e-05,
|
| 2437 |
+
"loss": 0.3869,
|
| 2438 |
+
"step": 347
|
| 2439 |
+
},
|
| 2440 |
+
{
|
| 2441 |
+
"epoch": 0.8285714285714286,
|
| 2442 |
+
"grad_norm": 1.2067185640335083,
|
| 2443 |
+
"learning_rate": 3e-05,
|
| 2444 |
+
"loss": 0.4964,
|
| 2445 |
+
"step": 348
|
| 2446 |
+
},
|
| 2447 |
+
{
|
| 2448 |
+
"epoch": 0.830952380952381,
|
| 2449 |
+
"grad_norm": 0.7562458515167236,
|
| 2450 |
+
"learning_rate": 3e-05,
|
| 2451 |
+
"loss": 0.4228,
|
| 2452 |
+
"step": 349
|
| 2453 |
+
},
|
| 2454 |
+
{
|
| 2455 |
+
"epoch": 0.8333333333333334,
|
| 2456 |
+
"grad_norm": 0.6852816939353943,
|
| 2457 |
+
"learning_rate": 3e-05,
|
| 2458 |
+
"loss": 0.3723,
|
| 2459 |
+
"step": 350
|
| 2460 |
+
},
|
| 2461 |
+
{
|
| 2462 |
+
"epoch": 0.8357142857142857,
|
| 2463 |
+
"grad_norm": 0.6030831336975098,
|
| 2464 |
+
"learning_rate": 3e-05,
|
| 2465 |
+
"loss": 0.5053,
|
| 2466 |
+
"step": 351
|
| 2467 |
+
},
|
| 2468 |
+
{
|
| 2469 |
+
"epoch": 0.8380952380952381,
|
| 2470 |
+
"grad_norm": 1.0555213689804077,
|
| 2471 |
+
"learning_rate": 3e-05,
|
| 2472 |
+
"loss": 0.4575,
|
| 2473 |
+
"step": 352
|
| 2474 |
+
},
|
| 2475 |
+
{
|
| 2476 |
+
"epoch": 0.8404761904761905,
|
| 2477 |
+
"grad_norm": 0.6861211657524109,
|
| 2478 |
+
"learning_rate": 3e-05,
|
| 2479 |
+
"loss": 0.3885,
|
| 2480 |
+
"step": 353
|
| 2481 |
+
},
|
| 2482 |
+
{
|
| 2483 |
+
"epoch": 0.8428571428571429,
|
| 2484 |
+
"grad_norm": 0.9972875714302063,
|
| 2485 |
+
"learning_rate": 3e-05,
|
| 2486 |
+
"loss": 0.438,
|
| 2487 |
+
"step": 354
|
| 2488 |
+
},
|
| 2489 |
+
{
|
| 2490 |
+
"epoch": 0.8452380952380952,
|
| 2491 |
+
"grad_norm": 0.7220526933670044,
|
| 2492 |
+
"learning_rate": 3e-05,
|
| 2493 |
+
"loss": 0.4236,
|
| 2494 |
+
"step": 355
|
| 2495 |
+
},
|
| 2496 |
+
{
|
| 2497 |
+
"epoch": 0.8476190476190476,
|
| 2498 |
+
"grad_norm": 0.5923830270767212,
|
| 2499 |
+
"learning_rate": 3e-05,
|
| 2500 |
+
"loss": 0.3371,
|
| 2501 |
+
"step": 356
|
| 2502 |
+
},
|
| 2503 |
+
{
|
| 2504 |
+
"epoch": 0.85,
|
| 2505 |
+
"grad_norm": 0.9891591668128967,
|
| 2506 |
+
"learning_rate": 3e-05,
|
| 2507 |
+
"loss": 0.4189,
|
| 2508 |
+
"step": 357
|
| 2509 |
+
},
|
| 2510 |
+
{
|
| 2511 |
+
"epoch": 0.8523809523809524,
|
| 2512 |
+
"grad_norm": 0.8928924798965454,
|
| 2513 |
+
"learning_rate": 3e-05,
|
| 2514 |
+
"loss": 0.4261,
|
| 2515 |
+
"step": 358
|
| 2516 |
+
},
|
| 2517 |
+
{
|
| 2518 |
+
"epoch": 0.8547619047619047,
|
| 2519 |
+
"grad_norm": 0.6894112229347229,
|
| 2520 |
+
"learning_rate": 3e-05,
|
| 2521 |
+
"loss": 0.4658,
|
| 2522 |
+
"step": 359
|
| 2523 |
+
},
|
| 2524 |
+
{
|
| 2525 |
+
"epoch": 0.8571428571428571,
|
| 2526 |
+
"grad_norm": 0.7407474517822266,
|
| 2527 |
+
"learning_rate": 3e-05,
|
| 2528 |
+
"loss": 0.4619,
|
| 2529 |
+
"step": 360
|
| 2530 |
+
},
|
| 2531 |
+
{
|
| 2532 |
+
"epoch": 0.8595238095238096,
|
| 2533 |
+
"grad_norm": 0.6776091456413269,
|
| 2534 |
+
"learning_rate": 3e-05,
|
| 2535 |
+
"loss": 0.4396,
|
| 2536 |
+
"step": 361
|
| 2537 |
+
},
|
| 2538 |
+
{
|
| 2539 |
+
"epoch": 0.861904761904762,
|
| 2540 |
+
"grad_norm": 1.4972211122512817,
|
| 2541 |
+
"learning_rate": 3e-05,
|
| 2542 |
+
"loss": 0.4552,
|
| 2543 |
+
"step": 362
|
| 2544 |
+
},
|
| 2545 |
+
{
|
| 2546 |
+
"epoch": 0.8642857142857143,
|
| 2547 |
+
"grad_norm": 1.076313853263855,
|
| 2548 |
+
"learning_rate": 3e-05,
|
| 2549 |
+
"loss": 0.4211,
|
| 2550 |
+
"step": 363
|
| 2551 |
+
},
|
| 2552 |
+
{
|
| 2553 |
+
"epoch": 0.8666666666666667,
|
| 2554 |
+
"grad_norm": 0.8312737345695496,
|
| 2555 |
+
"learning_rate": 3e-05,
|
| 2556 |
+
"loss": 0.3821,
|
| 2557 |
+
"step": 364
|
| 2558 |
+
},
|
| 2559 |
+
{
|
| 2560 |
+
"epoch": 0.8690476190476191,
|
| 2561 |
+
"grad_norm": 0.6959190368652344,
|
| 2562 |
+
"learning_rate": 3e-05,
|
| 2563 |
+
"loss": 0.4649,
|
| 2564 |
+
"step": 365
|
| 2565 |
+
},
|
| 2566 |
+
{
|
| 2567 |
+
"epoch": 0.8714285714285714,
|
| 2568 |
+
"grad_norm": 0.9157832264900208,
|
| 2569 |
+
"learning_rate": 3e-05,
|
| 2570 |
+
"loss": 0.4405,
|
| 2571 |
+
"step": 366
|
| 2572 |
+
},
|
| 2573 |
+
{
|
| 2574 |
+
"epoch": 0.8738095238095238,
|
| 2575 |
+
"grad_norm": 1.097048282623291,
|
| 2576 |
+
"learning_rate": 3e-05,
|
| 2577 |
+
"loss": 0.4014,
|
| 2578 |
+
"step": 367
|
| 2579 |
+
},
|
| 2580 |
+
{
|
| 2581 |
+
"epoch": 0.8761904761904762,
|
| 2582 |
+
"grad_norm": 0.7263518571853638,
|
| 2583 |
+
"learning_rate": 3e-05,
|
| 2584 |
+
"loss": 0.3528,
|
| 2585 |
+
"step": 368
|
| 2586 |
+
},
|
| 2587 |
+
{
|
| 2588 |
+
"epoch": 0.8785714285714286,
|
| 2589 |
+
"grad_norm": 1.4131529331207275,
|
| 2590 |
+
"learning_rate": 3e-05,
|
| 2591 |
+
"loss": 0.5023,
|
| 2592 |
+
"step": 369
|
| 2593 |
+
},
|
| 2594 |
+
{
|
| 2595 |
+
"epoch": 0.8809523809523809,
|
| 2596 |
+
"grad_norm": 1.0101478099822998,
|
| 2597 |
+
"learning_rate": 3e-05,
|
| 2598 |
+
"loss": 0.4401,
|
| 2599 |
+
"step": 370
|
| 2600 |
+
},
|
| 2601 |
+
{
|
| 2602 |
+
"epoch": 0.8833333333333333,
|
| 2603 |
+
"grad_norm": 1.016892433166504,
|
| 2604 |
+
"learning_rate": 3e-05,
|
| 2605 |
+
"loss": 0.4605,
|
| 2606 |
+
"step": 371
|
| 2607 |
+
},
|
| 2608 |
+
{
|
| 2609 |
+
"epoch": 0.8857142857142857,
|
| 2610 |
+
"grad_norm": 1.1927547454833984,
|
| 2611 |
+
"learning_rate": 3e-05,
|
| 2612 |
+
"loss": 0.4652,
|
| 2613 |
+
"step": 372
|
| 2614 |
+
},
|
| 2615 |
+
{
|
| 2616 |
+
"epoch": 0.888095238095238,
|
| 2617 |
+
"grad_norm": 0.7094401717185974,
|
| 2618 |
+
"learning_rate": 3e-05,
|
| 2619 |
+
"loss": 0.4653,
|
| 2620 |
+
"step": 373
|
| 2621 |
+
},
|
| 2622 |
+
{
|
| 2623 |
+
"epoch": 0.8904761904761904,
|
| 2624 |
+
"grad_norm": 0.9114309549331665,
|
| 2625 |
+
"learning_rate": 3e-05,
|
| 2626 |
+
"loss": 0.4095,
|
| 2627 |
+
"step": 374
|
| 2628 |
+
},
|
| 2629 |
+
{
|
| 2630 |
+
"epoch": 0.8928571428571429,
|
| 2631 |
+
"grad_norm": 0.7444086074829102,
|
| 2632 |
+
"learning_rate": 3e-05,
|
| 2633 |
+
"loss": 0.4333,
|
| 2634 |
+
"step": 375
|
| 2635 |
+
},
|
| 2636 |
+
{
|
| 2637 |
+
"epoch": 0.8952380952380953,
|
| 2638 |
+
"grad_norm": 0.8845041990280151,
|
| 2639 |
+
"learning_rate": 3e-05,
|
| 2640 |
+
"loss": 0.5979,
|
| 2641 |
+
"step": 376
|
| 2642 |
+
},
|
| 2643 |
+
{
|
| 2644 |
+
"epoch": 0.8976190476190476,
|
| 2645 |
+
"grad_norm": 1.1072129011154175,
|
| 2646 |
+
"learning_rate": 3e-05,
|
| 2647 |
+
"loss": 0.5131,
|
| 2648 |
+
"step": 377
|
| 2649 |
+
},
|
| 2650 |
+
{
|
| 2651 |
+
"epoch": 0.9,
|
| 2652 |
+
"grad_norm": 1.3130736351013184,
|
| 2653 |
+
"learning_rate": 3e-05,
|
| 2654 |
+
"loss": 0.5109,
|
| 2655 |
+
"step": 378
|
| 2656 |
+
},
|
| 2657 |
+
{
|
| 2658 |
+
"epoch": 0.9023809523809524,
|
| 2659 |
+
"grad_norm": 0.8190350532531738,
|
| 2660 |
+
"learning_rate": 3e-05,
|
| 2661 |
+
"loss": 0.427,
|
| 2662 |
+
"step": 379
|
| 2663 |
+
},
|
| 2664 |
+
{
|
| 2665 |
+
"epoch": 0.9047619047619048,
|
| 2666 |
+
"grad_norm": 0.7488160729408264,
|
| 2667 |
+
"learning_rate": 3e-05,
|
| 2668 |
+
"loss": 0.3939,
|
| 2669 |
+
"step": 380
|
| 2670 |
+
},
|
| 2671 |
+
{
|
| 2672 |
+
"epoch": 0.9071428571428571,
|
| 2673 |
+
"grad_norm": 1.0414373874664307,
|
| 2674 |
+
"learning_rate": 3e-05,
|
| 2675 |
+
"loss": 0.391,
|
| 2676 |
+
"step": 381
|
| 2677 |
+
},
|
| 2678 |
+
{
|
| 2679 |
+
"epoch": 0.9095238095238095,
|
| 2680 |
+
"grad_norm": 1.3301194906234741,
|
| 2681 |
+
"learning_rate": 3e-05,
|
| 2682 |
+
"loss": 0.5093,
|
| 2683 |
+
"step": 382
|
| 2684 |
+
},
|
| 2685 |
+
{
|
| 2686 |
+
"epoch": 0.9119047619047619,
|
| 2687 |
+
"grad_norm": 0.9577381610870361,
|
| 2688 |
+
"learning_rate": 3e-05,
|
| 2689 |
+
"loss": 0.37,
|
| 2690 |
+
"step": 383
|
| 2691 |
+
},
|
| 2692 |
+
{
|
| 2693 |
+
"epoch": 0.9142857142857143,
|
| 2694 |
+
"grad_norm": 1.357572078704834,
|
| 2695 |
+
"learning_rate": 3e-05,
|
| 2696 |
+
"loss": 0.466,
|
| 2697 |
+
"step": 384
|
| 2698 |
+
},
|
| 2699 |
+
{
|
| 2700 |
+
"epoch": 0.9166666666666666,
|
| 2701 |
+
"grad_norm": 0.7440205812454224,
|
| 2702 |
+
"learning_rate": 3e-05,
|
| 2703 |
+
"loss": 0.4536,
|
| 2704 |
+
"step": 385
|
| 2705 |
+
},
|
| 2706 |
+
{
|
| 2707 |
+
"epoch": 0.919047619047619,
|
| 2708 |
+
"grad_norm": 0.7036682367324829,
|
| 2709 |
+
"learning_rate": 3e-05,
|
| 2710 |
+
"loss": 0.4357,
|
| 2711 |
+
"step": 386
|
| 2712 |
+
},
|
| 2713 |
+
{
|
| 2714 |
+
"epoch": 0.9214285714285714,
|
| 2715 |
+
"grad_norm": 1.2188128232955933,
|
| 2716 |
+
"learning_rate": 3e-05,
|
| 2717 |
+
"loss": 0.409,
|
| 2718 |
+
"step": 387
|
| 2719 |
+
},
|
| 2720 |
+
{
|
| 2721 |
+
"epoch": 0.9238095238095239,
|
| 2722 |
+
"grad_norm": 0.5263180732727051,
|
| 2723 |
+
"learning_rate": 3e-05,
|
| 2724 |
+
"loss": 0.3951,
|
| 2725 |
+
"step": 388
|
| 2726 |
+
},
|
| 2727 |
+
{
|
| 2728 |
+
"epoch": 0.9261904761904762,
|
| 2729 |
+
"grad_norm": 0.6690953373908997,
|
| 2730 |
+
"learning_rate": 3e-05,
|
| 2731 |
+
"loss": 0.3835,
|
| 2732 |
+
"step": 389
|
| 2733 |
+
},
|
| 2734 |
+
{
|
| 2735 |
+
"epoch": 0.9285714285714286,
|
| 2736 |
+
"grad_norm": 0.9960648417472839,
|
| 2737 |
+
"learning_rate": 3e-05,
|
| 2738 |
+
"loss": 0.4646,
|
| 2739 |
+
"step": 390
|
| 2740 |
+
},
|
| 2741 |
+
{
|
| 2742 |
+
"epoch": 0.930952380952381,
|
| 2743 |
+
"grad_norm": 1.1153391599655151,
|
| 2744 |
+
"learning_rate": 3e-05,
|
| 2745 |
+
"loss": 0.5308,
|
| 2746 |
+
"step": 391
|
| 2747 |
+
},
|
| 2748 |
+
{
|
| 2749 |
+
"epoch": 0.9333333333333333,
|
| 2750 |
+
"grad_norm": 0.501700222492218,
|
| 2751 |
+
"learning_rate": 3e-05,
|
| 2752 |
+
"loss": 0.3454,
|
| 2753 |
+
"step": 392
|
| 2754 |
+
},
|
| 2755 |
+
{
|
| 2756 |
+
"epoch": 0.9357142857142857,
|
| 2757 |
+
"grad_norm": 0.760089099407196,
|
| 2758 |
+
"learning_rate": 3e-05,
|
| 2759 |
+
"loss": 0.3501,
|
| 2760 |
+
"step": 393
|
| 2761 |
+
},
|
| 2762 |
+
{
|
| 2763 |
+
"epoch": 0.9380952380952381,
|
| 2764 |
+
"grad_norm": 0.9005244970321655,
|
| 2765 |
+
"learning_rate": 3e-05,
|
| 2766 |
+
"loss": 0.4264,
|
| 2767 |
+
"step": 394
|
| 2768 |
+
},
|
| 2769 |
+
{
|
| 2770 |
+
"epoch": 0.9404761904761905,
|
| 2771 |
+
"grad_norm": 0.9984633922576904,
|
| 2772 |
+
"learning_rate": 3e-05,
|
| 2773 |
+
"loss": 0.3715,
|
| 2774 |
+
"step": 395
|
| 2775 |
+
},
|
| 2776 |
+
{
|
| 2777 |
+
"epoch": 0.9428571428571428,
|
| 2778 |
+
"grad_norm": 0.9046674370765686,
|
| 2779 |
+
"learning_rate": 3e-05,
|
| 2780 |
+
"loss": 0.4708,
|
| 2781 |
+
"step": 396
|
| 2782 |
+
},
|
| 2783 |
+
{
|
| 2784 |
+
"epoch": 0.9452380952380952,
|
| 2785 |
+
"grad_norm": 1.6578477621078491,
|
| 2786 |
+
"learning_rate": 3e-05,
|
| 2787 |
+
"loss": 0.4625,
|
| 2788 |
+
"step": 397
|
| 2789 |
+
},
|
| 2790 |
+
{
|
| 2791 |
+
"epoch": 0.9476190476190476,
|
| 2792 |
+
"grad_norm": 0.7396510243415833,
|
| 2793 |
+
"learning_rate": 3e-05,
|
| 2794 |
+
"loss": 0.3877,
|
| 2795 |
+
"step": 398
|
| 2796 |
+
},
|
| 2797 |
+
{
|
| 2798 |
+
"epoch": 0.95,
|
| 2799 |
+
"grad_norm": 0.679201066493988,
|
| 2800 |
+
"learning_rate": 3e-05,
|
| 2801 |
+
"loss": 0.4501,
|
| 2802 |
+
"step": 399
|
| 2803 |
+
},
|
| 2804 |
+
{
|
| 2805 |
+
"epoch": 0.9523809523809523,
|
| 2806 |
+
"grad_norm": 0.8374237418174744,
|
| 2807 |
+
"learning_rate": 3e-05,
|
| 2808 |
+
"loss": 0.3419,
|
| 2809 |
+
"step": 400
|
| 2810 |
+
},
|
| 2811 |
+
{
|
| 2812 |
+
"epoch": 0.9547619047619048,
|
| 2813 |
+
"grad_norm": 0.8782289624214172,
|
| 2814 |
+
"learning_rate": 3e-05,
|
| 2815 |
+
"loss": 0.4413,
|
| 2816 |
+
"step": 401
|
| 2817 |
+
},
|
| 2818 |
+
{
|
| 2819 |
+
"epoch": 0.9571428571428572,
|
| 2820 |
+
"grad_norm": 1.0352013111114502,
|
| 2821 |
+
"learning_rate": 3e-05,
|
| 2822 |
+
"loss": 0.4878,
|
| 2823 |
+
"step": 402
|
| 2824 |
+
},
|
| 2825 |
+
{
|
| 2826 |
+
"epoch": 0.9595238095238096,
|
| 2827 |
+
"grad_norm": 0.6308469176292419,
|
| 2828 |
+
"learning_rate": 3e-05,
|
| 2829 |
+
"loss": 0.386,
|
| 2830 |
+
"step": 403
|
| 2831 |
+
},
|
| 2832 |
+
{
|
| 2833 |
+
"epoch": 0.9619047619047619,
|
| 2834 |
+
"grad_norm": 1.0782958269119263,
|
| 2835 |
+
"learning_rate": 3e-05,
|
| 2836 |
+
"loss": 0.4223,
|
| 2837 |
+
"step": 404
|
| 2838 |
+
},
|
| 2839 |
+
{
|
| 2840 |
+
"epoch": 0.9642857142857143,
|
| 2841 |
+
"grad_norm": 2.6651995182037354,
|
| 2842 |
+
"learning_rate": 3e-05,
|
| 2843 |
+
"loss": 0.7216,
|
| 2844 |
+
"step": 405
|
| 2845 |
+
},
|
| 2846 |
+
{
|
| 2847 |
+
"epoch": 0.9666666666666667,
|
| 2848 |
+
"grad_norm": 0.7647043466567993,
|
| 2849 |
+
"learning_rate": 3e-05,
|
| 2850 |
+
"loss": 0.4042,
|
| 2851 |
+
"step": 406
|
| 2852 |
+
},
|
| 2853 |
+
{
|
| 2854 |
+
"epoch": 0.969047619047619,
|
| 2855 |
+
"grad_norm": 0.6673374176025391,
|
| 2856 |
+
"learning_rate": 3e-05,
|
| 2857 |
+
"loss": 0.4288,
|
| 2858 |
+
"step": 407
|
| 2859 |
+
},
|
| 2860 |
+
{
|
| 2861 |
+
"epoch": 0.9714285714285714,
|
| 2862 |
+
"grad_norm": 0.6782795786857605,
|
| 2863 |
+
"learning_rate": 3e-05,
|
| 2864 |
+
"loss": 0.3983,
|
| 2865 |
+
"step": 408
|
| 2866 |
+
},
|
| 2867 |
+
{
|
| 2868 |
+
"epoch": 0.9738095238095238,
|
| 2869 |
+
"grad_norm": 0.7260273694992065,
|
| 2870 |
+
"learning_rate": 3e-05,
|
| 2871 |
+
"loss": 0.4023,
|
| 2872 |
+
"step": 409
|
| 2873 |
+
},
|
| 2874 |
+
{
|
| 2875 |
+
"epoch": 0.9761904761904762,
|
| 2876 |
+
"grad_norm": 0.8369085788726807,
|
| 2877 |
+
"learning_rate": 3e-05,
|
| 2878 |
+
"loss": 0.3733,
|
| 2879 |
+
"step": 410
|
| 2880 |
+
},
|
| 2881 |
+
{
|
| 2882 |
+
"epoch": 0.9785714285714285,
|
| 2883 |
+
"grad_norm": 0.6836142539978027,
|
| 2884 |
+
"learning_rate": 3e-05,
|
| 2885 |
+
"loss": 0.3972,
|
| 2886 |
+
"step": 411
|
| 2887 |
+
},
|
| 2888 |
+
{
|
| 2889 |
+
"epoch": 0.9809523809523809,
|
| 2890 |
+
"grad_norm": 1.2415976524353027,
|
| 2891 |
+
"learning_rate": 3e-05,
|
| 2892 |
+
"loss": 0.4806,
|
| 2893 |
+
"step": 412
|
| 2894 |
+
},
|
| 2895 |
+
{
|
| 2896 |
+
"epoch": 0.9833333333333333,
|
| 2897 |
+
"grad_norm": 0.9629127979278564,
|
| 2898 |
+
"learning_rate": 3e-05,
|
| 2899 |
+
"loss": 0.4785,
|
| 2900 |
+
"step": 413
|
| 2901 |
+
},
|
| 2902 |
+
{
|
| 2903 |
+
"epoch": 0.9857142857142858,
|
| 2904 |
+
"grad_norm": 0.8129779696464539,
|
| 2905 |
+
"learning_rate": 3e-05,
|
| 2906 |
+
"loss": 0.4583,
|
| 2907 |
+
"step": 414
|
| 2908 |
+
},
|
| 2909 |
+
{
|
| 2910 |
+
"epoch": 0.9880952380952381,
|
| 2911 |
+
"grad_norm": 0.8651249408721924,
|
| 2912 |
+
"learning_rate": 3e-05,
|
| 2913 |
+
"loss": 0.4687,
|
| 2914 |
+
"step": 415
|
| 2915 |
+
},
|
| 2916 |
+
{
|
| 2917 |
+
"epoch": 0.9904761904761905,
|
| 2918 |
+
"grad_norm": 0.6915225982666016,
|
| 2919 |
+
"learning_rate": 3e-05,
|
| 2920 |
+
"loss": 0.414,
|
| 2921 |
+
"step": 416
|
| 2922 |
+
},
|
| 2923 |
+
{
|
| 2924 |
+
"epoch": 0.9928571428571429,
|
| 2925 |
+
"grad_norm": 1.0824182033538818,
|
| 2926 |
+
"learning_rate": 3e-05,
|
| 2927 |
+
"loss": 0.3789,
|
| 2928 |
+
"step": 417
|
| 2929 |
+
},
|
| 2930 |
+
{
|
| 2931 |
+
"epoch": 0.9952380952380953,
|
| 2932 |
+
"grad_norm": 0.6016390919685364,
|
| 2933 |
+
"learning_rate": 3e-05,
|
| 2934 |
+
"loss": 0.3457,
|
| 2935 |
+
"step": 418
|
| 2936 |
+
},
|
| 2937 |
+
{
|
| 2938 |
+
"epoch": 0.9976190476190476,
|
| 2939 |
+
"grad_norm": 1.211536169052124,
|
| 2940 |
+
"learning_rate": 3e-05,
|
| 2941 |
+
"loss": 0.5893,
|
| 2942 |
+
"step": 419
|
| 2943 |
+
},
|
| 2944 |
+
{
|
| 2945 |
+
"epoch": 1.0,
|
| 2946 |
+
"grad_norm": 0.9525183439254761,
|
| 2947 |
+
"learning_rate": 3e-05,
|
| 2948 |
+
"loss": 0.4137,
|
| 2949 |
+
"step": 420
|
| 2950 |
+
},
|
| 2951 |
+
{
|
| 2952 |
+
"epoch": 1.0,
|
| 2953 |
+
"step": 420,
|
| 2954 |
+
"total_flos": 1.7662621293477888e+17,
|
| 2955 |
+
"train_loss": 0.45642305286157697,
|
| 2956 |
+
"train_runtime": 1778.0298,
|
| 2957 |
+
"train_samples_per_second": 1.886,
|
| 2958 |
+
"train_steps_per_second": 0.236
|
| 2959 |
+
}
|
| 2960 |
+
],
|
| 2961 |
+
"logging_steps": 1.0,
|
| 2962 |
+
"max_steps": 420,
|
| 2963 |
+
"num_input_tokens_seen": 0,
|
| 2964 |
+
"num_train_epochs": 1,
|
| 2965 |
+
"save_steps": 100,
|
| 2966 |
+
"stateful_callbacks": {
|
| 2967 |
+
"TrainerControl": {
|
| 2968 |
+
"args": {
|
| 2969 |
+
"should_epoch_stop": false,
|
| 2970 |
+
"should_evaluate": false,
|
| 2971 |
+
"should_log": false,
|
| 2972 |
+
"should_save": true,
|
| 2973 |
+
"should_training_stop": true
|
| 2974 |
+
},
|
| 2975 |
+
"attributes": {}
|
| 2976 |
+
}
|
| 2977 |
+
},
|
| 2978 |
+
"total_flos": 1.7662621293477888e+17,
|
| 2979 |
+
"train_batch_size": 1,
|
| 2980 |
+
"trial_name": null,
|
| 2981 |
+
"trial_params": null
|
| 2982 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7bb0b76061fd10a235ef63b283037cf21c7a45e78ec0ef11b1c255bd488c213f
|
| 3 |
+
size 7864
|