wsagi commited on
Commit
4e59743
·
verified ·
1 Parent(s): ef4f973

Add files using upload-large-folder tool

Browse files
.gitattributes CHANGED
@@ -33,3 +33,5 @@ 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
+ gr00t-n1.6-ckpt-3500.jpg filter=lfs diff=lfs merge=lfs -text
37
+ gr00t-n1.6-ckpt-6500.jpg filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,114 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ library_name: gr00t
4
+ pipeline_tag: robotics
5
+ base_model: nvidia/GR00T-N1.6-3B
6
+ datasets:
7
+ - LightwheelAI/leisaac-pick-orange
8
+ language:
9
+ - en
10
+ tags:
11
+ - gr00t
12
+ - gr00t-n1.6
13
+ - nvidia
14
+ - eagle
15
+ - rectified-flow
16
+ - so101
17
+ - leisaac
18
+ - pick-and-place
19
+ - isaac-sim
20
+ ---
21
+
22
+ # GR00T-N1.6-3B-PickOrange (self-trained, ckpt-6500)
23
+
24
+ 针对 [LeIsaac SO-101 PickOrange](https://github.com/LightwheelAI/leisaac) 任务从 [nvidia/GR00T-N1.6-3B](https://huggingface.co/nvidia/GR00T-N1.6-3B) (Eagle 2.5 VLM + Cross-attention DiT action head, ~3B params) 微调的 GR00T 策略。
25
+
26
+ _A NVIDIA GR00T N1.6 (Eagle 2.5 VLM + cross-attention DiT, ~3B) policy fine-tuned from [nvidia/GR00T-N1.6-3B](https://huggingface.co/nvidia/GR00T-N1.6-3B) for the [LeIsaac SO-101 PickOrange](https://github.com/LightwheelAI/leisaac) task._
27
+
28
+ **🔗 项目仓库 / Project repos**:
29
+ - [vitorcen/isaaclab-experience](https://github.com/vitorcen/isaaclab-experience) — Isaac Lab + LeIsaac 多策略横评(parent project)
30
+ - [vitorcen/LeIsaac-Training](https://github.com/vitorcen/LeIsaac-Training) — LeIsaac fork(训练脚本 + 设计文档 / training scripts + design docs)
31
+
32
+ ## Highlights
33
+
34
+ ![ckpt-6500 successful pick-and-place](gr00t-n1.6-ckpt-6500.jpg)
35
+ _ckpt-6500: 3/3 oranges placed, robot returned to rest pose — env reports success_
36
+
37
+ ![ckpt-3500 awkward early-phase failure](gr00t-n1.6-ckpt-3500.jpg)
38
+ _ckpt-3500 (earlier checkpoint, kept on `ckpt-3500` branch for reference): policy is still finding the placement — orange dropped off edge_
39
+
40
+ ## TL;DR
41
+
42
+ - **Task**: SO-101 single-arm picks 3 oranges sequentially and places each in a plate (LeIsaac PickOrange).
43
+ - **Architecture**: GR00T N1.6 — Eagle 2.5 VLM (frozen) + cross-attention DiT action head (trainable). chunk_size=50, n_action_steps=16, 4-step rectified-flow denoising.
44
+ - **Training**: 6500 step / batch=16 (per-step=2 × grad_accum=8) / adafactor / bf16 / gradient_checkpointing with `use_reentrant=False`.
45
+ - **Hardware**: single **RTX 4090 24GB** (with `DISABLE_ADDMM_CUDA_LT=1`, watchdog auto-resume on intermittent CUDA assert).
46
+ - **🏆 Benchmark-aligned eval (3 round × 120s sim × 180s wall_cap)** vs LeIsaac leaderboard:
47
+
48
+ | Model | Strict rounds | Oranges placed |
49
+ |---|---|---|
50
+ | hi-space N1.6 (公开 SOTA) | 2/3 | 6/9 |
51
+ | ACT | 1/3 | 6/9 |
52
+ | X-VLA best | 0/3 | 4/9 |
53
+ | **🏆 This ckpt-6500** | **2/3** | **8/9** ⭐ |
54
+
55
+ ## Architecture / training recipe
56
+
57
+ ```
58
+ base_model nvidia/GR00T-N1.6-3B
59
+ tune_llm False
60
+ tune_visual False
61
+ tune_projector True
62
+ tune_diffusion_model True
63
+ tune_top_llm_layers 4 (default, kept)
64
+ backbone_trainable_params_fp32 False ← 4090 squeeze
65
+ optim adafactor ← 4090 squeeze
66
+ gradient_checkpointing True (use_reentrant=False, custom monkey-patch)
67
+ bf16 True
68
+ DISABLE_ADDMM_CUDA_LT 1 ← workaround torch 2.7.1 cublasLt bf16 bug
69
+ global_batch_size 16
70
+ gradient_accumulation_steps 8 ← per-step micro-batch = 2
71
+ max_steps 8000 (best ckpt at step 6500)
72
+ save_steps 100 (with custom keep-multiples-of-500 prune callback)
73
+ ```
74
+
75
+ ## Training notes / known issues
76
+
77
+ - **4090 24GB is the hard limit**: N1.6 N1.6 全参 FT on 24GB requires every memory hack stacked: bf16 + grad-ckpt with `use_reentrant=False` + adafactor + `backbone_trainable_params_fp32=False` + `DISABLE_ADDMM_CUDA_LT=1`. Without any of these we hit either OOM or `RuntimeError: d.is_cuda() INTERNAL ASSERT FAILED at CUDAGuardImpl.h:34`.
78
+ - **Random CUDA assert** still happens every ~500-700 step despite the patches. We wrap training in a watchdog that auto-resumes from the latest checkpoint after each crash; net throughput ~70% of crash-free.
79
+ - **Score variance**: per-checkpoint quality oscillates wildly (e.g. ckpt-5000 = 16/18 in one 6-round eval, ckpt-5500 = 0/18 in the next). We attribute this to the optimization being run at the absolute memory edge — gradients and optim states may quantize inconsistently. The 8/9 result here is benchmark-aligned single 3-round run; expect ±20% noise on any individual run.
80
+
81
+ ## Inference
82
+
83
+ Use [Isaac-GR00T's `run_gr00t_server.py`](https://github.com/NVIDIA/Isaac-GR00T) directly:
84
+
85
+ ```bash
86
+ cd /path/to/Isaac-GR00T
87
+ uv run --extra=gpu python gr00t/eval/run_gr00t_server.py \
88
+ --embodiment-tag NEW_EMBODIMENT \
89
+ --model-path wsagi/GR00T-N1.6-PickOrange \
90
+ --host 0.0.0.0 --port 5555
91
+ ```
92
+
93
+ Then on the Isaac Sim eval side (LeIsaac):
94
+
95
+ ```bash
96
+ POLICY_PORT=5555 \
97
+ ACTION_HORIZON=16 \
98
+ EVAL_ROUNDS=3 EPISODE_LENGTH=120 MAX_ROUND_WALL_S=180 \
99
+ PROMPT="Pick up the orange and put it in the plate" \
100
+ bash server/eval_gr00t.sh
101
+ ```
102
+
103
+ ## Branches
104
+
105
+ | branch | step | benchmark (3-round) | notes |
106
+ |---|---|---|---|
107
+ | **main** | **6500** | **2/3 strict, 8/9 oranges, 115s avg** | best |
108
+ | `ckpt-3500` | 3500 | 0/3, 2/9, 180s | first transition out of destruction phase |
109
+ | `ckpt-5000` | 5000 | 0/3, 4/9, 180s | strong 6-round (16/18) but volatile under 3-round |
110
+ | `ckpt-7000` | 7000 | 1/3, 6/9, 146s | secondary peak |
111
+
112
+ ## License
113
+
114
+ Apache-2.0 / NVIDIA Open Model License (inherited from base nvidia/GR00T-N1.6-3B). See base model card.
config.json ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "action_horizon": 50,
3
+ "add_pos_embed": true,
4
+ "apply_sincos_state_encoding": true,
5
+ "architectures": [
6
+ "Gr00tN1d6"
7
+ ],
8
+ "attn_dropout": 0.2,
9
+ "attn_implementation": null,
10
+ "backbone_embedding_dim": 2048,
11
+ "backbone_model_type": "eagle",
12
+ "backbone_trainable_params_fp32": false,
13
+ "collator_overwrite_image_inputs": false,
14
+ "color_jitter_params": {
15
+ "brightness": 0.1,
16
+ "contrast": 0.1,
17
+ "hue": 0.1,
18
+ "saturation": 0.1
19
+ },
20
+ "crop_fraction": 0.95,
21
+ "diffusion_model_cfg": {
22
+ "attention_head_dim": 48,
23
+ "dropout": 0.2,
24
+ "final_dropout": true,
25
+ "interleave_self_attention": true,
26
+ "norm_type": "ada_norm",
27
+ "num_attention_heads": 32,
28
+ "num_layers": 32,
29
+ "output_dim": 1024,
30
+ "positional_embeddings": null
31
+ },
32
+ "eagle_collator": true,
33
+ "formalize_language": true,
34
+ "gemma_collator": false,
35
+ "hidden_size": 1024,
36
+ "image_crop_size": null,
37
+ "image_target_size": null,
38
+ "input_embedding_dim": 1536,
39
+ "load_bf16": true,
40
+ "max_action_dim": 128,
41
+ "max_num_embodiments": 32,
42
+ "max_seq_len": 1024,
43
+ "max_state_dim": 128,
44
+ "model_dtype": "bfloat16",
45
+ "model_name": "nvidia/Eagle-Block2A-2B-v2",
46
+ "model_type": "Gr00tN1d6",
47
+ "noise_beta_alpha": 1.5,
48
+ "noise_beta_beta": 1.0,
49
+ "noise_s": 0.999,
50
+ "num_inference_timesteps": 4,
51
+ "num_timestep_buckets": 1000,
52
+ "random_rotation_angle": null,
53
+ "reproject_vision": false,
54
+ "select_layer": 16,
55
+ "shortest_image_edge": 256,
56
+ "state_dropout_prob": 0.0,
57
+ "torch_dtype": "bfloat16",
58
+ "transformers_version": "4.51.3",
59
+ "tune_diffusion_model": true,
60
+ "tune_llm": false,
61
+ "tune_projector": true,
62
+ "tune_top_llm_layers": 4,
63
+ "tune_visual": false,
64
+ "tune_vlln": true,
65
+ "use_albumentations_transforms": true,
66
+ "use_alternate_vl_dit": true,
67
+ "use_flash_attention": true,
68
+ "use_relative_action": true,
69
+ "use_vlln": true
70
+ }
embodiment_id.json ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "robocasa_panda_omron": 13,
3
+ "gr1": 20,
4
+ "behavior_r1_pro": 24,
5
+ "unitree_g1": 8,
6
+ "oxe_google": 0,
7
+ "oxe_widowx": 1,
8
+ "libero_panda": 2,
9
+ "oxe_droid": 16,
10
+ "new_embodiment": 10
11
+ }
experiment_cfg/conf.yaml ADDED
@@ -0,0 +1,205 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ load_config_path: null
2
+ model:
3
+ model_type: Gr00tN1d6
4
+ model_dtype: bfloat16
5
+ model_name: nvidia/Eagle-Block2A-2B-v2
6
+ backbone_model_type: eagle
7
+ model_revision: null
8
+ tune_top_llm_layers: 4
9
+ backbone_embedding_dim: 2048
10
+ tune_llm: false
11
+ tune_visual: false
12
+ select_layer: 16
13
+ reproject_vision: false
14
+ use_flash_attention: true
15
+ load_bf16: false
16
+ collator_overwrite_image_inputs: false
17
+ eagle_collator: true
18
+ backbone_trainable_params_fp32: false
19
+ image_crop_size: null
20
+ image_target_size: null
21
+ shortest_image_edge: 256
22
+ crop_fraction: 0.95
23
+ random_rotation_angle: null
24
+ color_jitter_params: null
25
+ use_albumentations_transforms: true
26
+ formalize_language: true
27
+ apply_sincos_state_encoding: false
28
+ use_relative_action: true
29
+ max_state_dim: 29
30
+ max_action_dim: 29
31
+ action_horizon: 16
32
+ hidden_size: 1024
33
+ input_embedding_dim: 1536
34
+ add_pos_embed: true
35
+ attn_dropout: 0.2
36
+ use_vlln: true
37
+ max_seq_len: 1024
38
+ use_alternate_vl_dit: true
39
+ attend_text_every_n_blocks: 2
40
+ diffusion_model_cfg:
41
+ positional_embeddings: null
42
+ num_layers: 32
43
+ num_attention_heads: 32
44
+ attention_head_dim: 48
45
+ norm_type: ada_norm
46
+ dropout: 0.2
47
+ final_dropout: true
48
+ output_dim: 1024
49
+ interleave_self_attention: true
50
+ num_inference_timesteps: 4
51
+ noise_beta_alpha: 1.5
52
+ noise_beta_beta: 1.0
53
+ noise_s: 0.999
54
+ num_timestep_buckets: 1000
55
+ tune_projector: true
56
+ tune_diffusion_model: true
57
+ tune_vlln: true
58
+ state_dropout_prob: 0.0
59
+ state_additive_noise_scale: 0.0
60
+ max_num_embodiments: 32
61
+ data:
62
+ datasets:
63
+ - dataset_paths:
64
+ - /home/david/work/isaaclab-experience/LeIsaac/datasets/v2-gr00t/leisaac-pick-orange
65
+ embodiment_tag: new_embodiment
66
+ mix_ratio: 1.0
67
+ dataset_type: physical_embodiment
68
+ val_dataset_path: null
69
+ modality_configs:
70
+ new_embodiment:
71
+ video:
72
+ delta_indices:
73
+ - 0
74
+ modality_keys:
75
+ - front
76
+ - wrist
77
+ sin_cos_embedding_keys: null
78
+ mean_std_embedding_keys: null
79
+ action_configs: null
80
+ state:
81
+ delta_indices:
82
+ - 0
83
+ modality_keys:
84
+ - single_arm
85
+ - gripper
86
+ sin_cos_embedding_keys: null
87
+ mean_std_embedding_keys: null
88
+ action_configs: null
89
+ action:
90
+ delta_indices:
91
+ - 0
92
+ - 1
93
+ - 2
94
+ - 3
95
+ - 4
96
+ - 5
97
+ - 6
98
+ - 7
99
+ - 8
100
+ - 9
101
+ - 10
102
+ - 11
103
+ - 12
104
+ - 13
105
+ - 14
106
+ - 15
107
+ modality_keys:
108
+ - single_arm
109
+ - gripper
110
+ sin_cos_embedding_keys: null
111
+ mean_std_embedding_keys: null
112
+ action_configs:
113
+ - rep: RELATIVE
114
+ type: NON_EEF
115
+ format: DEFAULT
116
+ state_key: null
117
+ - rep: ABSOLUTE
118
+ type: NON_EEF
119
+ format: DEFAULT
120
+ state_key: null
121
+ language:
122
+ delta_indices:
123
+ - 0
124
+ modality_keys:
125
+ - annotation.human.task_description
126
+ sin_cos_embedding_keys: null
127
+ mean_std_embedding_keys: null
128
+ action_configs: null
129
+ download_cache: false
130
+ shard_size: 1024
131
+ episode_sampling_rate: 0.1
132
+ num_shards_per_epoch: 100000
133
+ override_pretraining_statistics: false
134
+ mode: single_turn
135
+ random_chop: 0.0
136
+ mock_dataset_mode: false
137
+ shuffle: true
138
+ seed: 42
139
+ multiprocessing_context: fork
140
+ allow_padding: false
141
+ subsample_ratio: 1.0
142
+ image_crop_size:
143
+ - 244
144
+ - 244
145
+ image_target_size:
146
+ - 224
147
+ - 224
148
+ video_backend: torchcodec
149
+ training:
150
+ output_dir: /home/david/work/isaaclab-experience/LeIsaac/outputs/gr00t-n16-leisaac-pick-orange
151
+ experiment_name: null
152
+ max_steps: 8000
153
+ global_batch_size: 16
154
+ batch_size: null
155
+ gradient_accumulation_steps: 8
156
+ learning_rate: 0.0001
157
+ lr_scheduler_type: cosine
158
+ weight_decay: 1.0e-05
159
+ warmup_ratio: 0.05
160
+ warmup_steps: 0
161
+ max_grad_norm: 1.0
162
+ optim: adafactor
163
+ start_from_checkpoint: nvidia/GR00T-N1.6-3B
164
+ tf32: true
165
+ fp16: false
166
+ bf16: true
167
+ eval_bf16: true
168
+ logging_steps: 10
169
+ save_steps: 100
170
+ save_total_limit: 100
171
+ save_vl_model: false
172
+ upload_checkpoints: false
173
+ upload_every: 1000
174
+ upload_last_n_checkpoints: 5
175
+ max_concurrent_uploads: 2
176
+ eval_strategy: 'no'
177
+ eval_steps: 500
178
+ eval_set_split_ratio: 0.1
179
+ eval_batch_size: 2
180
+ save_best_eval_metric_name: ''
181
+ save_best_eval_metric_greater_is_better: true
182
+ deepspeed_stage: 2
183
+ gradient_checkpointing: true
184
+ transformers_trust_remote_code: true
185
+ transformers_local_files_only: false
186
+ transformers_cache_dir: null
187
+ transformers_access_token: null
188
+ use_ddp: false
189
+ ddp_bucket_cap_mb: 100
190
+ num_gpus: 1
191
+ dataloader_num_workers: 4
192
+ remove_unused_columns: false
193
+ use_wandb: false
194
+ wandb_project: finetune-gr00t-n1d6
195
+ enable_profiling: false
196
+ max_retries: 3
197
+ assert_loss_less_than: null
198
+ add_rl_callback: false
199
+ enable_open_loop_eval: false
200
+ open_loop_eval_traj_ids:
201
+ - 0
202
+ open_loop_eval_steps_per_traj: 100
203
+ open_loop_eval_plot_indices: null
204
+ max_steps: 8000
205
+ save_steps: 100
experiment_cfg/config.yaml ADDED
@@ -0,0 +1,239 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ !!python/object:gr00t.configs.base_config.Config
2
+ data: !!python/object:gr00t.configs.data.data_config.DataConfig
3
+ allow_padding: false
4
+ datasets:
5
+ - !!python/object:gr00t.configs.data.data_config.SingleDatasetConfig
6
+ dataset_paths:
7
+ - /home/david/work/isaaclab-experience/LeIsaac/datasets/v2-gr00t/leisaac-pick-orange
8
+ dataset_type: physical_embodiment
9
+ embodiment_tag: new_embodiment
10
+ mix_ratio: 1.0
11
+ val_dataset_path: null
12
+ download_cache: false
13
+ episode_sampling_rate: 0.1
14
+ image_crop_size:
15
+ - 244
16
+ - 244
17
+ image_target_size:
18
+ - 224
19
+ - 224
20
+ mock_dataset_mode: false
21
+ modality_configs:
22
+ new_embodiment:
23
+ action: !!python/object:gr00t.data.types.ModalityConfig
24
+ action_configs:
25
+ - !!python/object:gr00t.data.types.ActionConfig
26
+ format: &id001 !!python/object/apply:gr00t.data.types.ActionFormat
27
+ - default
28
+ rep: !!python/object/apply:gr00t.data.types.ActionRepresentation
29
+ - relative
30
+ state_key: null
31
+ type: &id002 !!python/object/apply:gr00t.data.types.ActionType
32
+ - non_eef
33
+ - !!python/object:gr00t.data.types.ActionConfig
34
+ format: *id001
35
+ rep: !!python/object/apply:gr00t.data.types.ActionRepresentation
36
+ - absolute
37
+ state_key: null
38
+ type: *id002
39
+ delta_indices:
40
+ - 0
41
+ - 1
42
+ - 2
43
+ - 3
44
+ - 4
45
+ - 5
46
+ - 6
47
+ - 7
48
+ - 8
49
+ - 9
50
+ - 10
51
+ - 11
52
+ - 12
53
+ - 13
54
+ - 14
55
+ - 15
56
+ mean_std_embedding_keys: null
57
+ modality_keys:
58
+ - single_arm
59
+ - gripper
60
+ sin_cos_embedding_keys: null
61
+ language: !!python/object:gr00t.data.types.ModalityConfig
62
+ action_configs: null
63
+ delta_indices:
64
+ - 0
65
+ mean_std_embedding_keys: null
66
+ modality_keys:
67
+ - annotation.human.task_description
68
+ sin_cos_embedding_keys: null
69
+ state: !!python/object:gr00t.data.types.ModalityConfig
70
+ action_configs: null
71
+ delta_indices:
72
+ - 0
73
+ mean_std_embedding_keys: null
74
+ modality_keys:
75
+ - single_arm
76
+ - gripper
77
+ sin_cos_embedding_keys: null
78
+ video: !!python/object:gr00t.data.types.ModalityConfig
79
+ action_configs: null
80
+ delta_indices:
81
+ - 0
82
+ mean_std_embedding_keys: null
83
+ modality_keys:
84
+ - front
85
+ - wrist
86
+ sin_cos_embedding_keys: null
87
+ mode: single_turn
88
+ multiprocessing_context: fork
89
+ num_shards_per_epoch: 100000
90
+ override_pretraining_statistics: false
91
+ random_chop: 0.0
92
+ seed: 42
93
+ shard_size: 1024
94
+ shuffle: true
95
+ subsample_ratio: 1.0
96
+ video_backend: torchcodec
97
+ load_config_path: null
98
+ model: !!python/object:gr00t.configs.model.gr00t_n1d6.Gr00tN1d6Config
99
+ _attn_implementation_autoset: false
100
+ _attn_implementation_internal: null
101
+ _commit_hash: null
102
+ _name_or_path: ''
103
+ add_cross_attention: false
104
+ architectures: null
105
+ backbone_model_type: eagle
106
+ backbone_trainable_params_fp32: false
107
+ bad_words_ids: null
108
+ begin_suppress_tokens: null
109
+ bos_token_id: null
110
+ chunk_size_feed_forward: 0
111
+ color_jitter_params: null
112
+ cross_attention_hidden_size: null
113
+ decoder_start_token_id: null
114
+ diffusion_model_cfg:
115
+ attention_head_dim: 48
116
+ dropout: 0.2
117
+ final_dropout: true
118
+ interleave_self_attention: true
119
+ norm_type: ada_norm
120
+ num_attention_heads: 32
121
+ num_layers: 32
122
+ output_dim: 1024
123
+ positional_embeddings: null
124
+ diversity_penalty: 0.0
125
+ do_sample: false
126
+ eagle_collator: true
127
+ early_stopping: false
128
+ encoder_no_repeat_ngram_size: 0
129
+ eos_token_id: null
130
+ exponential_decay_length_penalty: null
131
+ finetuning_task: null
132
+ forced_bos_token_id: null
133
+ forced_eos_token_id: null
134
+ id2label:
135
+ 0: LABEL_0
136
+ 1: LABEL_1
137
+ is_decoder: false
138
+ is_encoder_decoder: false
139
+ label2id:
140
+ LABEL_0: 0
141
+ LABEL_1: 1
142
+ length_penalty: 1.0
143
+ load_bf16: false
144
+ max_length: 20
145
+ min_length: 0
146
+ model_name: nvidia/Eagle-Block2A-2B-v2
147
+ no_repeat_ngram_size: 0
148
+ num_beam_groups: 1
149
+ num_beams: 1
150
+ num_return_sequences: 1
151
+ output_attentions: false
152
+ output_hidden_states: false
153
+ output_scores: false
154
+ pad_token_id: null
155
+ prefix: null
156
+ problem_type: null
157
+ pruned_heads: {}
158
+ random_rotation_angle: null
159
+ remove_invalid_values: false
160
+ repetition_penalty: 1.0
161
+ reproject_vision: false
162
+ return_dict: true
163
+ return_dict_in_generate: false
164
+ sep_token_id: null
165
+ state_dropout_prob: 0.0
166
+ suppress_tokens: null
167
+ task_specific_params: null
168
+ temperature: 1.0
169
+ tf_legacy_loss: false
170
+ tie_encoder_decoder: false
171
+ tie_word_embeddings: true
172
+ tokenizer_class: null
173
+ top_k: 50
174
+ top_p: 1.0
175
+ torch_dtype: null
176
+ torchscript: false
177
+ transformers_version: null
178
+ tune_diffusion_model: true
179
+ tune_llm: false
180
+ tune_projector: true
181
+ tune_visual: false
182
+ typical_p: 1.0
183
+ use_bfloat16: false
184
+ use_relative_action: true
185
+ training: !!python/object:gr00t.configs.training.training_config.TrainingConfig
186
+ add_rl_callback: false
187
+ assert_loss_less_than: null
188
+ batch_size: null
189
+ bf16: true
190
+ dataloader_num_workers: 4
191
+ ddp_bucket_cap_mb: 100
192
+ deepspeed_stage: 2
193
+ enable_open_loop_eval: false
194
+ enable_profiling: false
195
+ eval_batch_size: 2
196
+ eval_bf16: true
197
+ eval_set_split_ratio: 0.1
198
+ eval_steps: 500
199
+ eval_strategy: 'no'
200
+ experiment_name: null
201
+ fp16: false
202
+ global_batch_size: 16
203
+ gradient_accumulation_steps: 8
204
+ gradient_checkpointing: true
205
+ learning_rate: 0.0001
206
+ logging_steps: 10
207
+ lr_scheduler_type: cosine
208
+ max_concurrent_uploads: 2
209
+ max_grad_norm: 1.0
210
+ max_retries: 3
211
+ max_steps: 8000
212
+ num_gpus: 1
213
+ open_loop_eval_plot_indices: null
214
+ open_loop_eval_steps_per_traj: 100
215
+ open_loop_eval_traj_ids:
216
+ - 0
217
+ optim: adafactor
218
+ output_dir: /home/david/work/isaaclab-experience/LeIsaac/outputs/gr00t-n16-leisaac-pick-orange
219
+ remove_unused_columns: false
220
+ save_best_eval_metric_greater_is_better: true
221
+ save_best_eval_metric_name: ''
222
+ save_steps: 100
223
+ save_total_limit: 100
224
+ save_vl_model: false
225
+ start_from_checkpoint: nvidia/GR00T-N1.6-3B
226
+ tf32: true
227
+ transformers_access_token: null
228
+ transformers_cache_dir: null
229
+ transformers_local_files_only: false
230
+ transformers_trust_remote_code: true
231
+ upload_checkpoints: false
232
+ upload_every: 1000
233
+ upload_last_n_checkpoints: 5
234
+ use_ddp: false
235
+ use_wandb: false
236
+ wandb_project: finetune-gr00t-n1d6
237
+ warmup_ratio: 0.05
238
+ warmup_steps: 0
239
+ weight_decay: 1.0e-05
experiment_cfg/dataset_statistics.json ADDED
@@ -0,0 +1,824 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "new_embodiment": {
3
+ "state": {
4
+ "single_arm": {
5
+ "min": [
6
+ -38.4887809753418,
7
+ -99.55461120605469,
8
+ -96.33113098144531,
9
+ 16.11701202392578,
10
+ -14.437675476074219
11
+ ],
12
+ "max": [
13
+ 52.71546936035156,
14
+ 65.318359375,
15
+ 100.1607666015625,
16
+ 100.02542114257812,
17
+ 50.691986083984375
18
+ ],
19
+ "mean": [
20
+ 8.840148272157316,
21
+ 4.428224321984103,
22
+ 3.701954002698882,
23
+ 75.5965900244035,
24
+ 18.457382031583865
25
+ ],
26
+ "std": [
27
+ 19.55255245279634,
28
+ 39.3160576361393,
29
+ 41.374198807433096,
30
+ 13.75169671463774,
31
+ 9.614372959605886
32
+ ],
33
+ "q01": [
34
+ -18.229741607712768,
35
+ -98.65025370757203,
36
+ -46.42941687026458,
37
+ 45.56621679385282,
38
+ -1.2638163674232565
39
+ ],
40
+ "q99": [
41
+ 43.11763306796079,
42
+ 47.37984483255651,
43
+ 94.04217915653648,
44
+ 96.93977459002855,
45
+ 32.09256410842177
46
+ ]
47
+ },
48
+ "gripper": {
49
+ "min": [
50
+ 2.1588988304138184
51
+ ],
52
+ "max": [
53
+ 88.45756530761719
54
+ ],
55
+ "mean": [
56
+ 33.336876525471084
57
+ ],
58
+ "std": [
59
+ 11.978548807427263
60
+ ],
61
+ "q01": [
62
+ 6.005168430245503
63
+ ],
64
+ "q99": [
65
+ 49.14805418820686
66
+ ]
67
+ }
68
+ },
69
+ "action": {
70
+ "single_arm": {
71
+ "min": [
72
+ -38.495731353759766,
73
+ -99.99999237060547,
74
+ -99.1869888305664,
75
+ 21.52564239501953,
76
+ -14.449661254882812
77
+ ],
78
+ "max": [
79
+ 52.056304931640625,
80
+ 63.758392333984375,
81
+ 99.45799255371094,
82
+ 100.0,
83
+ 51.0172119140625
84
+ ],
85
+ "mean": [
86
+ 8.859694914190994,
87
+ 2.965154306509139,
88
+ 2.2492044443130705,
89
+ 76.57558257663956,
90
+ 18.28188906159237
91
+ ],
92
+ "std": [
93
+ 19.569910583409932,
94
+ 39.62520083745952,
95
+ 41.969373861775885,
96
+ 13.673398133333285,
97
+ 9.611987752942092
98
+ ],
99
+ "q01": [
100
+ -18.13768718704794,
101
+ -99.02736507254241,
102
+ -47.4460769768674,
103
+ 48.12125096269397,
104
+ -1.258095574497284
105
+ ],
106
+ "q99": [
107
+ 42.790205037250466,
108
+ 47.04513358098108,
109
+ 93.0703273043911,
110
+ 97.63184841583151,
111
+ 31.938427718658318
112
+ ]
113
+ },
114
+ "gripper": {
115
+ "min": [
116
+ 0.5983543395996094
117
+ ],
118
+ "max": [
119
+ 91.3986587524414
120
+ ],
121
+ "mean": [
122
+ 32.56747471198681
123
+ ],
124
+ "std": [
125
+ 12.37299415215702
126
+ ],
127
+ "q01": [
128
+ 5.8788790101191175
129
+ ],
130
+ "q99": [
131
+ 49.20674322914071
132
+ ]
133
+ }
134
+ },
135
+ "relative_action": {
136
+ "single_arm": {
137
+ "min": [
138
+ [
139
+ -14.911361694335938,
140
+ -51.694087982177734,
141
+ -15.638526916503906,
142
+ -11.870635986328125,
143
+ -6.4728546142578125
144
+ ],
145
+ [
146
+ -23.05420684814453,
147
+ -51.694087982177734,
148
+ -23.676048278808594,
149
+ -18.609466552734375,
150
+ -8.837440490722656
151
+ ],
152
+ [
153
+ -29.31463623046875,
154
+ -51.694087982177734,
155
+ -31.43834686279297,
156
+ -24.484100341796875,
157
+ -12.071098327636719
158
+ ],
159
+ [
160
+ -34.13130187988281,
161
+ -51.694087982177734,
162
+ -37.969764709472656,
163
+ -29.409194946289062,
164
+ -15.096656799316406
165
+ ],
166
+ [
167
+ -39.24430847167969,
168
+ -52.512718200683594,
169
+ -44.51702117919922,
170
+ -33.968597412109375,
171
+ -17.5252685546875
172
+ ],
173
+ [
174
+ -43.36555480957031,
175
+ -59.402915954589844,
176
+ -50.293434143066406,
177
+ -38.757781982421875,
178
+ -19.472503662109375
179
+ ],
180
+ [
181
+ -46.580360412597656,
182
+ -65.78337860107422,
183
+ -56.61682891845703,
184
+ -43.43601989746094,
185
+ -20.22327423095703
186
+ ],
187
+ [
188
+ -50.70160675048828,
189
+ -72.70186614990234,
190
+ -62.759559631347656,
191
+ -47.829132080078125,
192
+ -20.797088623046875
193
+ ],
194
+ [
195
+ -53.07286071777344,
196
+ -78.53504943847656,
197
+ -68.43956756591797,
198
+ -50.03575134277344,
199
+ -21.821876525878906
200
+ ],
201
+ [
202
+ -55.41436767578125,
203
+ -85.45353698730469,
204
+ -73.82556915283203,
205
+ -51.43864440917969,
206
+ -24.034934997558594
207
+ ],
208
+ [
209
+ -57.64942169189453,
210
+ -90.97798156738281,
211
+ -78.34626007080078,
212
+ -52.69129943847656,
213
+ -26.027786254882812
214
+ ],
215
+ [
216
+ -59.62834930419922,
217
+ -96.43101501464844,
218
+ -82.40398406982422,
219
+ -53.581146240234375,
220
+ -27.861228942871094
221
+ ],
222
+ [
223
+ -61.184486389160156,
224
+ -100.99291229248047,
225
+ -86.2883529663086,
226
+ -54.013153076171875,
227
+ -29.240684509277344
228
+ ],
229
+ [
230
+ -62.51831817626953,
231
+ -104.93585205078125,
232
+ -89.47949981689453,
233
+ -53.97956848144531,
234
+ -30.338829040527344
235
+ ],
236
+ [
237
+ -63.726402282714844,
238
+ -108.6543960571289,
239
+ -93.18544006347656,
240
+ -55.01605224609375,
241
+ -30.980690002441406
242
+ ],
243
+ [
244
+ -64.54151916503906,
245
+ -113.25118255615234,
246
+ -96.83665466308594,
247
+ -55.85687255859375,
248
+ -31.450172424316406
249
+ ]
250
+ ],
251
+ "max": [
252
+ [
253
+ 8.648139953613281,
254
+ 21.644493103027344,
255
+ 42.27880859375,
256
+ 49.86402893066406,
257
+ 6.841438293457031
258
+ ],
259
+ [
260
+ 12.670539855957031,
261
+ 31.178138732910156,
262
+ 42.0078125,
263
+ 49.86402893066406,
264
+ 11.135780334472656
265
+ ],
266
+ [
267
+ 16.319747924804688,
268
+ 40.76937484741211,
269
+ 48.134246826171875,
270
+ 49.86402893066406,
271
+ 14.878013610839844
272
+ ],
273
+ [
274
+ 20.228897094726562,
275
+ 50.11949920654297,
276
+ 58.22229766845703,
277
+ 49.86402893066406,
278
+ 17.307357788085938
279
+ ],
280
+ [
281
+ 23.87810516357422,
282
+ 59.20232391357422,
283
+ 68.29430389404297,
284
+ 49.86402893066406,
285
+ 19.706932067871094
286
+ ],
287
+ [
288
+ 27.120323181152344,
289
+ 66.23518371582031,
290
+ 78.27180480957031,
291
+ 49.86402893066406,
292
+ 21.957313537597656
293
+ ],
294
+ [
295
+ 30.76953125,
296
+ 72.50222778320312,
297
+ 87.56556701660156,
298
+ 49.7763671875,
299
+ 23.394454956054688
300
+ ],
301
+ [
302
+ 34.15996551513672,
303
+ 77.48662567138672,
304
+ 96.23135375976562,
305
+ 49.7763671875,
306
+ 24.797103881835938
307
+ ],
308
+ [
309
+ 37.809173583984375,
310
+ 82.8459243774414,
311
+ 103.15088653564453,
312
+ 50.37493896484375,
313
+ 26.21502685546875
314
+ ],
315
+ [
316
+ 41.04627227783203,
317
+ 88.68891143798828,
318
+ 109.35047149658203,
319
+ 51.87345886230469,
320
+ 27.466995239257812
321
+ ],
322
+ [
323
+ 43.874000549316406,
324
+ 92.10808563232422,
325
+ 114.21905517578125,
326
+ 53.0133056640625,
327
+ 28.072982788085938
328
+ ],
329
+ [
330
+ 46.393455505371094,
331
+ 94.79264068603516,
332
+ 120.27740478515625,
333
+ 53.97080993652344,
334
+ 30.01386260986328
335
+ ],
336
+ [
337
+ 48.819923400878906,
338
+ 97.0941390991211,
339
+ 125.20549011230469,
340
+ 54.12898254394531,
341
+ 32.149871826171875
342
+ ],
343
+ [
344
+ 50.804527282714844,
345
+ 97.93307495117188,
346
+ 130.27487182617188,
347
+ 54.19990539550781,
348
+ 33.2974853515625
349
+ ],
350
+ [
351
+ 52.34302520751953,
352
+ 98.73731994628906,
353
+ 135.0625762939453,
354
+ 54.29461669921875,
355
+ 34.760841369628906
356
+ ],
357
+ [
358
+ 53.750953674316406,
359
+ 99.18757629394531,
360
+ 139.2611083984375,
361
+ 54.326751708984375,
362
+ 36.8968505859375
363
+ ]
364
+ ],
365
+ "mean": [
366
+ [
367
+ 0.020997224375605583,
368
+ -1.4881213903427124,
369
+ -1.4624804258346558,
370
+ 1.0049245357513428,
371
+ -0.180264413356781
372
+ ],
373
+ [
374
+ 0.022291112691164017,
375
+ -1.4909546375274658,
376
+ -1.4609202146530151,
377
+ 1.0113650560379028,
378
+ -0.18242114782333374
379
+ ],
380
+ [
381
+ 0.022984366863965988,
382
+ -1.4937150478363037,
383
+ -1.4586091041564941,
384
+ 1.0198941230773926,
385
+ -0.18500204384326935
386
+ ],
387
+ [
388
+ 0.022994842380285263,
389
+ -1.496490716934204,
390
+ -1.455088496208191,
391
+ 1.0304025411605835,
392
+ -0.1882157325744629
393
+ ],
394
+ [
395
+ 0.022058680653572083,
396
+ -1.4992427825927734,
397
+ -1.4499258995056152,
398
+ 1.0428149700164795,
399
+ -0.19227972626686096
400
+ ],
401
+ [
402
+ 0.020388014614582062,
403
+ -1.502027153968811,
404
+ -1.4428108930587769,
405
+ 1.056925654411316,
406
+ -0.19738996028900146
407
+ ],
408
+ [
409
+ 0.018449358642101288,
410
+ -1.5049200057983398,
411
+ -1.4331669807434082,
412
+ 1.0722174644470215,
413
+ -0.2037428468465805
414
+ ],
415
+ [
416
+ 0.01652294583618641,
417
+ -1.507964015007019,
418
+ -1.4208641052246094,
419
+ 1.0882326364517212,
420
+ -0.21132095158100128
421
+ ],
422
+ [
423
+ 0.014896396547555923,
424
+ -1.5114502906799316,
425
+ -1.4054588079452515,
426
+ 1.103981375694275,
427
+ -0.2199748009443283
428
+ ],
429
+ [
430
+ 0.013631519861519337,
431
+ -1.5156809091567993,
432
+ -1.386881709098816,
433
+ 1.119127869606018,
434
+ -0.2295047789812088
435
+ ],
436
+ [
437
+ 0.012869876809418201,
438
+ -1.5211751461029053,
439
+ -1.3647358417510986,
440
+ 1.1333566904067993,
441
+ -0.23997636139392853
442
+ ],
443
+ [
444
+ 0.01248890720307827,
445
+ -1.5284582376480103,
446
+ -1.3388904333114624,
447
+ 1.1462135314941406,
448
+ -0.2516928017139435
449
+ ],
450
+ [
451
+ 0.012501384131610394,
452
+ -1.53902268409729,
453
+ -1.3089009523391724,
454
+ 1.1571072340011597,
455
+ -0.2649005949497223
456
+ ],
457
+ [
458
+ 0.012764607556164265,
459
+ -1.5537357330322266,
460
+ -1.2748240232467651,
461
+ 1.1660377979278564,
462
+ -0.2796488106250763
463
+ ],
464
+ [
465
+ 0.012975931167602539,
466
+ -1.574518084526062,
467
+ -1.2356443405151367,
468
+ 1.1727497577667236,
469
+ -0.29621484875679016
470
+ ],
471
+ [
472
+ 0.01307070441544056,
473
+ -1.6017735004425049,
474
+ -1.1916882991790771,
475
+ 1.1774064302444458,
476
+ -0.3145063817501068
477
+ ]
478
+ ],
479
+ "std": [
480
+ [
481
+ 2.1394577026367188,
482
+ 4.894880294799805,
483
+ 3.7829880714416504,
484
+ 2.9211511611938477,
485
+ 0.7617541551589966
486
+ ],
487
+ [
488
+ 3.0568747520446777,
489
+ 5.905516147613525,
490
+ 4.881189823150635,
491
+ 3.4206314086914062,
492
+ 1.1443812847137451
493
+ ],
494
+ [
495
+ 4.008611679077148,
496
+ 7.090665817260742,
497
+ 6.109179973602295,
498
+ 4.062374114990234,
499
+ 1.529036521911621
500
+ ],
501
+ [
502
+ 4.956149578094482,
503
+ 8.35679817199707,
504
+ 7.383761405944824,
505
+ 4.756580829620361,
506
+ 1.897889256477356
507
+ ],
508
+ [
509
+ 5.883366107940674,
510
+ 9.651677131652832,
511
+ 8.664971351623535,
512
+ 5.4535136222839355,
513
+ 2.2465991973876953
514
+ ],
515
+ [
516
+ 6.782696723937988,
517
+ 10.946192741394043,
518
+ 9.933196067810059,
519
+ 6.128621578216553,
520
+ 2.574941635131836
521
+ ],
522
+ [
523
+ 7.650819301605225,
524
+ 12.222617149353027,
525
+ 11.177302360534668,
526
+ 6.768352508544922,
527
+ 2.883546829223633
528
+ ],
529
+ [
530
+ 8.486412048339844,
531
+ 13.46977710723877,
532
+ 12.390706062316895,
533
+ 7.36769437789917,
534
+ 3.17409610748291
535
+ ],
536
+ [
537
+ 9.289264678955078,
538
+ 14.681126594543457,
539
+ 13.56973648071289,
540
+ 7.923224925994873,
541
+ 3.4485411643981934
542
+ ],
543
+ [
544
+ 10.060309410095215,
545
+ 15.852520942687988,
546
+ 14.712166786193848,
547
+ 8.436100006103516,
548
+ 3.7087414264678955
549
+ ],
550
+ [
551
+ 10.800823211669922,
552
+ 16.9818115234375,
553
+ 15.817072868347168,
554
+ 8.908802032470703,
555
+ 3.9556939601898193
556
+ ],
557
+ [
558
+ 11.512417793273926,
559
+ 18.06777572631836,
560
+ 16.88380241394043,
561
+ 9.344352722167969,
562
+ 4.189938068389893
563
+ ],
564
+ [
565
+ 12.197014808654785,
566
+ 19.112342834472656,
567
+ 17.91231918334961,
568
+ 9.745612144470215,
569
+ 4.411512851715088
570
+ ],
571
+ [
572
+ 12.856561660766602,
573
+ 20.115575790405273,
574
+ 18.90251922607422,
575
+ 10.116864204406738,
576
+ 4.621187210083008
577
+ ],
578
+ [
579
+ 13.492779731750488,
580
+ 21.080575942993164,
581
+ 19.85552978515625,
582
+ 10.461480140686035,
583
+ 4.819010257720947
584
+ ],
585
+ [
586
+ 14.107295036315918,
587
+ 22.007328033447266,
588
+ 20.771570205688477,
589
+ 10.783132553100586,
590
+ 5.005765438079834
591
+ ]
592
+ ],
593
+ "q01": [
594
+ [
595
+ -7.419057922363281,
596
+ -12.581195831298828,
597
+ -8.82252227783203,
598
+ -6.087322998046875,
599
+ -2.5390777587890625
600
+ ],
601
+ [
602
+ -11.511234130859375,
603
+ -18.27121154785156,
604
+ -12.288184509277343,
605
+ -6.882456665039062,
606
+ -3.8881021118164063
607
+ ],
608
+ [
609
+ -15.276144409179686,
610
+ -23.440470886230468,
611
+ -16.03684020996094,
612
+ -8.2777392578125,
613
+ -5.296602478027344
614
+ ],
615
+ [
616
+ -19.19104187011719,
617
+ -29.13023223876953,
618
+ -19.62871276855469,
619
+ -10.33853759765625,
620
+ -6.548498229980469
621
+ ],
622
+ [
623
+ -23.113453674316407,
624
+ -33.76502166748047,
625
+ -23.200725708007813,
626
+ -12.311511840820312,
627
+ -7.785025024414062
628
+ ],
629
+ [
630
+ -26.40595397949219,
631
+ -39.22877655029297,
632
+ -26.632315979003906,
633
+ -14.113368530273437,
634
+ -8.904837036132813
635
+ ],
636
+ [
637
+ -29.723882446289064,
638
+ -42.711383666992184,
639
+ -29.930812072753906,
640
+ -15.991270141601563,
641
+ -9.885104064941407
642
+ ],
643
+ [
644
+ -32.797804565429686,
645
+ -47.805749053955076,
646
+ -32.926392822265626,
647
+ -17.46216552734375,
648
+ -10.925282592773437
649
+ ],
650
+ [
651
+ -35.32455718994141,
652
+ -51.44909606933594,
653
+ -35.748411865234374,
654
+ -19.14945129394531,
655
+ -11.781208190917969
656
+ ],
657
+ [
658
+ -38.062582397460936,
659
+ -55.415773162841795,
660
+ -38.48631530761719,
661
+ -20.42114501953125,
662
+ -12.667689819335937
663
+ ],
664
+ [
665
+ -40.22204345703125,
666
+ -60.145266418457034,
667
+ -40.912968139648434,
668
+ -21.696444091796874,
669
+ -13.414114685058594
670
+ ],
671
+ [
672
+ -42.08235290527344,
673
+ -64.35498046875,
674
+ -43.379266052246095,
675
+ -22.81550842285156,
676
+ -13.992155151367188
677
+ ],
678
+ [
679
+ -43.868799743652346,
680
+ -68.91267150878906,
681
+ -45.320148315429684,
682
+ -23.909122924804688,
683
+ -14.621808166503905
684
+ ],
685
+ [
686
+ -45.370706176757814,
687
+ -73.34040557861329,
688
+ -47.579830932617185,
689
+ -24.478602905273437,
690
+ -14.97844970703125
691
+ ],
692
+ [
693
+ -46.70020751953125,
694
+ -77.41453125,
695
+ -49.48486175537109,
696
+ -25.230794067382813,
697
+ -15.538360290527343
698
+ ],
699
+ [
700
+ -48.07183288574219,
701
+ -81.03040649414062,
702
+ -51.478125,
703
+ -25.646119384765626,
704
+ -15.961812438964843
705
+ ]
706
+ ],
707
+ "q99": [
708
+ [
709
+ 5.366009826660166,
710
+ 10.88886596679689,
711
+ 12.344041748046877,
712
+ 8.216951293945318,
713
+ 2.281517639160157
714
+ ],
715
+ [
716
+ 7.589539489746113,
717
+ 14.69964233398439,
718
+ 19.05604736328129,
719
+ 10.519268188476596,
720
+ 3.68562744140626
721
+ ],
722
+ [
723
+ 10.003522338867194,
724
+ 19.633509216308603,
725
+ 25.975014953613307,
726
+ 13.664359741210951,
727
+ 5.0561279296875234
728
+ ],
729
+ [
730
+ 12.358630981445318,
731
+ 24.906180419921892,
732
+ 31.70093475341807,
733
+ 16.792727050781256,
734
+ 6.41044921875003
735
+ ],
736
+ [
737
+ 14.750937500000003,
738
+ 30.27702331542973,
739
+ 37.23147521972666,
740
+ 19.616113281250005,
741
+ 7.699143981933595
742
+ ],
743
+ [
744
+ 17.014468688964858,
745
+ 35.00098968505884,
746
+ 42.88345275878917,
747
+ 22.23216796875004,
748
+ 8.82569976806642
749
+ ],
750
+ [
751
+ 19.187043762207036,
752
+ 40.062730712890804,
753
+ 49.79361938476572,
754
+ 24.41691162109382,
755
+ 9.887154235839846
756
+ ],
757
+ [
758
+ 21.282401733398466,
759
+ 44.811270446777385,
760
+ 55.412890014648475,
761
+ 26.497503662109377,
762
+ 10.838876342773496
763
+ ],
764
+ [
765
+ 23.30846435546876,
766
+ 49.0748959350587,
767
+ 61.28847259521516,
768
+ 28.432644653320374,
769
+ 11.792807922363307
770
+ ],
771
+ [
772
+ 25.188087158203135,
773
+ 52.84255813598657,
774
+ 66.51954803466805,
775
+ 29.735628051757814,
776
+ 12.635184936523444
777
+ ],
778
+ [
779
+ 27.017192077636764,
780
+ 56.80265930175782,
781
+ 71.60293182373053,
782
+ 31.169339599609383,
783
+ 13.483798522949268
784
+ ],
785
+ [
786
+ 28.888151550292978,
787
+ 59.93881042480475,
788
+ 76.38656829833985,
789
+ 32.413816528320346,
790
+ 14.146540832519534
791
+ ],
792
+ [
793
+ 30.504014892578162,
794
+ 63.76216461181649,
795
+ 80.4445263671875,
796
+ 33.55503295898448,
797
+ 14.820369262695372
798
+ ],
799
+ [
800
+ 32.0966955566407,
801
+ 66.75204437255869,
802
+ 84.529171447754,
803
+ 34.64756835937506,
804
+ 15.435535278320387
805
+ ],
806
+ [
807
+ 33.58694854736335,
808
+ 68.81811859130863,
809
+ 88.7781478881836,
810
+ 35.4795037841797,
811
+ 16.08903656005862
812
+ ],
813
+ [
814
+ 35.067734069824226,
815
+ 71.67548583984386,
816
+ 92.71588562011735,
817
+ 36.34949523925788,
818
+ 16.81138763427737
819
+ ]
820
+ ]
821
+ }
822
+ }
823
+ }
824
+ }
experiment_cfg/final_model_config.json ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "Gr00tN1d6",
3
+ "model_dtype": "bfloat16",
4
+ "model_name": "nvidia/Eagle-Block2A-2B-v2",
5
+ "backbone_model_type": "eagle",
6
+ "model_revision": null,
7
+ "tune_top_llm_layers": 4,
8
+ "backbone_embedding_dim": 2048,
9
+ "tune_llm": false,
10
+ "tune_visual": false,
11
+ "select_layer": 16,
12
+ "reproject_vision": false,
13
+ "use_flash_attention": true,
14
+ "load_bf16": true,
15
+ "collator_overwrite_image_inputs": false,
16
+ "eagle_collator": true,
17
+ "backbone_trainable_params_fp32": false,
18
+ "apply_sincos_state_encoding": true,
19
+ "use_relative_action": true,
20
+ "max_state_dim": 128,
21
+ "max_action_dim": 128,
22
+ "action_horizon": 50,
23
+ "hidden_size": 1024,
24
+ "input_embedding_dim": 1536,
25
+ "add_pos_embed": true,
26
+ "attn_dropout": 0.2,
27
+ "use_vlln": true,
28
+ "max_seq_len": 1024,
29
+ "use_alternate_vl_dit": true,
30
+ "attend_text_every_n_blocks": 2,
31
+ "diffusion_model_cfg": {
32
+ "attention_head_dim": 48,
33
+ "dropout": 0.2,
34
+ "final_dropout": true,
35
+ "interleave_self_attention": true,
36
+ "norm_type": "ada_norm",
37
+ "num_attention_heads": 32,
38
+ "num_layers": 32,
39
+ "output_dim": 1024,
40
+ "positional_embeddings": null
41
+ },
42
+ "num_inference_timesteps": 4,
43
+ "noise_beta_alpha": 1.5,
44
+ "noise_beta_beta": 1.0,
45
+ "noise_s": 0.999,
46
+ "num_timestep_buckets": 1000,
47
+ "tune_projector": true,
48
+ "tune_diffusion_model": true,
49
+ "tune_vlln": true,
50
+ "state_dropout_prob": 0.0,
51
+ "state_additive_noise_scale": 0.0,
52
+ "max_num_embodiments": 32
53
+ }
experiment_cfg/final_processor_config.json ADDED
The diff for this file is too large to render. See raw diff
 
gr00t-n1.6-ckpt-3500.jpg ADDED

Git LFS Details

  • SHA256: 78b7fb1165712de6305e1b8cbebd2bc6a03ceaf47304b3aa786ad8690e8c7b1d
  • Pointer size: 131 Bytes
  • Size of remote file: 156 kB
gr00t-n1.6-ckpt-6500.jpg ADDED

Git LFS Details

  • SHA256: 9cae89af7be857c74e4c5391b8eec84f2abcf6b4fc8858c4b2f831a84d77eb3d
  • Pointer size: 131 Bytes
  • Size of remote file: 166 kB
model-00001-of-00002.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d91f41ca2d048e50a0eb9bbd7b6bdc78889d26dbd3311aea8593b4102f6a47dc
3
+ size 4996585112
model-00002-of-00002.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a794be81fdd8a0403711d98749cd975c8a3634b4f7fbbe350755487b7af6f430
3
+ size 4414037400
model.safetensors.index.json ADDED
The diff for this file is too large to render. See raw diff
 
processor_config.json ADDED
@@ -0,0 +1,455 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "processor_class": "Gr00tN1d6Processor",
3
+ "processor_kwargs": {
4
+ "modality_configs": {
5
+ "behavior_r1_pro": {
6
+ "video": {
7
+ "delta_indices": [
8
+ 0
9
+ ],
10
+ "modality_keys": [
11
+ "observation.images.rgb.head_256_256",
12
+ "observation.images.rgb.left_wrist_256_256",
13
+ "observation.images.rgb.right_wrist_256_256"
14
+ ],
15
+ "sin_cos_embedding_keys": null,
16
+ "mean_std_embedding_keys": null,
17
+ "action_configs": null
18
+ },
19
+ "state": {
20
+ "delta_indices": [
21
+ 0
22
+ ],
23
+ "modality_keys": [
24
+ "robot_pos",
25
+ "robot_ori_cos",
26
+ "robot_ori_sin",
27
+ "robot_2d_ori",
28
+ "robot_2d_ori_cos",
29
+ "robot_2d_ori_sin",
30
+ "robot_lin_vel",
31
+ "robot_ang_vel",
32
+ "arm_left_qpos",
33
+ "arm_left_qpos_sin",
34
+ "arm_left_qpos_cos",
35
+ "eef_left_pos",
36
+ "eef_left_quat",
37
+ "gripper_left_qpos",
38
+ "arm_right_qpos",
39
+ "arm_right_qpos_sin",
40
+ "arm_right_qpos_cos",
41
+ "eef_right_pos",
42
+ "eef_right_quat",
43
+ "gripper_right_qpos",
44
+ "trunk_qpos"
45
+ ],
46
+ "sin_cos_embedding_keys": null,
47
+ "mean_std_embedding_keys": null,
48
+ "action_configs": null
49
+ },
50
+ "action": {
51
+ "delta_indices": [
52
+ 0,
53
+ 1,
54
+ 2,
55
+ 3,
56
+ 4,
57
+ 5,
58
+ 6,
59
+ 7,
60
+ 8,
61
+ 9,
62
+ 10,
63
+ 11,
64
+ 12,
65
+ 13,
66
+ 14,
67
+ 15,
68
+ 16,
69
+ 17,
70
+ 18,
71
+ 19,
72
+ 20,
73
+ 21,
74
+ 22,
75
+ 23,
76
+ 24,
77
+ 25,
78
+ 26,
79
+ 27,
80
+ 28,
81
+ 29,
82
+ 30,
83
+ 31
84
+ ],
85
+ "modality_keys": [
86
+ "base",
87
+ "torso",
88
+ "left_arm",
89
+ "left_gripper",
90
+ "right_arm",
91
+ "right_gripper"
92
+ ],
93
+ "sin_cos_embedding_keys": null,
94
+ "mean_std_embedding_keys": null,
95
+ "action_configs": [
96
+ {
97
+ "rep": "ABSOLUTE",
98
+ "type": "NON_EEF",
99
+ "format": "DEFAULT",
100
+ "state_key": null
101
+ },
102
+ {
103
+ "rep": "RELATIVE",
104
+ "type": "NON_EEF",
105
+ "format": "DEFAULT",
106
+ "state_key": "trunk_qpos"
107
+ },
108
+ {
109
+ "rep": "RELATIVE",
110
+ "type": "NON_EEF",
111
+ "format": "DEFAULT",
112
+ "state_key": "arm_left_qpos"
113
+ },
114
+ {
115
+ "rep": "ABSOLUTE",
116
+ "type": "NON_EEF",
117
+ "format": "DEFAULT",
118
+ "state_key": null
119
+ },
120
+ {
121
+ "rep": "RELATIVE",
122
+ "type": "NON_EEF",
123
+ "format": "DEFAULT",
124
+ "state_key": "arm_right_qpos"
125
+ },
126
+ {
127
+ "rep": "ABSOLUTE",
128
+ "type": "NON_EEF",
129
+ "format": "DEFAULT",
130
+ "state_key": null
131
+ }
132
+ ]
133
+ },
134
+ "language": {
135
+ "delta_indices": [
136
+ 0
137
+ ],
138
+ "modality_keys": [
139
+ "annotation.human.coarse_action"
140
+ ],
141
+ "sin_cos_embedding_keys": null,
142
+ "mean_std_embedding_keys": null,
143
+ "action_configs": null
144
+ }
145
+ },
146
+ "gr1": {
147
+ "video": {
148
+ "delta_indices": [
149
+ 0
150
+ ],
151
+ "modality_keys": [
152
+ "ego_view_bg_crop_pad_res256_freq20"
153
+ ],
154
+ "sin_cos_embedding_keys": null,
155
+ "mean_std_embedding_keys": null,
156
+ "action_configs": null
157
+ },
158
+ "state": {
159
+ "delta_indices": [
160
+ 0
161
+ ],
162
+ "modality_keys": [
163
+ "left_arm",
164
+ "right_arm",
165
+ "left_hand",
166
+ "right_hand",
167
+ "waist"
168
+ ],
169
+ "sin_cos_embedding_keys": [
170
+ "left_arm",
171
+ "right_arm",
172
+ "left_hand",
173
+ "right_hand",
174
+ "waist"
175
+ ],
176
+ "mean_std_embedding_keys": null,
177
+ "action_configs": null
178
+ },
179
+ "action": {
180
+ "delta_indices": [
181
+ 0,
182
+ 1,
183
+ 2,
184
+ 3,
185
+ 4,
186
+ 5,
187
+ 6,
188
+ 7,
189
+ 8,
190
+ 9,
191
+ 10,
192
+ 11,
193
+ 12,
194
+ 13,
195
+ 14,
196
+ 15
197
+ ],
198
+ "modality_keys": [
199
+ "left_arm",
200
+ "right_arm",
201
+ "left_hand",
202
+ "right_hand",
203
+ "waist"
204
+ ],
205
+ "sin_cos_embedding_keys": null,
206
+ "mean_std_embedding_keys": null,
207
+ "action_configs": [
208
+ {
209
+ "rep": "RELATIVE",
210
+ "type": "NON_EEF",
211
+ "format": "DEFAULT",
212
+ "state_key": null
213
+ },
214
+ {
215
+ "rep": "RELATIVE",
216
+ "type": "NON_EEF",
217
+ "format": "DEFAULT",
218
+ "state_key": null
219
+ },
220
+ {
221
+ "rep": "RELATIVE",
222
+ "type": "NON_EEF",
223
+ "format": "DEFAULT",
224
+ "state_key": null
225
+ },
226
+ {
227
+ "rep": "RELATIVE",
228
+ "type": "NON_EEF",
229
+ "format": "DEFAULT",
230
+ "state_key": null
231
+ },
232
+ {
233
+ "rep": "ABSOLUTE",
234
+ "type": "NON_EEF",
235
+ "format": "DEFAULT",
236
+ "state_key": null
237
+ }
238
+ ]
239
+ },
240
+ "language": {
241
+ "delta_indices": [
242
+ 0
243
+ ],
244
+ "modality_keys": [
245
+ "task"
246
+ ],
247
+ "sin_cos_embedding_keys": null,
248
+ "mean_std_embedding_keys": null,
249
+ "action_configs": null
250
+ }
251
+ },
252
+ "robocasa_panda_omron": {
253
+ "video": {
254
+ "delta_indices": [
255
+ 0
256
+ ],
257
+ "modality_keys": [
258
+ "res256_image_side_0",
259
+ "res256_image_side_1",
260
+ "res256_image_wrist_0"
261
+ ],
262
+ "sin_cos_embedding_keys": null,
263
+ "mean_std_embedding_keys": null,
264
+ "action_configs": null
265
+ },
266
+ "state": {
267
+ "delta_indices": [
268
+ 0
269
+ ],
270
+ "modality_keys": [
271
+ "end_effector_position_relative",
272
+ "end_effector_rotation_relative",
273
+ "gripper_qpos",
274
+ "base_position",
275
+ "base_rotation"
276
+ ],
277
+ "sin_cos_embedding_keys": null,
278
+ "mean_std_embedding_keys": null,
279
+ "action_configs": null
280
+ },
281
+ "action": {
282
+ "delta_indices": [
283
+ 0,
284
+ 1,
285
+ 2,
286
+ 3,
287
+ 4,
288
+ 5,
289
+ 6,
290
+ 7,
291
+ 8,
292
+ 9,
293
+ 10,
294
+ 11,
295
+ 12,
296
+ 13,
297
+ 14,
298
+ 15
299
+ ],
300
+ "modality_keys": [
301
+ "end_effector_position",
302
+ "end_effector_rotation",
303
+ "gripper_close",
304
+ "base_motion",
305
+ "control_mode"
306
+ ],
307
+ "sin_cos_embedding_keys": null,
308
+ "mean_std_embedding_keys": null,
309
+ "action_configs": [
310
+ {
311
+ "rep": "ABSOLUTE",
312
+ "type": "NON_EEF",
313
+ "format": "DEFAULT",
314
+ "state_key": null
315
+ },
316
+ {
317
+ "rep": "ABSOLUTE",
318
+ "type": "NON_EEF",
319
+ "format": "DEFAULT",
320
+ "state_key": null
321
+ },
322
+ {
323
+ "rep": "ABSOLUTE",
324
+ "type": "NON_EEF",
325
+ "format": "DEFAULT",
326
+ "state_key": null
327
+ },
328
+ {
329
+ "rep": "ABSOLUTE",
330
+ "type": "NON_EEF",
331
+ "format": "DEFAULT",
332
+ "state_key": null
333
+ },
334
+ {
335
+ "rep": "ABSOLUTE",
336
+ "type": "NON_EEF",
337
+ "format": "DEFAULT",
338
+ "state_key": null
339
+ }
340
+ ]
341
+ },
342
+ "language": {
343
+ "delta_indices": [
344
+ 0
345
+ ],
346
+ "modality_keys": [
347
+ "annotation.human.action.task_description"
348
+ ],
349
+ "sin_cos_embedding_keys": null,
350
+ "mean_std_embedding_keys": null,
351
+ "action_configs": null
352
+ }
353
+ },
354
+ "new_embodiment": {
355
+ "video": {
356
+ "delta_indices": [
357
+ 0
358
+ ],
359
+ "modality_keys": [
360
+ "front",
361
+ "wrist"
362
+ ],
363
+ "sin_cos_embedding_keys": null,
364
+ "mean_std_embedding_keys": null,
365
+ "action_configs": null
366
+ },
367
+ "state": {
368
+ "delta_indices": [
369
+ 0
370
+ ],
371
+ "modality_keys": [
372
+ "single_arm",
373
+ "gripper"
374
+ ],
375
+ "sin_cos_embedding_keys": null,
376
+ "mean_std_embedding_keys": null,
377
+ "action_configs": null
378
+ },
379
+ "action": {
380
+ "delta_indices": [
381
+ 0,
382
+ 1,
383
+ 2,
384
+ 3,
385
+ 4,
386
+ 5,
387
+ 6,
388
+ 7,
389
+ 8,
390
+ 9,
391
+ 10,
392
+ 11,
393
+ 12,
394
+ 13,
395
+ 14,
396
+ 15
397
+ ],
398
+ "modality_keys": [
399
+ "single_arm",
400
+ "gripper"
401
+ ],
402
+ "sin_cos_embedding_keys": null,
403
+ "mean_std_embedding_keys": null,
404
+ "action_configs": [
405
+ {
406
+ "rep": "RELATIVE",
407
+ "type": "NON_EEF",
408
+ "format": "DEFAULT",
409
+ "state_key": null
410
+ },
411
+ {
412
+ "rep": "ABSOLUTE",
413
+ "type": "NON_EEF",
414
+ "format": "DEFAULT",
415
+ "state_key": null
416
+ }
417
+ ]
418
+ },
419
+ "language": {
420
+ "delta_indices": [
421
+ 0
422
+ ],
423
+ "modality_keys": [
424
+ "annotation.human.task_description"
425
+ ],
426
+ "sin_cos_embedding_keys": null,
427
+ "mean_std_embedding_keys": null,
428
+ "action_configs": null
429
+ }
430
+ }
431
+ },
432
+ "image_crop_size": null,
433
+ "image_target_size": null,
434
+ "use_albumentations": true,
435
+ "random_rotation_angle": null,
436
+ "color_jitter_params": {
437
+ "brightness": 0.3,
438
+ "contrast": 0.4,
439
+ "saturation": 0.5,
440
+ "hue": 0.08
441
+ },
442
+ "shortest_image_edge": 256,
443
+ "crop_fraction": 0.95,
444
+ "model_name": "nvidia/Eagle-Block2A-2B-v2",
445
+ "model_type": "eagle",
446
+ "formalize_language": true,
447
+ "max_state_dim": 128,
448
+ "max_action_dim": 128,
449
+ "max_action_horizon": 50,
450
+ "use_percentiles": false,
451
+ "clip_outliers": true,
452
+ "apply_sincos_state_encoding": true,
453
+ "use_relative_action": true
454
+ }
455
+ }
statistics.json ADDED
The diff for this file is too large to render. See raw diff
 
trainer_state.json ADDED
@@ -0,0 +1,3934 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 0.025,
6
+ "eval_steps": 500,
7
+ "global_step": 6500,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "grad_norm": 1.5970183610916138,
14
+ "learning_rate": 1.8e-06,
15
+ "loss": 1.0764,
16
+ "step": 10
17
+ },
18
+ {
19
+ "grad_norm": 0.9294151663780212,
20
+ "learning_rate": 3.8e-06,
21
+ "loss": 1.0659,
22
+ "step": 20
23
+ },
24
+ {
25
+ "grad_norm": 0.24522702395915985,
26
+ "learning_rate": 5.8e-06,
27
+ "loss": 1.0449,
28
+ "step": 30
29
+ },
30
+ {
31
+ "grad_norm": 0.2660885155200958,
32
+ "learning_rate": 7.8e-06,
33
+ "loss": 1.0464,
34
+ "step": 40
35
+ },
36
+ {
37
+ "grad_norm": 0.2017054259777069,
38
+ "learning_rate": 9.800000000000001e-06,
39
+ "loss": 1.0367,
40
+ "step": 50
41
+ },
42
+ {
43
+ "grad_norm": 0.2722417414188385,
44
+ "learning_rate": 1.18e-05,
45
+ "loss": 1.0338,
46
+ "step": 60
47
+ },
48
+ {
49
+ "grad_norm": 0.25059282779693604,
50
+ "learning_rate": 1.3800000000000002e-05,
51
+ "loss": 1.0364,
52
+ "step": 70
53
+ },
54
+ {
55
+ "grad_norm": 0.5216037034988403,
56
+ "learning_rate": 1.58e-05,
57
+ "loss": 1.0319,
58
+ "step": 80
59
+ },
60
+ {
61
+ "grad_norm": 1.4266352653503418,
62
+ "learning_rate": 1.78e-05,
63
+ "loss": 0.9991,
64
+ "step": 90
65
+ },
66
+ {
67
+ "grad_norm": 1.753671646118164,
68
+ "learning_rate": 1.9800000000000004e-05,
69
+ "loss": 0.9436,
70
+ "step": 100
71
+ },
72
+ {
73
+ "grad_norm": 1.8120691776275635,
74
+ "learning_rate": 2.18e-05,
75
+ "loss": 0.9,
76
+ "step": 110
77
+ },
78
+ {
79
+ "grad_norm": 2.7624964714050293,
80
+ "learning_rate": 2.38e-05,
81
+ "loss": 0.8231,
82
+ "step": 120
83
+ },
84
+ {
85
+ "grad_norm": 3.362637758255005,
86
+ "learning_rate": 2.58e-05,
87
+ "loss": 0.7328,
88
+ "step": 130
89
+ },
90
+ {
91
+ "grad_norm": 2.3826422691345215,
92
+ "learning_rate": 2.7800000000000005e-05,
93
+ "loss": 0.6657,
94
+ "step": 140
95
+ },
96
+ {
97
+ "grad_norm": 2.7328379154205322,
98
+ "learning_rate": 2.98e-05,
99
+ "loss": 0.5824,
100
+ "step": 150
101
+ },
102
+ {
103
+ "grad_norm": 2.083045244216919,
104
+ "learning_rate": 3.18e-05,
105
+ "loss": 0.4792,
106
+ "step": 160
107
+ },
108
+ {
109
+ "grad_norm": 2.2116315364837646,
110
+ "learning_rate": 3.38e-05,
111
+ "loss": 0.3948,
112
+ "step": 170
113
+ },
114
+ {
115
+ "grad_norm": 2.1600606441497803,
116
+ "learning_rate": 3.58e-05,
117
+ "loss": 0.3372,
118
+ "step": 180
119
+ },
120
+ {
121
+ "grad_norm": 2.114063024520874,
122
+ "learning_rate": 3.7800000000000004e-05,
123
+ "loss": 0.2888,
124
+ "step": 190
125
+ },
126
+ {
127
+ "grad_norm": 2.7655060291290283,
128
+ "learning_rate": 3.9800000000000005e-05,
129
+ "loss": 0.2676,
130
+ "step": 200
131
+ },
132
+ {
133
+ "grad_norm": 2.0653321743011475,
134
+ "learning_rate": 4.18e-05,
135
+ "loss": 0.2501,
136
+ "step": 210
137
+ },
138
+ {
139
+ "grad_norm": 1.653233528137207,
140
+ "learning_rate": 4.38e-05,
141
+ "loss": 0.2453,
142
+ "step": 220
143
+ },
144
+ {
145
+ "grad_norm": 1.624769687652588,
146
+ "learning_rate": 4.58e-05,
147
+ "loss": 0.2247,
148
+ "step": 230
149
+ },
150
+ {
151
+ "grad_norm": 1.4861382246017456,
152
+ "learning_rate": 4.78e-05,
153
+ "loss": 0.1982,
154
+ "step": 240
155
+ },
156
+ {
157
+ "grad_norm": 1.3590528964996338,
158
+ "learning_rate": 4.9800000000000004e-05,
159
+ "loss": 0.2075,
160
+ "step": 250
161
+ },
162
+ {
163
+ "grad_norm": 1.9476397037506104,
164
+ "learning_rate": 5.1800000000000005e-05,
165
+ "loss": 0.1913,
166
+ "step": 260
167
+ },
168
+ {
169
+ "grad_norm": 1.324093222618103,
170
+ "learning_rate": 5.380000000000001e-05,
171
+ "loss": 0.1952,
172
+ "step": 270
173
+ },
174
+ {
175
+ "grad_norm": 1.080151081085205,
176
+ "learning_rate": 5.580000000000001e-05,
177
+ "loss": 0.1771,
178
+ "step": 280
179
+ },
180
+ {
181
+ "grad_norm": 1.369262456893921,
182
+ "learning_rate": 5.7799999999999995e-05,
183
+ "loss": 0.1857,
184
+ "step": 290
185
+ },
186
+ {
187
+ "grad_norm": 1.3636747598648071,
188
+ "learning_rate": 5.9800000000000003e-05,
189
+ "loss": 0.1706,
190
+ "step": 300
191
+ },
192
+ {
193
+ "grad_norm": 1.040611982345581,
194
+ "learning_rate": 6.18e-05,
195
+ "loss": 0.1756,
196
+ "step": 310
197
+ },
198
+ {
199
+ "grad_norm": 1.0529470443725586,
200
+ "learning_rate": 6.38e-05,
201
+ "loss": 0.1593,
202
+ "step": 320
203
+ },
204
+ {
205
+ "grad_norm": 1.201231598854065,
206
+ "learning_rate": 6.58e-05,
207
+ "loss": 0.1551,
208
+ "step": 330
209
+ },
210
+ {
211
+ "grad_norm": 1.190171241760254,
212
+ "learning_rate": 6.780000000000001e-05,
213
+ "loss": 0.1581,
214
+ "step": 340
215
+ },
216
+ {
217
+ "grad_norm": 0.657278835773468,
218
+ "learning_rate": 6.98e-05,
219
+ "loss": 0.1464,
220
+ "step": 350
221
+ },
222
+ {
223
+ "grad_norm": 0.8992099165916443,
224
+ "learning_rate": 7.18e-05,
225
+ "loss": 0.1565,
226
+ "step": 360
227
+ },
228
+ {
229
+ "grad_norm": 0.8571988940238953,
230
+ "learning_rate": 7.38e-05,
231
+ "loss": 0.1402,
232
+ "step": 370
233
+ },
234
+ {
235
+ "grad_norm": 0.859052300453186,
236
+ "learning_rate": 7.58e-05,
237
+ "loss": 0.1499,
238
+ "step": 380
239
+ },
240
+ {
241
+ "grad_norm": 1.1119016408920288,
242
+ "learning_rate": 7.780000000000001e-05,
243
+ "loss": 0.1268,
244
+ "step": 390
245
+ },
246
+ {
247
+ "grad_norm": 0.8884002566337585,
248
+ "learning_rate": 7.98e-05,
249
+ "loss": 0.1296,
250
+ "step": 400
251
+ },
252
+ {
253
+ "grad_norm": 0.6597028970718384,
254
+ "learning_rate": 8.18e-05,
255
+ "loss": 0.1295,
256
+ "step": 410
257
+ },
258
+ {
259
+ "grad_norm": 0.8965606689453125,
260
+ "learning_rate": 8.38e-05,
261
+ "loss": 0.1312,
262
+ "step": 420
263
+ },
264
+ {
265
+ "grad_norm": 0.9830987453460693,
266
+ "learning_rate": 8.58e-05,
267
+ "loss": 0.1425,
268
+ "step": 430
269
+ },
270
+ {
271
+ "grad_norm": 1.0157232284545898,
272
+ "learning_rate": 8.78e-05,
273
+ "loss": 0.1355,
274
+ "step": 440
275
+ },
276
+ {
277
+ "grad_norm": 1.2113580703735352,
278
+ "learning_rate": 8.98e-05,
279
+ "loss": 0.1184,
280
+ "step": 450
281
+ },
282
+ {
283
+ "grad_norm": 0.6973419189453125,
284
+ "learning_rate": 9.180000000000001e-05,
285
+ "loss": 0.119,
286
+ "step": 460
287
+ },
288
+ {
289
+ "grad_norm": 0.7367122769355774,
290
+ "learning_rate": 9.38e-05,
291
+ "loss": 0.1292,
292
+ "step": 470
293
+ },
294
+ {
295
+ "grad_norm": 0.7014634609222412,
296
+ "learning_rate": 9.58e-05,
297
+ "loss": 0.1225,
298
+ "step": 480
299
+ },
300
+ {
301
+ "grad_norm": 0.6766982674598694,
302
+ "learning_rate": 9.78e-05,
303
+ "loss": 0.1196,
304
+ "step": 490
305
+ },
306
+ {
307
+ "grad_norm": 0.6201929450035095,
308
+ "learning_rate": 9.98e-05,
309
+ "loss": 0.1191,
310
+ "step": 500
311
+ },
312
+ {
313
+ "grad_norm": 0.6271793842315674,
314
+ "learning_rate": 3.6e-06,
315
+ "loss": 0.1153,
316
+ "step": 510
317
+ },
318
+ {
319
+ "grad_norm": 0.20930686593055725,
320
+ "learning_rate": 7.6e-06,
321
+ "loss": 0.0768,
322
+ "step": 520
323
+ },
324
+ {
325
+ "grad_norm": 0.143227219581604,
326
+ "learning_rate": 1.16e-05,
327
+ "loss": 0.0601,
328
+ "step": 530
329
+ },
330
+ {
331
+ "grad_norm": 0.1910770833492279,
332
+ "learning_rate": 1.56e-05,
333
+ "loss": 0.063,
334
+ "step": 540
335
+ },
336
+ {
337
+ "grad_norm": 0.36501529812812805,
338
+ "learning_rate": 1.9600000000000002e-05,
339
+ "loss": 0.0598,
340
+ "step": 550
341
+ },
342
+ {
343
+ "grad_norm": 0.29628098011016846,
344
+ "learning_rate": 2.36e-05,
345
+ "loss": 0.0599,
346
+ "step": 560
347
+ },
348
+ {
349
+ "grad_norm": 0.3480481505393982,
350
+ "learning_rate": 2.7600000000000003e-05,
351
+ "loss": 0.0651,
352
+ "step": 570
353
+ },
354
+ {
355
+ "grad_norm": 0.4538305103778839,
356
+ "learning_rate": 3.16e-05,
357
+ "loss": 0.0649,
358
+ "step": 580
359
+ },
360
+ {
361
+ "grad_norm": 0.5898908972740173,
362
+ "learning_rate": 3.56e-05,
363
+ "loss": 0.0692,
364
+ "step": 590
365
+ },
366
+ {
367
+ "grad_norm": 0.5158395171165466,
368
+ "learning_rate": 3.960000000000001e-05,
369
+ "loss": 0.0692,
370
+ "step": 600
371
+ },
372
+ {
373
+ "grad_norm": 0.5166841149330139,
374
+ "learning_rate": 4.36e-05,
375
+ "loss": 0.0702,
376
+ "step": 610
377
+ },
378
+ {
379
+ "grad_norm": 0.5158836841583252,
380
+ "learning_rate": 4.76e-05,
381
+ "loss": 0.0731,
382
+ "step": 620
383
+ },
384
+ {
385
+ "grad_norm": 0.6472628712654114,
386
+ "learning_rate": 5.16e-05,
387
+ "loss": 0.0771,
388
+ "step": 630
389
+ },
390
+ {
391
+ "grad_norm": 0.5659353733062744,
392
+ "learning_rate": 5.560000000000001e-05,
393
+ "loss": 0.0841,
394
+ "step": 640
395
+ },
396
+ {
397
+ "grad_norm": 0.6240392923355103,
398
+ "learning_rate": 5.96e-05,
399
+ "loss": 0.0847,
400
+ "step": 650
401
+ },
402
+ {
403
+ "grad_norm": 0.6373980641365051,
404
+ "learning_rate": 6.36e-05,
405
+ "loss": 0.0843,
406
+ "step": 660
407
+ },
408
+ {
409
+ "grad_norm": 0.6327357292175293,
410
+ "learning_rate": 6.76e-05,
411
+ "loss": 0.0934,
412
+ "step": 670
413
+ },
414
+ {
415
+ "grad_norm": 0.8802633285522461,
416
+ "learning_rate": 7.16e-05,
417
+ "loss": 0.0908,
418
+ "step": 680
419
+ },
420
+ {
421
+ "grad_norm": 0.6709054112434387,
422
+ "learning_rate": 7.560000000000001e-05,
423
+ "loss": 0.0934,
424
+ "step": 690
425
+ },
426
+ {
427
+ "grad_norm": 0.7937743663787842,
428
+ "learning_rate": 7.960000000000001e-05,
429
+ "loss": 0.0952,
430
+ "step": 700
431
+ },
432
+ {
433
+ "grad_norm": 0.6417607069015503,
434
+ "learning_rate": 8.36e-05,
435
+ "loss": 0.1026,
436
+ "step": 710
437
+ },
438
+ {
439
+ "grad_norm": 0.6258336305618286,
440
+ "learning_rate": 8.76e-05,
441
+ "loss": 0.0998,
442
+ "step": 720
443
+ },
444
+ {
445
+ "grad_norm": 0.7310349941253662,
446
+ "learning_rate": 9.16e-05,
447
+ "loss": 0.1048,
448
+ "step": 730
449
+ },
450
+ {
451
+ "grad_norm": 0.9520322680473328,
452
+ "learning_rate": 9.56e-05,
453
+ "loss": 0.1085,
454
+ "step": 740
455
+ },
456
+ {
457
+ "grad_norm": 0.5814223885536194,
458
+ "learning_rate": 9.960000000000001e-05,
459
+ "loss": 0.108,
460
+ "step": 750
461
+ },
462
+ {
463
+ "grad_norm": 0.7229575514793396,
464
+ "learning_rate": 9.999911419878559e-05,
465
+ "loss": 0.1092,
466
+ "step": 760
467
+ },
468
+ {
469
+ "grad_norm": 0.5426738858222961,
470
+ "learning_rate": 9.999605221019081e-05,
471
+ "loss": 0.1029,
472
+ "step": 770
473
+ },
474
+ {
475
+ "grad_norm": 0.7140430808067322,
476
+ "learning_rate": 9.999080323230761e-05,
477
+ "loss": 0.0989,
478
+ "step": 780
479
+ },
480
+ {
481
+ "grad_norm": 0.5421532392501831,
482
+ "learning_rate": 9.998336749474329e-05,
483
+ "loss": 0.0929,
484
+ "step": 790
485
+ },
486
+ {
487
+ "grad_norm": 0.6705226302146912,
488
+ "learning_rate": 9.997374532276107e-05,
489
+ "loss": 0.0941,
490
+ "step": 800
491
+ },
492
+ {
493
+ "grad_norm": 0.5059484839439392,
494
+ "learning_rate": 9.996193713726596e-05,
495
+ "loss": 0.0791,
496
+ "step": 810
497
+ },
498
+ {
499
+ "grad_norm": 0.6469954252243042,
500
+ "learning_rate": 9.994794345478624e-05,
501
+ "loss": 0.0901,
502
+ "step": 820
503
+ },
504
+ {
505
+ "grad_norm": 0.458099901676178,
506
+ "learning_rate": 9.99317648874509e-05,
507
+ "loss": 0.0849,
508
+ "step": 830
509
+ },
510
+ {
511
+ "grad_norm": 0.4811062514781952,
512
+ "learning_rate": 9.991340214296292e-05,
513
+ "loss": 0.0805,
514
+ "step": 840
515
+ },
516
+ {
517
+ "grad_norm": 0.5744126439094543,
518
+ "learning_rate": 9.989285602456819e-05,
519
+ "loss": 0.0938,
520
+ "step": 850
521
+ },
522
+ {
523
+ "grad_norm": 0.5527174472808838,
524
+ "learning_rate": 9.98701274310205e-05,
525
+ "loss": 0.0793,
526
+ "step": 860
527
+ },
528
+ {
529
+ "grad_norm": 0.5400684475898743,
530
+ "learning_rate": 9.984521735654218e-05,
531
+ "loss": 0.0748,
532
+ "step": 870
533
+ },
534
+ {
535
+ "grad_norm": 0.38753241300582886,
536
+ "learning_rate": 9.981812689078057e-05,
537
+ "loss": 0.0846,
538
+ "step": 880
539
+ },
540
+ {
541
+ "grad_norm": 0.5142819285392761,
542
+ "learning_rate": 9.978885721876041e-05,
543
+ "loss": 0.0837,
544
+ "step": 890
545
+ },
546
+ {
547
+ "grad_norm": 0.4644053876399994,
548
+ "learning_rate": 9.975740962083198e-05,
549
+ "loss": 0.0788,
550
+ "step": 900
551
+ },
552
+ {
553
+ "grad_norm": 0.5433564782142639,
554
+ "learning_rate": 9.972378547261504e-05,
555
+ "loss": 0.0812,
556
+ "step": 910
557
+ },
558
+ {
559
+ "grad_norm": 0.5788527131080627,
560
+ "learning_rate": 9.968798624493885e-05,
561
+ "loss": 0.0748,
562
+ "step": 920
563
+ },
564
+ {
565
+ "grad_norm": 0.7408686876296997,
566
+ "learning_rate": 9.965001350377753e-05,
567
+ "loss": 0.0766,
568
+ "step": 930
569
+ },
570
+ {
571
+ "grad_norm": 0.4285391867160797,
572
+ "learning_rate": 9.960986891018183e-05,
573
+ "loss": 0.0752,
574
+ "step": 940
575
+ },
576
+ {
577
+ "grad_norm": 0.5498768091201782,
578
+ "learning_rate": 9.95675542202063e-05,
579
+ "loss": 0.0752,
580
+ "step": 950
581
+ },
582
+ {
583
+ "grad_norm": 0.5009428262710571,
584
+ "learning_rate": 9.952307128483256e-05,
585
+ "loss": 0.0812,
586
+ "step": 960
587
+ },
588
+ {
589
+ "grad_norm": 0.43610042333602905,
590
+ "learning_rate": 9.947642204988835e-05,
591
+ "loss": 0.0729,
592
+ "step": 970
593
+ },
594
+ {
595
+ "grad_norm": 0.6121730804443359,
596
+ "learning_rate": 9.942760855596226e-05,
597
+ "loss": 0.0715,
598
+ "step": 980
599
+ },
600
+ {
601
+ "grad_norm": 0.31105107069015503,
602
+ "learning_rate": 9.937663293831471e-05,
603
+ "loss": 0.0736,
604
+ "step": 990
605
+ },
606
+ {
607
+ "grad_norm": 0.5373350977897644,
608
+ "learning_rate": 9.932349742678433e-05,
609
+ "loss": 0.0734,
610
+ "step": 1000
611
+ },
612
+ {
613
+ "grad_norm": 0.3666306138038635,
614
+ "learning_rate": 3.6e-06,
615
+ "loss": 0.0704,
616
+ "step": 1010
617
+ },
618
+ {
619
+ "grad_norm": 0.16294004023075104,
620
+ "learning_rate": 7.6e-06,
621
+ "loss": 0.0557,
622
+ "step": 1020
623
+ },
624
+ {
625
+ "grad_norm": 0.11897388100624084,
626
+ "learning_rate": 1.16e-05,
627
+ "loss": 0.0459,
628
+ "step": 1030
629
+ },
630
+ {
631
+ "grad_norm": 0.16593188047409058,
632
+ "learning_rate": 1.56e-05,
633
+ "loss": 0.0432,
634
+ "step": 1040
635
+ },
636
+ {
637
+ "grad_norm": 0.18971645832061768,
638
+ "learning_rate": 1.9600000000000002e-05,
639
+ "loss": 0.0453,
640
+ "step": 1050
641
+ },
642
+ {
643
+ "grad_norm": 0.294993132352829,
644
+ "learning_rate": 2.36e-05,
645
+ "loss": 0.0427,
646
+ "step": 1060
647
+ },
648
+ {
649
+ "grad_norm": 0.2616293728351593,
650
+ "learning_rate": 2.7600000000000003e-05,
651
+ "loss": 0.0446,
652
+ "step": 1070
653
+ },
654
+ {
655
+ "grad_norm": 0.3469824194908142,
656
+ "learning_rate": 3.16e-05,
657
+ "loss": 0.0439,
658
+ "step": 1080
659
+ },
660
+ {
661
+ "grad_norm": 0.3402693271636963,
662
+ "learning_rate": 3.56e-05,
663
+ "loss": 0.0433,
664
+ "step": 1090
665
+ },
666
+ {
667
+ "grad_norm": 0.39783069491386414,
668
+ "learning_rate": 3.960000000000001e-05,
669
+ "loss": 0.0491,
670
+ "step": 1100
671
+ },
672
+ {
673
+ "grad_norm": 0.37544241547584534,
674
+ "learning_rate": 4.36e-05,
675
+ "loss": 0.0509,
676
+ "step": 1110
677
+ },
678
+ {
679
+ "grad_norm": 0.4338155686855316,
680
+ "learning_rate": 4.76e-05,
681
+ "loss": 0.0473,
682
+ "step": 1120
683
+ },
684
+ {
685
+ "grad_norm": 0.33971983194351196,
686
+ "learning_rate": 5.16e-05,
687
+ "loss": 0.0518,
688
+ "step": 1130
689
+ },
690
+ {
691
+ "grad_norm": 0.39340782165527344,
692
+ "learning_rate": 5.560000000000001e-05,
693
+ "loss": 0.0501,
694
+ "step": 1140
695
+ },
696
+ {
697
+ "grad_norm": 0.4534987509250641,
698
+ "learning_rate": 5.96e-05,
699
+ "loss": 0.0568,
700
+ "step": 1150
701
+ },
702
+ {
703
+ "grad_norm": 0.5981581807136536,
704
+ "learning_rate": 6.36e-05,
705
+ "loss": 0.0559,
706
+ "step": 1160
707
+ },
708
+ {
709
+ "grad_norm": 0.3891669809818268,
710
+ "learning_rate": 6.76e-05,
711
+ "loss": 0.0559,
712
+ "step": 1170
713
+ },
714
+ {
715
+ "grad_norm": 0.47197505831718445,
716
+ "learning_rate": 7.16e-05,
717
+ "loss": 0.0619,
718
+ "step": 1180
719
+ },
720
+ {
721
+ "grad_norm": 0.4584357738494873,
722
+ "learning_rate": 7.560000000000001e-05,
723
+ "loss": 0.0618,
724
+ "step": 1190
725
+ },
726
+ {
727
+ "grad_norm": 0.5792739391326904,
728
+ "learning_rate": 7.960000000000001e-05,
729
+ "loss": 0.0663,
730
+ "step": 1200
731
+ },
732
+ {
733
+ "grad_norm": 0.3875551223754883,
734
+ "learning_rate": 8.36e-05,
735
+ "loss": 0.0652,
736
+ "step": 1210
737
+ },
738
+ {
739
+ "grad_norm": 0.3619835078716278,
740
+ "learning_rate": 8.76e-05,
741
+ "loss": 0.072,
742
+ "step": 1220
743
+ },
744
+ {
745
+ "grad_norm": 0.6116339564323425,
746
+ "learning_rate": 9.16e-05,
747
+ "loss": 0.0686,
748
+ "step": 1230
749
+ },
750
+ {
751
+ "grad_norm": 0.575858473777771,
752
+ "learning_rate": 9.56e-05,
753
+ "loss": 0.0721,
754
+ "step": 1240
755
+ },
756
+ {
757
+ "grad_norm": 0.5876694321632385,
758
+ "learning_rate": 9.960000000000001e-05,
759
+ "loss": 0.0774,
760
+ "step": 1250
761
+ },
762
+ {
763
+ "grad_norm": 0.4337020516395569,
764
+ "learning_rate": 9.999911419878559e-05,
765
+ "loss": 0.0761,
766
+ "step": 1260
767
+ },
768
+ {
769
+ "grad_norm": 0.5564613342285156,
770
+ "learning_rate": 9.999605221019081e-05,
771
+ "loss": 0.0694,
772
+ "step": 1270
773
+ },
774
+ {
775
+ "grad_norm": 0.45390748977661133,
776
+ "learning_rate": 9.999080323230761e-05,
777
+ "loss": 0.073,
778
+ "step": 1280
779
+ },
780
+ {
781
+ "grad_norm": 0.33817148208618164,
782
+ "learning_rate": 9.998336749474329e-05,
783
+ "loss": 0.067,
784
+ "step": 1290
785
+ },
786
+ {
787
+ "grad_norm": 0.4409405589103699,
788
+ "learning_rate": 9.997374532276107e-05,
789
+ "loss": 0.0682,
790
+ "step": 1300
791
+ },
792
+ {
793
+ "grad_norm": 0.4145369231700897,
794
+ "learning_rate": 9.996193713726596e-05,
795
+ "loss": 0.0673,
796
+ "step": 1310
797
+ },
798
+ {
799
+ "grad_norm": 0.4724181294441223,
800
+ "learning_rate": 9.994794345478624e-05,
801
+ "loss": 0.0665,
802
+ "step": 1320
803
+ },
804
+ {
805
+ "grad_norm": 0.5166686773300171,
806
+ "learning_rate": 9.99317648874509e-05,
807
+ "loss": 0.0671,
808
+ "step": 1330
809
+ },
810
+ {
811
+ "grad_norm": 0.41797006130218506,
812
+ "learning_rate": 9.991340214296292e-05,
813
+ "loss": 0.0614,
814
+ "step": 1340
815
+ },
816
+ {
817
+ "grad_norm": 0.364961177110672,
818
+ "learning_rate": 9.989285602456819e-05,
819
+ "loss": 0.0646,
820
+ "step": 1350
821
+ },
822
+ {
823
+ "grad_norm": 0.5224328637123108,
824
+ "learning_rate": 9.98701274310205e-05,
825
+ "loss": 0.0648,
826
+ "step": 1360
827
+ },
828
+ {
829
+ "grad_norm": 0.47416940331459045,
830
+ "learning_rate": 9.984521735654218e-05,
831
+ "loss": 0.0609,
832
+ "step": 1370
833
+ },
834
+ {
835
+ "grad_norm": 0.3529892861843109,
836
+ "learning_rate": 9.981812689078057e-05,
837
+ "loss": 0.0585,
838
+ "step": 1380
839
+ },
840
+ {
841
+ "grad_norm": 0.4784582853317261,
842
+ "learning_rate": 9.978885721876041e-05,
843
+ "loss": 0.0599,
844
+ "step": 1390
845
+ },
846
+ {
847
+ "grad_norm": 0.27717214822769165,
848
+ "learning_rate": 9.975740962083198e-05,
849
+ "loss": 0.0636,
850
+ "step": 1400
851
+ },
852
+ {
853
+ "grad_norm": 0.41375869512557983,
854
+ "learning_rate": 9.972378547261504e-05,
855
+ "loss": 0.0645,
856
+ "step": 1410
857
+ },
858
+ {
859
+ "grad_norm": 0.5045386552810669,
860
+ "learning_rate": 9.968798624493885e-05,
861
+ "loss": 0.0625,
862
+ "step": 1420
863
+ },
864
+ {
865
+ "grad_norm": 0.42626622319221497,
866
+ "learning_rate": 9.965001350377753e-05,
867
+ "loss": 0.0669,
868
+ "step": 1430
869
+ },
870
+ {
871
+ "grad_norm": 0.5226677656173706,
872
+ "learning_rate": 9.960986891018183e-05,
873
+ "loss": 0.062,
874
+ "step": 1440
875
+ },
876
+ {
877
+ "grad_norm": 0.5228267312049866,
878
+ "learning_rate": 9.95675542202063e-05,
879
+ "loss": 0.0637,
880
+ "step": 1450
881
+ },
882
+ {
883
+ "grad_norm": 0.4277467727661133,
884
+ "learning_rate": 9.952307128483256e-05,
885
+ "loss": 0.0596,
886
+ "step": 1460
887
+ },
888
+ {
889
+ "grad_norm": 0.40805479884147644,
890
+ "learning_rate": 9.947642204988835e-05,
891
+ "loss": 0.0623,
892
+ "step": 1470
893
+ },
894
+ {
895
+ "grad_norm": 0.5066496133804321,
896
+ "learning_rate": 9.942760855596226e-05,
897
+ "loss": 0.0608,
898
+ "step": 1480
899
+ },
900
+ {
901
+ "grad_norm": 0.46946775913238525,
902
+ "learning_rate": 9.937663293831471e-05,
903
+ "loss": 0.0629,
904
+ "step": 1490
905
+ },
906
+ {
907
+ "grad_norm": 0.4907722473144531,
908
+ "learning_rate": 9.932349742678433e-05,
909
+ "loss": 0.0562,
910
+ "step": 1500
911
+ },
912
+ {
913
+ "grad_norm": 0.3012191355228424,
914
+ "learning_rate": 3.6e-06,
915
+ "loss": 0.0513,
916
+ "step": 1510
917
+ },
918
+ {
919
+ "grad_norm": 0.11255031824111938,
920
+ "learning_rate": 7.6e-06,
921
+ "loss": 0.0429,
922
+ "step": 1520
923
+ },
924
+ {
925
+ "grad_norm": 0.10130707174539566,
926
+ "learning_rate": 1.16e-05,
927
+ "loss": 0.0368,
928
+ "step": 1530
929
+ },
930
+ {
931
+ "grad_norm": 0.11848820745944977,
932
+ "learning_rate": 1.56e-05,
933
+ "loss": 0.0345,
934
+ "step": 1540
935
+ },
936
+ {
937
+ "grad_norm": 0.1964358389377594,
938
+ "learning_rate": 1.9600000000000002e-05,
939
+ "loss": 0.0357,
940
+ "step": 1550
941
+ },
942
+ {
943
+ "grad_norm": 0.19960114359855652,
944
+ "learning_rate": 2.36e-05,
945
+ "loss": 0.0344,
946
+ "step": 1560
947
+ },
948
+ {
949
+ "grad_norm": 0.2515262961387634,
950
+ "learning_rate": 2.7600000000000003e-05,
951
+ "loss": 0.0364,
952
+ "step": 1570
953
+ },
954
+ {
955
+ "grad_norm": 0.30423256754875183,
956
+ "learning_rate": 3.16e-05,
957
+ "loss": 0.0353,
958
+ "step": 1580
959
+ },
960
+ {
961
+ "grad_norm": 0.3767169117927551,
962
+ "learning_rate": 3.56e-05,
963
+ "loss": 0.0362,
964
+ "step": 1590
965
+ },
966
+ {
967
+ "grad_norm": 0.2941502034664154,
968
+ "learning_rate": 3.960000000000001e-05,
969
+ "loss": 0.038,
970
+ "step": 1600
971
+ },
972
+ {
973
+ "grad_norm": 0.1843196004629135,
974
+ "learning_rate": 3.6e-06,
975
+ "loss": 0.034,
976
+ "step": 1610
977
+ },
978
+ {
979
+ "grad_norm": 0.09200790524482727,
980
+ "learning_rate": 7.6e-06,
981
+ "loss": 0.0297,
982
+ "step": 1620
983
+ },
984
+ {
985
+ "grad_norm": 0.12036135047674179,
986
+ "learning_rate": 1.16e-05,
987
+ "loss": 0.0296,
988
+ "step": 1630
989
+ },
990
+ {
991
+ "grad_norm": 0.17890624701976776,
992
+ "learning_rate": 1.56e-05,
993
+ "loss": 0.0309,
994
+ "step": 1640
995
+ },
996
+ {
997
+ "grad_norm": 0.3501648008823395,
998
+ "learning_rate": 1.9600000000000002e-05,
999
+ "loss": 0.0321,
1000
+ "step": 1650
1001
+ },
1002
+ {
1003
+ "grad_norm": 0.2992416322231293,
1004
+ "learning_rate": 2.36e-05,
1005
+ "loss": 0.0324,
1006
+ "step": 1660
1007
+ },
1008
+ {
1009
+ "grad_norm": 0.24689897894859314,
1010
+ "learning_rate": 2.7600000000000003e-05,
1011
+ "loss": 0.032,
1012
+ "step": 1670
1013
+ },
1014
+ {
1015
+ "grad_norm": 0.3009512424468994,
1016
+ "learning_rate": 3.16e-05,
1017
+ "loss": 0.0336,
1018
+ "step": 1680
1019
+ },
1020
+ {
1021
+ "grad_norm": 0.3029879927635193,
1022
+ "learning_rate": 3.56e-05,
1023
+ "loss": 0.0349,
1024
+ "step": 1690
1025
+ },
1026
+ {
1027
+ "grad_norm": 0.3682500123977661,
1028
+ "learning_rate": 3.960000000000001e-05,
1029
+ "loss": 0.0338,
1030
+ "step": 1700
1031
+ },
1032
+ {
1033
+ "grad_norm": 0.3186107575893402,
1034
+ "learning_rate": 4.36e-05,
1035
+ "loss": 0.0338,
1036
+ "step": 1710
1037
+ },
1038
+ {
1039
+ "grad_norm": 0.28322625160217285,
1040
+ "learning_rate": 4.76e-05,
1041
+ "loss": 0.038,
1042
+ "step": 1720
1043
+ },
1044
+ {
1045
+ "grad_norm": 0.321772962808609,
1046
+ "learning_rate": 5.16e-05,
1047
+ "loss": 0.0418,
1048
+ "step": 1730
1049
+ },
1050
+ {
1051
+ "grad_norm": 0.39493709802627563,
1052
+ "learning_rate": 5.560000000000001e-05,
1053
+ "loss": 0.0384,
1054
+ "step": 1740
1055
+ },
1056
+ {
1057
+ "grad_norm": 0.46459177136421204,
1058
+ "learning_rate": 5.96e-05,
1059
+ "loss": 0.0405,
1060
+ "step": 1750
1061
+ },
1062
+ {
1063
+ "grad_norm": 0.5326083302497864,
1064
+ "learning_rate": 6.36e-05,
1065
+ "loss": 0.0442,
1066
+ "step": 1760
1067
+ },
1068
+ {
1069
+ "grad_norm": 0.33989307284355164,
1070
+ "learning_rate": 6.76e-05,
1071
+ "loss": 0.0456,
1072
+ "step": 1770
1073
+ },
1074
+ {
1075
+ "grad_norm": 0.3888494372367859,
1076
+ "learning_rate": 7.16e-05,
1077
+ "loss": 0.0439,
1078
+ "step": 1780
1079
+ },
1080
+ {
1081
+ "grad_norm": 0.2806129455566406,
1082
+ "learning_rate": 7.560000000000001e-05,
1083
+ "loss": 0.0474,
1084
+ "step": 1790
1085
+ },
1086
+ {
1087
+ "grad_norm": 0.5664889216423035,
1088
+ "learning_rate": 7.960000000000001e-05,
1089
+ "loss": 0.0529,
1090
+ "step": 1800
1091
+ },
1092
+ {
1093
+ "grad_norm": 0.40685325860977173,
1094
+ "learning_rate": 8.36e-05,
1095
+ "loss": 0.0492,
1096
+ "step": 1810
1097
+ },
1098
+ {
1099
+ "grad_norm": 0.3915274441242218,
1100
+ "learning_rate": 8.76e-05,
1101
+ "loss": 0.0531,
1102
+ "step": 1820
1103
+ },
1104
+ {
1105
+ "grad_norm": 0.4390338063240051,
1106
+ "learning_rate": 9.16e-05,
1107
+ "loss": 0.0541,
1108
+ "step": 1830
1109
+ },
1110
+ {
1111
+ "grad_norm": 0.4535897970199585,
1112
+ "learning_rate": 9.56e-05,
1113
+ "loss": 0.0556,
1114
+ "step": 1840
1115
+ },
1116
+ {
1117
+ "grad_norm": 0.40557733178138733,
1118
+ "learning_rate": 9.960000000000001e-05,
1119
+ "loss": 0.0598,
1120
+ "step": 1850
1121
+ },
1122
+ {
1123
+ "grad_norm": 0.4307502806186676,
1124
+ "learning_rate": 9.999911419878559e-05,
1125
+ "loss": 0.0613,
1126
+ "step": 1860
1127
+ },
1128
+ {
1129
+ "grad_norm": 0.4397332966327667,
1130
+ "learning_rate": 9.999605221019081e-05,
1131
+ "loss": 0.057,
1132
+ "step": 1870
1133
+ },
1134
+ {
1135
+ "grad_norm": 0.4753943681716919,
1136
+ "learning_rate": 9.999080323230761e-05,
1137
+ "loss": 0.0609,
1138
+ "step": 1880
1139
+ },
1140
+ {
1141
+ "grad_norm": 0.44830775260925293,
1142
+ "learning_rate": 9.998336749474329e-05,
1143
+ "loss": 0.0551,
1144
+ "step": 1890
1145
+ },
1146
+ {
1147
+ "grad_norm": 0.3477669656276703,
1148
+ "learning_rate": 9.997374532276107e-05,
1149
+ "loss": 0.0515,
1150
+ "step": 1900
1151
+ },
1152
+ {
1153
+ "grad_norm": 0.5197297930717468,
1154
+ "learning_rate": 9.996193713726596e-05,
1155
+ "loss": 0.054,
1156
+ "step": 1910
1157
+ },
1158
+ {
1159
+ "grad_norm": 0.52423095703125,
1160
+ "learning_rate": 9.994794345478624e-05,
1161
+ "loss": 0.0534,
1162
+ "step": 1920
1163
+ },
1164
+ {
1165
+ "grad_norm": 0.38030654191970825,
1166
+ "learning_rate": 9.99317648874509e-05,
1167
+ "loss": 0.0529,
1168
+ "step": 1930
1169
+ },
1170
+ {
1171
+ "grad_norm": 0.6342213749885559,
1172
+ "learning_rate": 9.991340214296292e-05,
1173
+ "loss": 0.0529,
1174
+ "step": 1940
1175
+ },
1176
+ {
1177
+ "grad_norm": 0.48398685455322266,
1178
+ "learning_rate": 9.989285602456819e-05,
1179
+ "loss": 0.0536,
1180
+ "step": 1950
1181
+ },
1182
+ {
1183
+ "grad_norm": 0.43288710713386536,
1184
+ "learning_rate": 9.98701274310205e-05,
1185
+ "loss": 0.0538,
1186
+ "step": 1960
1187
+ },
1188
+ {
1189
+ "grad_norm": 0.45618921518325806,
1190
+ "learning_rate": 9.984521735654218e-05,
1191
+ "loss": 0.0541,
1192
+ "step": 1970
1193
+ },
1194
+ {
1195
+ "grad_norm": 0.595313549041748,
1196
+ "learning_rate": 9.981812689078057e-05,
1197
+ "loss": 0.055,
1198
+ "step": 1980
1199
+ },
1200
+ {
1201
+ "grad_norm": 0.37541764974594116,
1202
+ "learning_rate": 9.978885721876041e-05,
1203
+ "loss": 0.0561,
1204
+ "step": 1990
1205
+ },
1206
+ {
1207
+ "grad_norm": 0.3914823532104492,
1208
+ "learning_rate": 9.975740962083198e-05,
1209
+ "loss": 0.0542,
1210
+ "step": 2000
1211
+ },
1212
+ {
1213
+ "grad_norm": 0.48534271121025085,
1214
+ "learning_rate": 9.972378547261504e-05,
1215
+ "loss": 0.051,
1216
+ "step": 2010
1217
+ },
1218
+ {
1219
+ "grad_norm": 0.3523121178150177,
1220
+ "learning_rate": 9.968798624493885e-05,
1221
+ "loss": 0.0499,
1222
+ "step": 2020
1223
+ },
1224
+ {
1225
+ "grad_norm": 0.3841063678264618,
1226
+ "learning_rate": 9.965001350377753e-05,
1227
+ "loss": 0.0485,
1228
+ "step": 2030
1229
+ },
1230
+ {
1231
+ "grad_norm": 0.3822041451931,
1232
+ "learning_rate": 9.960986891018183e-05,
1233
+ "loss": 0.0523,
1234
+ "step": 2040
1235
+ },
1236
+ {
1237
+ "grad_norm": 0.3567885458469391,
1238
+ "learning_rate": 9.95675542202063e-05,
1239
+ "loss": 0.0489,
1240
+ "step": 2050
1241
+ },
1242
+ {
1243
+ "grad_norm": 0.43500715494155884,
1244
+ "learning_rate": 9.952307128483256e-05,
1245
+ "loss": 0.0516,
1246
+ "step": 2060
1247
+ },
1248
+ {
1249
+ "grad_norm": 0.415130078792572,
1250
+ "learning_rate": 9.947642204988835e-05,
1251
+ "loss": 0.0505,
1252
+ "step": 2070
1253
+ },
1254
+ {
1255
+ "grad_norm": 0.41638925671577454,
1256
+ "learning_rate": 9.942760855596226e-05,
1257
+ "loss": 0.0529,
1258
+ "step": 2080
1259
+ },
1260
+ {
1261
+ "grad_norm": 0.41729235649108887,
1262
+ "learning_rate": 9.937663293831471e-05,
1263
+ "loss": 0.0485,
1264
+ "step": 2090
1265
+ },
1266
+ {
1267
+ "grad_norm": 0.5248743295669556,
1268
+ "learning_rate": 9.932349742678433e-05,
1269
+ "loss": 0.0484,
1270
+ "step": 2100
1271
+ },
1272
+ {
1273
+ "grad_norm": 0.3727494776248932,
1274
+ "learning_rate": 3.6e-06,
1275
+ "loss": 0.0503,
1276
+ "step": 2110
1277
+ },
1278
+ {
1279
+ "grad_norm": 0.22962310910224915,
1280
+ "learning_rate": 7.6e-06,
1281
+ "loss": 0.0399,
1282
+ "step": 2120
1283
+ },
1284
+ {
1285
+ "grad_norm": 0.08213402330875397,
1286
+ "learning_rate": 1.16e-05,
1287
+ "loss": 0.0318,
1288
+ "step": 2130
1289
+ },
1290
+ {
1291
+ "grad_norm": 0.10316774249076843,
1292
+ "learning_rate": 1.56e-05,
1293
+ "loss": 0.0283,
1294
+ "step": 2140
1295
+ },
1296
+ {
1297
+ "grad_norm": 0.16202598810195923,
1298
+ "learning_rate": 1.9600000000000002e-05,
1299
+ "loss": 0.0291,
1300
+ "step": 2150
1301
+ },
1302
+ {
1303
+ "grad_norm": 0.2037431299686432,
1304
+ "learning_rate": 2.36e-05,
1305
+ "loss": 0.0285,
1306
+ "step": 2160
1307
+ },
1308
+ {
1309
+ "grad_norm": 0.21782545745372772,
1310
+ "learning_rate": 2.7600000000000003e-05,
1311
+ "loss": 0.0305,
1312
+ "step": 2170
1313
+ },
1314
+ {
1315
+ "grad_norm": 0.2840912640094757,
1316
+ "learning_rate": 3.16e-05,
1317
+ "loss": 0.0273,
1318
+ "step": 2180
1319
+ },
1320
+ {
1321
+ "grad_norm": 0.21943439543247223,
1322
+ "learning_rate": 3.56e-05,
1323
+ "loss": 0.0299,
1324
+ "step": 2190
1325
+ },
1326
+ {
1327
+ "grad_norm": 0.30279168486595154,
1328
+ "learning_rate": 3.960000000000001e-05,
1329
+ "loss": 0.0335,
1330
+ "step": 2200
1331
+ },
1332
+ {
1333
+ "grad_norm": 0.2775246500968933,
1334
+ "learning_rate": 4.36e-05,
1335
+ "loss": 0.0324,
1336
+ "step": 2210
1337
+ },
1338
+ {
1339
+ "grad_norm": 0.42877551913261414,
1340
+ "learning_rate": 4.76e-05,
1341
+ "loss": 0.034,
1342
+ "step": 2220
1343
+ },
1344
+ {
1345
+ "grad_norm": 0.3622698187828064,
1346
+ "learning_rate": 5.16e-05,
1347
+ "loss": 0.0304,
1348
+ "step": 2230
1349
+ },
1350
+ {
1351
+ "grad_norm": 0.3154076635837555,
1352
+ "learning_rate": 5.560000000000001e-05,
1353
+ "loss": 0.0343,
1354
+ "step": 2240
1355
+ },
1356
+ {
1357
+ "grad_norm": 0.40900129079818726,
1358
+ "learning_rate": 5.96e-05,
1359
+ "loss": 0.0365,
1360
+ "step": 2250
1361
+ },
1362
+ {
1363
+ "grad_norm": 0.2469077706336975,
1364
+ "learning_rate": 6.36e-05,
1365
+ "loss": 0.0342,
1366
+ "step": 2260
1367
+ },
1368
+ {
1369
+ "grad_norm": 0.3536086976528168,
1370
+ "learning_rate": 6.76e-05,
1371
+ "loss": 0.0345,
1372
+ "step": 2270
1373
+ },
1374
+ {
1375
+ "grad_norm": 0.3022139072418213,
1376
+ "learning_rate": 7.16e-05,
1377
+ "loss": 0.0396,
1378
+ "step": 2280
1379
+ },
1380
+ {
1381
+ "grad_norm": 0.322871595621109,
1382
+ "learning_rate": 7.560000000000001e-05,
1383
+ "loss": 0.041,
1384
+ "step": 2290
1385
+ },
1386
+ {
1387
+ "grad_norm": 0.36403512954711914,
1388
+ "learning_rate": 7.960000000000001e-05,
1389
+ "loss": 0.0438,
1390
+ "step": 2300
1391
+ },
1392
+ {
1393
+ "grad_norm": 0.38627511262893677,
1394
+ "learning_rate": 8.36e-05,
1395
+ "loss": 0.0444,
1396
+ "step": 2310
1397
+ },
1398
+ {
1399
+ "grad_norm": 0.46570056676864624,
1400
+ "learning_rate": 8.76e-05,
1401
+ "loss": 0.046,
1402
+ "step": 2320
1403
+ },
1404
+ {
1405
+ "grad_norm": 0.4484180808067322,
1406
+ "learning_rate": 9.16e-05,
1407
+ "loss": 0.0493,
1408
+ "step": 2330
1409
+ },
1410
+ {
1411
+ "grad_norm": 0.32608455419540405,
1412
+ "learning_rate": 9.56e-05,
1413
+ "loss": 0.0492,
1414
+ "step": 2340
1415
+ },
1416
+ {
1417
+ "grad_norm": 0.5241735577583313,
1418
+ "learning_rate": 9.960000000000001e-05,
1419
+ "loss": 0.0534,
1420
+ "step": 2350
1421
+ },
1422
+ {
1423
+ "grad_norm": 0.509925127029419,
1424
+ "learning_rate": 9.999911419878559e-05,
1425
+ "loss": 0.0506,
1426
+ "step": 2360
1427
+ },
1428
+ {
1429
+ "grad_norm": 0.41749557852745056,
1430
+ "learning_rate": 9.999605221019081e-05,
1431
+ "loss": 0.0491,
1432
+ "step": 2370
1433
+ },
1434
+ {
1435
+ "grad_norm": 0.41675058007240295,
1436
+ "learning_rate": 9.999080323230761e-05,
1437
+ "loss": 0.0523,
1438
+ "step": 2380
1439
+ },
1440
+ {
1441
+ "grad_norm": 0.43030524253845215,
1442
+ "learning_rate": 9.998336749474329e-05,
1443
+ "loss": 0.0516,
1444
+ "step": 2390
1445
+ },
1446
+ {
1447
+ "grad_norm": 0.40477266907691956,
1448
+ "learning_rate": 9.997374532276107e-05,
1449
+ "loss": 0.0465,
1450
+ "step": 2400
1451
+ },
1452
+ {
1453
+ "grad_norm": 0.37097233533859253,
1454
+ "learning_rate": 9.996193713726596e-05,
1455
+ "loss": 0.0486,
1456
+ "step": 2410
1457
+ },
1458
+ {
1459
+ "grad_norm": 0.3993120491504669,
1460
+ "learning_rate": 9.994794345478624e-05,
1461
+ "loss": 0.0483,
1462
+ "step": 2420
1463
+ },
1464
+ {
1465
+ "grad_norm": 0.3423318862915039,
1466
+ "learning_rate": 9.99317648874509e-05,
1467
+ "loss": 0.0432,
1468
+ "step": 2430
1469
+ },
1470
+ {
1471
+ "grad_norm": 0.41292425990104675,
1472
+ "learning_rate": 9.991340214296292e-05,
1473
+ "loss": 0.0482,
1474
+ "step": 2440
1475
+ },
1476
+ {
1477
+ "grad_norm": 0.3618304431438446,
1478
+ "learning_rate": 9.989285602456819e-05,
1479
+ "loss": 0.0445,
1480
+ "step": 2450
1481
+ },
1482
+ {
1483
+ "grad_norm": 0.2800253927707672,
1484
+ "learning_rate": 9.98701274310205e-05,
1485
+ "loss": 0.0472,
1486
+ "step": 2460
1487
+ },
1488
+ {
1489
+ "grad_norm": 0.47700509428977966,
1490
+ "learning_rate": 9.984521735654218e-05,
1491
+ "loss": 0.0479,
1492
+ "step": 2470
1493
+ },
1494
+ {
1495
+ "grad_norm": 0.3231373131275177,
1496
+ "learning_rate": 9.981812689078057e-05,
1497
+ "loss": 0.047,
1498
+ "step": 2480
1499
+ },
1500
+ {
1501
+ "grad_norm": 0.30088120698928833,
1502
+ "learning_rate": 9.978885721876041e-05,
1503
+ "loss": 0.0451,
1504
+ "step": 2490
1505
+ },
1506
+ {
1507
+ "grad_norm": 0.3034248352050781,
1508
+ "learning_rate": 9.975740962083198e-05,
1509
+ "loss": 0.0452,
1510
+ "step": 2500
1511
+ },
1512
+ {
1513
+ "grad_norm": 0.3968607187271118,
1514
+ "learning_rate": 9.972378547261504e-05,
1515
+ "loss": 0.0462,
1516
+ "step": 2510
1517
+ },
1518
+ {
1519
+ "grad_norm": 0.402818500995636,
1520
+ "learning_rate": 9.968798624493885e-05,
1521
+ "loss": 0.0452,
1522
+ "step": 2520
1523
+ },
1524
+ {
1525
+ "grad_norm": 0.4880514144897461,
1526
+ "learning_rate": 9.965001350377753e-05,
1527
+ "loss": 0.0462,
1528
+ "step": 2530
1529
+ },
1530
+ {
1531
+ "grad_norm": 0.5451019406318665,
1532
+ "learning_rate": 9.960986891018183e-05,
1533
+ "loss": 0.0414,
1534
+ "step": 2540
1535
+ },
1536
+ {
1537
+ "grad_norm": 0.39336031675338745,
1538
+ "learning_rate": 9.95675542202063e-05,
1539
+ "loss": 0.0468,
1540
+ "step": 2550
1541
+ },
1542
+ {
1543
+ "grad_norm": 0.3647398352622986,
1544
+ "learning_rate": 9.952307128483256e-05,
1545
+ "loss": 0.0463,
1546
+ "step": 2560
1547
+ },
1548
+ {
1549
+ "grad_norm": 0.36479389667510986,
1550
+ "learning_rate": 9.947642204988835e-05,
1551
+ "loss": 0.045,
1552
+ "step": 2570
1553
+ },
1554
+ {
1555
+ "grad_norm": 0.38387492299079895,
1556
+ "learning_rate": 9.942760855596226e-05,
1557
+ "loss": 0.0438,
1558
+ "step": 2580
1559
+ },
1560
+ {
1561
+ "grad_norm": 0.313623309135437,
1562
+ "learning_rate": 9.937663293831471e-05,
1563
+ "loss": 0.0379,
1564
+ "step": 2590
1565
+ },
1566
+ {
1567
+ "grad_norm": 0.38519930839538574,
1568
+ "learning_rate": 9.932349742678433e-05,
1569
+ "loss": 0.0462,
1570
+ "step": 2600
1571
+ },
1572
+ {
1573
+ "grad_norm": 0.2513759136199951,
1574
+ "learning_rate": 9.926820434569051e-05,
1575
+ "loss": 0.0419,
1576
+ "step": 2610
1577
+ },
1578
+ {
1579
+ "grad_norm": 0.43225133419036865,
1580
+ "learning_rate": 9.921075611373179e-05,
1581
+ "loss": 0.042,
1582
+ "step": 2620
1583
+ },
1584
+ {
1585
+ "grad_norm": 0.35011181235313416,
1586
+ "learning_rate": 9.915115524387988e-05,
1587
+ "loss": 0.0436,
1588
+ "step": 2630
1589
+ },
1590
+ {
1591
+ "grad_norm": 0.4772772789001465,
1592
+ "learning_rate": 9.908940434326997e-05,
1593
+ "loss": 0.0441,
1594
+ "step": 2640
1595
+ },
1596
+ {
1597
+ "grad_norm": 0.5008149743080139,
1598
+ "learning_rate": 9.902550611308645e-05,
1599
+ "loss": 0.0418,
1600
+ "step": 2650
1601
+ },
1602
+ {
1603
+ "grad_norm": 0.33304187655448914,
1604
+ "learning_rate": 9.895946334844494e-05,
1605
+ "loss": 0.044,
1606
+ "step": 2660
1607
+ },
1608
+ {
1609
+ "grad_norm": 0.3896394371986389,
1610
+ "learning_rate": 9.889127893826989e-05,
1611
+ "loss": 0.0429,
1612
+ "step": 2670
1613
+ },
1614
+ {
1615
+ "grad_norm": 0.384151816368103,
1616
+ "learning_rate": 9.882095586516831e-05,
1617
+ "loss": 0.0404,
1618
+ "step": 2680
1619
+ },
1620
+ {
1621
+ "grad_norm": 0.5263709425926208,
1622
+ "learning_rate": 9.874849720529921e-05,
1623
+ "loss": 0.0414,
1624
+ "step": 2690
1625
+ },
1626
+ {
1627
+ "grad_norm": 0.37322402000427246,
1628
+ "learning_rate": 9.867390612823914e-05,
1629
+ "loss": 0.0408,
1630
+ "step": 2700
1631
+ },
1632
+ {
1633
+ "grad_norm": 0.3406134247779846,
1634
+ "learning_rate": 3.6e-06,
1635
+ "loss": 0.0418,
1636
+ "step": 2710
1637
+ },
1638
+ {
1639
+ "grad_norm": 0.09609717130661011,
1640
+ "learning_rate": 7.6e-06,
1641
+ "loss": 0.0316,
1642
+ "step": 2720
1643
+ },
1644
+ {
1645
+ "grad_norm": 0.07473892718553543,
1646
+ "learning_rate": 1.16e-05,
1647
+ "loss": 0.0268,
1648
+ "step": 2730
1649
+ },
1650
+ {
1651
+ "grad_norm": 0.09371735900640488,
1652
+ "learning_rate": 1.56e-05,
1653
+ "loss": 0.0261,
1654
+ "step": 2740
1655
+ },
1656
+ {
1657
+ "grad_norm": 0.09075760841369629,
1658
+ "learning_rate": 1.9600000000000002e-05,
1659
+ "loss": 0.0263,
1660
+ "step": 2750
1661
+ },
1662
+ {
1663
+ "grad_norm": 0.21899884939193726,
1664
+ "learning_rate": 2.36e-05,
1665
+ "loss": 0.0246,
1666
+ "step": 2760
1667
+ },
1668
+ {
1669
+ "grad_norm": 0.20407100021839142,
1670
+ "learning_rate": 2.7600000000000003e-05,
1671
+ "loss": 0.0241,
1672
+ "step": 2770
1673
+ },
1674
+ {
1675
+ "grad_norm": 0.25961631536483765,
1676
+ "learning_rate": 3.16e-05,
1677
+ "loss": 0.0262,
1678
+ "step": 2780
1679
+ },
1680
+ {
1681
+ "grad_norm": 0.23574396967887878,
1682
+ "learning_rate": 3.56e-05,
1683
+ "loss": 0.029,
1684
+ "step": 2790
1685
+ },
1686
+ {
1687
+ "grad_norm": 0.20600852370262146,
1688
+ "learning_rate": 3.960000000000001e-05,
1689
+ "loss": 0.0292,
1690
+ "step": 2800
1691
+ },
1692
+ {
1693
+ "grad_norm": 0.28286001086235046,
1694
+ "learning_rate": 4.36e-05,
1695
+ "loss": 0.0287,
1696
+ "step": 2810
1697
+ },
1698
+ {
1699
+ "grad_norm": 0.33955004811286926,
1700
+ "learning_rate": 4.76e-05,
1701
+ "loss": 0.0283,
1702
+ "step": 2820
1703
+ },
1704
+ {
1705
+ "grad_norm": 0.3014861047267914,
1706
+ "learning_rate": 5.16e-05,
1707
+ "loss": 0.0284,
1708
+ "step": 2830
1709
+ },
1710
+ {
1711
+ "grad_norm": 0.3722647726535797,
1712
+ "learning_rate": 5.560000000000001e-05,
1713
+ "loss": 0.0303,
1714
+ "step": 2840
1715
+ },
1716
+ {
1717
+ "grad_norm": 0.2521559000015259,
1718
+ "learning_rate": 5.96e-05,
1719
+ "loss": 0.0303,
1720
+ "step": 2850
1721
+ },
1722
+ {
1723
+ "grad_norm": 0.3782460391521454,
1724
+ "learning_rate": 6.36e-05,
1725
+ "loss": 0.0321,
1726
+ "step": 2860
1727
+ },
1728
+ {
1729
+ "grad_norm": 0.45622745156288147,
1730
+ "learning_rate": 6.76e-05,
1731
+ "loss": 0.0342,
1732
+ "step": 2870
1733
+ },
1734
+ {
1735
+ "grad_norm": 0.32308587431907654,
1736
+ "learning_rate": 7.16e-05,
1737
+ "loss": 0.0312,
1738
+ "step": 2880
1739
+ },
1740
+ {
1741
+ "grad_norm": 0.3646230399608612,
1742
+ "learning_rate": 7.560000000000001e-05,
1743
+ "loss": 0.0347,
1744
+ "step": 2890
1745
+ },
1746
+ {
1747
+ "grad_norm": 0.38201573491096497,
1748
+ "learning_rate": 7.960000000000001e-05,
1749
+ "loss": 0.0352,
1750
+ "step": 2900
1751
+ },
1752
+ {
1753
+ "grad_norm": 0.43542519211769104,
1754
+ "learning_rate": 8.36e-05,
1755
+ "loss": 0.0388,
1756
+ "step": 2910
1757
+ },
1758
+ {
1759
+ "grad_norm": 0.4268929362297058,
1760
+ "learning_rate": 8.76e-05,
1761
+ "loss": 0.0382,
1762
+ "step": 2920
1763
+ },
1764
+ {
1765
+ "grad_norm": 0.4492916166782379,
1766
+ "learning_rate": 9.16e-05,
1767
+ "loss": 0.0399,
1768
+ "step": 2930
1769
+ },
1770
+ {
1771
+ "grad_norm": 0.4167806804180145,
1772
+ "learning_rate": 9.56e-05,
1773
+ "loss": 0.0419,
1774
+ "step": 2940
1775
+ },
1776
+ {
1777
+ "grad_norm": 0.48346272110939026,
1778
+ "learning_rate": 9.960000000000001e-05,
1779
+ "loss": 0.0424,
1780
+ "step": 2950
1781
+ },
1782
+ {
1783
+ "grad_norm": 0.34249964356422424,
1784
+ "learning_rate": 9.999911419878559e-05,
1785
+ "loss": 0.0451,
1786
+ "step": 2960
1787
+ },
1788
+ {
1789
+ "grad_norm": 0.4727078974246979,
1790
+ "learning_rate": 9.999605221019081e-05,
1791
+ "loss": 0.0408,
1792
+ "step": 2970
1793
+ },
1794
+ {
1795
+ "grad_norm": 0.4595201909542084,
1796
+ "learning_rate": 9.999080323230761e-05,
1797
+ "loss": 0.0448,
1798
+ "step": 2980
1799
+ },
1800
+ {
1801
+ "grad_norm": 0.5211357474327087,
1802
+ "learning_rate": 9.998336749474329e-05,
1803
+ "loss": 0.0404,
1804
+ "step": 2990
1805
+ },
1806
+ {
1807
+ "grad_norm": 0.5116234421730042,
1808
+ "learning_rate": 9.997374532276107e-05,
1809
+ "loss": 0.0419,
1810
+ "step": 3000
1811
+ },
1812
+ {
1813
+ "grad_norm": 0.3019302785396576,
1814
+ "learning_rate": 9.996193713726596e-05,
1815
+ "loss": 0.0394,
1816
+ "step": 3010
1817
+ },
1818
+ {
1819
+ "grad_norm": 0.4081250727176666,
1820
+ "learning_rate": 9.994794345478624e-05,
1821
+ "loss": 0.0399,
1822
+ "step": 3020
1823
+ },
1824
+ {
1825
+ "grad_norm": 0.26774004101753235,
1826
+ "learning_rate": 9.99317648874509e-05,
1827
+ "loss": 0.0408,
1828
+ "step": 3030
1829
+ },
1830
+ {
1831
+ "grad_norm": 0.2589474618434906,
1832
+ "learning_rate": 9.991340214296292e-05,
1833
+ "loss": 0.0406,
1834
+ "step": 3040
1835
+ },
1836
+ {
1837
+ "grad_norm": 0.514599621295929,
1838
+ "learning_rate": 9.989285602456819e-05,
1839
+ "loss": 0.0402,
1840
+ "step": 3050
1841
+ },
1842
+ {
1843
+ "grad_norm": 0.40104562044143677,
1844
+ "learning_rate": 9.98701274310205e-05,
1845
+ "loss": 0.0406,
1846
+ "step": 3060
1847
+ },
1848
+ {
1849
+ "grad_norm": 0.36765149235725403,
1850
+ "learning_rate": 9.984521735654218e-05,
1851
+ "loss": 0.0394,
1852
+ "step": 3070
1853
+ },
1854
+ {
1855
+ "grad_norm": 0.33816102147102356,
1856
+ "learning_rate": 9.981812689078057e-05,
1857
+ "loss": 0.0412,
1858
+ "step": 3080
1859
+ },
1860
+ {
1861
+ "grad_norm": 0.32110002636909485,
1862
+ "learning_rate": 9.978885721876041e-05,
1863
+ "loss": 0.0371,
1864
+ "step": 3090
1865
+ },
1866
+ {
1867
+ "grad_norm": 0.3860984146595001,
1868
+ "learning_rate": 9.975740962083198e-05,
1869
+ "loss": 0.0405,
1870
+ "step": 3100
1871
+ },
1872
+ {
1873
+ "grad_norm": 0.26341062784194946,
1874
+ "learning_rate": 9.972378547261504e-05,
1875
+ "loss": 0.0393,
1876
+ "step": 3110
1877
+ },
1878
+ {
1879
+ "grad_norm": 0.4155246615409851,
1880
+ "learning_rate": 9.968798624493885e-05,
1881
+ "loss": 0.0388,
1882
+ "step": 3120
1883
+ },
1884
+ {
1885
+ "grad_norm": 0.49742957949638367,
1886
+ "learning_rate": 9.965001350377753e-05,
1887
+ "loss": 0.0391,
1888
+ "step": 3130
1889
+ },
1890
+ {
1891
+ "grad_norm": 0.26576173305511475,
1892
+ "learning_rate": 9.960986891018183e-05,
1893
+ "loss": 0.0371,
1894
+ "step": 3140
1895
+ },
1896
+ {
1897
+ "grad_norm": 0.3517167270183563,
1898
+ "learning_rate": 9.95675542202063e-05,
1899
+ "loss": 0.0394,
1900
+ "step": 3150
1901
+ },
1902
+ {
1903
+ "grad_norm": 0.320377916097641,
1904
+ "learning_rate": 9.952307128483256e-05,
1905
+ "loss": 0.0401,
1906
+ "step": 3160
1907
+ },
1908
+ {
1909
+ "grad_norm": 0.2738504707813263,
1910
+ "learning_rate": 9.947642204988835e-05,
1911
+ "loss": 0.0383,
1912
+ "step": 3170
1913
+ },
1914
+ {
1915
+ "grad_norm": 0.4829009473323822,
1916
+ "learning_rate": 9.942760855596226e-05,
1917
+ "loss": 0.0392,
1918
+ "step": 3180
1919
+ },
1920
+ {
1921
+ "grad_norm": 0.42097535729408264,
1922
+ "learning_rate": 9.937663293831471e-05,
1923
+ "loss": 0.0404,
1924
+ "step": 3190
1925
+ },
1926
+ {
1927
+ "grad_norm": 0.45917344093322754,
1928
+ "learning_rate": 9.932349742678433e-05,
1929
+ "loss": 0.0419,
1930
+ "step": 3200
1931
+ },
1932
+ {
1933
+ "grad_norm": 0.36991745233535767,
1934
+ "learning_rate": 2.25e-06,
1935
+ "loss": 0.0393,
1936
+ "step": 3210
1937
+ },
1938
+ {
1939
+ "grad_norm": 0.19931316375732422,
1940
+ "learning_rate": 4.75e-06,
1941
+ "loss": 0.0316,
1942
+ "step": 3220
1943
+ },
1944
+ {
1945
+ "grad_norm": 0.09721539169549942,
1946
+ "learning_rate": 7.25e-06,
1947
+ "loss": 0.0254,
1948
+ "step": 3230
1949
+ },
1950
+ {
1951
+ "grad_norm": 0.08070161193609238,
1952
+ "learning_rate": 9.750000000000002e-06,
1953
+ "loss": 0.0228,
1954
+ "step": 3240
1955
+ },
1956
+ {
1957
+ "grad_norm": 0.09927989542484283,
1958
+ "learning_rate": 1.225e-05,
1959
+ "loss": 0.0251,
1960
+ "step": 3250
1961
+ },
1962
+ {
1963
+ "grad_norm": 0.07708446681499481,
1964
+ "learning_rate": 1.475e-05,
1965
+ "loss": 0.0249,
1966
+ "step": 3260
1967
+ },
1968
+ {
1969
+ "grad_norm": 0.12243490666151047,
1970
+ "learning_rate": 1.725e-05,
1971
+ "loss": 0.0208,
1972
+ "step": 3270
1973
+ },
1974
+ {
1975
+ "grad_norm": 0.16835889220237732,
1976
+ "learning_rate": 1.9750000000000002e-05,
1977
+ "loss": 0.023,
1978
+ "step": 3280
1979
+ },
1980
+ {
1981
+ "grad_norm": 0.12951454520225525,
1982
+ "learning_rate": 2.2250000000000002e-05,
1983
+ "loss": 0.0211,
1984
+ "step": 3290
1985
+ },
1986
+ {
1987
+ "grad_norm": 0.17981648445129395,
1988
+ "learning_rate": 2.4750000000000002e-05,
1989
+ "loss": 0.0216,
1990
+ "step": 3300
1991
+ },
1992
+ {
1993
+ "grad_norm": 0.10566560924053192,
1994
+ "learning_rate": 2.25e-06,
1995
+ "loss": 0.0243,
1996
+ "step": 3310
1997
+ },
1998
+ {
1999
+ "grad_norm": 0.07440933585166931,
2000
+ "learning_rate": 4.75e-06,
2001
+ "loss": 0.0236,
2002
+ "step": 3320
2003
+ },
2004
+ {
2005
+ "grad_norm": 0.06981145590543747,
2006
+ "learning_rate": 7.25e-06,
2007
+ "loss": 0.0201,
2008
+ "step": 3330
2009
+ },
2010
+ {
2011
+ "grad_norm": 0.09702398627996445,
2012
+ "learning_rate": 9.750000000000002e-06,
2013
+ "loss": 0.0197,
2014
+ "step": 3340
2015
+ },
2016
+ {
2017
+ "grad_norm": 0.09483855962753296,
2018
+ "learning_rate": 1.225e-05,
2019
+ "loss": 0.0189,
2020
+ "step": 3350
2021
+ },
2022
+ {
2023
+ "grad_norm": 0.10017610341310501,
2024
+ "learning_rate": 1.475e-05,
2025
+ "loss": 0.022,
2026
+ "step": 3360
2027
+ },
2028
+ {
2029
+ "grad_norm": 0.1346549093723297,
2030
+ "learning_rate": 1.725e-05,
2031
+ "loss": 0.019,
2032
+ "step": 3370
2033
+ },
2034
+ {
2035
+ "grad_norm": 0.15081147849559784,
2036
+ "learning_rate": 1.9750000000000002e-05,
2037
+ "loss": 0.0223,
2038
+ "step": 3380
2039
+ },
2040
+ {
2041
+ "grad_norm": 0.22095446288585663,
2042
+ "learning_rate": 2.2250000000000002e-05,
2043
+ "loss": 0.0221,
2044
+ "step": 3390
2045
+ },
2046
+ {
2047
+ "grad_norm": 0.15094400942325592,
2048
+ "learning_rate": 2.4750000000000002e-05,
2049
+ "loss": 0.0211,
2050
+ "step": 3400
2051
+ },
2052
+ {
2053
+ "grad_norm": 0.21096032857894897,
2054
+ "learning_rate": 2.725e-05,
2055
+ "loss": 0.0231,
2056
+ "step": 3410
2057
+ },
2058
+ {
2059
+ "grad_norm": 0.23008853197097778,
2060
+ "learning_rate": 2.975e-05,
2061
+ "loss": 0.0219,
2062
+ "step": 3420
2063
+ },
2064
+ {
2065
+ "grad_norm": 0.21590107679367065,
2066
+ "learning_rate": 3.2250000000000005e-05,
2067
+ "loss": 0.0223,
2068
+ "step": 3430
2069
+ },
2070
+ {
2071
+ "grad_norm": 0.31127309799194336,
2072
+ "learning_rate": 3.475e-05,
2073
+ "loss": 0.0232,
2074
+ "step": 3440
2075
+ },
2076
+ {
2077
+ "grad_norm": 0.1888926923274994,
2078
+ "learning_rate": 3.7250000000000004e-05,
2079
+ "loss": 0.0211,
2080
+ "step": 3450
2081
+ },
2082
+ {
2083
+ "grad_norm": 0.224850594997406,
2084
+ "learning_rate": 3.9750000000000004e-05,
2085
+ "loss": 0.0235,
2086
+ "step": 3460
2087
+ },
2088
+ {
2089
+ "grad_norm": 0.25683915615081787,
2090
+ "learning_rate": 4.2250000000000004e-05,
2091
+ "loss": 0.023,
2092
+ "step": 3470
2093
+ },
2094
+ {
2095
+ "grad_norm": 0.4701042175292969,
2096
+ "learning_rate": 4.4750000000000004e-05,
2097
+ "loss": 0.0251,
2098
+ "step": 3480
2099
+ },
2100
+ {
2101
+ "grad_norm": 0.2404465228319168,
2102
+ "learning_rate": 4.7249999999999997e-05,
2103
+ "loss": 0.0236,
2104
+ "step": 3490
2105
+ },
2106
+ {
2107
+ "grad_norm": 0.30311474204063416,
2108
+ "learning_rate": 4.975e-05,
2109
+ "loss": 0.0241,
2110
+ "step": 3500
2111
+ },
2112
+ {
2113
+ "grad_norm": 0.3277303874492645,
2114
+ "learning_rate": 5.2249999999999996e-05,
2115
+ "loss": 0.0252,
2116
+ "step": 3510
2117
+ },
2118
+ {
2119
+ "grad_norm": 0.3229980766773224,
2120
+ "learning_rate": 5.475e-05,
2121
+ "loss": 0.0253,
2122
+ "step": 3520
2123
+ },
2124
+ {
2125
+ "grad_norm": 0.4051625728607178,
2126
+ "learning_rate": 5.725e-05,
2127
+ "loss": 0.0239,
2128
+ "step": 3530
2129
+ },
2130
+ {
2131
+ "grad_norm": 0.3571256995201111,
2132
+ "learning_rate": 5.975000000000001e-05,
2133
+ "loss": 0.0272,
2134
+ "step": 3540
2135
+ },
2136
+ {
2137
+ "grad_norm": 0.34256404638290405,
2138
+ "learning_rate": 6.225000000000001e-05,
2139
+ "loss": 0.0273,
2140
+ "step": 3550
2141
+ },
2142
+ {
2143
+ "grad_norm": 0.3582518398761749,
2144
+ "learning_rate": 6.475e-05,
2145
+ "loss": 0.029,
2146
+ "step": 3560
2147
+ },
2148
+ {
2149
+ "grad_norm": 0.2795099914073944,
2150
+ "learning_rate": 6.725000000000001e-05,
2151
+ "loss": 0.0283,
2152
+ "step": 3570
2153
+ },
2154
+ {
2155
+ "grad_norm": 0.3371533453464508,
2156
+ "learning_rate": 6.975e-05,
2157
+ "loss": 0.0298,
2158
+ "step": 3580
2159
+ },
2160
+ {
2161
+ "grad_norm": 0.3718169331550598,
2162
+ "learning_rate": 7.225000000000001e-05,
2163
+ "loss": 0.0315,
2164
+ "step": 3590
2165
+ },
2166
+ {
2167
+ "grad_norm": 0.41186198592185974,
2168
+ "learning_rate": 7.475000000000001e-05,
2169
+ "loss": 0.0304,
2170
+ "step": 3600
2171
+ },
2172
+ {
2173
+ "grad_norm": 0.3523057699203491,
2174
+ "learning_rate": 2.25e-06,
2175
+ "loss": 0.0352,
2176
+ "step": 3610
2177
+ },
2178
+ {
2179
+ "grad_norm": 0.18908748030662537,
2180
+ "learning_rate": 4.75e-06,
2181
+ "loss": 0.0313,
2182
+ "step": 3620
2183
+ },
2184
+ {
2185
+ "grad_norm": 0.08770550787448883,
2186
+ "learning_rate": 7.25e-06,
2187
+ "loss": 0.0199,
2188
+ "step": 3630
2189
+ },
2190
+ {
2191
+ "grad_norm": 0.059360720217227936,
2192
+ "learning_rate": 9.750000000000002e-06,
2193
+ "loss": 0.0217,
2194
+ "step": 3640
2195
+ },
2196
+ {
2197
+ "grad_norm": 0.08034844696521759,
2198
+ "learning_rate": 1.225e-05,
2199
+ "loss": 0.0208,
2200
+ "step": 3650
2201
+ },
2202
+ {
2203
+ "grad_norm": 0.10670112818479538,
2204
+ "learning_rate": 1.475e-05,
2205
+ "loss": 0.0206,
2206
+ "step": 3660
2207
+ },
2208
+ {
2209
+ "grad_norm": 0.11115647107362747,
2210
+ "learning_rate": 1.725e-05,
2211
+ "loss": 0.0174,
2212
+ "step": 3670
2213
+ },
2214
+ {
2215
+ "grad_norm": 0.12775209546089172,
2216
+ "learning_rate": 1.9750000000000002e-05,
2217
+ "loss": 0.0201,
2218
+ "step": 3680
2219
+ },
2220
+ {
2221
+ "grad_norm": 0.16139353811740875,
2222
+ "learning_rate": 2.2250000000000002e-05,
2223
+ "loss": 0.0203,
2224
+ "step": 3690
2225
+ },
2226
+ {
2227
+ "grad_norm": 0.16247326135635376,
2228
+ "learning_rate": 2.4750000000000002e-05,
2229
+ "loss": 0.0186,
2230
+ "step": 3700
2231
+ },
2232
+ {
2233
+ "grad_norm": 0.17848622798919678,
2234
+ "learning_rate": 2.725e-05,
2235
+ "loss": 0.0183,
2236
+ "step": 3710
2237
+ },
2238
+ {
2239
+ "grad_norm": 0.17426474392414093,
2240
+ "learning_rate": 2.975e-05,
2241
+ "loss": 0.0186,
2242
+ "step": 3720
2243
+ },
2244
+ {
2245
+ "grad_norm": 0.2004312127828598,
2246
+ "learning_rate": 3.2250000000000005e-05,
2247
+ "loss": 0.0208,
2248
+ "step": 3730
2249
+ },
2250
+ {
2251
+ "grad_norm": 0.2544923424720764,
2252
+ "learning_rate": 3.475e-05,
2253
+ "loss": 0.0203,
2254
+ "step": 3740
2255
+ },
2256
+ {
2257
+ "grad_norm": 0.24687324464321136,
2258
+ "learning_rate": 3.7250000000000004e-05,
2259
+ "loss": 0.0205,
2260
+ "step": 3750
2261
+ },
2262
+ {
2263
+ "grad_norm": 0.24185478687286377,
2264
+ "learning_rate": 3.9750000000000004e-05,
2265
+ "loss": 0.0208,
2266
+ "step": 3760
2267
+ },
2268
+ {
2269
+ "grad_norm": 0.2701793313026428,
2270
+ "learning_rate": 4.2250000000000004e-05,
2271
+ "loss": 0.0206,
2272
+ "step": 3770
2273
+ },
2274
+ {
2275
+ "grad_norm": 0.2676536738872528,
2276
+ "learning_rate": 4.4750000000000004e-05,
2277
+ "loss": 0.0235,
2278
+ "step": 3780
2279
+ },
2280
+ {
2281
+ "grad_norm": 0.2788873612880707,
2282
+ "learning_rate": 4.7249999999999997e-05,
2283
+ "loss": 0.0226,
2284
+ "step": 3790
2285
+ },
2286
+ {
2287
+ "grad_norm": 0.2759779393672943,
2288
+ "learning_rate": 4.975e-05,
2289
+ "loss": 0.0231,
2290
+ "step": 3800
2291
+ },
2292
+ {
2293
+ "grad_norm": 0.24446116387844086,
2294
+ "learning_rate": 5.2249999999999996e-05,
2295
+ "loss": 0.0224,
2296
+ "step": 3810
2297
+ },
2298
+ {
2299
+ "grad_norm": 0.3492976427078247,
2300
+ "learning_rate": 5.475e-05,
2301
+ "loss": 0.024,
2302
+ "step": 3820
2303
+ },
2304
+ {
2305
+ "grad_norm": 0.28700438141822815,
2306
+ "learning_rate": 5.725e-05,
2307
+ "loss": 0.0276,
2308
+ "step": 3830
2309
+ },
2310
+ {
2311
+ "grad_norm": 0.31673601269721985,
2312
+ "learning_rate": 5.975000000000001e-05,
2313
+ "loss": 0.0263,
2314
+ "step": 3840
2315
+ },
2316
+ {
2317
+ "grad_norm": 0.4141864478588104,
2318
+ "learning_rate": 6.225000000000001e-05,
2319
+ "loss": 0.0276,
2320
+ "step": 3850
2321
+ },
2322
+ {
2323
+ "grad_norm": 0.2552778720855713,
2324
+ "learning_rate": 6.475e-05,
2325
+ "loss": 0.0279,
2326
+ "step": 3860
2327
+ },
2328
+ {
2329
+ "grad_norm": 0.3868294060230255,
2330
+ "learning_rate": 6.725000000000001e-05,
2331
+ "loss": 0.0264,
2332
+ "step": 3870
2333
+ },
2334
+ {
2335
+ "grad_norm": 0.3118395507335663,
2336
+ "learning_rate": 6.975e-05,
2337
+ "loss": 0.0299,
2338
+ "step": 3880
2339
+ },
2340
+ {
2341
+ "grad_norm": 0.3634006381034851,
2342
+ "learning_rate": 7.225000000000001e-05,
2343
+ "loss": 0.0305,
2344
+ "step": 3890
2345
+ },
2346
+ {
2347
+ "grad_norm": 0.3221040666103363,
2348
+ "learning_rate": 7.475000000000001e-05,
2349
+ "loss": 0.0286,
2350
+ "step": 3900
2351
+ },
2352
+ {
2353
+ "grad_norm": 0.2916862666606903,
2354
+ "learning_rate": 2.25e-06,
2355
+ "loss": 0.0317,
2356
+ "step": 3910
2357
+ },
2358
+ {
2359
+ "grad_norm": 0.14725710451602936,
2360
+ "learning_rate": 4.75e-06,
2361
+ "loss": 0.0246,
2362
+ "step": 3920
2363
+ },
2364
+ {
2365
+ "grad_norm": 0.08059115707874298,
2366
+ "learning_rate": 7.25e-06,
2367
+ "loss": 0.0201,
2368
+ "step": 3930
2369
+ },
2370
+ {
2371
+ "grad_norm": 0.08749918639659882,
2372
+ "learning_rate": 9.750000000000002e-06,
2373
+ "loss": 0.0192,
2374
+ "step": 3940
2375
+ },
2376
+ {
2377
+ "grad_norm": 0.0790024921298027,
2378
+ "learning_rate": 1.225e-05,
2379
+ "loss": 0.0198,
2380
+ "step": 3950
2381
+ },
2382
+ {
2383
+ "grad_norm": 0.09417396783828735,
2384
+ "learning_rate": 1.475e-05,
2385
+ "loss": 0.0177,
2386
+ "step": 3960
2387
+ },
2388
+ {
2389
+ "grad_norm": 0.10084370523691177,
2390
+ "learning_rate": 1.725e-05,
2391
+ "loss": 0.0191,
2392
+ "step": 3970
2393
+ },
2394
+ {
2395
+ "grad_norm": 0.1147816851735115,
2396
+ "learning_rate": 1.9750000000000002e-05,
2397
+ "loss": 0.019,
2398
+ "step": 3980
2399
+ },
2400
+ {
2401
+ "grad_norm": 0.12255968898534775,
2402
+ "learning_rate": 2.2250000000000002e-05,
2403
+ "loss": 0.0208,
2404
+ "step": 3990
2405
+ },
2406
+ {
2407
+ "grad_norm": 0.21064911782741547,
2408
+ "learning_rate": 2.4750000000000002e-05,
2409
+ "loss": 0.0178,
2410
+ "step": 4000
2411
+ },
2412
+ {
2413
+ "grad_norm": 0.16038502752780914,
2414
+ "learning_rate": 2.25e-06,
2415
+ "loss": 0.0163,
2416
+ "step": 4010
2417
+ },
2418
+ {
2419
+ "grad_norm": 0.06728145480155945,
2420
+ "learning_rate": 4.75e-06,
2421
+ "loss": 0.0173,
2422
+ "step": 4020
2423
+ },
2424
+ {
2425
+ "grad_norm": 0.08970823884010315,
2426
+ "learning_rate": 7.25e-06,
2427
+ "loss": 0.0163,
2428
+ "step": 4030
2429
+ },
2430
+ {
2431
+ "grad_norm": 0.08368533849716187,
2432
+ "learning_rate": 9.750000000000002e-06,
2433
+ "loss": 0.0167,
2434
+ "step": 4040
2435
+ },
2436
+ {
2437
+ "grad_norm": 0.14921842515468597,
2438
+ "learning_rate": 1.225e-05,
2439
+ "loss": 0.0188,
2440
+ "step": 4050
2441
+ },
2442
+ {
2443
+ "grad_norm": 0.11368093639612198,
2444
+ "learning_rate": 1.475e-05,
2445
+ "loss": 0.0163,
2446
+ "step": 4060
2447
+ },
2448
+ {
2449
+ "grad_norm": 0.11728593707084656,
2450
+ "learning_rate": 1.725e-05,
2451
+ "loss": 0.0161,
2452
+ "step": 4070
2453
+ },
2454
+ {
2455
+ "grad_norm": 0.13769982755184174,
2456
+ "learning_rate": 1.9750000000000002e-05,
2457
+ "loss": 0.0179,
2458
+ "step": 4080
2459
+ },
2460
+ {
2461
+ "grad_norm": 0.13639125227928162,
2462
+ "learning_rate": 2.2250000000000002e-05,
2463
+ "loss": 0.0178,
2464
+ "step": 4090
2465
+ },
2466
+ {
2467
+ "grad_norm": 0.18457946181297302,
2468
+ "learning_rate": 2.4750000000000002e-05,
2469
+ "loss": 0.0181,
2470
+ "step": 4100
2471
+ },
2472
+ {
2473
+ "grad_norm": 0.11619122326374054,
2474
+ "learning_rate": 2.25e-06,
2475
+ "loss": 0.0168,
2476
+ "step": 4110
2477
+ },
2478
+ {
2479
+ "grad_norm": 0.07324390113353729,
2480
+ "learning_rate": 4.75e-06,
2481
+ "loss": 0.0155,
2482
+ "step": 4120
2483
+ },
2484
+ {
2485
+ "grad_norm": 0.06126878410577774,
2486
+ "learning_rate": 7.25e-06,
2487
+ "loss": 0.0153,
2488
+ "step": 4130
2489
+ },
2490
+ {
2491
+ "grad_norm": 0.0816902294754982,
2492
+ "learning_rate": 9.750000000000002e-06,
2493
+ "loss": 0.0156,
2494
+ "step": 4140
2495
+ },
2496
+ {
2497
+ "grad_norm": 0.10470571368932724,
2498
+ "learning_rate": 1.225e-05,
2499
+ "loss": 0.0164,
2500
+ "step": 4150
2501
+ },
2502
+ {
2503
+ "grad_norm": 0.14720933139324188,
2504
+ "learning_rate": 1.475e-05,
2505
+ "loss": 0.0161,
2506
+ "step": 4160
2507
+ },
2508
+ {
2509
+ "grad_norm": 0.1340453177690506,
2510
+ "learning_rate": 1.725e-05,
2511
+ "loss": 0.0159,
2512
+ "step": 4170
2513
+ },
2514
+ {
2515
+ "grad_norm": 0.17479538917541504,
2516
+ "learning_rate": 1.9750000000000002e-05,
2517
+ "loss": 0.0168,
2518
+ "step": 4180
2519
+ },
2520
+ {
2521
+ "grad_norm": 0.20140662789344788,
2522
+ "learning_rate": 2.2250000000000002e-05,
2523
+ "loss": 0.0153,
2524
+ "step": 4190
2525
+ },
2526
+ {
2527
+ "grad_norm": 0.16525106132030487,
2528
+ "learning_rate": 2.4750000000000002e-05,
2529
+ "loss": 0.0165,
2530
+ "step": 4200
2531
+ },
2532
+ {
2533
+ "grad_norm": 0.20493212342262268,
2534
+ "learning_rate": 2.725e-05,
2535
+ "loss": 0.0177,
2536
+ "step": 4210
2537
+ },
2538
+ {
2539
+ "grad_norm": 0.18822354078292847,
2540
+ "learning_rate": 2.975e-05,
2541
+ "loss": 0.017,
2542
+ "step": 4220
2543
+ },
2544
+ {
2545
+ "grad_norm": 0.21991147100925446,
2546
+ "learning_rate": 3.2250000000000005e-05,
2547
+ "loss": 0.0212,
2548
+ "step": 4230
2549
+ },
2550
+ {
2551
+ "grad_norm": 0.1739887148141861,
2552
+ "learning_rate": 3.475e-05,
2553
+ "loss": 0.018,
2554
+ "step": 4240
2555
+ },
2556
+ {
2557
+ "grad_norm": 0.20195457339286804,
2558
+ "learning_rate": 3.7250000000000004e-05,
2559
+ "loss": 0.0204,
2560
+ "step": 4250
2561
+ },
2562
+ {
2563
+ "grad_norm": 0.27041324973106384,
2564
+ "learning_rate": 3.9750000000000004e-05,
2565
+ "loss": 0.0195,
2566
+ "step": 4260
2567
+ },
2568
+ {
2569
+ "grad_norm": 0.22696758806705475,
2570
+ "learning_rate": 4.2250000000000004e-05,
2571
+ "loss": 0.0214,
2572
+ "step": 4270
2573
+ },
2574
+ {
2575
+ "grad_norm": 0.3410264551639557,
2576
+ "learning_rate": 4.4750000000000004e-05,
2577
+ "loss": 0.0218,
2578
+ "step": 4280
2579
+ },
2580
+ {
2581
+ "grad_norm": 0.298494428396225,
2582
+ "learning_rate": 4.7249999999999997e-05,
2583
+ "loss": 0.023,
2584
+ "step": 4290
2585
+ },
2586
+ {
2587
+ "grad_norm": 0.30843472480773926,
2588
+ "learning_rate": 4.975e-05,
2589
+ "loss": 0.0213,
2590
+ "step": 4300
2591
+ },
2592
+ {
2593
+ "grad_norm": 0.32909199595451355,
2594
+ "learning_rate": 5.2249999999999996e-05,
2595
+ "loss": 0.0229,
2596
+ "step": 4310
2597
+ },
2598
+ {
2599
+ "grad_norm": 0.3116457462310791,
2600
+ "learning_rate": 5.475e-05,
2601
+ "loss": 0.0236,
2602
+ "step": 4320
2603
+ },
2604
+ {
2605
+ "grad_norm": 0.2727232277393341,
2606
+ "learning_rate": 5.725e-05,
2607
+ "loss": 0.0244,
2608
+ "step": 4330
2609
+ },
2610
+ {
2611
+ "grad_norm": 0.23119600117206573,
2612
+ "learning_rate": 5.975000000000001e-05,
2613
+ "loss": 0.0258,
2614
+ "step": 4340
2615
+ },
2616
+ {
2617
+ "grad_norm": 0.26668670773506165,
2618
+ "learning_rate": 6.225000000000001e-05,
2619
+ "loss": 0.024,
2620
+ "step": 4350
2621
+ },
2622
+ {
2623
+ "grad_norm": 0.36657702922821045,
2624
+ "learning_rate": 6.475e-05,
2625
+ "loss": 0.0267,
2626
+ "step": 4360
2627
+ },
2628
+ {
2629
+ "grad_norm": 0.24812264740467072,
2630
+ "learning_rate": 6.725000000000001e-05,
2631
+ "loss": 0.0274,
2632
+ "step": 4370
2633
+ },
2634
+ {
2635
+ "grad_norm": 0.459659606218338,
2636
+ "learning_rate": 6.975e-05,
2637
+ "loss": 0.0266,
2638
+ "step": 4380
2639
+ },
2640
+ {
2641
+ "grad_norm": 0.2510148584842682,
2642
+ "learning_rate": 7.225000000000001e-05,
2643
+ "loss": 0.029,
2644
+ "step": 4390
2645
+ },
2646
+ {
2647
+ "grad_norm": 0.4088396728038788,
2648
+ "learning_rate": 7.475000000000001e-05,
2649
+ "loss": 0.0279,
2650
+ "step": 4400
2651
+ },
2652
+ {
2653
+ "grad_norm": 0.34848520159721375,
2654
+ "learning_rate": 2.25e-06,
2655
+ "loss": 0.0284,
2656
+ "step": 4410
2657
+ },
2658
+ {
2659
+ "grad_norm": 0.15743011236190796,
2660
+ "learning_rate": 4.75e-06,
2661
+ "loss": 0.025,
2662
+ "step": 4420
2663
+ },
2664
+ {
2665
+ "grad_norm": 0.08282707631587982,
2666
+ "learning_rate": 7.25e-06,
2667
+ "loss": 0.0207,
2668
+ "step": 4430
2669
+ },
2670
+ {
2671
+ "grad_norm": 0.09306411445140839,
2672
+ "learning_rate": 9.750000000000002e-06,
2673
+ "loss": 0.0194,
2674
+ "step": 4440
2675
+ },
2676
+ {
2677
+ "grad_norm": 0.07907520979642868,
2678
+ "learning_rate": 1.225e-05,
2679
+ "loss": 0.0185,
2680
+ "step": 4450
2681
+ },
2682
+ {
2683
+ "grad_norm": 0.09091110527515411,
2684
+ "learning_rate": 1.475e-05,
2685
+ "loss": 0.0178,
2686
+ "step": 4460
2687
+ },
2688
+ {
2689
+ "grad_norm": 0.14218714833259583,
2690
+ "learning_rate": 1.725e-05,
2691
+ "loss": 0.0185,
2692
+ "step": 4470
2693
+ },
2694
+ {
2695
+ "grad_norm": 0.12567996978759766,
2696
+ "learning_rate": 1.9750000000000002e-05,
2697
+ "loss": 0.017,
2698
+ "step": 4480
2699
+ },
2700
+ {
2701
+ "grad_norm": 0.16725608706474304,
2702
+ "learning_rate": 2.2250000000000002e-05,
2703
+ "loss": 0.0179,
2704
+ "step": 4490
2705
+ },
2706
+ {
2707
+ "grad_norm": 0.19683462381362915,
2708
+ "learning_rate": 2.4750000000000002e-05,
2709
+ "loss": 0.0192,
2710
+ "step": 4500
2711
+ },
2712
+ {
2713
+ "grad_norm": 0.21441160142421722,
2714
+ "learning_rate": 2.725e-05,
2715
+ "loss": 0.0209,
2716
+ "step": 4510
2717
+ },
2718
+ {
2719
+ "grad_norm": 0.2019820213317871,
2720
+ "learning_rate": 2.975e-05,
2721
+ "loss": 0.0186,
2722
+ "step": 4520
2723
+ },
2724
+ {
2725
+ "grad_norm": 0.19397051632404327,
2726
+ "learning_rate": 3.2250000000000005e-05,
2727
+ "loss": 0.0185,
2728
+ "step": 4530
2729
+ },
2730
+ {
2731
+ "grad_norm": 0.19159729778766632,
2732
+ "learning_rate": 3.475e-05,
2733
+ "loss": 0.0188,
2734
+ "step": 4540
2735
+ },
2736
+ {
2737
+ "grad_norm": 0.18088988959789276,
2738
+ "learning_rate": 3.7250000000000004e-05,
2739
+ "loss": 0.0179,
2740
+ "step": 4550
2741
+ },
2742
+ {
2743
+ "grad_norm": 0.19023217260837555,
2744
+ "learning_rate": 3.9750000000000004e-05,
2745
+ "loss": 0.0194,
2746
+ "step": 4560
2747
+ },
2748
+ {
2749
+ "grad_norm": 0.24779464304447174,
2750
+ "learning_rate": 4.2250000000000004e-05,
2751
+ "loss": 0.0182,
2752
+ "step": 4570
2753
+ },
2754
+ {
2755
+ "grad_norm": 0.35198694467544556,
2756
+ "learning_rate": 4.4750000000000004e-05,
2757
+ "loss": 0.0221,
2758
+ "step": 4580
2759
+ },
2760
+ {
2761
+ "grad_norm": 0.2919461727142334,
2762
+ "learning_rate": 4.7249999999999997e-05,
2763
+ "loss": 0.0206,
2764
+ "step": 4590
2765
+ },
2766
+ {
2767
+ "grad_norm": 0.14702706038951874,
2768
+ "learning_rate": 4.975e-05,
2769
+ "loss": 0.0233,
2770
+ "step": 4600
2771
+ },
2772
+ {
2773
+ "grad_norm": 0.46422693133354187,
2774
+ "learning_rate": 5.2249999999999996e-05,
2775
+ "loss": 0.0241,
2776
+ "step": 4610
2777
+ },
2778
+ {
2779
+ "grad_norm": 0.3457808196544647,
2780
+ "learning_rate": 5.475e-05,
2781
+ "loss": 0.0258,
2782
+ "step": 4620
2783
+ },
2784
+ {
2785
+ "grad_norm": 0.36458754539489746,
2786
+ "learning_rate": 5.725e-05,
2787
+ "loss": 0.0255,
2788
+ "step": 4630
2789
+ },
2790
+ {
2791
+ "grad_norm": 0.2495424449443817,
2792
+ "learning_rate": 5.975000000000001e-05,
2793
+ "loss": 0.0255,
2794
+ "step": 4640
2795
+ },
2796
+ {
2797
+ "grad_norm": 0.2907949388027191,
2798
+ "learning_rate": 6.225000000000001e-05,
2799
+ "loss": 0.0248,
2800
+ "step": 4650
2801
+ },
2802
+ {
2803
+ "grad_norm": 0.312218576669693,
2804
+ "learning_rate": 6.475e-05,
2805
+ "loss": 0.0232,
2806
+ "step": 4660
2807
+ },
2808
+ {
2809
+ "grad_norm": 0.32994410395622253,
2810
+ "learning_rate": 6.725000000000001e-05,
2811
+ "loss": 0.0284,
2812
+ "step": 4670
2813
+ },
2814
+ {
2815
+ "grad_norm": 0.39620542526245117,
2816
+ "learning_rate": 6.975e-05,
2817
+ "loss": 0.0286,
2818
+ "step": 4680
2819
+ },
2820
+ {
2821
+ "grad_norm": 0.35751959681510925,
2822
+ "learning_rate": 7.225000000000001e-05,
2823
+ "loss": 0.0259,
2824
+ "step": 4690
2825
+ },
2826
+ {
2827
+ "grad_norm": 0.3610899746417999,
2828
+ "learning_rate": 7.475000000000001e-05,
2829
+ "loss": 0.0289,
2830
+ "step": 4700
2831
+ },
2832
+ {
2833
+ "grad_norm": 0.38666731119155884,
2834
+ "learning_rate": 7.725e-05,
2835
+ "loss": 0.0278,
2836
+ "step": 4710
2837
+ },
2838
+ {
2839
+ "grad_norm": 0.3191392421722412,
2840
+ "learning_rate": 7.975e-05,
2841
+ "loss": 0.0299,
2842
+ "step": 4720
2843
+ },
2844
+ {
2845
+ "grad_norm": 0.2874530255794525,
2846
+ "learning_rate": 8.225000000000001e-05,
2847
+ "loss": 0.0306,
2848
+ "step": 4730
2849
+ },
2850
+ {
2851
+ "grad_norm": 0.282899409532547,
2852
+ "learning_rate": 8.475000000000001e-05,
2853
+ "loss": 0.029,
2854
+ "step": 4740
2855
+ },
2856
+ {
2857
+ "grad_norm": 0.39327189326286316,
2858
+ "learning_rate": 8.725e-05,
2859
+ "loss": 0.0306,
2860
+ "step": 4750
2861
+ },
2862
+ {
2863
+ "grad_norm": 0.41812261939048767,
2864
+ "learning_rate": 8.975e-05,
2865
+ "loss": 0.0343,
2866
+ "step": 4760
2867
+ },
2868
+ {
2869
+ "grad_norm": 0.37506914138793945,
2870
+ "learning_rate": 9.225e-05,
2871
+ "loss": 0.0304,
2872
+ "step": 4770
2873
+ },
2874
+ {
2875
+ "grad_norm": 0.34700652956962585,
2876
+ "learning_rate": 9.475e-05,
2877
+ "loss": 0.0337,
2878
+ "step": 4780
2879
+ },
2880
+ {
2881
+ "grad_norm": 0.39856013655662537,
2882
+ "learning_rate": 9.725e-05,
2883
+ "loss": 0.0334,
2884
+ "step": 4790
2885
+ },
2886
+ {
2887
+ "grad_norm": 0.3455595076084137,
2888
+ "learning_rate": 9.975000000000001e-05,
2889
+ "loss": 0.0355,
2890
+ "step": 4800
2891
+ },
2892
+ {
2893
+ "grad_norm": 0.32341066002845764,
2894
+ "learning_rate": 2.25e-06,
2895
+ "loss": 0.0319,
2896
+ "step": 4810
2897
+ },
2898
+ {
2899
+ "grad_norm": 0.18348988890647888,
2900
+ "learning_rate": 4.75e-06,
2901
+ "loss": 0.0278,
2902
+ "step": 4820
2903
+ },
2904
+ {
2905
+ "grad_norm": 0.0759195014834404,
2906
+ "learning_rate": 7.25e-06,
2907
+ "loss": 0.0205,
2908
+ "step": 4830
2909
+ },
2910
+ {
2911
+ "grad_norm": 0.06178135424852371,
2912
+ "learning_rate": 9.750000000000002e-06,
2913
+ "loss": 0.0207,
2914
+ "step": 4840
2915
+ },
2916
+ {
2917
+ "grad_norm": 0.061087287962436676,
2918
+ "learning_rate": 1.225e-05,
2919
+ "loss": 0.0191,
2920
+ "step": 4850
2921
+ },
2922
+ {
2923
+ "grad_norm": 0.08582450449466705,
2924
+ "learning_rate": 1.475e-05,
2925
+ "loss": 0.0178,
2926
+ "step": 4860
2927
+ },
2928
+ {
2929
+ "grad_norm": 0.11223307996988297,
2930
+ "learning_rate": 1.725e-05,
2931
+ "loss": 0.0187,
2932
+ "step": 4870
2933
+ },
2934
+ {
2935
+ "grad_norm": 0.11273021996021271,
2936
+ "learning_rate": 1.9750000000000002e-05,
2937
+ "loss": 0.0181,
2938
+ "step": 4880
2939
+ },
2940
+ {
2941
+ "grad_norm": 0.12196135520935059,
2942
+ "learning_rate": 2.2250000000000002e-05,
2943
+ "loss": 0.02,
2944
+ "step": 4890
2945
+ },
2946
+ {
2947
+ "grad_norm": 0.15081153810024261,
2948
+ "learning_rate": 2.4750000000000002e-05,
2949
+ "loss": 0.0181,
2950
+ "step": 4900
2951
+ },
2952
+ {
2953
+ "grad_norm": 0.2181614339351654,
2954
+ "learning_rate": 2.725e-05,
2955
+ "loss": 0.0163,
2956
+ "step": 4910
2957
+ },
2958
+ {
2959
+ "grad_norm": 0.2155621200799942,
2960
+ "learning_rate": 2.975e-05,
2961
+ "loss": 0.0192,
2962
+ "step": 4920
2963
+ },
2964
+ {
2965
+ "grad_norm": 0.22211797535419464,
2966
+ "learning_rate": 3.2250000000000005e-05,
2967
+ "loss": 0.0195,
2968
+ "step": 4930
2969
+ },
2970
+ {
2971
+ "grad_norm": 0.13025997579097748,
2972
+ "learning_rate": 3.475e-05,
2973
+ "loss": 0.0207,
2974
+ "step": 4940
2975
+ },
2976
+ {
2977
+ "grad_norm": 0.21118290722370148,
2978
+ "learning_rate": 3.7250000000000004e-05,
2979
+ "loss": 0.02,
2980
+ "step": 4950
2981
+ },
2982
+ {
2983
+ "grad_norm": 0.21603266894817352,
2984
+ "learning_rate": 3.9750000000000004e-05,
2985
+ "loss": 0.0207,
2986
+ "step": 4960
2987
+ },
2988
+ {
2989
+ "grad_norm": 0.2582048177719116,
2990
+ "learning_rate": 4.2250000000000004e-05,
2991
+ "loss": 0.0196,
2992
+ "step": 4970
2993
+ },
2994
+ {
2995
+ "grad_norm": 0.2178124189376831,
2996
+ "learning_rate": 4.4750000000000004e-05,
2997
+ "loss": 0.0198,
2998
+ "step": 4980
2999
+ },
3000
+ {
3001
+ "grad_norm": 0.3020895719528198,
3002
+ "learning_rate": 4.7249999999999997e-05,
3003
+ "loss": 0.0202,
3004
+ "step": 4990
3005
+ },
3006
+ {
3007
+ "grad_norm": 0.1668292135000229,
3008
+ "learning_rate": 4.975e-05,
3009
+ "loss": 0.021,
3010
+ "step": 5000
3011
+ },
3012
+ {
3013
+ "grad_norm": 0.14442867040634155,
3014
+ "learning_rate": 2.25e-06,
3015
+ "loss": 0.0177,
3016
+ "step": 5010
3017
+ },
3018
+ {
3019
+ "grad_norm": 0.054793987423181534,
3020
+ "learning_rate": 4.75e-06,
3021
+ "loss": 0.0162,
3022
+ "step": 5020
3023
+ },
3024
+ {
3025
+ "grad_norm": 0.0670381411910057,
3026
+ "learning_rate": 7.25e-06,
3027
+ "loss": 0.0144,
3028
+ "step": 5030
3029
+ },
3030
+ {
3031
+ "grad_norm": 0.0958305150270462,
3032
+ "learning_rate": 9.750000000000002e-06,
3033
+ "loss": 0.0155,
3034
+ "step": 5040
3035
+ },
3036
+ {
3037
+ "grad_norm": 0.12960484623908997,
3038
+ "learning_rate": 1.225e-05,
3039
+ "loss": 0.018,
3040
+ "step": 5050
3041
+ },
3042
+ {
3043
+ "grad_norm": 0.15243755280971527,
3044
+ "learning_rate": 1.475e-05,
3045
+ "loss": 0.0154,
3046
+ "step": 5060
3047
+ },
3048
+ {
3049
+ "grad_norm": 0.12196221947669983,
3050
+ "learning_rate": 1.725e-05,
3051
+ "loss": 0.0141,
3052
+ "step": 5070
3053
+ },
3054
+ {
3055
+ "grad_norm": 0.16550977528095245,
3056
+ "learning_rate": 1.9750000000000002e-05,
3057
+ "loss": 0.0136,
3058
+ "step": 5080
3059
+ },
3060
+ {
3061
+ "grad_norm": 0.20836178958415985,
3062
+ "learning_rate": 2.2250000000000002e-05,
3063
+ "loss": 0.0177,
3064
+ "step": 5090
3065
+ },
3066
+ {
3067
+ "grad_norm": 0.14733245968818665,
3068
+ "learning_rate": 2.4750000000000002e-05,
3069
+ "loss": 0.0146,
3070
+ "step": 5100
3071
+ },
3072
+ {
3073
+ "grad_norm": 0.14296764135360718,
3074
+ "learning_rate": 2.725e-05,
3075
+ "loss": 0.0155,
3076
+ "step": 5110
3077
+ },
3078
+ {
3079
+ "grad_norm": 0.21847884356975555,
3080
+ "learning_rate": 2.975e-05,
3081
+ "loss": 0.0156,
3082
+ "step": 5120
3083
+ },
3084
+ {
3085
+ "grad_norm": 0.22458617389202118,
3086
+ "learning_rate": 3.2250000000000005e-05,
3087
+ "loss": 0.0171,
3088
+ "step": 5130
3089
+ },
3090
+ {
3091
+ "grad_norm": 0.21109852194786072,
3092
+ "learning_rate": 3.475e-05,
3093
+ "loss": 0.0179,
3094
+ "step": 5140
3095
+ },
3096
+ {
3097
+ "grad_norm": 0.2382119745016098,
3098
+ "learning_rate": 3.7250000000000004e-05,
3099
+ "loss": 0.0193,
3100
+ "step": 5150
3101
+ },
3102
+ {
3103
+ "grad_norm": 0.17990069091320038,
3104
+ "learning_rate": 3.9750000000000004e-05,
3105
+ "loss": 0.0179,
3106
+ "step": 5160
3107
+ },
3108
+ {
3109
+ "grad_norm": 0.3462783396244049,
3110
+ "learning_rate": 4.2250000000000004e-05,
3111
+ "loss": 0.0198,
3112
+ "step": 5170
3113
+ },
3114
+ {
3115
+ "grad_norm": 0.23819074034690857,
3116
+ "learning_rate": 4.4750000000000004e-05,
3117
+ "loss": 0.0186,
3118
+ "step": 5180
3119
+ },
3120
+ {
3121
+ "grad_norm": 0.2674412727355957,
3122
+ "learning_rate": 4.7249999999999997e-05,
3123
+ "loss": 0.019,
3124
+ "step": 5190
3125
+ },
3126
+ {
3127
+ "grad_norm": 0.25820428133010864,
3128
+ "learning_rate": 4.975e-05,
3129
+ "loss": 0.0213,
3130
+ "step": 5200
3131
+ },
3132
+ {
3133
+ "grad_norm": 0.2059033066034317,
3134
+ "learning_rate": 5.2249999999999996e-05,
3135
+ "loss": 0.0209,
3136
+ "step": 5210
3137
+ },
3138
+ {
3139
+ "grad_norm": 0.2888059914112091,
3140
+ "learning_rate": 5.475e-05,
3141
+ "loss": 0.0205,
3142
+ "step": 5220
3143
+ },
3144
+ {
3145
+ "grad_norm": 0.32638850808143616,
3146
+ "learning_rate": 5.725e-05,
3147
+ "loss": 0.023,
3148
+ "step": 5230
3149
+ },
3150
+ {
3151
+ "grad_norm": 0.21178038418293,
3152
+ "learning_rate": 5.975000000000001e-05,
3153
+ "loss": 0.022,
3154
+ "step": 5240
3155
+ },
3156
+ {
3157
+ "grad_norm": 0.3222191631793976,
3158
+ "learning_rate": 6.225000000000001e-05,
3159
+ "loss": 0.0258,
3160
+ "step": 5250
3161
+ },
3162
+ {
3163
+ "grad_norm": 0.3032192587852478,
3164
+ "learning_rate": 6.475e-05,
3165
+ "loss": 0.0237,
3166
+ "step": 5260
3167
+ },
3168
+ {
3169
+ "grad_norm": 0.25703561305999756,
3170
+ "learning_rate": 6.725000000000001e-05,
3171
+ "loss": 0.0278,
3172
+ "step": 5270
3173
+ },
3174
+ {
3175
+ "grad_norm": 0.3034331202507019,
3176
+ "learning_rate": 6.975e-05,
3177
+ "loss": 0.0256,
3178
+ "step": 5280
3179
+ },
3180
+ {
3181
+ "grad_norm": 0.39209669828414917,
3182
+ "learning_rate": 7.225000000000001e-05,
3183
+ "loss": 0.0258,
3184
+ "step": 5290
3185
+ },
3186
+ {
3187
+ "grad_norm": 0.35498857498168945,
3188
+ "learning_rate": 7.475000000000001e-05,
3189
+ "loss": 0.0268,
3190
+ "step": 5300
3191
+ },
3192
+ {
3193
+ "grad_norm": 0.3415033519268036,
3194
+ "learning_rate": 7.725e-05,
3195
+ "loss": 0.0272,
3196
+ "step": 5310
3197
+ },
3198
+ {
3199
+ "grad_norm": 0.3076319992542267,
3200
+ "learning_rate": 7.975e-05,
3201
+ "loss": 0.0284,
3202
+ "step": 5320
3203
+ },
3204
+ {
3205
+ "grad_norm": 0.3017461895942688,
3206
+ "learning_rate": 8.225000000000001e-05,
3207
+ "loss": 0.0273,
3208
+ "step": 5330
3209
+ },
3210
+ {
3211
+ "grad_norm": 0.3462255299091339,
3212
+ "learning_rate": 8.475000000000001e-05,
3213
+ "loss": 0.0311,
3214
+ "step": 5340
3215
+ },
3216
+ {
3217
+ "grad_norm": 0.34766459465026855,
3218
+ "learning_rate": 8.725e-05,
3219
+ "loss": 0.0299,
3220
+ "step": 5350
3221
+ },
3222
+ {
3223
+ "grad_norm": 0.34003376960754395,
3224
+ "learning_rate": 8.975e-05,
3225
+ "loss": 0.0322,
3226
+ "step": 5360
3227
+ },
3228
+ {
3229
+ "grad_norm": 0.3623153865337372,
3230
+ "learning_rate": 9.225e-05,
3231
+ "loss": 0.0323,
3232
+ "step": 5370
3233
+ },
3234
+ {
3235
+ "grad_norm": 0.27785149216651917,
3236
+ "learning_rate": 9.475e-05,
3237
+ "loss": 0.0322,
3238
+ "step": 5380
3239
+ },
3240
+ {
3241
+ "grad_norm": 0.3811187446117401,
3242
+ "learning_rate": 9.725e-05,
3243
+ "loss": 0.0327,
3244
+ "step": 5390
3245
+ },
3246
+ {
3247
+ "grad_norm": 0.41551879048347473,
3248
+ "learning_rate": 9.975000000000001e-05,
3249
+ "loss": 0.0345,
3250
+ "step": 5400
3251
+ },
3252
+ {
3253
+ "grad_norm": 0.38140812516212463,
3254
+ "learning_rate": 9.999965398327804e-05,
3255
+ "loss": 0.0362,
3256
+ "step": 5410
3257
+ },
3258
+ {
3259
+ "grad_norm": 0.3732677102088928,
3260
+ "learning_rate": 9.999845788223949e-05,
3261
+ "loss": 0.0326,
3262
+ "step": 5420
3263
+ },
3264
+ {
3265
+ "grad_norm": 0.3232232332229614,
3266
+ "learning_rate": 9.999640744550616e-05,
3267
+ "loss": 0.0324,
3268
+ "step": 5430
3269
+ },
3270
+ {
3271
+ "grad_norm": 0.3319040536880493,
3272
+ "learning_rate": 9.999350270811438e-05,
3273
+ "loss": 0.0315,
3274
+ "step": 5440
3275
+ },
3276
+ {
3277
+ "grad_norm": 0.43266093730926514,
3278
+ "learning_rate": 9.99897437196981e-05,
3279
+ "loss": 0.0332,
3280
+ "step": 5450
3281
+ },
3282
+ {
3283
+ "grad_norm": 0.3082657754421234,
3284
+ "learning_rate": 9.998513054448802e-05,
3285
+ "loss": 0.0318,
3286
+ "step": 5460
3287
+ },
3288
+ {
3289
+ "grad_norm": 0.4122726321220398,
3290
+ "learning_rate": 9.99796632613106e-05,
3291
+ "loss": 0.0348,
3292
+ "step": 5470
3293
+ },
3294
+ {
3295
+ "grad_norm": 0.29128387570381165,
3296
+ "learning_rate": 9.997334196358664e-05,
3297
+ "loss": 0.0303,
3298
+ "step": 5480
3299
+ },
3300
+ {
3301
+ "grad_norm": 0.2702691853046417,
3302
+ "learning_rate": 9.996616675932966e-05,
3303
+ "loss": 0.0314,
3304
+ "step": 5490
3305
+ },
3306
+ {
3307
+ "grad_norm": 0.37886449694633484,
3308
+ "learning_rate": 9.995813777114411e-05,
3309
+ "loss": 0.0332,
3310
+ "step": 5500
3311
+ },
3312
+ {
3313
+ "grad_norm": 0.24644127488136292,
3314
+ "learning_rate": 9.994925513622324e-05,
3315
+ "loss": 0.0324,
3316
+ "step": 5510
3317
+ },
3318
+ {
3319
+ "grad_norm": 0.29427140951156616,
3320
+ "learning_rate": 9.993951900634678e-05,
3321
+ "loss": 0.0314,
3322
+ "step": 5520
3323
+ },
3324
+ {
3325
+ "grad_norm": 0.1623036116361618,
3326
+ "learning_rate": 9.992892954787831e-05,
3327
+ "loss": 0.0313,
3328
+ "step": 5530
3329
+ },
3330
+ {
3331
+ "grad_norm": 0.32525572180747986,
3332
+ "learning_rate": 9.991748694176246e-05,
3333
+ "loss": 0.0317,
3334
+ "step": 5540
3335
+ },
3336
+ {
3337
+ "grad_norm": 0.39700940251350403,
3338
+ "learning_rate": 9.990519138352184e-05,
3339
+ "loss": 0.0319,
3340
+ "step": 5550
3341
+ },
3342
+ {
3343
+ "grad_norm": 0.371387779712677,
3344
+ "learning_rate": 9.989204308325356e-05,
3345
+ "loss": 0.0316,
3346
+ "step": 5560
3347
+ },
3348
+ {
3349
+ "grad_norm": 0.382245272397995,
3350
+ "learning_rate": 9.987804226562582e-05,
3351
+ "loss": 0.0321,
3352
+ "step": 5570
3353
+ },
3354
+ {
3355
+ "grad_norm": 0.3336215615272522,
3356
+ "learning_rate": 9.986318916987395e-05,
3357
+ "loss": 0.03,
3358
+ "step": 5580
3359
+ },
3360
+ {
3361
+ "grad_norm": 0.4367651641368866,
3362
+ "learning_rate": 9.984748404979642e-05,
3363
+ "loss": 0.0319,
3364
+ "step": 5590
3365
+ },
3366
+ {
3367
+ "grad_norm": 0.2899431586265564,
3368
+ "learning_rate": 9.983092717375033e-05,
3369
+ "loss": 0.0315,
3370
+ "step": 5600
3371
+ },
3372
+ {
3373
+ "grad_norm": 0.43919163942337036,
3374
+ "learning_rate": 9.981351882464706e-05,
3375
+ "loss": 0.0309,
3376
+ "step": 5610
3377
+ },
3378
+ {
3379
+ "grad_norm": 0.3506055772304535,
3380
+ "learning_rate": 9.979525929994727e-05,
3381
+ "loss": 0.0313,
3382
+ "step": 5620
3383
+ },
3384
+ {
3385
+ "grad_norm": 0.28003016114234924,
3386
+ "learning_rate": 9.977614891165581e-05,
3387
+ "loss": 0.0306,
3388
+ "step": 5630
3389
+ },
3390
+ {
3391
+ "grad_norm": 0.4560019075870514,
3392
+ "learning_rate": 9.975618798631653e-05,
3393
+ "loss": 0.0304,
3394
+ "step": 5640
3395
+ },
3396
+ {
3397
+ "grad_norm": 0.36266371607780457,
3398
+ "learning_rate": 9.973537686500656e-05,
3399
+ "loss": 0.0289,
3400
+ "step": 5650
3401
+ },
3402
+ {
3403
+ "grad_norm": 0.27017301321029663,
3404
+ "learning_rate": 9.971371590333053e-05,
3405
+ "loss": 0.0294,
3406
+ "step": 5660
3407
+ },
3408
+ {
3409
+ "grad_norm": 0.3721235692501068,
3410
+ "learning_rate": 9.969120547141453e-05,
3411
+ "loss": 0.0296,
3412
+ "step": 5670
3413
+ },
3414
+ {
3415
+ "grad_norm": 0.27416470646858215,
3416
+ "learning_rate": 9.966784595389971e-05,
3417
+ "loss": 0.0322,
3418
+ "step": 5680
3419
+ },
3420
+ {
3421
+ "grad_norm": 0.311551958322525,
3422
+ "learning_rate": 9.96436377499358e-05,
3423
+ "loss": 0.0285,
3424
+ "step": 5690
3425
+ },
3426
+ {
3427
+ "grad_norm": 0.3233130872249603,
3428
+ "learning_rate": 9.961858127317419e-05,
3429
+ "loss": 0.0302,
3430
+ "step": 5700
3431
+ },
3432
+ {
3433
+ "grad_norm": 0.2842532992362976,
3434
+ "learning_rate": 9.959267695176096e-05,
3435
+ "loss": 0.0314,
3436
+ "step": 5710
3437
+ },
3438
+ {
3439
+ "grad_norm": 0.4247515797615051,
3440
+ "learning_rate": 9.956592522832946e-05,
3441
+ "loss": 0.0315,
3442
+ "step": 5720
3443
+ },
3444
+ {
3445
+ "grad_norm": 0.46176719665527344,
3446
+ "learning_rate": 9.953832655999284e-05,
3447
+ "loss": 0.0301,
3448
+ "step": 5730
3449
+ },
3450
+ {
3451
+ "grad_norm": 0.3245146572589874,
3452
+ "learning_rate": 9.950988141833621e-05,
3453
+ "loss": 0.0284,
3454
+ "step": 5740
3455
+ },
3456
+ {
3457
+ "grad_norm": 0.3081766963005066,
3458
+ "learning_rate": 9.948059028940857e-05,
3459
+ "loss": 0.0286,
3460
+ "step": 5750
3461
+ },
3462
+ {
3463
+ "grad_norm": 0.30103135108947754,
3464
+ "learning_rate": 9.945045367371446e-05,
3465
+ "loss": 0.0292,
3466
+ "step": 5760
3467
+ },
3468
+ {
3469
+ "grad_norm": 0.45709553360939026,
3470
+ "learning_rate": 9.941947208620551e-05,
3471
+ "loss": 0.0334,
3472
+ "step": 5770
3473
+ },
3474
+ {
3475
+ "grad_norm": 0.3403961658477783,
3476
+ "learning_rate": 9.938764605627158e-05,
3477
+ "loss": 0.033,
3478
+ "step": 5780
3479
+ },
3480
+ {
3481
+ "grad_norm": 0.3128257989883423,
3482
+ "learning_rate": 9.935497612773167e-05,
3483
+ "loss": 0.0297,
3484
+ "step": 5790
3485
+ },
3486
+ {
3487
+ "grad_norm": 0.32093456387519836,
3488
+ "learning_rate": 9.932146285882477e-05,
3489
+ "loss": 0.0277,
3490
+ "step": 5800
3491
+ },
3492
+ {
3493
+ "grad_norm": 0.3948577046394348,
3494
+ "learning_rate": 9.928710682220017e-05,
3495
+ "loss": 0.0299,
3496
+ "step": 5810
3497
+ },
3498
+ {
3499
+ "grad_norm": 0.3564872741699219,
3500
+ "learning_rate": 9.925190860490772e-05,
3501
+ "loss": 0.0315,
3502
+ "step": 5820
3503
+ },
3504
+ {
3505
+ "grad_norm": 0.2942199110984802,
3506
+ "learning_rate": 9.921586880838784e-05,
3507
+ "loss": 0.0306,
3508
+ "step": 5830
3509
+ },
3510
+ {
3511
+ "grad_norm": 0.36606618762016296,
3512
+ "learning_rate": 9.917898804846124e-05,
3513
+ "loss": 0.0284,
3514
+ "step": 5840
3515
+ },
3516
+ {
3517
+ "grad_norm": 0.2491133213043213,
3518
+ "learning_rate": 9.914126695531833e-05,
3519
+ "loss": 0.0296,
3520
+ "step": 5850
3521
+ },
3522
+ {
3523
+ "grad_norm": 0.356919527053833,
3524
+ "learning_rate": 9.910270617350853e-05,
3525
+ "loss": 0.0299,
3526
+ "step": 5860
3527
+ },
3528
+ {
3529
+ "grad_norm": 0.28878551721572876,
3530
+ "learning_rate": 9.90633063619292e-05,
3531
+ "loss": 0.0298,
3532
+ "step": 5870
3533
+ },
3534
+ {
3535
+ "grad_norm": 0.23867709934711456,
3536
+ "learning_rate": 9.90230681938144e-05,
3537
+ "loss": 0.0299,
3538
+ "step": 5880
3539
+ },
3540
+ {
3541
+ "grad_norm": 0.2136927992105484,
3542
+ "learning_rate": 9.898199235672341e-05,
3543
+ "loss": 0.0276,
3544
+ "step": 5890
3545
+ },
3546
+ {
3547
+ "grad_norm": 0.28000661730766296,
3548
+ "learning_rate": 9.894007955252898e-05,
3549
+ "loss": 0.0298,
3550
+ "step": 5900
3551
+ },
3552
+ {
3553
+ "grad_norm": 0.24435938894748688,
3554
+ "learning_rate": 2.25e-06,
3555
+ "loss": 0.0261,
3556
+ "step": 5910
3557
+ },
3558
+ {
3559
+ "grad_norm": 0.1255520135164261,
3560
+ "learning_rate": 4.75e-06,
3561
+ "loss": 0.022,
3562
+ "step": 5920
3563
+ },
3564
+ {
3565
+ "grad_norm": 0.07361706346273422,
3566
+ "learning_rate": 7.25e-06,
3567
+ "loss": 0.0187,
3568
+ "step": 5930
3569
+ },
3570
+ {
3571
+ "grad_norm": 0.07405020296573639,
3572
+ "learning_rate": 9.750000000000002e-06,
3573
+ "loss": 0.0195,
3574
+ "step": 5940
3575
+ },
3576
+ {
3577
+ "grad_norm": 0.0707310363650322,
3578
+ "learning_rate": 1.225e-05,
3579
+ "loss": 0.0159,
3580
+ "step": 5950
3581
+ },
3582
+ {
3583
+ "grad_norm": 0.08231353759765625,
3584
+ "learning_rate": 1.475e-05,
3585
+ "loss": 0.0179,
3586
+ "step": 5960
3587
+ },
3588
+ {
3589
+ "grad_norm": 0.101494200527668,
3590
+ "learning_rate": 1.725e-05,
3591
+ "loss": 0.0217,
3592
+ "step": 5970
3593
+ },
3594
+ {
3595
+ "grad_norm": 0.13773274421691895,
3596
+ "learning_rate": 1.9750000000000002e-05,
3597
+ "loss": 0.0186,
3598
+ "step": 5980
3599
+ },
3600
+ {
3601
+ "grad_norm": 0.144323468208313,
3602
+ "learning_rate": 2.2250000000000002e-05,
3603
+ "loss": 0.0155,
3604
+ "step": 5990
3605
+ },
3606
+ {
3607
+ "grad_norm": 0.11110465973615646,
3608
+ "learning_rate": 2.4750000000000002e-05,
3609
+ "loss": 0.0167,
3610
+ "step": 6000
3611
+ },
3612
+ {
3613
+ "grad_norm": 0.15767154097557068,
3614
+ "learning_rate": 2.725e-05,
3615
+ "loss": 0.0181,
3616
+ "step": 6010
3617
+ },
3618
+ {
3619
+ "grad_norm": 0.20103546977043152,
3620
+ "learning_rate": 2.975e-05,
3621
+ "loss": 0.0169,
3622
+ "step": 6020
3623
+ },
3624
+ {
3625
+ "grad_norm": 0.13784171640872955,
3626
+ "learning_rate": 3.2250000000000005e-05,
3627
+ "loss": 0.018,
3628
+ "step": 6030
3629
+ },
3630
+ {
3631
+ "grad_norm": 0.10552939772605896,
3632
+ "learning_rate": 3.475e-05,
3633
+ "loss": 0.0169,
3634
+ "step": 6040
3635
+ },
3636
+ {
3637
+ "grad_norm": 0.19135749340057373,
3638
+ "learning_rate": 3.7250000000000004e-05,
3639
+ "loss": 0.0182,
3640
+ "step": 6050
3641
+ },
3642
+ {
3643
+ "grad_norm": 0.1571836769580841,
3644
+ "learning_rate": 3.9750000000000004e-05,
3645
+ "loss": 0.0169,
3646
+ "step": 6060
3647
+ },
3648
+ {
3649
+ "grad_norm": 0.21296827495098114,
3650
+ "learning_rate": 4.2250000000000004e-05,
3651
+ "loss": 0.0186,
3652
+ "step": 6070
3653
+ },
3654
+ {
3655
+ "grad_norm": 0.1799466907978058,
3656
+ "learning_rate": 4.4750000000000004e-05,
3657
+ "loss": 0.0192,
3658
+ "step": 6080
3659
+ },
3660
+ {
3661
+ "grad_norm": 0.2527002692222595,
3662
+ "learning_rate": 4.7249999999999997e-05,
3663
+ "loss": 0.0194,
3664
+ "step": 6090
3665
+ },
3666
+ {
3667
+ "grad_norm": 0.18937557935714722,
3668
+ "learning_rate": 4.975e-05,
3669
+ "loss": 0.0204,
3670
+ "step": 6100
3671
+ },
3672
+ {
3673
+ "grad_norm": 0.3399811387062073,
3674
+ "learning_rate": 5.2249999999999996e-05,
3675
+ "loss": 0.0191,
3676
+ "step": 6110
3677
+ },
3678
+ {
3679
+ "grad_norm": 0.3196389675140381,
3680
+ "learning_rate": 5.475e-05,
3681
+ "loss": 0.0216,
3682
+ "step": 6120
3683
+ },
3684
+ {
3685
+ "grad_norm": 0.22987596690654755,
3686
+ "learning_rate": 5.725e-05,
3687
+ "loss": 0.0193,
3688
+ "step": 6130
3689
+ },
3690
+ {
3691
+ "grad_norm": 0.25724199414253235,
3692
+ "learning_rate": 5.975000000000001e-05,
3693
+ "loss": 0.0219,
3694
+ "step": 6140
3695
+ },
3696
+ {
3697
+ "grad_norm": 0.18450762331485748,
3698
+ "learning_rate": 6.225000000000001e-05,
3699
+ "loss": 0.0216,
3700
+ "step": 6150
3701
+ },
3702
+ {
3703
+ "grad_norm": 0.2240147590637207,
3704
+ "learning_rate": 6.475e-05,
3705
+ "loss": 0.0204,
3706
+ "step": 6160
3707
+ },
3708
+ {
3709
+ "grad_norm": 0.2838953137397766,
3710
+ "learning_rate": 6.725000000000001e-05,
3711
+ "loss": 0.0231,
3712
+ "step": 6170
3713
+ },
3714
+ {
3715
+ "grad_norm": 0.2061644345521927,
3716
+ "learning_rate": 6.975e-05,
3717
+ "loss": 0.0238,
3718
+ "step": 6180
3719
+ },
3720
+ {
3721
+ "grad_norm": 0.277007520198822,
3722
+ "learning_rate": 7.225000000000001e-05,
3723
+ "loss": 0.0211,
3724
+ "step": 6190
3725
+ },
3726
+ {
3727
+ "grad_norm": 0.38259080052375793,
3728
+ "learning_rate": 7.475000000000001e-05,
3729
+ "loss": 0.0242,
3730
+ "step": 6200
3731
+ },
3732
+ {
3733
+ "grad_norm": 0.29872778058052063,
3734
+ "learning_rate": 7.725e-05,
3735
+ "loss": 0.0249,
3736
+ "step": 6210
3737
+ },
3738
+ {
3739
+ "grad_norm": 0.3128993809223175,
3740
+ "learning_rate": 7.975e-05,
3741
+ "loss": 0.0251,
3742
+ "step": 6220
3743
+ },
3744
+ {
3745
+ "grad_norm": 0.35145434737205505,
3746
+ "learning_rate": 8.225000000000001e-05,
3747
+ "loss": 0.0215,
3748
+ "step": 6230
3749
+ },
3750
+ {
3751
+ "grad_norm": 0.35203564167022705,
3752
+ "learning_rate": 8.475000000000001e-05,
3753
+ "loss": 0.0282,
3754
+ "step": 6240
3755
+ },
3756
+ {
3757
+ "grad_norm": 0.4482344388961792,
3758
+ "learning_rate": 8.725e-05,
3759
+ "loss": 0.0272,
3760
+ "step": 6250
3761
+ },
3762
+ {
3763
+ "grad_norm": 0.3477097451686859,
3764
+ "learning_rate": 8.975e-05,
3765
+ "loss": 0.0264,
3766
+ "step": 6260
3767
+ },
3768
+ {
3769
+ "grad_norm": 0.2589689791202545,
3770
+ "learning_rate": 9.225e-05,
3771
+ "loss": 0.0279,
3772
+ "step": 6270
3773
+ },
3774
+ {
3775
+ "grad_norm": 0.2147420048713684,
3776
+ "learning_rate": 9.475e-05,
3777
+ "loss": 0.0305,
3778
+ "step": 6280
3779
+ },
3780
+ {
3781
+ "grad_norm": 0.37397146224975586,
3782
+ "learning_rate": 9.725e-05,
3783
+ "loss": 0.0296,
3784
+ "step": 6290
3785
+ },
3786
+ {
3787
+ "grad_norm": 0.32392406463623047,
3788
+ "learning_rate": 9.975000000000001e-05,
3789
+ "loss": 0.0298,
3790
+ "step": 6300
3791
+ },
3792
+ {
3793
+ "grad_norm": 0.28752976655960083,
3794
+ "learning_rate": 2.25e-06,
3795
+ "loss": 0.0281,
3796
+ "step": 6310
3797
+ },
3798
+ {
3799
+ "grad_norm": 0.14773952960968018,
3800
+ "learning_rate": 4.75e-06,
3801
+ "loss": 0.0259,
3802
+ "step": 6320
3803
+ },
3804
+ {
3805
+ "grad_norm": 0.07288530468940735,
3806
+ "learning_rate": 7.25e-06,
3807
+ "loss": 0.019,
3808
+ "step": 6330
3809
+ },
3810
+ {
3811
+ "grad_norm": 0.056989990174770355,
3812
+ "learning_rate": 9.750000000000002e-06,
3813
+ "loss": 0.0177,
3814
+ "step": 6340
3815
+ },
3816
+ {
3817
+ "grad_norm": 0.0840739980340004,
3818
+ "learning_rate": 1.225e-05,
3819
+ "loss": 0.0183,
3820
+ "step": 6350
3821
+ },
3822
+ {
3823
+ "grad_norm": 0.07818028330802917,
3824
+ "learning_rate": 1.475e-05,
3825
+ "loss": 0.0169,
3826
+ "step": 6360
3827
+ },
3828
+ {
3829
+ "grad_norm": 0.0806255117058754,
3830
+ "learning_rate": 1.725e-05,
3831
+ "loss": 0.017,
3832
+ "step": 6370
3833
+ },
3834
+ {
3835
+ "grad_norm": 0.11104797571897507,
3836
+ "learning_rate": 1.9750000000000002e-05,
3837
+ "loss": 0.0163,
3838
+ "step": 6380
3839
+ },
3840
+ {
3841
+ "grad_norm": 0.1076383888721466,
3842
+ "learning_rate": 2.2250000000000002e-05,
3843
+ "loss": 0.0169,
3844
+ "step": 6390
3845
+ },
3846
+ {
3847
+ "grad_norm": 0.13541467487812042,
3848
+ "learning_rate": 2.4750000000000002e-05,
3849
+ "loss": 0.0171,
3850
+ "step": 6400
3851
+ },
3852
+ {
3853
+ "grad_norm": 0.1577892303466797,
3854
+ "learning_rate": 2.725e-05,
3855
+ "loss": 0.0159,
3856
+ "step": 6410
3857
+ },
3858
+ {
3859
+ "grad_norm": 0.14505299925804138,
3860
+ "learning_rate": 2.975e-05,
3861
+ "loss": 0.0151,
3862
+ "step": 6420
3863
+ },
3864
+ {
3865
+ "grad_norm": 0.1457807570695877,
3866
+ "learning_rate": 3.2250000000000005e-05,
3867
+ "loss": 0.0166,
3868
+ "step": 6430
3869
+ },
3870
+ {
3871
+ "grad_norm": 0.15191592276096344,
3872
+ "learning_rate": 3.475e-05,
3873
+ "loss": 0.0171,
3874
+ "step": 6440
3875
+ },
3876
+ {
3877
+ "grad_norm": 0.17364244163036346,
3878
+ "learning_rate": 3.7250000000000004e-05,
3879
+ "loss": 0.0167,
3880
+ "step": 6450
3881
+ },
3882
+ {
3883
+ "grad_norm": 0.12844876945018768,
3884
+ "learning_rate": 3.9750000000000004e-05,
3885
+ "loss": 0.0161,
3886
+ "step": 6460
3887
+ },
3888
+ {
3889
+ "grad_norm": 0.19524745643138885,
3890
+ "learning_rate": 4.2250000000000004e-05,
3891
+ "loss": 0.0182,
3892
+ "step": 6470
3893
+ },
3894
+ {
3895
+ "grad_norm": 0.2746567130088806,
3896
+ "learning_rate": 4.4750000000000004e-05,
3897
+ "loss": 0.0181,
3898
+ "step": 6480
3899
+ },
3900
+ {
3901
+ "grad_norm": 0.15469631552696228,
3902
+ "learning_rate": 4.7249999999999997e-05,
3903
+ "loss": 0.0164,
3904
+ "step": 6490
3905
+ },
3906
+ {
3907
+ "grad_norm": 0.3207453787326813,
3908
+ "learning_rate": 4.975e-05,
3909
+ "loss": 0.0187,
3910
+ "step": 6500
3911
+ }
3912
+ ],
3913
+ "logging_steps": 10,
3914
+ "max_steps": 8000,
3915
+ "num_input_tokens_seen": 0,
3916
+ "num_train_epochs": 9223372036854775807,
3917
+ "save_steps": 100,
3918
+ "stateful_callbacks": {
3919
+ "TrainerControl": {
3920
+ "args": {
3921
+ "should_epoch_stop": false,
3922
+ "should_evaluate": false,
3923
+ "should_log": false,
3924
+ "should_save": true,
3925
+ "should_training_stop": false
3926
+ },
3927
+ "attributes": {}
3928
+ }
3929
+ },
3930
+ "total_flos": 0.0,
3931
+ "train_batch_size": 16,
3932
+ "trial_name": null,
3933
+ "trial_params": null
3934
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:676f58ca44c389010af33dc6521d7fe8f29fb2a7fc1cc2eddfecc075f037b920
3
+ size 5841
wandb_config.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"project": "finetune-gr00t-n1d6", "run_id": "gr00t-n16-leisaac-pick-orange"}