Cognition2ActionLab commited on
Commit
619cc46
·
verified ·
1 Parent(s): 14988a5

Upload folder using huggingface_hub

Browse files
libero_10_2B/starvla_qwen_dual/config.json ADDED
@@ -0,0 +1,129 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "run_id": "starvla_qwen_dual",
3
+ "run_root_dir": "/share/project/baishuanghao/code/starVLA/pretrained_models_2/libero_10_2B",
4
+ "seed": 42,
5
+ "trackers": [
6
+ "jsonl",
7
+ "wandb"
8
+ ],
9
+ "wandb_project": "starVLA",
10
+ "is_debug": false,
11
+ "enable_mee": false,
12
+ "mee_weight": 0.01,
13
+ "framework": {
14
+ "name": "Qwen-Dual",
15
+ "qwenvl": {
16
+ "base_vlm": "/share/project/baishuanghao/code/HLM-VLA/models/Qwen3-VL-2B-Instruct",
17
+ "attn_implementation": "flash_attention_2",
18
+ "vl_hidden_dim": 2048
19
+ },
20
+ "dino": {
21
+ "dino_backbone": "dinov2_vits14"
22
+ },
23
+ "action_model": {
24
+ "action_model_type": "DiT-B",
25
+ "action_hidden_dim": 2,
26
+ "hidden_size": 1024,
27
+ "add_pos_embed": true,
28
+ "max_seq_len": 1024,
29
+ "action_dim": 7,
30
+ "state_dim": 7,
31
+ "future_action_window_size": 7,
32
+ "action_horizon": 8,
33
+ "past_action_window_size": 0,
34
+ "repeated_diffusion_steps": 8,
35
+ "noise_beta_alpha": 1.5,
36
+ "noise_beta_beta": 1.0,
37
+ "noise_s": 0.999,
38
+ "num_timestep_buckets": 1000,
39
+ "num_inference_timesteps": 4,
40
+ "num_target_vision_tokens": 32,
41
+ "diffusion_model_cfg": {
42
+ "cross_attention_dim": 2048,
43
+ "dropout": 0.2,
44
+ "final_dropout": true,
45
+ "interleave_self_attention": true,
46
+ "norm_type": "ada_norm",
47
+ "num_layers": 16,
48
+ "output_dim": 1024,
49
+ "positional_embeddings": null
50
+ }
51
+ },
52
+ "reduce_in_full_precision": true
53
+ },
54
+ "datasets": {
55
+ "vlm_data": {
56
+ "dataset_py": "vlm_datasets",
57
+ "dataformat": "llava_json",
58
+ "dataset_use": "asv2_conversation_en,asv2_detailed_description_en,asv2_region_captioning_en,coco_internvl_longcap_en,coco_karpathy_train_567_en,coco_negative_gpt4o_en,coco_poetry_zh,coco_rem_en_zh,cocorem_exist_yorn_en,cocotextv2_en,cocotextv2_gpt4o_en,okvqa_en,refcoco_grounding_aug_en,refcoco_grounding_en,tallyqa_coco_en,toloka_grounding_aug_en,vqav2_en,vsr_en",
59
+ "eval_dataset": "aokvqa_cauldron_llava_format",
60
+ "data_flatten": false,
61
+ "base_interval": 2,
62
+ "max_pixels": 12845056,
63
+ "min_pixels": 3136,
64
+ "model_max_length": 2048,
65
+ "model_type": "qwen2.5vl",
66
+ "per_device_batch_size": 4
67
+ },
68
+ "vla_data": {
69
+ "dataset_py": "lerobot_datasets",
70
+ "data_root_dir": "/share/project/baishuanghao/data/libero_lerobot",
71
+ "data_mix": "libero_10",
72
+ "action_type": "delta_qpos",
73
+ "CoT_prompt": "Your task is {instruction}. To identify the key objects for your task. Locate their bounding boxes in [x1,y1,x2,y2] format.",
74
+ "CoT_answer": "bbox",
75
+ "default_image_resolution": [
76
+ 3,
77
+ 224,
78
+ 224
79
+ ],
80
+ "per_device_batch_size": 16,
81
+ "load_all_data_for_training": true,
82
+ "obs": [
83
+ "image_0"
84
+ ]
85
+ }
86
+ },
87
+ "trainer": {
88
+ "epochs": 100,
89
+ "max_train_steps": 30000,
90
+ "num_warmup_steps": 5000,
91
+ "save_interval": 60000,
92
+ "eval_interval": 30000,
93
+ "learning_rate": {
94
+ "base": 4e-05,
95
+ "qwen_vl_interface": 1e-05,
96
+ "action_model": 0.0001
97
+ },
98
+ "lr_scheduler_type": "cosine_with_min_lr",
99
+ "scheduler_specific_kwargs": {
100
+ "min_lr": 1e-06
101
+ },
102
+ "freeze_modules": null,
103
+ "loss_scale": {
104
+ "vla": 1.0,
105
+ "vlm": 0.1
106
+ },
107
+ "max_grad_norm": 1.0,
108
+ "warmup_ratio": 0.1,
109
+ "weight_decay": 0.0,
110
+ "logging_frequency": 100,
111
+ "gradient_clipping": 1.0,
112
+ "gradient_accumulation_steps": 1,
113
+ "optimizer": {
114
+ "name": "AdamW",
115
+ "betas": [
116
+ 0.9,
117
+ 0.95
118
+ ],
119
+ "eps": 1e-08,
120
+ "weight_decay": 1e-08
121
+ },
122
+ "is_resume": false,
123
+ "resume_epoch": null,
124
+ "resume_step": null,
125
+ "enable_gradient_checkpointing": true,
126
+ "enable_mixed_precision_training": true
127
+ },
128
+ "output_dir": "/share/project/baishuanghao/code/starVLA/pretrained_models_2/libero_10_2B/starvla_qwen_dual"
129
+ }
libero_10_2B/starvla_qwen_dual/dataset_statistics.json ADDED
@@ -0,0 +1,133 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "franka": {
3
+ "action": {
4
+ "mean": [
5
+ 0.01820324920117855,
6
+ 0.05858374014496803,
7
+ -0.05592384561896324,
8
+ 0.004626928828656673,
9
+ 0.00289608770981431,
10
+ -0.007673131301999092,
11
+ 0.5457824468612671
12
+ ],
13
+ "std": [
14
+ 0.2825464606285095,
15
+ 0.35904666781425476,
16
+ 0.3673802614212036,
17
+ 0.03770702704787254,
18
+ 0.05429719388484955,
19
+ 0.08725254982709885,
20
+ 0.49815231561660767
21
+ ],
22
+ "max": [
23
+ 0.9375,
24
+ 0.9375,
25
+ 0.9375,
26
+ 0.30000001192092896,
27
+ 0.29357144236564636,
28
+ 0.375,
29
+ 1.0
30
+ ],
31
+ "min": [
32
+ -0.9375,
33
+ -0.9375,
34
+ -0.9375,
35
+ -0.23642857372760773,
36
+ -0.3053571283817291,
37
+ -0.3675000071525574,
38
+ 0.0
39
+ ],
40
+ "q01": [
41
+ -0.6348214149475098,
42
+ -0.7741071581840515,
43
+ -0.7633928656578064,
44
+ -0.09749999642372131,
45
+ -0.14819999992847435,
46
+ -0.2742857038974762,
47
+ 0.0
48
+ ],
49
+ "q99": [
50
+ 0.7714285850524902,
51
+ 0.8464285731315613,
52
+ 0.9375,
53
+ 0.13928571343421936,
54
+ 0.15964286029338837,
55
+ 0.3246428668498993,
56
+ 1.0
57
+ ],
58
+ "mask": [
59
+ true,
60
+ true,
61
+ true,
62
+ true,
63
+ true,
64
+ true,
65
+ false
66
+ ]
67
+ },
68
+ "state": {
69
+ "mean": [
70
+ -0.04190658777952194,
71
+ 0.03539430722594261,
72
+ 0.8257141709327698,
73
+ 2.908308267593384,
74
+ -0.5562185049057007,
75
+ -0.16649018228054047,
76
+ 0.028316624462604523,
77
+ -0.028561657294631004
78
+ ],
79
+ "std": [
80
+ 0.10743364691734314,
81
+ 0.14424669742584229,
82
+ 0.2572328448295593,
83
+ 0.3441362977027893,
84
+ 1.234421730041504,
85
+ 0.3579835891723633,
86
+ 0.013308707624673843,
87
+ 0.013174631632864475
88
+ ],
89
+ "max": [
90
+ 0.21031762659549713,
91
+ 0.39128610491752625,
92
+ 1.3332009315490723,
93
+ 3.6714255809783936,
94
+ 3.560650587081909,
95
+ 1.386339545249939,
96
+ 0.04160946607589722,
97
+ 0.0013633022317662835
98
+ ],
99
+ "min": [
100
+ -0.4828203022480011,
101
+ -0.3255046010017395,
102
+ 0.445506751537323,
103
+ 1.1321442127227783,
104
+ -3.641430377960205,
105
+ -1.842738389968872,
106
+ -0.0010040868073701859,
107
+ -0.04111652821302414
108
+ ],
109
+ "q01": [
110
+ -0.3899900782108307,
111
+ -0.2838300323486328,
112
+ 0.44795057058334353,
113
+ 1.8810229921340942,
114
+ -2.886677579879761,
115
+ -1.1599004411697387,
116
+ 0.002066459748893976,
117
+ -0.04001387819647789
118
+ ],
119
+ "q99": [
120
+ 0.1530261474847791,
121
+ 0.32915401458740223,
122
+ 1.2546923208236693,
123
+ 3.303542451858519,
124
+ 2.7496529006957933,
125
+ 0.6893712210655194,
126
+ 0.040048558115959164,
127
+ -0.0017598449345678235
128
+ ]
129
+ },
130
+ "num_transitions": 100857,
131
+ "num_trajectories": 379
132
+ }
133
+ }
libero_10_2B/starvla_qwen_dual/final_model/pytorch_model.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:10eac376228595053868227fa84bbc90d99488af574456e1533b12f09a85993d
3
+ size 5233814193
libero_10_2B/starvla_qwen_dual/libero_10.log ADDED
@@ -0,0 +1,300 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Step 100, Loss: {'mse_loss': 1.0692167282104492, 'totoal_loss': 1.0692167282104492, 'data_time': 0.01901187002658844, 'model_time': 0.8112930611241609, 'learning_rate': 2.0000000000000002e-07, 'epoch': 0.13})
2
+ Step 200, Loss: {'mse_loss': 1.0121961832046509, 'totoal_loss': 1.0121961832046509, 'data_time': 0.019890868803486228, 'model_time': 0.7287067710421979, 'learning_rate': 4.0000000000000003e-07, 'epoch': 0.25})
3
+ Step 300, Loss: {'mse_loss': 0.8147178888320923, 'totoal_loss': 0.8147178888320923, 'data_time': 0.019755540881305933, 'model_time': 0.791845953091979, 'learning_rate': 6.000000000000001e-07, 'epoch': 0.38})
4
+ Step 400, Loss: {'mse_loss': 0.610888659954071, 'totoal_loss': 0.610888659954071, 'data_time': 0.020116555970162153, 'model_time': 0.729260444175452, 'learning_rate': 8.000000000000001e-07, 'epoch': 0.51})
5
+ Step 500, Loss: {'mse_loss': 0.4896889328956604, 'totoal_loss': 0.4896889328956604, 'data_time': 0.017774551874026656, 'model_time': 0.7112082720268518, 'learning_rate': 1.0000000000000002e-06, 'epoch': 0.63})
6
+ Step 600, Loss: {'mse_loss': 0.4220174551010132, 'totoal_loss': 0.4220174551010132, 'data_time': 0.017031093128025532, 'model_time': 0.7267898879945278, 'learning_rate': 1.2000000000000002e-06, 'epoch': 0.76})
7
+ Step 700, Loss: {'mse_loss': 0.3418690264225006, 'totoal_loss': 0.3418690264225006, 'data_time': 0.018151456024497747, 'model_time': 0.7278672058600932, 'learning_rate': 1.4000000000000001e-06, 'epoch': 0.89})
8
+ Step 800, Loss: {'mse_loss': 0.28819799423217773, 'totoal_loss': 0.28819799423217773, 'data_time': 0.028234265046194196, 'model_time': 0.7325678369961679, 'learning_rate': 1.6000000000000001e-06, 'epoch': 1.02})
9
+ Step 900, Loss: {'mse_loss': 0.1628991663455963, 'totoal_loss': 0.1628991663455963, 'data_time': 0.025537301087751985, 'model_time': 0.7555725339334458, 'learning_rate': 1.8000000000000001e-06, 'epoch': 1.14})
10
+ Step 1000, Loss: {'mse_loss': 0.1841358095407486, 'totoal_loss': 0.1841358095407486, 'data_time': 0.0235729250125587, 'model_time': 0.9906251290813088, 'learning_rate': 2.0000000000000003e-06, 'epoch': 1.27})
11
+ Step 1100, Loss: {'mse_loss': 0.11158619076013565, 'totoal_loss': 0.11158619076013565, 'data_time': 0.02269370900467038, 'model_time': 0.7021646809298545, 'learning_rate': 2.2e-06, 'epoch': 1.4})
12
+ Step 1200, Loss: {'mse_loss': 0.14887818694114685, 'totoal_loss': 0.14887818694114685, 'data_time': 0.02650541695766151, 'model_time': 0.799467520788312, 'learning_rate': 2.4000000000000003e-06, 'epoch': 1.52})
13
+ Step 1300, Loss: {'mse_loss': 0.1396389603614807, 'totoal_loss': 0.1396389603614807, 'data_time': 0.028197248000651598, 'model_time': 0.7459352749865502, 'learning_rate': 2.6e-06, 'epoch': 1.65})
14
+ Step 1400, Loss: {'mse_loss': 0.14117030799388885, 'totoal_loss': 0.14117030799388885, 'data_time': 0.024233847856521606, 'model_time': 0.7601307579316199, 'learning_rate': 2.8000000000000003e-06, 'epoch': 1.78})
15
+ Step 1500, Loss: {'mse_loss': 0.13816341757774353, 'totoal_loss': 0.13816341757774353, 'data_time': 0.02284230408258736, 'model_time': 0.732014972018078, 'learning_rate': 3e-06, 'epoch': 1.9})
16
+ Step 1600, Loss: {'mse_loss': 0.14236679673194885, 'totoal_loss': 0.14236679673194885, 'data_time': 0.015932576032355428, 'model_time': 0.7696024549659342, 'learning_rate': 3.2000000000000003e-06, 'epoch': 2.03})
17
+ Step 1700, Loss: {'mse_loss': 0.13099412620067596, 'totoal_loss': 0.13099412620067596, 'data_time': 0.016319029964506626, 'model_time': 0.6986213990021497, 'learning_rate': 3.4000000000000005e-06, 'epoch': 2.16})
18
+ Step 1800, Loss: {'mse_loss': 0.11126574873924255, 'totoal_loss': 0.11126574873924255, 'data_time': 0.016595717053860426, 'model_time': 0.7376934259664267, 'learning_rate': 3.6000000000000003e-06, 'epoch': 2.28})
19
+ Step 1900, Loss: {'mse_loss': 0.10620098561048508, 'totoal_loss': 0.10620098561048508, 'data_time': 0.015000429935753345, 'model_time': 0.725214937934652, 'learning_rate': 3.8000000000000005e-06, 'epoch': 2.41})
20
+ Step 2000, Loss: {'mse_loss': 0.11934609711170197, 'totoal_loss': 0.11934609711170197, 'data_time': 0.016473027877509594, 'model_time': 0.7232244198676199, 'learning_rate': 4.000000000000001e-06, 'epoch': 2.54})
21
+ Step 2100, Loss: {'mse_loss': 0.1285562366247177, 'totoal_loss': 0.1285562366247177, 'data_time': 0.014270071173086762, 'model_time': 0.7644797279499471, 'learning_rate': 4.2000000000000004e-06, 'epoch': 2.66})
22
+ Step 2200, Loss: {'mse_loss': 0.13101254403591156, 'totoal_loss': 0.13101254403591156, 'data_time': 0.01631223293952644, 'model_time': 0.7146997100207955, 'learning_rate': 4.4e-06, 'epoch': 2.79})
23
+ Step 2300, Loss: {'mse_loss': 0.1190144270658493, 'totoal_loss': 0.1190144270658493, 'data_time': 0.015790096949785948, 'model_time': 0.7439247318543494, 'learning_rate': 4.600000000000001e-06, 'epoch': 2.92})
24
+ Step 2400, Loss: {'mse_loss': 0.09441003203392029, 'totoal_loss': 0.09441003203392029, 'data_time': 0.016761807026341558, 'model_time': 0.7268616098444909, 'learning_rate': 4.800000000000001e-06, 'epoch': 3.05})
25
+ Step 2500, Loss: {'mse_loss': 0.10309303551912308, 'totoal_loss': 0.10309303551912308, 'data_time': 0.015876254998147488, 'model_time': 0.8044559159316123, 'learning_rate': 5e-06, 'epoch': 3.17})
26
+ Step 2600, Loss: {'mse_loss': 0.10049469023942947, 'totoal_loss': 0.10049469023942947, 'data_time': 0.014968605013564229, 'model_time': 0.7347670111339539, 'learning_rate': 5.2e-06, 'epoch': 3.3})
27
+ Step 2700, Loss: {'mse_loss': 0.05805055797100067, 'totoal_loss': 0.05805055797100067, 'data_time': 0.01439507189206779, 'model_time': 0.7894796419423074, 'learning_rate': 5.400000000000001e-06, 'epoch': 3.43})
28
+ Step 2800, Loss: {'mse_loss': 0.105181984603405, 'totoal_loss': 0.105181984603405, 'data_time': 0.014486198080703616, 'model_time': 0.7182818229775876, 'learning_rate': 5.600000000000001e-06, 'epoch': 3.55})
29
+ Step 2900, Loss: {'mse_loss': 0.08958215266466141, 'totoal_loss': 0.08958215266466141, 'data_time': 0.013976155081763864, 'model_time': 0.7299086009152234, 'learning_rate': 5.8e-06, 'epoch': 3.68})
30
+ Step 3000, Loss: {'mse_loss': 0.09871865808963776, 'totoal_loss': 0.09871865808963776, 'data_time': 0.014279538067057729, 'model_time': 0.7336894059553742, 'learning_rate': 6e-06, 'epoch': 3.81})
31
+ Step 3100, Loss: {'mse_loss': 0.05278031900525093, 'totoal_loss': 0.05278031900525093, 'data_time': 0.0144145751837641, 'model_time': 0.7640310449060053, 'learning_rate': 6.200000000000001e-06, 'epoch': 3.93})
32
+ Step 3200, Loss: {'mse_loss': 0.08814053982496262, 'totoal_loss': 0.08814053982496262, 'data_time': 0.009902080986648798, 'model_time': 0.7202337700873613, 'learning_rate': 6.4000000000000006e-06, 'epoch': 4.06})
33
+ Step 3300, Loss: {'mse_loss': 0.08339204639196396, 'totoal_loss': 0.08339204639196396, 'data_time': 0.009181926026940346, 'model_time': 0.7987826920580119, 'learning_rate': 6.600000000000001e-06, 'epoch': 4.19})
34
+ Step 3400, Loss: {'mse_loss': 0.09494378417730331, 'totoal_loss': 0.09494378417730331, 'data_time': 0.0076734949834644794, 'model_time': 0.7216198700480163, 'learning_rate': 6.800000000000001e-06, 'epoch': 4.31})
35
+ Step 3500, Loss: {'mse_loss': 0.07682153582572937, 'totoal_loss': 0.07682153582572937, 'data_time': 0.00903781596571207, 'model_time': 0.7839847279246897, 'learning_rate': 7e-06, 'epoch': 4.44})
36
+ Step 3600, Loss: {'mse_loss': 0.08083033561706543, 'totoal_loss': 0.08083033561706543, 'data_time': 0.00918873492628336, 'model_time': 0.9449065409135073, 'learning_rate': 7.2000000000000005e-06, 'epoch': 4.57})
37
+ Step 3700, Loss: {'mse_loss': 0.05800517648458481, 'totoal_loss': 0.05800517648458481, 'data_time': 0.007829341106116772, 'model_time': 0.710397272137925, 'learning_rate': 7.4e-06, 'epoch': 4.7})
38
+ Step 3800, Loss: {'mse_loss': 0.0653364285826683, 'totoal_loss': 0.0653364285826683, 'data_time': 0.007326879072934389, 'model_time': 0.7036480049137026, 'learning_rate': 7.600000000000001e-06, 'epoch': 4.82})
39
+ Step 3900, Loss: {'mse_loss': 0.04460935294628143, 'totoal_loss': 0.04460935294628143, 'data_time': 0.009691164130344987, 'model_time': 0.733584949048236, 'learning_rate': 7.800000000000002e-06, 'epoch': 4.95})
40
+ Step 4000, Loss: {'mse_loss': 0.054958295077085495, 'totoal_loss': 0.054958295077085495, 'data_time': 0.021318275947123766, 'model_time': 0.7192143041174859, 'learning_rate': 8.000000000000001e-06, 'epoch': 5.08})
41
+ Step 4100, Loss: {'mse_loss': 0.09080984443426132, 'totoal_loss': 0.09080984443426132, 'data_time': 0.025003626942634583, 'model_time': 0.6847223239019513, 'learning_rate': 8.2e-06, 'epoch': 5.2})
42
+ Step 4200, Loss: {'mse_loss': 0.05915205180644989, 'totoal_loss': 0.05915205180644989, 'data_time': 0.021290350006893277, 'model_time': 0.7246363798622042, 'learning_rate': 8.400000000000001e-06, 'epoch': 5.33})
43
+ Step 4300, Loss: {'mse_loss': 0.07563979923725128, 'totoal_loss': 0.07563979923725128, 'data_time': 0.026143143884837627, 'model_time': 0.7060302880126983, 'learning_rate': 8.6e-06, 'epoch': 5.46})
44
+ Step 4400, Loss: {'mse_loss': 0.05889185145497322, 'totoal_loss': 0.05889185145497322, 'data_time': 0.02578150504268706, 'model_time': 0.7168116611428559, 'learning_rate': 8.8e-06, 'epoch': 5.58})
45
+ Step 4500, Loss: {'mse_loss': 0.07663919031620026, 'totoal_loss': 0.07663919031620026, 'data_time': 0.02249642601236701, 'model_time': 0.7698523090220988, 'learning_rate': 9e-06, 'epoch': 5.71})
46
+ Step 4600, Loss: {'mse_loss': 0.05813262239098549, 'totoal_loss': 0.05813262239098549, 'data_time': 0.024431263096630573, 'model_time': 0.7321392940357327, 'learning_rate': 9.200000000000002e-06, 'epoch': 5.84})
47
+ Step 4700, Loss: {'mse_loss': 0.0588911697268486, 'totoal_loss': 0.0588911697268486, 'data_time': 0.02698781294748187, 'model_time': 0.6934013438876718, 'learning_rate': 9.4e-06, 'epoch': 5.96})
48
+ Step 4800, Loss: {'mse_loss': 0.05283091589808464, 'totoal_loss': 0.05283091589808464, 'data_time': 0.007673229789361358, 'model_time': 0.7219831480178982, 'learning_rate': 9.600000000000001e-06, 'epoch': 6.09})
49
+ Step 4900, Loss: {'mse_loss': 0.04965442791581154, 'totoal_loss': 0.04965442791581154, 'data_time': 0.008381216088309884, 'model_time': 0.7626195831689984, 'learning_rate': 9.800000000000001e-06, 'epoch': 6.22})
50
+ Step 5000, Loss: {'mse_loss': 0.06723664700984955, 'totoal_loss': 0.06723664700984955, 'data_time': 0.007852589013054967, 'model_time': 0.7432782030664384, 'learning_rate': 1e-05, 'epoch': 6.35})
51
+ Step 5100, Loss: {'mse_loss': 0.04413532465696335, 'totoal_loss': 0.04413532465696335, 'data_time': 0.0003842890728265047, 'model_time': 0.7192614099476486, 'learning_rate': 9.999615090493604e-06, 'epoch': 6.47})
52
+ Step 5200, Loss: {'mse_loss': 0.04581495746970177, 'totoal_loss': 0.04581495746970177, 'data_time': 0.00046355905942618847, 'model_time': 0.7289061229676008, 'learning_rate': 9.998460422756089e-06, 'epoch': 6.6})
53
+ Step 5300, Loss: {'mse_loss': 0.055899471044540405, 'totoal_loss': 0.055899471044540405, 'data_time': 0.00035482319071888924, 'model_time': 0.7377690570428967, 'learning_rate': 9.996536179122874e-06, 'epoch': 6.73})
54
+ Step 5400, Loss: {'mse_loss': 0.06449367851018906, 'totoal_loss': 0.06449367851018906, 'data_time': 0.0003647380508482456, 'model_time': 0.7363722759764642, 'learning_rate': 9.993842663454337e-06, 'epoch': 6.85})
55
+ Step 5500, Loss: {'mse_loss': 0.0498468317091465, 'totoal_loss': 0.0498468317091465, 'data_time': 0.00044213212095201015, 'model_time': 0.8293114469852298, 'learning_rate': 9.990380301087824e-06, 'epoch': 6.98})
56
+ Step 5600, Loss: {'mse_loss': 0.03818480297923088, 'totoal_loss': 0.03818480297923088, 'data_time': 0.009067361941561103, 'model_time': 0.7324944920837879, 'learning_rate': 9.986149638770493e-06, 'epoch': 7.11})
57
+ Step 5700, Loss: {'mse_loss': 0.046330101788043976, 'totoal_loss': 0.046330101788043976, 'data_time': 0.009672838961705565, 'model_time': 0.7513528598938137, 'learning_rate': 9.981151344572967e-06, 'epoch': 7.23})
58
+ Step 5800, Loss: {'mse_loss': 0.05222151428461075, 'totoal_loss': 0.05222151428461075, 'data_time': 0.009589632973074913, 'model_time': 0.9874339371453971, 'learning_rate': 9.975386207783839e-06, 'epoch': 7.36})
59
+ Step 5900, Loss: {'mse_loss': 0.041126057505607605, 'totoal_loss': 0.041126057505607605, 'data_time': 0.008237549802288413, 'model_time': 0.7906141879502684, 'learning_rate': 9.968855138785041e-06, 'epoch': 7.49})
60
+ Step 6000, Loss: {'mse_loss': 0.02974648028612137, 'totoal_loss': 0.02974648028612137, 'data_time': 0.012266198871657252, 'model_time': 0.8003938121255487, 'learning_rate': 9.961559168908081e-06, 'epoch': 7.61})
61
+ Step 6100, Loss: {'mse_loss': 0.048154935240745544, 'totoal_loss': 0.048154935240745544, 'data_time': 0.01042544306255877, 'model_time': 0.7514346421230584, 'learning_rate': 9.953499450271174e-06, 'epoch': 7.74})
62
+ Step 6200, Loss: {'mse_loss': 0.05766667425632477, 'totoal_loss': 0.05766667425632477, 'data_time': 0.014442343031987548, 'model_time': 0.701609609182924, 'learning_rate': 9.944677255597332e-06, 'epoch': 7.87})
63
+ Step 6300, Loss: {'mse_loss': 0.04379759356379509, 'totoal_loss': 0.04379759356379509, 'data_time': 0.013660728000104427, 'model_time': 0.6858205159660429, 'learning_rate': 9.935093978013357e-06, 'epoch': 7.99})
64
+ Step 6400, Loss: {'mse_loss': 0.06816767901182175, 'totoal_loss': 0.06816767901182175, 'data_time': 0.00888041197322309, 'model_time': 0.7337419451214373, 'learning_rate': 9.924751130829878e-06, 'epoch': 8.12})
65
+ Step 6500, Loss: {'mse_loss': 0.0572710819542408, 'totoal_loss': 0.0572710819542408, 'data_time': 0.007837845012545586, 'model_time': 0.7275746911764145, 'learning_rate': 9.91365034730236e-06, 'epoch': 8.25})
66
+ Step 6600, Loss: {'mse_loss': 0.08202032744884491, 'totoal_loss': 0.08202032744884491, 'data_time': 0.00893455883488059, 'model_time': 0.7333916518837214, 'learning_rate': 9.901793380373204e-06, 'epoch': 8.38})
67
+ Step 6700, Loss: {'mse_loss': 0.04793311282992363, 'totoal_loss': 0.04793311282992363, 'data_time': 0.008598665008321404, 'model_time': 0.7216188898310065, 'learning_rate': 9.889182102394944e-06, 'epoch': 8.5})
68
+ Step 6800, Loss: {'mse_loss': 0.04859183728694916, 'totoal_loss': 0.04859183728694916, 'data_time': 0.009647457860410213, 'model_time': 0.7761687431484461, 'learning_rate': 9.875818504834564e-06, 'epoch': 8.63})
69
+ Step 6900, Loss: {'mse_loss': 0.06596384942531586, 'totoal_loss': 0.06596384942531586, 'data_time': 0.00926329498179257, 'model_time': 0.7350543760694563, 'learning_rate': 9.861704697959036e-06, 'epoch': 8.76})
70
+ Step 7000, Loss: {'mse_loss': 0.03300744667649269, 'totoal_loss': 0.03300744667649269, 'data_time': 0.00851822504773736, 'model_time': 0.752975304145366, 'learning_rate': 9.846842910502077e-06, 'epoch': 8.88})
71
+ Step 7100, Loss: {'mse_loss': 0.04593078792095184, 'totoal_loss': 0.04593078792095184, 'data_time': 0.019956520991399884, 'model_time': 0.7179968210402876, 'learning_rate': 9.831235489312212e-06, 'epoch': 9.01})
72
+ Step 7200, Loss: {'mse_loss': 0.05564356967806816, 'totoal_loss': 0.05564356967806816, 'data_time': 0.02495815302245319, 'model_time': 0.6977742679882795, 'learning_rate': 9.814884898982168e-06, 'epoch': 9.14})
73
+ Step 7300, Loss: {'mse_loss': 0.030550528317689896, 'totoal_loss': 0.030550528317689896, 'data_time': 0.02432660316117108, 'model_time': 0.7405949709936976, 'learning_rate': 9.797793721459709e-06, 'epoch': 9.26})
74
+ Step 7400, Loss: {'mse_loss': 0.02792925201356411, 'totoal_loss': 0.02792925201356411, 'data_time': 0.025558517081663013, 'model_time': 0.7210758950095624, 'learning_rate': 9.779964655639886e-06, 'epoch': 9.39})
75
+ Step 7500, Loss: {'mse_loss': 0.033714015036821365, 'totoal_loss': 0.033714015036821365, 'data_time': 0.03007809305563569, 'model_time': 0.7365246438421309, 'learning_rate': 9.761400516938874e-06, 'epoch': 9.52})
76
+ Step 7600, Loss: {'mse_loss': 0.03641580790281296, 'totoal_loss': 0.03641580790281296, 'data_time': 0.02385293086990714, 'model_time': 0.7129142789635807, 'learning_rate': 9.74210423684938e-06, 'epoch': 9.64})
77
+ Step 7700, Loss: {'mse_loss': 0.050382304936647415, 'totoal_loss': 0.050382304936647415, 'data_time': 0.020485511049628258, 'model_time': 0.7777568970341235, 'learning_rate': 9.722078862477715e-06, 'epoch': 9.77})
78
+ Step 7800, Loss: {'mse_loss': 0.027730099856853485, 'totoal_loss': 0.027730099856853485, 'data_time': 0.0208303090184927, 'model_time': 0.7050951209384948, 'learning_rate': 9.701327556062637e-06, 'epoch': 9.9})
79
+ Step 7900, Loss: {'mse_loss': 0.04284331947565079, 'totoal_loss': 0.04284331947565079, 'data_time': 0.008010240038856864, 'model_time': 0.7443130519241095, 'learning_rate': 9.679853594475985e-06, 'epoch': 10.03})
80
+ Step 8000, Loss: {'mse_loss': 0.03945721313357353, 'totoal_loss': 0.03945721313357353, 'data_time': 0.006530288141220808, 'model_time': 0.7085173239465803, 'learning_rate': 9.657660368705225e-06, 'epoch': 10.15})
81
+ Step 8100, Loss: {'mse_loss': 0.032548077404499054, 'totoal_loss': 0.032548077404499054, 'data_time': 0.011313133873045444, 'model_time': 0.7442460570018739, 'learning_rate': 9.634751383317983e-06, 'epoch': 10.28})
82
+ Step 8200, Loss: {'mse_loss': 0.03514796122908592, 'totoal_loss': 0.03514796122908592, 'data_time': 0.0086596820037812, 'model_time': 0.7177004681434482, 'learning_rate': 9.611130255908619e-06, 'epoch': 10.41})
83
+ Step 8300, Loss: {'mse_loss': 0.024159451946616173, 'totoal_loss': 0.024159451946616173, 'data_time': 0.009215222205966711, 'model_time': 0.7261630219873041, 'learning_rate': 9.586800716526974e-06, 'epoch': 10.53})
84
+ Step 8400, Loss: {'mse_loss': 0.03419061750173569, 'totoal_loss': 0.03419061750173569, 'data_time': 0.008653566939756274, 'model_time': 0.7319820479024202, 'learning_rate': 9.561766607089355e-06, 'epoch': 10.66})
85
+ Step 8500, Loss: {'mse_loss': 0.04643683880567551, 'totoal_loss': 0.04643683880567551, 'data_time': 0.008788130013272166, 'model_time': 0.8006200389936566, 'learning_rate': 9.536031880771846e-06, 'epoch': 10.79})
86
+ Step 8600, Loss: {'mse_loss': 0.029618550091981888, 'totoal_loss': 0.029618550091981888, 'data_time': 0.008822828065603971, 'model_time': 0.7439415659755468, 'learning_rate': 9.50960060138606e-06, 'epoch': 10.91})
87
+ Step 8700, Loss: {'mse_loss': 0.04652703180909157, 'totoal_loss': 0.04652703180909157, 'data_time': 0.008843415882438421, 'model_time': 0.7469273740425706, 'learning_rate': 9.482476942737411e-06, 'epoch': 11.04})
88
+ Step 8800, Loss: {'mse_loss': 0.026140477508306503, 'totoal_loss': 0.026140477508306503, 'data_time': 0.008231217972934246, 'model_time': 0.7542890359181911, 'learning_rate': 9.45466518796603e-06, 'epoch': 11.17})
89
+ Step 8900, Loss: {'mse_loss': 0.024704275652766228, 'totoal_loss': 0.024704275652766228, 'data_time': 0.008463392034173012, 'model_time': 0.8100507699418813, 'learning_rate': 9.426169728870399e-06, 'epoch': 11.29})
90
+ Step 9000, Loss: {'mse_loss': 0.0520421601831913, 'totoal_loss': 0.0520421601831913, 'data_time': 0.008665275992825627, 'model_time': 0.723668574122712, 'learning_rate': 9.396995065213835e-06, 'epoch': 11.42})
91
+ Step 9100, Loss: {'mse_loss': 0.024142159149050713, 'totoal_loss': 0.024142159149050713, 'data_time': 0.008695416850969195, 'model_time': 0.7273326739668846, 'learning_rate': 9.367145804013938e-06, 'epoch': 11.55})
92
+ Step 9200, Loss: {'mse_loss': 0.029765641316771507, 'totoal_loss': 0.029765641316771507, 'data_time': 0.009040709817782044, 'model_time': 0.7251796980854124, 'learning_rate': 9.336626658815071e-06, 'epoch': 11.68})
93
+ Step 9300, Loss: {'mse_loss': 0.035487230867147446, 'totoal_loss': 0.035487230867147446, 'data_time': 0.007586186984553933, 'model_time': 0.7450681671034545, 'learning_rate': 9.305442448944056e-06, 'epoch': 11.8})
94
+ Step 9400, Loss: {'mse_loss': 0.030828246846795082, 'totoal_loss': 0.030828246846795082, 'data_time': 0.009011777117848396, 'model_time': 0.7652956570964307, 'learning_rate': 9.273598098749124e-06, 'epoch': 11.93})
95
+ Step 9500, Loss: {'mse_loss': 0.02181900478899479, 'totoal_loss': 0.02181900478899479, 'data_time': 0.007748665986582637, 'model_time': 0.8278035260736942, 'learning_rate': 9.241098636822324e-06, 'epoch': 12.06})
96
+ Step 9600, Loss: {'mse_loss': 0.026809416711330414, 'totoal_loss': 0.026809416711330414, 'data_time': 0.007406304124742746, 'model_time': 0.7180087661836296, 'learning_rate': 9.207949195205442e-06, 'epoch': 12.18})
97
+ Step 9700, Loss: {'mse_loss': 0.0377095527946949, 'totoal_loss': 0.0377095527946949, 'data_time': 0.008719305042177439, 'model_time': 0.7908908519893885, 'learning_rate': 9.174155008579588e-06, 'epoch': 12.31})
98
+ Step 9800, Loss: {'mse_loss': 0.034582119435071945, 'totoal_loss': 0.034582119435071945, 'data_time': 0.007924494100734591, 'model_time': 0.7253129710443318, 'learning_rate': 9.139721413438583e-06, 'epoch': 12.44})
99
+ Step 9900, Loss: {'mse_loss': 0.03259926661849022, 'totoal_loss': 0.03259926661849022, 'data_time': 0.009857292985543609, 'model_time': 0.7152906411793083, 'learning_rate': 9.104653847246273e-06, 'epoch': 12.56})
100
+ Step 10000, Loss: {'mse_loss': 0.02112739160656929, 'totoal_loss': 0.02112739160656929, 'data_time': 0.007901228033006191, 'model_time': 0.7605401889886707, 'learning_rate': 9.068957847577869e-06, 'epoch': 12.69})
101
+ Step 10100, Loss: {'mse_loss': 0.034977272152900696, 'totoal_loss': 0.034977272152900696, 'data_time': 0.008564608870074153, 'model_time': 0.7511808280833066, 'learning_rate': 9.032639051245524e-06, 'epoch': 12.82})
102
+ Step 10200, Loss: {'mse_loss': 0.023625044152140617, 'totoal_loss': 0.023625044152140617, 'data_time': 0.009608559077605605, 'model_time': 0.7652532542124391, 'learning_rate': 8.995703193408199e-06, 'epoch': 12.94})
103
+ Step 10300, Loss: {'mse_loss': 0.03883536159992218, 'totoal_loss': 0.03883536159992218, 'data_time': 0.01677782298065722, 'model_time': 0.7215235810726881, 'learning_rate': 8.958156106666017e-06, 'epoch': 13.07})
104
+ Step 10400, Loss: {'mse_loss': 0.026885783299803734, 'totoal_loss': 0.026885783299803734, 'data_time': 0.01836428209207952, 'model_time': 0.7056313210632652, 'learning_rate': 8.92000372013924e-06, 'epoch': 13.2})
105
+ Step 10500, Loss: {'mse_loss': 0.030815334990620613, 'totoal_loss': 0.030815334990620613, 'data_time': 0.0147910350933671, 'model_time': 0.7142069479450583, 'learning_rate': 8.881252058531973e-06, 'epoch': 13.32})
106
+ Step 10600, Loss: {'mse_loss': 0.046091195195913315, 'totoal_loss': 0.046091195195913315, 'data_time': 0.0173741290345788, 'model_time': 0.7470220651011914, 'learning_rate': 8.841907241180809e-06, 'epoch': 13.45})
107
+ Step 10700, Loss: {'mse_loss': 0.030350854620337486, 'totoal_loss': 0.030350854620337486, 'data_time': 0.016161156818270683, 'model_time': 0.7157052271068096, 'learning_rate': 8.801975481088507e-06, 'epoch': 13.58})
108
+ Step 10800, Loss: {'mse_loss': 0.025874994695186615, 'totoal_loss': 0.025874994695186615, 'data_time': 0.01608007401227951, 'model_time': 0.7102708190213889, 'learning_rate': 8.761463083942889e-06, 'epoch': 13.71})
109
+ Step 10900, Loss: {'mse_loss': 0.02866210788488388, 'totoal_loss': 0.02866210788488388, 'data_time': 0.016439596191048622, 'model_time': 0.763556697871536, 'learning_rate': 8.720376447121098e-06, 'epoch': 13.83})
110
+ Step 11000, Loss: {'mse_loss': 0.0477592796087265, 'totoal_loss': 0.0477592796087265, 'data_time': 0.019001469016075134, 'model_time': 0.7213814191054553, 'learning_rate': 8.678722058679382e-06, 'epoch': 13.96})
111
+ Step 11100, Loss: {'mse_loss': 0.02658133953809738, 'totoal_loss': 0.02658133953809738, 'data_time': 0.008249984122812748, 'model_time': 0.7405799150001258, 'learning_rate': 8.636506496328546e-06, 'epoch': 14.09})
112
+ Step 11200, Loss: {'mse_loss': 0.03492595627903938, 'totoal_loss': 0.03492595627903938, 'data_time': 0.00756050692871213, 'model_time': 0.7328154870774597, 'learning_rate': 8.593736426395268e-06, 'epoch': 14.21})
113
+ Step 11300, Loss: {'mse_loss': 0.021378258243203163, 'totoal_loss': 0.021378258243203163, 'data_time': 0.007722261128947139, 'model_time': 0.7401760499924421, 'learning_rate': 8.550418602769392e-06, 'epoch': 14.34})
114
+ Step 11400, Loss: {'mse_loss': 0.03945727273821831, 'totoal_loss': 0.03945727273821831, 'data_time': 0.008043112931773067, 'model_time': 0.7229201970621943, 'learning_rate': 8.506559865837425e-06, 'epoch': 14.47})
115
+ Step 11500, Loss: {'mse_loss': 0.03236212581396103, 'totoal_loss': 0.03236212581396103, 'data_time': 0.00901976996101439, 'model_time': 0.7051157241221517, 'learning_rate': 8.462167141402359e-06, 'epoch': 14.59})
116
+ Step 11600, Loss: {'mse_loss': 0.029645167291164398, 'totoal_loss': 0.029645167291164398, 'data_time': 0.00856711994856596, 'model_time': 0.7705928180366755, 'learning_rate': 8.417247439589994e-06, 'epoch': 14.72})
117
+ Step 11700, Loss: {'mse_loss': 0.02318575419485569, 'totoal_loss': 0.02318575419485569, 'data_time': 0.007248068926855922, 'model_time': 0.722040677908808, 'learning_rate': 8.371807853741978e-06, 'epoch': 14.85})
118
+ Step 11800, Loss: {'mse_loss': 0.031902432441711426, 'totoal_loss': 0.031902432441711426, 'data_time': 0.009349308907985687, 'model_time': 0.764110088115558, 'learning_rate': 8.325855559295663e-06, 'epoch': 14.97})
119
+ Step 11900, Loss: {'mse_loss': 0.017295733094215393, 'totoal_loss': 0.017295733094215393, 'data_time': 0.015229621902108192, 'model_time': 0.7246445659548044, 'learning_rate': 8.279397812651042e-06, 'epoch': 15.1})
120
+ Step 12000, Loss: {'mse_loss': 0.029294457286596298, 'totoal_loss': 0.029294457286596298, 'data_time': 0.014689462957903743, 'model_time': 0.7437451719306409, 'learning_rate': 8.232441950024864e-06, 'epoch': 15.23})
121
+ Step 12100, Loss: {'mse_loss': 0.02765197493135929, 'totoal_loss': 0.02765197493135929, 'data_time': 0.0165247549302876, 'model_time': 0.7262996730860323, 'learning_rate': 8.184995386292166e-06, 'epoch': 15.36})
122
+ Step 12200, Loss: {'mse_loss': 0.030410384759306908, 'totoal_loss': 0.030410384759306908, 'data_time': 0.02151306695304811, 'model_time': 0.7106658569537103, 'learning_rate': 8.137065613815381e-06, 'epoch': 15.48})
123
+ Step 12300, Loss: {'mse_loss': 0.020871562883257866, 'totoal_loss': 0.020871562883257866, 'data_time': 0.014099151827394962, 'model_time': 0.7825264220591635, 'learning_rate': 8.088660201261203e-06, 'epoch': 15.61})
124
+ Step 12400, Loss: {'mse_loss': 0.029274992644786835, 'totoal_loss': 0.029274992644786835, 'data_time': 0.017958314856514335, 'model_time': 0.8019793138373643, 'learning_rate': 8.039786792405404e-06, 'epoch': 15.74})
125
+ Step 12500, Loss: {'mse_loss': 0.05570228770375252, 'totoal_loss': 0.05570228770375252, 'data_time': 0.01806611195206642, 'model_time': 0.7464383409824222, 'learning_rate': 7.990453104925807e-06, 'epoch': 15.86})
126
+ Step 12600, Loss: {'mse_loss': 0.02268991246819496, 'totoal_loss': 0.02268991246819496, 'data_time': 0.015921700978651643, 'model_time': 0.6968935581389815, 'learning_rate': 7.940666929183554e-06, 'epoch': 15.99})
127
+ Step 12700, Loss: {'mse_loss': 0.017081910744309425, 'totoal_loss': 0.017081910744309425, 'data_time': 0.015108749968931079, 'model_time': 0.7315952340140939, 'learning_rate': 7.89043612699294e-06, 'epoch': 16.12})
128
+ Step 12800, Loss: {'mse_loss': 0.02601029723882675, 'totoal_loss': 0.02601029723882675, 'data_time': 0.015693053836002946, 'model_time': 0.7078120170626789, 'learning_rate': 7.839768630379917e-06, 'epoch': 16.24})
129
+ Step 12900, Loss: {'mse_loss': 0.021113703027367592, 'totoal_loss': 0.021113703027367592, 'data_time': 0.0166120829526335, 'model_time': 0.7204695038963109, 'learning_rate': 7.788672440329562e-06, 'epoch': 16.37})
130
+ Step 13000, Loss: {'mse_loss': 0.028386060148477554, 'totoal_loss': 0.028386060148477554, 'data_time': 0.016955672996118665, 'model_time': 0.7572126099839807, 'learning_rate': 7.737155625522608e-06, 'epoch': 16.5})
131
+ Step 13100, Loss: {'mse_loss': 0.04708750173449516, 'totoal_loss': 0.04708750173449516, 'data_time': 0.014525232836604118, 'model_time': 0.731205120915547, 'learning_rate': 7.685226321061318e-06, 'epoch': 16.62})
132
+ Step 13200, Loss: {'mse_loss': 0.02853744477033615, 'totoal_loss': 0.02853744477033615, 'data_time': 0.013745343079790473, 'model_time': 0.7658782929647714, 'learning_rate': 7.632892727184844e-06, 'epoch': 16.75})
133
+ Step 13300, Loss: {'mse_loss': 0.04641619697213173, 'totoal_loss': 0.04641619697213173, 'data_time': 0.014735472854226828, 'model_time': 0.765762688126415, 'learning_rate': 7.580163107974335e-06, 'epoch': 16.88})
134
+ Step 13400, Loss: {'mse_loss': 0.02457761950790882, 'totoal_loss': 0.02457761950790882, 'data_time': 0.012277016881853342, 'model_time': 0.7441733351442963, 'learning_rate': 7.527045790047922e-06, 'epoch': 17.01})
135
+ Step 13500, Loss: {'mse_loss': 0.015469598583877087, 'totoal_loss': 0.015469598583877087, 'data_time': 0.007910947082564235, 'model_time': 0.7364350471179932, 'learning_rate': 7.473549161245862e-06, 'epoch': 17.13})
136
+ Step 13600, Loss: {'mse_loss': 0.015537239611148834, 'totoal_loss': 0.015537239611148834, 'data_time': 0.008139525074511766, 'model_time': 0.7466149248648435, 'learning_rate': 7.419681669305998e-06, 'epoch': 17.26})
137
+ Step 13700, Loss: {'mse_loss': 0.018221735954284668, 'totoal_loss': 0.018221735954284668, 'data_time': 0.008266586111858487, 'model_time': 0.7473207400180399, 'learning_rate': 7.365451820529756e-06, 'epoch': 17.39})
138
+ Step 13800, Loss: {'mse_loss': 0.027748428285121918, 'totoal_loss': 0.027748428285121918, 'data_time': 0.007696480955928564, 'model_time': 0.7831198920030147, 'learning_rate': 7.310868178438909e-06, 'epoch': 17.51})
139
+ Step 13900, Loss: {'mse_loss': 0.01485327910631895, 'totoal_loss': 0.01485327910631895, 'data_time': 0.008131183916702867, 'model_time': 0.7237970938440412, 'learning_rate': 7.2559393624232985e-06, 'epoch': 17.64})
140
+ Step 14000, Loss: {'mse_loss': 0.019479900598526, 'totoal_loss': 0.019479900598526, 'data_time': 0.008753231028094888, 'model_time': 0.713789083994925, 'learning_rate': 7.2006740463797296e-06, 'epoch': 17.77})
141
+ Step 14100, Loss: {'mse_loss': 0.024826310575008392, 'totoal_loss': 0.024826310575008392, 'data_time': 0.009536126861348748, 'model_time': 0.7235601090360433, 'learning_rate': 7.145080957342262e-06, 'epoch': 17.89})
142
+ Step 14200, Loss: {'mse_loss': 0.02557905949652195, 'totoal_loss': 0.02557905949652195, 'data_time': 0.020827962085604668, 'model_time': 0.709072079975158, 'learning_rate': 7.0891688741041065e-06, 'epoch': 18.02})
143
+ Step 14300, Loss: {'mse_loss': 0.02520993910729885, 'totoal_loss': 0.02520993910729885, 'data_time': 0.022786781890317798, 'model_time': 0.7802902800031006, 'learning_rate': 7.032946625831363e-06, 'epoch': 18.15})
144
+ Step 14400, Loss: {'mse_loss': 0.02706632763147354, 'totoal_loss': 0.02706632763147354, 'data_time': 0.022582720033824444, 'model_time': 0.7420064210891724, 'learning_rate': 6.976423090668781e-06, 'epoch': 18.27})
145
+ Step 14500, Loss: {'mse_loss': 0.022427134215831757, 'totoal_loss': 0.022427134215831757, 'data_time': 0.024399532936513424, 'model_time': 0.7471005900297314, 'learning_rate': 6.919607194337806e-06, 'epoch': 18.4})
146
+ Step 14600, Loss: {'mse_loss': 0.013430328108370304, 'totoal_loss': 0.013430328108370304, 'data_time': 0.02817999292165041, 'model_time': 0.7093805898912251, 'learning_rate': 6.8625079087270976e-06, 'epoch': 18.53})
147
+ Step 14700, Loss: {'mse_loss': 0.015792641788721085, 'totoal_loss': 0.015792641788721085, 'data_time': 0.022043962962925434, 'model_time': 0.8089594100601971, 'learning_rate': 6.8051342504757714e-06, 'epoch': 18.65})
148
+ Step 14800, Loss: {'mse_loss': 0.019468635320663452, 'totoal_loss': 0.019468635320663452, 'data_time': 0.022636614041402936, 'model_time': 1.0396152441389859, 'learning_rate': 6.747495279549561e-06, 'epoch': 18.78})
149
+ Step 14900, Loss: {'mse_loss': 0.03393068164587021, 'totoal_loss': 0.03393068164587021, 'data_time': 0.02176014520227909, 'model_time': 0.7451866650953889, 'learning_rate': 6.6896000978101465e-06, 'epoch': 18.91})
150
+ Step 15000, Loss: {'mse_loss': 0.01867198571562767, 'totoal_loss': 0.01867198571562767, 'data_time': 0.009000751888379455, 'model_time': 0.7251133280806243, 'learning_rate': 6.631457847577869e-06, 'epoch': 19.04})
151
+ Step 15100, Loss: {'mse_loss': 0.014204774983227253, 'totoal_loss': 0.014204774983227253, 'data_time': 0.007867954205721617, 'model_time': 0.7456278509926051, 'learning_rate': 6.573077710188046e-06, 'epoch': 19.16})
152
+ Step 15200, Loss: {'mse_loss': 0.012882573530077934, 'totoal_loss': 0.012882573530077934, 'data_time': 0.008133128052577376, 'model_time': 0.7608496299944818, 'learning_rate': 6.5144689045411345e-06, 'epoch': 19.29})
153
+ Step 15300, Loss: {'mse_loss': 0.032805606722831726, 'totoal_loss': 0.032805606722831726, 'data_time': 0.008857934037223458, 'model_time': 0.7699599331244826, 'learning_rate': 6.455640685646961e-06, 'epoch': 19.42})
154
+ Step 15400, Loss: {'mse_loss': 0.01825312338769436, 'totoal_loss': 0.01825312338769436, 'data_time': 0.010487762046977878, 'model_time': 0.8139262071345001, 'learning_rate': 6.396602343163248e-06, 'epoch': 19.54})
155
+ Step 15500, Loss: {'mse_loss': 0.019806262105703354, 'totoal_loss': 0.019806262105703354, 'data_time': 0.007786327041685581, 'model_time': 0.8079312858171761, 'learning_rate': 6.337363199928669e-06, 'epoch': 19.67})
156
+ Step 15600, Loss: {'mse_loss': 0.014873535372316837, 'totoal_loss': 0.014873535372316837, 'data_time': 0.009071356151252985, 'model_time': 0.9482989981770515, 'learning_rate': 6.277932610490659e-06, 'epoch': 19.8})
157
+ Step 15700, Loss: {'mse_loss': 0.019110282883048058, 'totoal_loss': 0.019110282883048058, 'data_time': 0.01028709183447063, 'model_time': 0.7377312669996172, 'learning_rate': 6.218319959628234e-06, 'epoch': 19.92})
158
+ Step 15800, Loss: {'mse_loss': 0.020222537219524384, 'totoal_loss': 0.020222537219524384, 'data_time': 0.017616320867091417, 'model_time': 0.7479105498641729, 'learning_rate': 6.158534660870018e-06, 'epoch': 20.05})
159
+ Step 15900, Loss: {'mse_loss': 0.0345027782022953, 'totoal_loss': 0.0345027782022953, 'data_time': 0.019254246959462762, 'model_time': 0.9522274280898273, 'learning_rate': 6.0985861550077345e-06, 'epoch': 20.18})
160
+ Step 16000, Loss: {'mse_loss': 0.025693947449326515, 'totoal_loss': 0.025693947449326515, 'data_time': 0.018895579036325216, 'model_time': 0.7125251770485193, 'learning_rate': 6.0384839086054095e-06, 'epoch': 20.3})
161
+ Step 16100, Loss: {'mse_loss': 0.016282957047224045, 'totoal_loss': 0.016282957047224045, 'data_time': 0.016033997060731053, 'model_time': 0.7549559769686311, 'learning_rate': 5.978237412504472e-06, 'epoch': 20.43})
162
+ Step 16200, Loss: {'mse_loss': 0.019176851958036423, 'totoal_loss': 0.019176851958036423, 'data_time': 0.017901767045259476, 'model_time': 0.7243408178910613, 'learning_rate': 5.917856180325059e-06, 'epoch': 20.56})
163
+ Step 16300, Loss: {'mse_loss': 0.012280656024813652, 'totoal_loss': 0.012280656024813652, 'data_time': 0.01580202206969261, 'model_time': 0.717068161116913, 'learning_rate': 5.857349746963692e-06, 'epoch': 20.69})
164
+ Step 16400, Loss: {'mse_loss': 0.03882068023085594, 'totoal_loss': 0.03882068023085594, 'data_time': 0.015067890984937549, 'model_time': 0.7442515301518142, 'learning_rate': 5.796727667087611e-06, 'epoch': 20.81})
165
+ Step 16500, Loss: {'mse_loss': 0.019434785470366478, 'totoal_loss': 0.019434785470366478, 'data_time': 0.000401871046051383, 'model_time': 0.7190292009618133, 'learning_rate': 5.735999513625984e-06, 'epoch': 20.94})
166
+ Step 16600, Loss: {'mse_loss': 0.014689699746668339, 'totoal_loss': 0.014689699746668339, 'data_time': 0.016739128855988383, 'model_time': 0.9808980741072446, 'learning_rate': 5.675174876258223e-06, 'epoch': 21.07})
167
+ Step 16700, Loss: {'mse_loss': 0.032239753752946854, 'totoal_loss': 0.032239753752946854, 'data_time': 0.01424372592009604, 'model_time': 0.7463308670558035, 'learning_rate': 5.614263359899673e-06, 'epoch': 21.19})
168
+ Step 16800, Loss: {'mse_loss': 0.026636583730578423, 'totoal_loss': 0.026636583730578423, 'data_time': 0.01718785404227674, 'model_time': 0.746411896077916, 'learning_rate': 5.553274583184875e-06, 'epoch': 21.32})
169
+ Step 16900, Loss: {'mse_loss': 0.036078471690416336, 'totoal_loss': 0.036078471690416336, 'data_time': 0.014865174191072583, 'model_time': 0.7507895948365331, 'learning_rate': 5.492218176948673e-06, 'epoch': 21.45})
170
+ Step 17000, Loss: {'mse_loss': 0.025503022596240044, 'totoal_loss': 0.025503022596240044, 'data_time': 0.015351353911682963, 'model_time': 0.7344565340317786, 'learning_rate': 5.431103782705404e-06, 'epoch': 21.57})
171
+ Step 17100, Loss: {'mse_loss': 0.016744783148169518, 'totoal_loss': 0.016744783148169518, 'data_time': 0.01586559903807938, 'model_time': 0.7167437199968845, 'learning_rate': 5.369941051126377e-06, 'epoch': 21.7})
172
+ Step 17200, Loss: {'mse_loss': 0.012624125927686691, 'totoal_loss': 0.012624125927686691, 'data_time': 0.01703551411628723, 'model_time': 0.7151712619233876, 'learning_rate': 5.308739640515932e-06, 'epoch': 21.83})
173
+ Step 17300, Loss: {'mse_loss': 0.010991339571774006, 'totoal_loss': 0.010991339571774006, 'data_time': 0.01460343413054943, 'model_time': 0.8238347580190748, 'learning_rate': 5.24750921528627e-06, 'epoch': 21.95})
174
+ Step 17400, Loss: {'mse_loss': 0.024661488831043243, 'totoal_loss': 0.024661488831043243, 'data_time': 0.015136903151869774, 'model_time': 0.7079020489472896, 'learning_rate': 5.186259444431344e-06, 'epoch': 22.08})
175
+ Step 17500, Loss: {'mse_loss': 0.023725861683487892, 'totoal_loss': 0.023725861683487892, 'data_time': 0.01467822096310556, 'model_time': 0.7325303051620722, 'learning_rate': 5.125e-06, 'epoch': 22.21})
176
+ Step 17600, Loss: {'mse_loss': 0.015513207763433456, 'totoal_loss': 0.015513207763433456, 'data_time': 0.015917957993224263, 'model_time': 0.7233186368830502, 'learning_rate': 5.063740555568656e-06, 'epoch': 22.34})
177
+ Step 17700, Loss: {'mse_loss': 0.00916901882737875, 'totoal_loss': 0.00916901882737875, 'data_time': 0.016042217146605253, 'model_time': 0.714993063127622, 'learning_rate': 5.002490784713731e-06, 'epoch': 22.46})
178
+ Step 17800, Loss: {'mse_loss': 0.014762249775230885, 'totoal_loss': 0.014762249775230885, 'data_time': 0.017573671881109476, 'model_time': 0.7163768650498241, 'learning_rate': 4.9412603594840695e-06, 'epoch': 22.59})
179
+ Step 17900, Loss: {'mse_loss': 0.018687643110752106, 'totoal_loss': 0.018687643110752106, 'data_time': 0.013882712926715612, 'model_time': 0.7518526129424572, 'learning_rate': 4.8800589488736245e-06, 'epoch': 22.72})
180
+ Step 18000, Loss: {'mse_loss': 0.02420581504702568, 'totoal_loss': 0.02420581504702568, 'data_time': 0.014691502088680863, 'model_time': 0.702736389124766, 'learning_rate': 4.818896217294598e-06, 'epoch': 22.84})
181
+ Step 18100, Loss: {'mse_loss': 0.01674632728099823, 'totoal_loss': 0.01674632728099823, 'data_time': 0.01459342404268682, 'model_time': 0.7755332170054317, 'learning_rate': 4.757781823051329e-06, 'epoch': 22.97})
182
+ Step 18200, Loss: {'mse_loss': 0.01190612930804491, 'totoal_loss': 0.01190612930804491, 'data_time': 0.008671310031786561, 'model_time': 0.7063489239662886, 'learning_rate': 4.696725416815128e-06, 'epoch': 23.1})
183
+ Step 18300, Loss: {'mse_loss': 0.011315767653286457, 'totoal_loss': 0.011315767653286457, 'data_time': 0.00987901701591909, 'model_time': 0.7480256841517985, 'learning_rate': 4.635736640100327e-06, 'epoch': 23.22})
184
+ Step 18400, Loss: {'mse_loss': 0.016005445271730423, 'totoal_loss': 0.016005445271730423, 'data_time': 0.007372354157269001, 'model_time': 0.8038411289453506, 'learning_rate': 4.574825123741778e-06, 'epoch': 23.35})
185
+ Step 18500, Loss: {'mse_loss': 0.009749491699039936, 'totoal_loss': 0.009749491699039936, 'data_time': 0.009072111919522285, 'model_time': 0.7116200209129602, 'learning_rate': 4.5140004863740165e-06, 'epoch': 23.48})
186
+ Step 18600, Loss: {'mse_loss': 0.018458232283592224, 'totoal_loss': 0.018458232283592224, 'data_time': 0.007715175161138177, 'model_time': 0.7945438269525766, 'learning_rate': 4.45327233291239e-06, 'epoch': 23.6})
187
+ Step 18700, Loss: {'mse_loss': 0.019806379452347755, 'totoal_loss': 0.019806379452347755, 'data_time': 0.007912172004580498, 'model_time': 0.725960450945422, 'learning_rate': 4.39265025303631e-06, 'epoch': 23.73})
188
+ Step 18800, Loss: {'mse_loss': 0.027688564732670784, 'totoal_loss': 0.027688564732670784, 'data_time': 0.0099213148932904, 'model_time': 0.8333387759048492, 'learning_rate': 4.332143819674943e-06, 'epoch': 23.86})
189
+ Step 18900, Loss: {'mse_loss': 0.014545466750860214, 'totoal_loss': 0.014545466750860214, 'data_time': 0.008893575984984636, 'model_time': 0.7328938900027424, 'learning_rate': 4.271762587495529e-06, 'epoch': 23.98})
190
+ Step 19000, Loss: {'mse_loss': 0.01569955423474312, 'totoal_loss': 0.01569955423474312, 'data_time': 0.021896824007853866, 'model_time': 0.7280957119073719, 'learning_rate': 4.2115160913945914e-06, 'epoch': 24.11})
191
+ Step 19100, Loss: {'mse_loss': 0.01215741503983736, 'totoal_loss': 0.01215741503983736, 'data_time': 0.023049663985148072, 'model_time': 0.7343394150957465, 'learning_rate': 4.151413844992267e-06, 'epoch': 24.24})
192
+ Step 19200, Loss: {'mse_loss': 0.01122222002595663, 'totoal_loss': 0.01122222002595663, 'data_time': 0.02242114394903183, 'model_time': 0.711982331937179, 'learning_rate': 4.091465339129985e-06, 'epoch': 24.37})
193
+ Step 19300, Loss: {'mse_loss': 0.009234857745468616, 'totoal_loss': 0.009234857745468616, 'data_time': 0.021737338975071907, 'model_time': 0.6997046349570155, 'learning_rate': 4.031680040371768e-06, 'epoch': 24.49})
194
+ Step 19400, Loss: {'mse_loss': 0.012834487482905388, 'totoal_loss': 0.012834487482905388, 'data_time': 0.020842593163251877, 'model_time': 0.763354288879782, 'learning_rate': 3.972067389509344e-06, 'epoch': 24.62})
195
+ Step 19500, Loss: {'mse_loss': 0.01841934397816658, 'totoal_loss': 0.01841934397816658, 'data_time': 0.020725741982460022, 'model_time': 0.7391947321593761, 'learning_rate': 3.912636800071335e-06, 'epoch': 24.75})
196
+ Step 19600, Loss: {'mse_loss': 0.02911759354174137, 'totoal_loss': 0.02911759354174137, 'data_time': 0.023603218141943216, 'model_time': 0.7468897651415318, 'learning_rate': 3.853397656836754e-06, 'epoch': 24.87})
197
+ Step 19700, Loss: {'mse_loss': 0.020647505298256874, 'totoal_loss': 0.020647505298256874, 'data_time': 1.22839763504453, 'model_time': 0.9240984041243792, 'learning_rate': 3.7943593143530404e-06, 'epoch': 25.0})
198
+ Step 19800, Loss: {'mse_loss': 0.009802502579987049, 'totoal_loss': 0.009802502579987049, 'data_time': 0.009933554101735353, 'model_time': 0.7150624739006162, 'learning_rate': 3.735531095458867e-06, 'epoch': 25.13})
199
+ Step 19900, Loss: {'mse_loss': 0.013376299291849136, 'totoal_loss': 0.013376299291849136, 'data_time': 0.007537018042057753, 'model_time': 0.7205919148400426, 'learning_rate': 3.6769222898119562e-06, 'epoch': 25.25})
200
+ Step 20000, Loss: {'mse_loss': 0.017695149406790733, 'totoal_loss': 0.017695149406790733, 'data_time': 0.00848980899900198, 'model_time': 0.7514795300085098, 'learning_rate': 3.618542152422132e-06, 'epoch': 25.38})
201
+ Step 20100, Loss: {'mse_loss': 0.017792126163840294, 'totoal_loss': 0.017792126163840294, 'data_time': 0.010456735966727138, 'model_time': 0.7489552290644497, 'learning_rate': 3.560399902189855e-06, 'epoch': 25.51})
202
+ Step 20200, Loss: {'mse_loss': 0.006923952605575323, 'totoal_loss': 0.006923952605575323, 'data_time': 0.010687240865081549, 'model_time': 0.7625690910499543, 'learning_rate': 3.502504720450441e-06, 'epoch': 25.63})
203
+ Step 20300, Loss: {'mse_loss': 0.01608235575258732, 'totoal_loss': 0.01608235575258732, 'data_time': 0.009618441108614206, 'model_time': 0.7298045689240098, 'learning_rate': 3.4448657495242304e-06, 'epoch': 25.76})
204
+ Step 20400, Loss: {'mse_loss': 0.016891708597540855, 'totoal_loss': 0.016891708597540855, 'data_time': 0.011798834893852472, 'model_time': 0.8052964711096138, 'learning_rate': 3.387492091272904e-06, 'epoch': 25.89})
205
+ Step 20500, Loss: {'mse_loss': 0.008381481282413006, 'totoal_loss': 0.008381481282413006, 'data_time': 0.017214577877894044, 'model_time': 0.735916897887364, 'learning_rate': 3.3303928056621955e-06, 'epoch': 26.02})
206
+ Step 20600, Loss: {'mse_loss': 0.018857736140489578, 'totoal_loss': 0.018857736140489578, 'data_time': 0.015054655959829688, 'model_time': 0.7165393668692559, 'learning_rate': 3.2735769093312202e-06, 'epoch': 26.14})
207
+ Step 20700, Loss: {'mse_loss': 0.008410196751356125, 'totoal_loss': 0.008410196751356125, 'data_time': 0.016247731167823076, 'model_time': 0.817879525013268, 'learning_rate': 3.217053374168639e-06, 'epoch': 26.27})
208
+ Step 20800, Loss: {'mse_loss': 0.008958414196968079, 'totoal_loss': 0.008958414196968079, 'data_time': 0.019423544174060225, 'model_time': 0.7320623879786581, 'learning_rate': 3.1608311258958953e-06, 'epoch': 26.4})
209
+ Step 20900, Loss: {'mse_loss': 0.019863653928041458, 'totoal_loss': 0.019863653928041458, 'data_time': 0.015504029113799334, 'model_time': 0.7232895910274237, 'learning_rate': 3.10491904265774e-06, 'epoch': 26.52})
210
+ Step 21000, Loss: {'mse_loss': 0.022275742143392563, 'totoal_loss': 0.022275742143392563, 'data_time': 0.015701319789513946, 'model_time': 0.7353262200485915, 'learning_rate': 3.0493259536202714e-06, 'epoch': 26.65})
211
+ Step 21100, Loss: {'mse_loss': 0.020167917013168335, 'totoal_loss': 0.020167917013168335, 'data_time': 0.014858919894322753, 'model_time': 0.7246836749836802, 'learning_rate': 2.9940606375767038e-06, 'epoch': 26.78})
212
+ Step 21200, Loss: {'mse_loss': 0.013194529339671135, 'totoal_loss': 0.013194529339671135, 'data_time': 0.016004289966076612, 'model_time': 0.7290922978427261, 'learning_rate': 2.939131821561094e-06, 'epoch': 26.9})
213
+ Step 21300, Loss: {'mse_loss': 0.007493071258068085, 'totoal_loss': 0.007493071258068085, 'data_time': 0.02138680312782526, 'model_time': 0.797394891967997, 'learning_rate': 2.8845481794702473e-06, 'epoch': 27.03})
214
+ Step 21400, Loss: {'mse_loss': 0.010835332795977592, 'totoal_loss': 0.010835332795977592, 'data_time': 0.022760105086490512, 'model_time': 0.7158432418946177, 'learning_rate': 2.830318330694004e-06, 'epoch': 27.16})
215
+ Step 21500, Loss: {'mse_loss': 0.014398063533008099, 'totoal_loss': 0.014398063533008099, 'data_time': 0.025480028009042144, 'model_time': 0.7900974899530411, 'learning_rate': 2.7764508387541378e-06, 'epoch': 27.28})
216
+ Step 21600, Loss: {'mse_loss': 0.015642955899238586, 'totoal_loss': 0.015642955899238586, 'data_time': 0.021533265011385083, 'model_time': 0.7276404399890453, 'learning_rate': 2.7229542099520797e-06, 'epoch': 27.41})
217
+ Step 21700, Loss: {'mse_loss': 0.009911919012665749, 'totoal_loss': 0.009911919012665749, 'data_time': 0.02208984992466867, 'model_time': 0.7716071230825037, 'learning_rate': 2.669836892025666e-06, 'epoch': 27.54})
218
+ Step 21800, Loss: {'mse_loss': 0.01529488991945982, 'totoal_loss': 0.01529488991945982, 'data_time': 0.026133898179978132, 'model_time': 0.7117758980020881, 'learning_rate': 2.6171072728151557e-06, 'epoch': 27.66})
219
+ Step 21900, Loss: {'mse_loss': 0.008188425563275814, 'totoal_loss': 0.008188425563275814, 'data_time': 0.023917213082313538, 'model_time': 1.000063946004957, 'learning_rate': 2.5647736789386828e-06, 'epoch': 27.79})
220
+ Step 22000, Loss: {'mse_loss': 0.026301568374037743, 'totoal_loss': 0.026301568374037743, 'data_time': 0.023068757029250264, 'model_time': 0.6938070359174162, 'learning_rate': 2.5128443744773904e-06, 'epoch': 27.92})
221
+ Step 22100, Loss: {'mse_loss': 0.012259405106306076, 'totoal_loss': 0.012259405106306076, 'data_time': 0.007460758090019226, 'model_time': 0.7398296929895878, 'learning_rate': 2.4613275596704386e-06, 'epoch': 28.05})
222
+ Step 22200, Loss: {'mse_loss': 0.021097563207149506, 'totoal_loss': 0.021097563207149506, 'data_time': 0.010566104901954532, 'model_time': 0.7281733830459416, 'learning_rate': 2.4102313696200853e-06, 'epoch': 28.17})
223
+ Step 22300, Loss: {'mse_loss': 0.006350931711494923, 'totoal_loss': 0.006350931711494923, 'data_time': 0.008185345912352204, 'model_time': 0.7155208189506084, 'learning_rate': 2.359563873007063e-06, 'epoch': 28.3})
224
+ Step 22400, Loss: {'mse_loss': 0.014966975897550583, 'totoal_loss': 0.014966975897550583, 'data_time': 0.008792300010100007, 'model_time': 0.7319295469205827, 'learning_rate': 2.3093330708164465e-06, 'epoch': 28.43})
225
+ Step 22500, Loss: {'mse_loss': 0.021197719499468803, 'totoal_loss': 0.021197719499468803, 'data_time': 0.008915846003219485, 'model_time': 0.7582757349591702, 'learning_rate': 2.2595468950741943e-06, 'epoch': 28.55})
226
+ Step 22600, Loss: {'mse_loss': 0.009249805472791195, 'totoal_loss': 0.009249805472791195, 'data_time': 0.009282384999096394, 'model_time': 0.7213100988883525, 'learning_rate': 2.2102132075945974e-06, 'epoch': 28.68})
227
+ Step 22700, Loss: {'mse_loss': 0.011977381072938442, 'totoal_loss': 0.011977381072938442, 'data_time': 0.00780450995080173, 'model_time': 0.759087760001421, 'learning_rate': 2.1613397987388e-06, 'epoch': 28.81})
228
+ Step 22800, Loss: {'mse_loss': 0.012587880715727806, 'totoal_loss': 0.012587880715727806, 'data_time': 0.0077867398504167795, 'model_time': 0.7586801750585437, 'learning_rate': 2.1129343861846207e-06, 'epoch': 28.93})
229
+ Step 22900, Loss: {'mse_loss': 0.007117573171854019, 'totoal_loss': 0.007117573171854019, 'data_time': 0.02266771881841123, 'model_time': 0.7169011880178005, 'learning_rate': 2.065004613707836e-06, 'epoch': 29.06})
230
+ Step 23000, Loss: {'mse_loss': 0.006376058328896761, 'totoal_loss': 0.006376058328896761, 'data_time': 0.021805207943543792, 'model_time': 0.7717795169446617, 'learning_rate': 2.0175580499751375e-06, 'epoch': 29.19})
231
+ Step 23100, Loss: {'mse_loss': 0.02195570059120655, 'totoal_loss': 0.02195570059120655, 'data_time': 0.02630824502557516, 'model_time': 0.7895452559459955, 'learning_rate': 1.9706021873489604e-06, 'epoch': 29.31})
232
+ Step 23200, Loss: {'mse_loss': 0.007210119627416134, 'totoal_loss': 0.007210119627416134, 'data_time': 0.022218263940885663, 'model_time': 0.7334549289662391, 'learning_rate': 1.924144440704338e-06, 'epoch': 29.44})
233
+ Step 23300, Loss: {'mse_loss': 0.010045252740383148, 'totoal_loss': 0.010045252740383148, 'data_time': 0.023633233970031142, 'model_time': 0.746527373092249, 'learning_rate': 1.8781921462580238e-06, 'epoch': 29.57})
234
+ Step 23400, Loss: {'mse_loss': 0.009825380519032478, 'totoal_loss': 0.009825380519032478, 'data_time': 0.023040081840008497, 'model_time': 0.7041130140423775, 'learning_rate': 1.8327525604100058e-06, 'epoch': 29.7})
235
+ Step 23500, Loss: {'mse_loss': 0.008927831426262856, 'totoal_loss': 0.008927831426262856, 'data_time': 0.02386244898661971, 'model_time': 0.7413450700696558, 'learning_rate': 1.7878328585976426e-06, 'epoch': 29.82})
236
+ Step 23600, Loss: {'mse_loss': 0.013047749176621437, 'totoal_loss': 0.013047749176621437, 'data_time': 0.02495260490104556, 'model_time': 0.7206784200388938, 'learning_rate': 1.7434401341625765e-06, 'epoch': 29.95})
237
+ Step 23700, Loss: {'mse_loss': 0.013888627290725708, 'totoal_loss': 0.013888627290725708, 'data_time': 0.02325365785509348, 'model_time': 0.7442131219431758, 'learning_rate': 1.6995813972306108e-06, 'epoch': 30.08})
238
+ Step 23800, Loss: {'mse_loss': 0.011141104623675346, 'totoal_loss': 0.011141104623675346, 'data_time': 0.021375390933826566, 'model_time': 0.7254417848307639, 'learning_rate': 1.656263573604734e-06, 'epoch': 30.2})
239
+ Step 23900, Loss: {'mse_loss': 0.01540595106780529, 'totoal_loss': 0.01540595106780529, 'data_time': 0.02104057907126844, 'model_time': 0.7096293871290982, 'learning_rate': 1.613493503671454e-06, 'epoch': 30.33})
240
+ Step 24000, Loss: {'mse_loss': 0.01871497742831707, 'totoal_loss': 0.01871497742831707, 'data_time': 0.02217843709513545, 'model_time': 0.7971109291538596, 'learning_rate': 1.5712779413206198e-06, 'epoch': 30.46})
241
+ Step 24100, Loss: {'mse_loss': 0.01690806820988655, 'totoal_loss': 0.01690806820988655, 'data_time': 0.021917731035500765, 'model_time': 0.7230208050459623, 'learning_rate': 1.5296235528789028e-06, 'epoch': 30.58})
242
+ Step 24200, Loss: {'mse_loss': 0.007535999640822411, 'totoal_loss': 0.007535999640822411, 'data_time': 0.02409815206192434, 'model_time': 0.7404243799392134, 'learning_rate': 1.4885369160571124e-06, 'epoch': 30.71})
243
+ Step 24300, Loss: {'mse_loss': 0.014012552797794342, 'totoal_loss': 0.014012552797794342, 'data_time': 0.022971187951043248, 'model_time': 0.7016793480142951, 'learning_rate': 1.4480245189114938e-06, 'epoch': 30.84})
244
+ Step 24400, Loss: {'mse_loss': 0.015231741592288017, 'totoal_loss': 0.015231741592288017, 'data_time': 0.023290224839001894, 'model_time': 0.7842527080792934, 'learning_rate': 1.408092758819191e-06, 'epoch': 30.96})
245
+ Step 24500, Loss: {'mse_loss': 0.007147225085645914, 'totoal_loss': 0.007147225085645914, 'data_time': 0.01003596093505621, 'model_time': 0.7336340418551117, 'learning_rate': 1.368747941468028e-06, 'epoch': 31.09})
246
+ Step 24600, Loss: {'mse_loss': 0.009215227328240871, 'totoal_loss': 0.009215227328240871, 'data_time': 0.009130605962127447, 'model_time': 0.809016945771873, 'learning_rate': 1.3299962798607614e-06, 'epoch': 31.22})
247
+ Step 24700, Loss: {'mse_loss': 0.013628656044602394, 'totoal_loss': 0.013628656044602394, 'data_time': 0.008376810932531953, 'model_time': 0.7338205359410495, 'learning_rate': 1.2918438933339827e-06, 'epoch': 31.35})
248
+ Step 24800, Loss: {'mse_loss': 0.01201814878731966, 'totoal_loss': 0.01201814878731966, 'data_time': 0.009594368981197476, 'model_time': 0.7840410298667848, 'learning_rate': 1.2542968065918027e-06, 'epoch': 31.47})
249
+ Step 24900, Loss: {'mse_loss': 0.008932126685976982, 'totoal_loss': 0.008932126685976982, 'data_time': 0.008517149137333035, 'model_time': 0.7133672148920596, 'learning_rate': 1.217360948754476e-06, 'epoch': 31.6})
250
+ Step 25000, Loss: {'mse_loss': 0.005307016894221306, 'totoal_loss': 0.005307016894221306, 'data_time': 0.006427468033507466, 'model_time': 0.8294208929874003, 'learning_rate': 1.1810421524221318e-06, 'epoch': 31.73})
251
+ Step 25100, Loss: {'mse_loss': 0.01591392047703266, 'totoal_loss': 0.01591392047703266, 'data_time': 0.007745045004412532, 'model_time': 0.7179748541675508, 'learning_rate': 1.1453461527537284e-06, 'epoch': 31.85})
252
+ Step 25200, Loss: {'mse_loss': 0.018992450088262558, 'totoal_loss': 0.018992450088262558, 'data_time': 0.008929742965847254, 'model_time': 0.7474742019549012, 'learning_rate': 1.1102785865614162e-06, 'epoch': 31.98})
253
+ Step 25300, Loss: {'mse_loss': 0.010083724744617939, 'totoal_loss': 0.010083724744617939, 'data_time': 0.015079912962391973, 'model_time': 0.7479904829524457, 'learning_rate': 1.0758449914204127e-06, 'epoch': 32.11})
254
+ Step 25400, Loss: {'mse_loss': 0.010012246668338776, 'totoal_loss': 0.010012246668338776, 'data_time': 0.013812802964821458, 'model_time': 0.7480419359635562, 'learning_rate': 1.0420508047945595e-06, 'epoch': 32.23})
255
+ Step 25500, Loss: {'mse_loss': 0.025008084252476692, 'totoal_loss': 0.025008084252476692, 'data_time': 0.01541652693413198, 'model_time': 0.7833976028487086, 'learning_rate': 1.0089013631776776e-06, 'epoch': 32.36})
256
+ Step 25600, Loss: {'mse_loss': 0.010461011901497841, 'totoal_loss': 0.010461011901497841, 'data_time': 0.015844945097342134, 'model_time': 0.7374340710230172, 'learning_rate': 9.76401901250878e-07, 'epoch': 32.49})
257
+ Step 25700, Loss: {'mse_loss': 0.006897937972098589, 'totoal_loss': 0.006897937972098589, 'data_time': 0.01689831609837711, 'model_time': 0.7470552318263799, 'learning_rate': 9.44557551055946e-07, 'epoch': 32.61})
258
+ Step 25800, Loss: {'mse_loss': 0.0076760356314480305, 'totoal_loss': 0.0076760356314480305, 'data_time': 0.017106235958635807, 'model_time': 0.7459851310122758, 'learning_rate': 9.13373341184928e-07, 'epoch': 32.74})
259
+ Step 25900, Loss: {'mse_loss': 0.01135182473808527, 'totoal_loss': 0.01135182473808527, 'data_time': 0.015154552180320024, 'model_time': 0.6941202089656144, 'learning_rate': 8.828541959860623e-07, 'epoch': 32.87})
260
+ Step 26000, Loss: {'mse_loss': 0.01796773076057434, 'totoal_loss': 0.01796773076057434, 'data_time': 0.013815802056342363, 'model_time': 0.6785970160271972, 'learning_rate': 8.530049347861661e-07, 'epoch': 32.99})
261
+ Step 26100, Loss: {'mse_loss': 0.008550035767257214, 'totoal_loss': 0.008550035767257214, 'data_time': 0.022726614959537983, 'model_time': 0.7012122259475291, 'learning_rate': 8.238302711296034e-07, 'epoch': 33.12})
262
+ Step 26200, Loss: {'mse_loss': 0.021418476477265358, 'totoal_loss': 0.021418476477265358, 'data_time': 0.02119493600912392, 'model_time': 0.6951829451136291, 'learning_rate': 7.953348120339707e-07, 'epoch': 33.25})
263
+ Step 26300, Loss: {'mse_loss': 0.008022467605769634, 'totoal_loss': 0.008022467605769634, 'data_time': 0.021122763864696026, 'model_time': 0.7668674218002707, 'learning_rate': 7.675230572625892e-07, 'epoch': 33.38})
264
+ Step 26400, Loss: {'mse_loss': 0.0304862167686224, 'totoal_loss': 0.0304862167686224, 'data_time': 0.025632226839661598, 'model_time': 0.7527511429507285, 'learning_rate': 7.40399398613941e-07, 'epoch': 33.5})
265
+ Step 26500, Loss: {'mse_loss': 0.007062326185405254, 'totoal_loss': 0.007062326185405254, 'data_time': 0.021250068908557296, 'model_time': 0.7079872710164636, 'learning_rate': 7.139681192281557e-07, 'epoch': 33.63})
266
+ Step 26600, Loss: {'mse_loss': 0.013726207427680492, 'totoal_loss': 0.013726207427680492, 'data_time': 0.01987513294443488, 'model_time': 0.7127275329548866, 'learning_rate': 6.882333929106462e-07, 'epoch': 33.76})
267
+ Step 26700, Loss: {'mse_loss': 0.008545164950191975, 'totoal_loss': 0.008545164950191975, 'data_time': 0.024101279908791184, 'model_time': 0.7258191949222237, 'learning_rate': 6.63199283473027e-07, 'epoch': 33.88})
268
+ Step 26800, Loss: {'mse_loss': 0.014633801765739918, 'totoal_loss': 0.014633801765739918, 'data_time': 0.008826854173094034, 'model_time': 0.8395761789288372, 'learning_rate': 6.388697440913819e-07, 'epoch': 34.01})
269
+ Step 26900, Loss: {'mse_loss': 0.008994837291538715, 'totoal_loss': 0.008994837291538715, 'data_time': 0.007862169062718749, 'model_time': 0.7324130579363555, 'learning_rate': 6.152486166820176e-07, 'epoch': 34.14})
270
+ Step 27000, Loss: {'mse_loss': 0.007610153406858444, 'totoal_loss': 0.007610153406858444, 'data_time': 0.0076206219382584095, 'model_time': 0.7278671488165855, 'learning_rate': 5.923396312947748e-07, 'epoch': 34.26})
271
+ Step 27100, Loss: {'mse_loss': 0.011904078535735607, 'totoal_loss': 0.011904078535735607, 'data_time': 0.00749921309761703, 'model_time': 0.7464523201342672, 'learning_rate': 5.701464055240163e-07, 'epoch': 34.39})
272
+ Step 27200, Loss: {'mse_loss': 0.012648151256144047, 'totoal_loss': 0.012648151256144047, 'data_time': 0.00733589194715023, 'model_time': 0.713398558087647, 'learning_rate': 5.48672443937364e-07, 'epoch': 34.52})
273
+ Step 27300, Loss: {'mse_loss': 0.006444176658987999, 'totoal_loss': 0.006444176658987999, 'data_time': 0.01165410503745079, 'model_time': 0.7167043080553412, 'learning_rate': 5.279211375222855e-07, 'epoch': 34.64})
274
+ Step 27400, Loss: {'mse_loss': 0.005871257744729519, 'totoal_loss': 0.005871257744729519, 'data_time': 0.008107369998469949, 'model_time': 0.7125385501421988, 'learning_rate': 5.07895763150622e-07, 'epoch': 34.77})
275
+ Step 27500, Loss: {'mse_loss': 0.010674143210053444, 'totoal_loss': 0.010674143210053444, 'data_time': 0.008255966007709503, 'model_time': 0.7421522121876478, 'learning_rate': 4.885994830611266e-07, 'epoch': 34.9})
276
+ Step 27600, Loss: {'mse_loss': 0.007659878581762314, 'totoal_loss': 0.007659878581762314, 'data_time': 0.014221724821254611, 'model_time': 0.7135464970488101, 'learning_rate': 4.700353443601156e-07, 'epoch': 35.03})
277
+ Step 27700, Loss: {'mse_loss': 0.004710064269602299, 'totoal_loss': 0.004710064269602299, 'data_time': 0.015181755181401968, 'model_time': 0.7314895240124315, 'learning_rate': 4.5220627854029224e-07, 'epoch': 35.15})
278
+ Step 27800, Loss: {'mse_loss': 0.017375990748405457, 'totoal_loss': 0.017375990748405457, 'data_time': 0.015372330090031028, 'model_time': 0.7234860740136355, 'learning_rate': 4.351151010178311e-07, 'epoch': 35.28})
279
+ Step 27900, Loss: {'mse_loss': 0.01716705784201622, 'totoal_loss': 0.01716705784201622, 'data_time': 0.01472561713308096, 'model_time': 0.7285219479817897, 'learning_rate': 4.1876451068778983e-07, 'epoch': 35.41})
280
+ Step 28000, Loss: {'mse_loss': 0.012892006896436214, 'totoal_loss': 0.012892006896436214, 'data_time': 0.014863284071907401, 'model_time': 0.7369500419590622, 'learning_rate': 4.031570894979235e-07, 'epoch': 35.53})
281
+ Step 28100, Loss: {'mse_loss': 0.006255654152482748, 'totoal_loss': 0.006255654152482748, 'data_time': 0.016352849081158638, 'model_time': 0.705048450967297, 'learning_rate': 3.882953020409644e-07, 'epoch': 35.66})
282
+ Step 28200, Loss: {'mse_loss': 0.006674003321677446, 'totoal_loss': 0.006674003321677446, 'data_time': 0.017424235120415688, 'model_time': 0.7319749651942402, 'learning_rate': 3.74181495165436e-07, 'epoch': 35.79})
283
+ Step 28300, Loss: {'mse_loss': 0.007672383449971676, 'totoal_loss': 0.007672383449971676, 'data_time': 0.014633398968726397, 'model_time': 0.9477773329708725, 'learning_rate': 3.608178976050568e-07, 'epoch': 35.91})
284
+ Step 28400, Loss: {'mse_loss': 0.008051745593547821, 'totoal_loss': 0.008051745593547821, 'data_time': 0.01638458902016282, 'model_time': 0.717793399002403, 'learning_rate': 3.482066196267966e-07, 'epoch': 36.04})
285
+ Step 28500, Loss: {'mse_loss': 0.02280256897211075, 'totoal_loss': 0.02280256897211075, 'data_time': 0.015302981017157435, 'model_time': 0.7470296460669488, 'learning_rate': 3.36349652697643e-07, 'epoch': 36.17})
286
+ Step 28600, Loss: {'mse_loss': 0.0045020016841590405, 'totoal_loss': 0.0045020016841590405, 'data_time': 0.014982406981289387, 'model_time': 0.7468552549835294, 'learning_rate': 3.2524886917012403e-07, 'epoch': 36.29})
287
+ Step 28700, Loss: {'mse_loss': 0.011726678349077702, 'totoal_loss': 0.011726678349077702, 'data_time': 0.013896835036575794, 'model_time': 0.7968992269597948, 'learning_rate': 3.149060219866433e-07, 'epoch': 36.42})
288
+ Step 28800, Loss: {'mse_loss': 0.01656915806233883, 'totoal_loss': 0.01656915806233883, 'data_time': 0.0133927830029279, 'model_time': 0.7850735918618739, 'learning_rate': 3.053227444026695e-07, 'epoch': 36.55})
289
+ Step 28900, Loss: {'mse_loss': 0.01902507059276104, 'totoal_loss': 0.01902507059276104, 'data_time': 0.01646452210843563, 'model_time': 0.7395060788840055, 'learning_rate': 2.9650054972882544e-07, 'epoch': 36.68})
290
+ Step 29000, Loss: {'mse_loss': 0.00550438929349184, 'totoal_loss': 0.00550438929349184, 'data_time': 0.014345866162329912, 'model_time': 0.7299341710750014, 'learning_rate': 2.884408310919209e-07, 'epoch': 36.8})
291
+ Step 29100, Loss: {'mse_loss': 0.00667390413582325, 'totoal_loss': 0.00667390413582325, 'data_time': 0.015540515072643757, 'model_time': 0.7341891161631793, 'learning_rate': 2.8114486121495906e-07, 'epoch': 36.93})
292
+ Step 29200, Loss: {'mse_loss': 0.008265814743936062, 'totoal_loss': 0.008265814743936062, 'data_time': 0.008158509153872728, 'model_time': 0.7336411240976304, 'learning_rate': 2.746137922161617e-07, 'epoch': 37.06})
293
+ Step 29300, Loss: {'mse_loss': 0.022961875423789024, 'totoal_loss': 0.022961875423789024, 'data_time': 0.011602442944422364, 'model_time': 0.7106678138952702, 'learning_rate': 2.68848655427034e-07, 'epoch': 37.18})
294
+ Step 29400, Loss: {'mse_loss': 0.006693624425679445, 'totoal_loss': 0.006693624425679445, 'data_time': 0.008192531066015363, 'model_time': 0.7469280869700015, 'learning_rate': 2.638503612295071e-07, 'epoch': 37.31})
295
+ Step 29500, Loss: {'mse_loss': 0.016638200730085373, 'totoal_loss': 0.016638200730085373, 'data_time': 0.008776580216363072, 'model_time': 0.75890225591138, 'learning_rate': 2.5961969891217614e-07, 'epoch': 37.44})
296
+ Step 29600, Loss: {'mse_loss': 0.012083043344318867, 'totoal_loss': 0.012083043344318867, 'data_time': 0.007531982148066163, 'model_time': 0.7342464830726385, 'learning_rate': 2.5615733654566483e-07, 'epoch': 37.56})
297
+ Step 29700, Loss: {'mse_loss': 0.00816319603472948, 'totoal_loss': 0.00816319603472948, 'data_time': 0.008295416133478284, 'model_time': 0.7977496040984988, 'learning_rate': 2.5346382087712764e-07, 'epoch': 37.69})
298
+ Step 29800, Loss: {'mse_loss': 0.008274941705167294, 'totoal_loss': 0.008274941705167294, 'data_time': 0.008402387844398618, 'model_time': 0.8318268901202828, 'learning_rate': 2.515395772439128e-07, 'epoch': 37.82})
299
+ Step 29900, Loss: {'mse_loss': 0.005214365664869547, 'totoal_loss': 0.005214365664869547, 'data_time': 0.009026129031553864, 'model_time': 0.7567618528846651, 'learning_rate': 2.5038490950639644e-07, 'epoch': 37.94})
300
+ Step 30000, Loss: {'mse_loss': 0.011127898469567299, 'totoal_loss': 0.011127898469567299, 'mse_score': 0.0014494948887399264, 'data_time': 0.008244497934356332, 'model_time': 0.728309323079884, 'learning_rate': 2.5e-07, 'epoch': 38.07})
libero_10_2B/starvla_qwen_dual/libero_eval_libero_10.log ADDED
@@ -0,0 +1,2521 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Task suite: libero_10
2
+
3
+ Task: put both the alphabet soup and the tomato sauce in the basket
4
+ Success: True
5
+ # episodes completed so far: 1
6
+ # successes: 1 (100.0%)
7
+
8
+ Task: put both the alphabet soup and the tomato sauce in the basket
9
+ Success: False
10
+ # episodes completed so far: 2
11
+ # successes: 1 (50.0%)
12
+
13
+ Task: put both the alphabet soup and the tomato sauce in the basket
14
+ Success: False
15
+ # episodes completed so far: 3
16
+ # successes: 1 (33.3%)
17
+
18
+ Task: put both the alphabet soup and the tomato sauce in the basket
19
+ Success: True
20
+ # episodes completed so far: 4
21
+ # successes: 2 (50.0%)
22
+
23
+ Task: put both the alphabet soup and the tomato sauce in the basket
24
+ Success: True
25
+ # episodes completed so far: 5
26
+ # successes: 3 (60.0%)
27
+
28
+ Task: put both the alphabet soup and the tomato sauce in the basket
29
+ Success: False
30
+ # episodes completed so far: 6
31
+ # successes: 3 (50.0%)
32
+
33
+ Task: put both the alphabet soup and the tomato sauce in the basket
34
+ Success: True
35
+ # episodes completed so far: 7
36
+ # successes: 4 (57.1%)
37
+
38
+ Task: put both the alphabet soup and the tomato sauce in the basket
39
+ Success: True
40
+ # episodes completed so far: 8
41
+ # successes: 5 (62.5%)
42
+
43
+ Task: put both the alphabet soup and the tomato sauce in the basket
44
+ Success: True
45
+ # episodes completed so far: 9
46
+ # successes: 6 (66.7%)
47
+
48
+ Task: put both the alphabet soup and the tomato sauce in the basket
49
+ Success: True
50
+ # episodes completed so far: 10
51
+ # successes: 7 (70.0%)
52
+
53
+ Task: put both the alphabet soup and the tomato sauce in the basket
54
+ Success: True
55
+ # episodes completed so far: 11
56
+ # successes: 8 (72.7%)
57
+
58
+ Task: put both the alphabet soup and the tomato sauce in the basket
59
+ Success: True
60
+ # episodes completed so far: 12
61
+ # successes: 9 (75.0%)
62
+
63
+ Task: put both the alphabet soup and the tomato sauce in the basket
64
+ Success: True
65
+ # episodes completed so far: 13
66
+ # successes: 10 (76.9%)
67
+
68
+ Task: put both the alphabet soup and the tomato sauce in the basket
69
+ Success: True
70
+ # episodes completed so far: 14
71
+ # successes: 11 (78.6%)
72
+
73
+ Task: put both the alphabet soup and the tomato sauce in the basket
74
+ Success: True
75
+ # episodes completed so far: 15
76
+ # successes: 12 (80.0%)
77
+
78
+ Task: put both the alphabet soup and the tomato sauce in the basket
79
+ Success: True
80
+ # episodes completed so far: 16
81
+ # successes: 13 (81.2%)
82
+
83
+ Task: put both the alphabet soup and the tomato sauce in the basket
84
+ Success: False
85
+ # episodes completed so far: 17
86
+ # successes: 13 (76.5%)
87
+
88
+ Task: put both the alphabet soup and the tomato sauce in the basket
89
+ Success: True
90
+ # episodes completed so far: 18
91
+ # successes: 14 (77.8%)
92
+
93
+ Task: put both the alphabet soup and the tomato sauce in the basket
94
+ Success: False
95
+ # episodes completed so far: 19
96
+ # successes: 14 (73.7%)
97
+
98
+ Task: put both the alphabet soup and the tomato sauce in the basket
99
+ Success: True
100
+ # episodes completed so far: 20
101
+ # successes: 15 (75.0%)
102
+
103
+ Task: put both the alphabet soup and the tomato sauce in the basket
104
+ Success: True
105
+ # episodes completed so far: 21
106
+ # successes: 16 (76.2%)
107
+
108
+ Task: put both the alphabet soup and the tomato sauce in the basket
109
+ Success: True
110
+ # episodes completed so far: 22
111
+ # successes: 17 (77.3%)
112
+
113
+ Task: put both the alphabet soup and the tomato sauce in the basket
114
+ Success: True
115
+ # episodes completed so far: 23
116
+ # successes: 18 (78.3%)
117
+
118
+ Task: put both the alphabet soup and the tomato sauce in the basket
119
+ Success: True
120
+ # episodes completed so far: 24
121
+ # successes: 19 (79.2%)
122
+
123
+ Task: put both the alphabet soup and the tomato sauce in the basket
124
+ Success: True
125
+ # episodes completed so far: 25
126
+ # successes: 20 (80.0%)
127
+
128
+ Task: put both the alphabet soup and the tomato sauce in the basket
129
+ Success: True
130
+ # episodes completed so far: 26
131
+ # successes: 21 (80.8%)
132
+
133
+ Task: put both the alphabet soup and the tomato sauce in the basket
134
+ Success: False
135
+ # episodes completed so far: 27
136
+ # successes: 21 (77.8%)
137
+
138
+ Task: put both the alphabet soup and the tomato sauce in the basket
139
+ Success: True
140
+ # episodes completed so far: 28
141
+ # successes: 22 (78.6%)
142
+
143
+ Task: put both the alphabet soup and the tomato sauce in the basket
144
+ Success: True
145
+ # episodes completed so far: 29
146
+ # successes: 23 (79.3%)
147
+
148
+ Task: put both the alphabet soup and the tomato sauce in the basket
149
+ Success: True
150
+ # episodes completed so far: 30
151
+ # successes: 24 (80.0%)
152
+
153
+ Task: put both the alphabet soup and the tomato sauce in the basket
154
+ Success: True
155
+ # episodes completed so far: 31
156
+ # successes: 25 (80.6%)
157
+
158
+ Task: put both the alphabet soup and the tomato sauce in the basket
159
+ Success: False
160
+ # episodes completed so far: 32
161
+ # successes: 25 (78.1%)
162
+
163
+ Task: put both the alphabet soup and the tomato sauce in the basket
164
+ Success: True
165
+ # episodes completed so far: 33
166
+ # successes: 26 (78.8%)
167
+
168
+ Task: put both the alphabet soup and the tomato sauce in the basket
169
+ Success: True
170
+ # episodes completed so far: 34
171
+ # successes: 27 (79.4%)
172
+
173
+ Task: put both the alphabet soup and the tomato sauce in the basket
174
+ Success: True
175
+ # episodes completed so far: 35
176
+ # successes: 28 (80.0%)
177
+
178
+ Task: put both the alphabet soup and the tomato sauce in the basket
179
+ Success: True
180
+ # episodes completed so far: 36
181
+ # successes: 29 (80.6%)
182
+
183
+ Task: put both the alphabet soup and the tomato sauce in the basket
184
+ Success: True
185
+ # episodes completed so far: 37
186
+ # successes: 30 (81.1%)
187
+
188
+ Task: put both the alphabet soup and the tomato sauce in the basket
189
+ Success: True
190
+ # episodes completed so far: 38
191
+ # successes: 31 (81.6%)
192
+
193
+ Task: put both the alphabet soup and the tomato sauce in the basket
194
+ Success: True
195
+ # episodes completed so far: 39
196
+ # successes: 32 (82.1%)
197
+
198
+ Task: put both the alphabet soup and the tomato sauce in the basket
199
+ Success: True
200
+ # episodes completed so far: 40
201
+ # successes: 33 (82.5%)
202
+
203
+ Task: put both the alphabet soup and the tomato sauce in the basket
204
+ Success: True
205
+ # episodes completed so far: 41
206
+ # successes: 34 (82.9%)
207
+
208
+ Task: put both the alphabet soup and the tomato sauce in the basket
209
+ Success: True
210
+ # episodes completed so far: 42
211
+ # successes: 35 (83.3%)
212
+
213
+ Task: put both the alphabet soup and the tomato sauce in the basket
214
+ Success: True
215
+ # episodes completed so far: 43
216
+ # successes: 36 (83.7%)
217
+
218
+ Task: put both the alphabet soup and the tomato sauce in the basket
219
+ Success: True
220
+ # episodes completed so far: 44
221
+ # successes: 37 (84.1%)
222
+
223
+ Task: put both the alphabet soup and the tomato sauce in the basket
224
+ Success: True
225
+ # episodes completed so far: 45
226
+ # successes: 38 (84.4%)
227
+
228
+ Task: put both the alphabet soup and the tomato sauce in the basket
229
+ Success: True
230
+ # episodes completed so far: 46
231
+ # successes: 39 (84.8%)
232
+
233
+ Task: put both the alphabet soup and the tomato sauce in the basket
234
+ Success: True
235
+ # episodes completed so far: 47
236
+ # successes: 40 (85.1%)
237
+
238
+ Task: put both the alphabet soup and the tomato sauce in the basket
239
+ Success: True
240
+ # episodes completed so far: 48
241
+ # successes: 41 (85.4%)
242
+
243
+ Task: put both the alphabet soup and the tomato sauce in the basket
244
+ Success: True
245
+ # episodes completed so far: 49
246
+ # successes: 42 (85.7%)
247
+
248
+ Task: put both the alphabet soup and the tomato sauce in the basket
249
+ Success: True
250
+ # episodes completed so far: 50
251
+ # successes: 43 (86.0%)
252
+ Current task success rate: 0.86
253
+ Current total success rate: 0.86
254
+
255
+ Task: put both the cream cheese box and the butter in the basket
256
+ Success: True
257
+ # episodes completed so far: 51
258
+ # successes: 44 (86.3%)
259
+
260
+ Task: put both the cream cheese box and the butter in the basket
261
+ Success: True
262
+ # episodes completed so far: 52
263
+ # successes: 45 (86.5%)
264
+
265
+ Task: put both the cream cheese box and the butter in the basket
266
+ Success: True
267
+ # episodes completed so far: 53
268
+ # successes: 46 (86.8%)
269
+
270
+ Task: put both the cream cheese box and the butter in the basket
271
+ Success: True
272
+ # episodes completed so far: 54
273
+ # successes: 47 (87.0%)
274
+
275
+ Task: put both the cream cheese box and the butter in the basket
276
+ Success: True
277
+ # episodes completed so far: 55
278
+ # successes: 48 (87.3%)
279
+
280
+ Task: put both the cream cheese box and the butter in the basket
281
+ Success: True
282
+ # episodes completed so far: 56
283
+ # successes: 49 (87.5%)
284
+
285
+ Task: put both the cream cheese box and the butter in the basket
286
+ Success: True
287
+ # episodes completed so far: 57
288
+ # successes: 50 (87.7%)
289
+
290
+ Task: put both the cream cheese box and the butter in the basket
291
+ Success: True
292
+ # episodes completed so far: 58
293
+ # successes: 51 (87.9%)
294
+
295
+ Task: put both the cream cheese box and the butter in the basket
296
+ Success: True
297
+ # episodes completed so far: 59
298
+ # successes: 52 (88.1%)
299
+
300
+ Task: put both the cream cheese box and the butter in the basket
301
+ Success: True
302
+ # episodes completed so far: 60
303
+ # successes: 53 (88.3%)
304
+
305
+ Task: put both the cream cheese box and the butter in the basket
306
+ Success: True
307
+ # episodes completed so far: 61
308
+ # successes: 54 (88.5%)
309
+
310
+ Task: put both the cream cheese box and the butter in the basket
311
+ Success: True
312
+ # episodes completed so far: 62
313
+ # successes: 55 (88.7%)
314
+
315
+ Task: put both the cream cheese box and the butter in the basket
316
+ Success: True
317
+ # episodes completed so far: 63
318
+ # successes: 56 (88.9%)
319
+
320
+ Task: put both the cream cheese box and the butter in the basket
321
+ Success: True
322
+ # episodes completed so far: 64
323
+ # successes: 57 (89.1%)
324
+
325
+ Task: put both the cream cheese box and the butter in the basket
326
+ Success: True
327
+ # episodes completed so far: 65
328
+ # successes: 58 (89.2%)
329
+
330
+ Task: put both the cream cheese box and the butter in the basket
331
+ Success: True
332
+ # episodes completed so far: 66
333
+ # successes: 59 (89.4%)
334
+
335
+ Task: put both the cream cheese box and the butter in the basket
336
+ Success: True
337
+ # episodes completed so far: 67
338
+ # successes: 60 (89.6%)
339
+
340
+ Task: put both the cream cheese box and the butter in the basket
341
+ Success: True
342
+ # episodes completed so far: 68
343
+ # successes: 61 (89.7%)
344
+
345
+ Task: put both the cream cheese box and the butter in the basket
346
+ Success: True
347
+ # episodes completed so far: 69
348
+ # successes: 62 (89.9%)
349
+
350
+ Task: put both the cream cheese box and the butter in the basket
351
+ Success: True
352
+ # episodes completed so far: 70
353
+ # successes: 63 (90.0%)
354
+
355
+ Task: put both the cream cheese box and the butter in the basket
356
+ Success: True
357
+ # episodes completed so far: 71
358
+ # successes: 64 (90.1%)
359
+
360
+ Task: put both the cream cheese box and the butter in the basket
361
+ Success: True
362
+ # episodes completed so far: 72
363
+ # successes: 65 (90.3%)
364
+
365
+ Task: put both the cream cheese box and the butter in the basket
366
+ Success: False
367
+ # episodes completed so far: 73
368
+ # successes: 65 (89.0%)
369
+
370
+ Task: put both the cream cheese box and the butter in the basket
371
+ Success: True
372
+ # episodes completed so far: 74
373
+ # successes: 66 (89.2%)
374
+
375
+ Task: put both the cream cheese box and the butter in the basket
376
+ Success: True
377
+ # episodes completed so far: 75
378
+ # successes: 67 (89.3%)
379
+
380
+ Task: put both the cream cheese box and the butter in the basket
381
+ Success: True
382
+ # episodes completed so far: 76
383
+ # successes: 68 (89.5%)
384
+
385
+ Task: put both the cream cheese box and the butter in the basket
386
+ Success: False
387
+ # episodes completed so far: 77
388
+ # successes: 68 (88.3%)
389
+
390
+ Task: put both the cream cheese box and the butter in the basket
391
+ Success: True
392
+ # episodes completed so far: 78
393
+ # successes: 69 (88.5%)
394
+
395
+ Task: put both the cream cheese box and the butter in the basket
396
+ Success: True
397
+ # episodes completed so far: 79
398
+ # successes: 70 (88.6%)
399
+
400
+ Task: put both the cream cheese box and the butter in the basket
401
+ Success: True
402
+ # episodes completed so far: 80
403
+ # successes: 71 (88.8%)
404
+
405
+ Task: put both the cream cheese box and the butter in the basket
406
+ Success: True
407
+ # episodes completed so far: 81
408
+ # successes: 72 (88.9%)
409
+
410
+ Task: put both the cream cheese box and the butter in the basket
411
+ Success: True
412
+ # episodes completed so far: 82
413
+ # successes: 73 (89.0%)
414
+
415
+ Task: put both the cream cheese box and the butter in the basket
416
+ Success: True
417
+ # episodes completed so far: 83
418
+ # successes: 74 (89.2%)
419
+
420
+ Task: put both the cream cheese box and the butter in the basket
421
+ Success: False
422
+ # episodes completed so far: 84
423
+ # successes: 74 (88.1%)
424
+
425
+ Task: put both the cream cheese box and the butter in the basket
426
+ Success: True
427
+ # episodes completed so far: 85
428
+ # successes: 75 (88.2%)
429
+
430
+ Task: put both the cream cheese box and the butter in the basket
431
+ Success: True
432
+ # episodes completed so far: 86
433
+ # successes: 76 (88.4%)
434
+
435
+ Task: put both the cream cheese box and the butter in the basket
436
+ Success: True
437
+ # episodes completed so far: 87
438
+ # successes: 77 (88.5%)
439
+
440
+ Task: put both the cream cheese box and the butter in the basket
441
+ Success: True
442
+ # episodes completed so far: 88
443
+ # successes: 78 (88.6%)
444
+
445
+ Task: put both the cream cheese box and the butter in the basket
446
+ Success: True
447
+ # episodes completed so far: 89
448
+ # successes: 79 (88.8%)
449
+
450
+ Task: put both the cream cheese box and the butter in the basket
451
+ Success: True
452
+ # episodes completed so far: 90
453
+ # successes: 80 (88.9%)
454
+
455
+ Task: put both the cream cheese box and the butter in the basket
456
+ Success: False
457
+ # episodes completed so far: 91
458
+ # successes: 80 (87.9%)
459
+
460
+ Task: put both the cream cheese box and the butter in the basket
461
+ Success: True
462
+ # episodes completed so far: 92
463
+ # successes: 81 (88.0%)
464
+
465
+ Task: put both the cream cheese box and the butter in the basket
466
+ Success: True
467
+ # episodes completed so far: 93
468
+ # successes: 82 (88.2%)
469
+
470
+ Task: put both the cream cheese box and the butter in the basket
471
+ Success: True
472
+ # episodes completed so far: 94
473
+ # successes: 83 (88.3%)
474
+
475
+ Task: put both the cream cheese box and the butter in the basket
476
+ Success: True
477
+ # episodes completed so far: 95
478
+ # successes: 84 (88.4%)
479
+
480
+ Task: put both the cream cheese box and the butter in the basket
481
+ Success: True
482
+ # episodes completed so far: 96
483
+ # successes: 85 (88.5%)
484
+
485
+ Task: put both the cream cheese box and the butter in the basket
486
+ Success: True
487
+ # episodes completed so far: 97
488
+ # successes: 86 (88.7%)
489
+
490
+ Task: put both the cream cheese box and the butter in the basket
491
+ Success: True
492
+ # episodes completed so far: 98
493
+ # successes: 87 (88.8%)
494
+
495
+ Task: put both the cream cheese box and the butter in the basket
496
+ Success: True
497
+ # episodes completed so far: 99
498
+ # successes: 88 (88.9%)
499
+
500
+ Task: put both the cream cheese box and the butter in the basket
501
+ Success: False
502
+ # episodes completed so far: 100
503
+ # successes: 88 (88.0%)
504
+ Current task success rate: 0.9
505
+ Current total success rate: 0.88
506
+
507
+ Task: turn on the stove and put the moka pot on it
508
+ Success: True
509
+ # episodes completed so far: 101
510
+ # successes: 89 (88.1%)
511
+
512
+ Task: turn on the stove and put the moka pot on it
513
+ Success: True
514
+ # episodes completed so far: 102
515
+ # successes: 90 (88.2%)
516
+
517
+ Task: turn on the stove and put the moka pot on it
518
+ Success: True
519
+ # episodes completed so far: 103
520
+ # successes: 91 (88.3%)
521
+
522
+ Task: turn on the stove and put the moka pot on it
523
+ Success: True
524
+ # episodes completed so far: 104
525
+ # successes: 92 (88.5%)
526
+
527
+ Task: turn on the stove and put the moka pot on it
528
+ Success: True
529
+ # episodes completed so far: 105
530
+ # successes: 93 (88.6%)
531
+
532
+ Task: turn on the stove and put the moka pot on it
533
+ Success: True
534
+ # episodes completed so far: 106
535
+ # successes: 94 (88.7%)
536
+
537
+ Task: turn on the stove and put the moka pot on it
538
+ Success: True
539
+ # episodes completed so far: 107
540
+ # successes: 95 (88.8%)
541
+
542
+ Task: turn on the stove and put the moka pot on it
543
+ Success: True
544
+ # episodes completed so far: 108
545
+ # successes: 96 (88.9%)
546
+
547
+ Task: turn on the stove and put the moka pot on it
548
+ Success: True
549
+ # episodes completed so far: 109
550
+ # successes: 97 (89.0%)
551
+
552
+ Task: turn on the stove and put the moka pot on it
553
+ Success: True
554
+ # episodes completed so far: 110
555
+ # successes: 98 (89.1%)
556
+
557
+ Task: turn on the stove and put the moka pot on it
558
+ Success: True
559
+ # episodes completed so far: 111
560
+ # successes: 99 (89.2%)
561
+
562
+ Task: turn on the stove and put the moka pot on it
563
+ Success: True
564
+ # episodes completed so far: 112
565
+ # successes: 100 (89.3%)
566
+
567
+ Task: turn on the stove and put the moka pot on it
568
+ Success: True
569
+ # episodes completed so far: 113
570
+ # successes: 101 (89.4%)
571
+
572
+ Task: turn on the stove and put the moka pot on it
573
+ Success: True
574
+ # episodes completed so far: 114
575
+ # successes: 102 (89.5%)
576
+
577
+ Task: turn on the stove and put the moka pot on it
578
+ Success: True
579
+ # episodes completed so far: 115
580
+ # successes: 103 (89.6%)
581
+
582
+ Task: turn on the stove and put the moka pot on it
583
+ Success: True
584
+ # episodes completed so far: 116
585
+ # successes: 104 (89.7%)
586
+
587
+ Task: turn on the stove and put the moka pot on it
588
+ Success: True
589
+ # episodes completed so far: 117
590
+ # successes: 105 (89.7%)
591
+
592
+ Task: turn on the stove and put the moka pot on it
593
+ Success: True
594
+ # episodes completed so far: 118
595
+ # successes: 106 (89.8%)
596
+
597
+ Task: turn on the stove and put the moka pot on it
598
+ Success: True
599
+ # episodes completed so far: 119
600
+ # successes: 107 (89.9%)
601
+
602
+ Task: turn on the stove and put the moka pot on it
603
+ Success: True
604
+ # episodes completed so far: 120
605
+ # successes: 108 (90.0%)
606
+
607
+ Task: turn on the stove and put the moka pot on it
608
+ Success: False
609
+ # episodes completed so far: 121
610
+ # successes: 108 (89.3%)
611
+
612
+ Task: turn on the stove and put the moka pot on it
613
+ Success: True
614
+ # episodes completed so far: 122
615
+ # successes: 109 (89.3%)
616
+
617
+ Task: turn on the stove and put the moka pot on it
618
+ Success: True
619
+ # episodes completed so far: 123
620
+ # successes: 110 (89.4%)
621
+
622
+ Task: turn on the stove and put the moka pot on it
623
+ Success: True
624
+ # episodes completed so far: 124
625
+ # successes: 111 (89.5%)
626
+
627
+ Task: turn on the stove and put the moka pot on it
628
+ Success: True
629
+ # episodes completed so far: 125
630
+ # successes: 112 (89.6%)
631
+
632
+ Task: turn on the stove and put the moka pot on it
633
+ Success: True
634
+ # episodes completed so far: 126
635
+ # successes: 113 (89.7%)
636
+
637
+ Task: turn on the stove and put the moka pot on it
638
+ Success: False
639
+ # episodes completed so far: 127
640
+ # successes: 113 (89.0%)
641
+
642
+ Task: turn on the stove and put the moka pot on it
643
+ Success: True
644
+ # episodes completed so far: 128
645
+ # successes: 114 (89.1%)
646
+
647
+ Task: turn on the stove and put the moka pot on it
648
+ Success: True
649
+ # episodes completed so far: 129
650
+ # successes: 115 (89.1%)
651
+
652
+ Task: turn on the stove and put the moka pot on it
653
+ Success: True
654
+ # episodes completed so far: 130
655
+ # successes: 116 (89.2%)
656
+
657
+ Task: turn on the stove and put the moka pot on it
658
+ Success: True
659
+ # episodes completed so far: 131
660
+ # successes: 117 (89.3%)
661
+
662
+ Task: turn on the stove and put the moka pot on it
663
+ Success: True
664
+ # episodes completed so far: 132
665
+ # successes: 118 (89.4%)
666
+
667
+ Task: turn on the stove and put the moka pot on it
668
+ Success: True
669
+ # episodes completed so far: 133
670
+ # successes: 119 (89.5%)
671
+
672
+ Task: turn on the stove and put the moka pot on it
673
+ Success: False
674
+ # episodes completed so far: 134
675
+ # successes: 119 (88.8%)
676
+
677
+ Task: turn on the stove and put the moka pot on it
678
+ Success: False
679
+ # episodes completed so far: 135
680
+ # successes: 119 (88.1%)
681
+
682
+ Task: turn on the stove and put the moka pot on it
683
+ Success: True
684
+ # episodes completed so far: 136
685
+ # successes: 120 (88.2%)
686
+
687
+ Task: turn on the stove and put the moka pot on it
688
+ Success: True
689
+ # episodes completed so far: 137
690
+ # successes: 121 (88.3%)
691
+
692
+ Task: turn on the stove and put the moka pot on it
693
+ Success: True
694
+ # episodes completed so far: 138
695
+ # successes: 122 (88.4%)
696
+
697
+ Task: turn on the stove and put the moka pot on it
698
+ Success: True
699
+ # episodes completed so far: 139
700
+ # successes: 123 (88.5%)
701
+
702
+ Task: turn on the stove and put the moka pot on it
703
+ Success: True
704
+ # episodes completed so far: 140
705
+ # successes: 124 (88.6%)
706
+
707
+ Task: turn on the stove and put the moka pot on it
708
+ Success: True
709
+ # episodes completed so far: 141
710
+ # successes: 125 (88.7%)
711
+
712
+ Task: turn on the stove and put the moka pot on it
713
+ Success: True
714
+ # episodes completed so far: 142
715
+ # successes: 126 (88.7%)
716
+
717
+ Task: turn on the stove and put the moka pot on it
718
+ Success: True
719
+ # episodes completed so far: 143
720
+ # successes: 127 (88.8%)
721
+
722
+ Task: turn on the stove and put the moka pot on it
723
+ Success: True
724
+ # episodes completed so far: 144
725
+ # successes: 128 (88.9%)
726
+
727
+ Task: turn on the stove and put the moka pot on it
728
+ Success: True
729
+ # episodes completed so far: 145
730
+ # successes: 129 (89.0%)
731
+
732
+ Task: turn on the stove and put the moka pot on it
733
+ Success: True
734
+ # episodes completed so far: 146
735
+ # successes: 130 (89.0%)
736
+
737
+ Task: turn on the stove and put the moka pot on it
738
+ Success: True
739
+ # episodes completed so far: 147
740
+ # successes: 131 (89.1%)
741
+
742
+ Task: turn on the stove and put the moka pot on it
743
+ Success: True
744
+ # episodes completed so far: 148
745
+ # successes: 132 (89.2%)
746
+
747
+ Task: turn on the stove and put the moka pot on it
748
+ Success: True
749
+ # episodes completed so far: 149
750
+ # successes: 133 (89.3%)
751
+
752
+ Task: turn on the stove and put the moka pot on it
753
+ Success: True
754
+ # episodes completed so far: 150
755
+ # successes: 134 (89.3%)
756
+ Current task success rate: 0.92
757
+ Current total success rate: 0.8933333333333333
758
+
759
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
760
+ Success: True
761
+ # episodes completed so far: 151
762
+ # successes: 135 (89.4%)
763
+
764
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
765
+ Success: True
766
+ # episodes completed so far: 152
767
+ # successes: 136 (89.5%)
768
+
769
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
770
+ Success: True
771
+ # episodes completed so far: 153
772
+ # successes: 137 (89.5%)
773
+
774
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
775
+ Success: False
776
+ # episodes completed so far: 154
777
+ # successes: 137 (89.0%)
778
+
779
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
780
+ Success: True
781
+ # episodes completed so far: 155
782
+ # successes: 138 (89.0%)
783
+
784
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
785
+ Success: True
786
+ # episodes completed so far: 156
787
+ # successes: 139 (89.1%)
788
+
789
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
790
+ Success: True
791
+ # episodes completed so far: 157
792
+ # successes: 140 (89.2%)
793
+
794
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
795
+ Success: True
796
+ # episodes completed so far: 158
797
+ # successes: 141 (89.2%)
798
+
799
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
800
+ Success: True
801
+ # episodes completed so far: 159
802
+ # successes: 142 (89.3%)
803
+
804
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
805
+ Success: True
806
+ # episodes completed so far: 160
807
+ # successes: 143 (89.4%)
808
+
809
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
810
+ Success: True
811
+ # episodes completed so far: 161
812
+ # successes: 144 (89.4%)
813
+
814
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
815
+ Success: True
816
+ # episodes completed so far: 162
817
+ # successes: 145 (89.5%)
818
+
819
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
820
+ Success: True
821
+ # episodes completed so far: 163
822
+ # successes: 146 (89.6%)
823
+
824
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
825
+ Success: True
826
+ # episodes completed so far: 164
827
+ # successes: 147 (89.6%)
828
+
829
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
830
+ Success: True
831
+ # episodes completed so far: 165
832
+ # successes: 148 (89.7%)
833
+
834
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
835
+ Success: True
836
+ # episodes completed so far: 166
837
+ # successes: 149 (89.8%)
838
+
839
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
840
+ Success: True
841
+ # episodes completed so far: 167
842
+ # successes: 150 (89.8%)
843
+
844
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
845
+ Success: True
846
+ # episodes completed so far: 168
847
+ # successes: 151 (89.9%)
848
+
849
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
850
+ Success: True
851
+ # episodes completed so far: 169
852
+ # successes: 152 (89.9%)
853
+
854
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
855
+ Success: True
856
+ # episodes completed so far: 170
857
+ # successes: 153 (90.0%)
858
+
859
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
860
+ Success: True
861
+ # episodes completed so far: 171
862
+ # successes: 154 (90.1%)
863
+
864
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
865
+ Success: True
866
+ # episodes completed so far: 172
867
+ # successes: 155 (90.1%)
868
+
869
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
870
+ Success: True
871
+ # episodes completed so far: 173
872
+ # successes: 156 (90.2%)
873
+
874
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
875
+ Success: True
876
+ # episodes completed so far: 174
877
+ # successes: 157 (90.2%)
878
+
879
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
880
+ Success: True
881
+ # episodes completed so far: 175
882
+ # successes: 158 (90.3%)
883
+
884
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
885
+ Success: True
886
+ # episodes completed so far: 176
887
+ # successes: 159 (90.3%)
888
+
889
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
890
+ Success: True
891
+ # episodes completed so far: 177
892
+ # successes: 160 (90.4%)
893
+
894
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
895
+ Success: True
896
+ # episodes completed so far: 178
897
+ # successes: 161 (90.4%)
898
+
899
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
900
+ Success: True
901
+ # episodes completed so far: 179
902
+ # successes: 162 (90.5%)
903
+
904
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
905
+ Success: True
906
+ # episodes completed so far: 180
907
+ # successes: 163 (90.6%)
908
+
909
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
910
+ Success: True
911
+ # episodes completed so far: 181
912
+ # successes: 164 (90.6%)
913
+
914
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
915
+ Success: True
916
+ # episodes completed so far: 182
917
+ # successes: 165 (90.7%)
918
+
919
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
920
+ Success: True
921
+ # episodes completed so far: 183
922
+ # successes: 166 (90.7%)
923
+
924
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
925
+ Success: True
926
+ # episodes completed so far: 184
927
+ # successes: 167 (90.8%)
928
+
929
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
930
+ Success: True
931
+ # episodes completed so far: 185
932
+ # successes: 168 (90.8%)
933
+
934
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
935
+ Success: True
936
+ # episodes completed so far: 186
937
+ # successes: 169 (90.9%)
938
+
939
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
940
+ Success: True
941
+ # episodes completed so far: 187
942
+ # successes: 170 (90.9%)
943
+
944
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
945
+ Success: True
946
+ # episodes completed so far: 188
947
+ # successes: 171 (91.0%)
948
+
949
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
950
+ Success: True
951
+ # episodes completed so far: 189
952
+ # successes: 172 (91.0%)
953
+
954
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
955
+ Success: True
956
+ # episodes completed so far: 190
957
+ # successes: 173 (91.1%)
958
+
959
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
960
+ Success: True
961
+ # episodes completed so far: 191
962
+ # successes: 174 (91.1%)
963
+
964
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
965
+ Success: True
966
+ # episodes completed so far: 192
967
+ # successes: 175 (91.1%)
968
+
969
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
970
+ Success: True
971
+ # episodes completed so far: 193
972
+ # successes: 176 (91.2%)
973
+
974
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
975
+ Success: True
976
+ # episodes completed so far: 194
977
+ # successes: 177 (91.2%)
978
+
979
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
980
+ Success: True
981
+ # episodes completed so far: 195
982
+ # successes: 178 (91.3%)
983
+
984
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
985
+ Success: True
986
+ # episodes completed so far: 196
987
+ # successes: 179 (91.3%)
988
+
989
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
990
+ Success: True
991
+ # episodes completed so far: 197
992
+ # successes: 180 (91.4%)
993
+
994
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
995
+ Success: True
996
+ # episodes completed so far: 198
997
+ # successes: 181 (91.4%)
998
+
999
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
1000
+ Success: True
1001
+ # episodes completed so far: 199
1002
+ # successes: 182 (91.5%)
1003
+
1004
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
1005
+ Success: True
1006
+ # episodes completed so far: 200
1007
+ # successes: 183 (91.5%)
1008
+ Current task success rate: 0.98
1009
+ Current total success rate: 0.915
1010
+
1011
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1012
+ Success: True
1013
+ # episodes completed so far: 201
1014
+ # successes: 184 (91.5%)
1015
+
1016
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1017
+ Success: True
1018
+ # episodes completed so far: 202
1019
+ # successes: 185 (91.6%)
1020
+
1021
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1022
+ Success: True
1023
+ # episodes completed so far: 203
1024
+ # successes: 186 (91.6%)
1025
+
1026
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1027
+ Success: True
1028
+ # episodes completed so far: 204
1029
+ # successes: 187 (91.7%)
1030
+
1031
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1032
+ Success: True
1033
+ # episodes completed so far: 205
1034
+ # successes: 188 (91.7%)
1035
+
1036
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1037
+ Success: True
1038
+ # episodes completed so far: 206
1039
+ # successes: 189 (91.7%)
1040
+
1041
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1042
+ Success: True
1043
+ # episodes completed so far: 207
1044
+ # successes: 190 (91.8%)
1045
+
1046
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1047
+ Success: True
1048
+ # episodes completed so far: 208
1049
+ # successes: 191 (91.8%)
1050
+
1051
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1052
+ Success: True
1053
+ # episodes completed so far: 209
1054
+ # successes: 192 (91.9%)
1055
+
1056
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1057
+ Success: True
1058
+ # episodes completed so far: 210
1059
+ # successes: 193 (91.9%)
1060
+
1061
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1062
+ Success: True
1063
+ # episodes completed so far: 211
1064
+ # successes: 194 (91.9%)
1065
+
1066
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1067
+ Success: True
1068
+ # episodes completed so far: 212
1069
+ # successes: 195 (92.0%)
1070
+
1071
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1072
+ Success: True
1073
+ # episodes completed so far: 213
1074
+ # successes: 196 (92.0%)
1075
+
1076
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1077
+ Success: True
1078
+ # episodes completed so far: 214
1079
+ # successes: 197 (92.1%)
1080
+
1081
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1082
+ Success: True
1083
+ # episodes completed so far: 215
1084
+ # successes: 198 (92.1%)
1085
+
1086
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1087
+ Success: True
1088
+ # episodes completed so far: 216
1089
+ # successes: 199 (92.1%)
1090
+
1091
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1092
+ Success: False
1093
+ # episodes completed so far: 217
1094
+ # successes: 199 (91.7%)
1095
+
1096
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1097
+ Success: True
1098
+ # episodes completed so far: 218
1099
+ # successes: 200 (91.7%)
1100
+
1101
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1102
+ Success: True
1103
+ # episodes completed so far: 219
1104
+ # successes: 201 (91.8%)
1105
+
1106
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1107
+ Success: False
1108
+ # episodes completed so far: 220
1109
+ # successes: 201 (91.4%)
1110
+
1111
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1112
+ Success: False
1113
+ # episodes completed so far: 221
1114
+ # successes: 201 (91.0%)
1115
+
1116
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1117
+ Success: False
1118
+ # episodes completed so far: 222
1119
+ # successes: 201 (90.5%)
1120
+
1121
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1122
+ Success: True
1123
+ # episodes completed so far: 223
1124
+ # successes: 202 (90.6%)
1125
+
1126
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1127
+ Success: True
1128
+ # episodes completed so far: 224
1129
+ # successes: 203 (90.6%)
1130
+
1131
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1132
+ Success: True
1133
+ # episodes completed so far: 225
1134
+ # successes: 204 (90.7%)
1135
+
1136
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1137
+ Success: True
1138
+ # episodes completed so far: 226
1139
+ # successes: 205 (90.7%)
1140
+
1141
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1142
+ Success: True
1143
+ # episodes completed so far: 227
1144
+ # successes: 206 (90.7%)
1145
+
1146
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1147
+ Success: True
1148
+ # episodes completed so far: 228
1149
+ # successes: 207 (90.8%)
1150
+
1151
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1152
+ Success: True
1153
+ # episodes completed so far: 229
1154
+ # successes: 208 (90.8%)
1155
+
1156
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1157
+ Success: True
1158
+ # episodes completed so far: 230
1159
+ # successes: 209 (90.9%)
1160
+
1161
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1162
+ Success: True
1163
+ # episodes completed so far: 231
1164
+ # successes: 210 (90.9%)
1165
+
1166
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1167
+ Success: True
1168
+ # episodes completed so far: 232
1169
+ # successes: 211 (90.9%)
1170
+
1171
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1172
+ Success: True
1173
+ # episodes completed so far: 233
1174
+ # successes: 212 (91.0%)
1175
+
1176
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1177
+ Success: True
1178
+ # episodes completed so far: 234
1179
+ # successes: 213 (91.0%)
1180
+
1181
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1182
+ Success: True
1183
+ # episodes completed so far: 235
1184
+ # successes: 214 (91.1%)
1185
+
1186
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1187
+ Success: True
1188
+ # episodes completed so far: 236
1189
+ # successes: 215 (91.1%)
1190
+
1191
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1192
+ Success: False
1193
+ # episodes completed so far: 237
1194
+ # successes: 215 (90.7%)
1195
+
1196
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1197
+ Success: False
1198
+ # episodes completed so far: 238
1199
+ # successes: 215 (90.3%)
1200
+
1201
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1202
+ Success: True
1203
+ # episodes completed so far: 239
1204
+ # successes: 216 (90.4%)
1205
+
1206
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1207
+ Success: True
1208
+ # episodes completed so far: 240
1209
+ # successes: 217 (90.4%)
1210
+
1211
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1212
+ Success: True
1213
+ # episodes completed so far: 241
1214
+ # successes: 218 (90.5%)
1215
+
1216
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1217
+ Success: True
1218
+ # episodes completed so far: 242
1219
+ # successes: 219 (90.5%)
1220
+
1221
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1222
+ Success: True
1223
+ # episodes completed so far: 243
1224
+ # successes: 220 (90.5%)
1225
+
1226
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1227
+ Success: True
1228
+ # episodes completed so far: 244
1229
+ # successes: 221 (90.6%)
1230
+
1231
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1232
+ Success: True
1233
+ # episodes completed so far: 245
1234
+ # successes: 222 (90.6%)
1235
+
1236
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1237
+ Success: False
1238
+ # episodes completed so far: 246
1239
+ # successes: 222 (90.2%)
1240
+
1241
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1242
+ Success: True
1243
+ # episodes completed so far: 247
1244
+ # successes: 223 (90.3%)
1245
+
1246
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1247
+ Success: True
1248
+ # episodes completed so far: 248
1249
+ # successes: 224 (90.3%)
1250
+
1251
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1252
+ Success: True
1253
+ # episodes completed so far: 249
1254
+ # successes: 225 (90.4%)
1255
+
1256
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1257
+ Success: True
1258
+ # episodes completed so far: 250
1259
+ # successes: 226 (90.4%)
1260
+ Current task success rate: 0.86
1261
+ Current total success rate: 0.904
1262
+
1263
+ Task: pick up the book and place it in the back compartment of the caddy
1264
+ Success: True
1265
+ # episodes completed so far: 251
1266
+ # successes: 227 (90.4%)
1267
+
1268
+ Task: pick up the book and place it in the back compartment of the caddy
1269
+ Success: True
1270
+ # episodes completed so far: 252
1271
+ # successes: 228 (90.5%)
1272
+
1273
+ Task: pick up the book and place it in the back compartment of the caddy
1274
+ Success: True
1275
+ # episodes completed so far: 253
1276
+ # successes: 229 (90.5%)
1277
+
1278
+ Task: pick up the book and place it in the back compartment of the caddy
1279
+ Success: True
1280
+ # episodes completed so far: 254
1281
+ # successes: 230 (90.6%)
1282
+
1283
+ Task: pick up the book and place it in the back compartment of the caddy
1284
+ Success: True
1285
+ # episodes completed so far: 255
1286
+ # successes: 231 (90.6%)
1287
+
1288
+ Task: pick up the book and place it in the back compartment of the caddy
1289
+ Success: True
1290
+ # episodes completed so far: 256
1291
+ # successes: 232 (90.6%)
1292
+
1293
+ Task: pick up the book and place it in the back compartment of the caddy
1294
+ Success: True
1295
+ # episodes completed so far: 257
1296
+ # successes: 233 (90.7%)
1297
+
1298
+ Task: pick up the book and place it in the back compartment of the caddy
1299
+ Success: True
1300
+ # episodes completed so far: 258
1301
+ # successes: 234 (90.7%)
1302
+
1303
+ Task: pick up the book and place it in the back compartment of the caddy
1304
+ Success: True
1305
+ # episodes completed so far: 259
1306
+ # successes: 235 (90.7%)
1307
+
1308
+ Task: pick up the book and place it in the back compartment of the caddy
1309
+ Success: True
1310
+ # episodes completed so far: 260
1311
+ # successes: 236 (90.8%)
1312
+
1313
+ Task: pick up the book and place it in the back compartment of the caddy
1314
+ Success: True
1315
+ # episodes completed so far: 261
1316
+ # successes: 237 (90.8%)
1317
+
1318
+ Task: pick up the book and place it in the back compartment of the caddy
1319
+ Success: True
1320
+ # episodes completed so far: 262
1321
+ # successes: 238 (90.8%)
1322
+
1323
+ Task: pick up the book and place it in the back compartment of the caddy
1324
+ Success: True
1325
+ # episodes completed so far: 263
1326
+ # successes: 239 (90.9%)
1327
+
1328
+ Task: pick up the book and place it in the back compartment of the caddy
1329
+ Success: True
1330
+ # episodes completed so far: 264
1331
+ # successes: 240 (90.9%)
1332
+
1333
+ Task: pick up the book and place it in the back compartment of the caddy
1334
+ Success: True
1335
+ # episodes completed so far: 265
1336
+ # successes: 241 (90.9%)
1337
+
1338
+ Task: pick up the book and place it in the back compartment of the caddy
1339
+ Success: True
1340
+ # episodes completed so far: 266
1341
+ # successes: 242 (91.0%)
1342
+
1343
+ Task: pick up the book and place it in the back compartment of the caddy
1344
+ Success: True
1345
+ # episodes completed so far: 267
1346
+ # successes: 243 (91.0%)
1347
+
1348
+ Task: pick up the book and place it in the back compartment of the caddy
1349
+ Success: True
1350
+ # episodes completed so far: 268
1351
+ # successes: 244 (91.0%)
1352
+
1353
+ Task: pick up the book and place it in the back compartment of the caddy
1354
+ Success: True
1355
+ # episodes completed so far: 269
1356
+ # successes: 245 (91.1%)
1357
+
1358
+ Task: pick up the book and place it in the back compartment of the caddy
1359
+ Success: True
1360
+ # episodes completed so far: 270
1361
+ # successes: 246 (91.1%)
1362
+
1363
+ Task: pick up the book and place it in the back compartment of the caddy
1364
+ Success: True
1365
+ # episodes completed so far: 271
1366
+ # successes: 247 (91.1%)
1367
+
1368
+ Task: pick up the book and place it in the back compartment of the caddy
1369
+ Success: True
1370
+ # episodes completed so far: 272
1371
+ # successes: 248 (91.2%)
1372
+
1373
+ Task: pick up the book and place it in the back compartment of the caddy
1374
+ Success: True
1375
+ # episodes completed so far: 273
1376
+ # successes: 249 (91.2%)
1377
+
1378
+ Task: pick up the book and place it in the back compartment of the caddy
1379
+ Success: True
1380
+ # episodes completed so far: 274
1381
+ # successes: 250 (91.2%)
1382
+
1383
+ Task: pick up the book and place it in the back compartment of the caddy
1384
+ Success: True
1385
+ # episodes completed so far: 275
1386
+ # successes: 251 (91.3%)
1387
+
1388
+ Task: pick up the book and place it in the back compartment of the caddy
1389
+ Success: True
1390
+ # episodes completed so far: 276
1391
+ # successes: 252 (91.3%)
1392
+
1393
+ Task: pick up the book and place it in the back compartment of the caddy
1394
+ Success: True
1395
+ # episodes completed so far: 277
1396
+ # successes: 253 (91.3%)
1397
+
1398
+ Task: pick up the book and place it in the back compartment of the caddy
1399
+ Success: True
1400
+ # episodes completed so far: 278
1401
+ # successes: 254 (91.4%)
1402
+
1403
+ Task: pick up the book and place it in the back compartment of the caddy
1404
+ Success: True
1405
+ # episodes completed so far: 279
1406
+ # successes: 255 (91.4%)
1407
+
1408
+ Task: pick up the book and place it in the back compartment of the caddy
1409
+ Success: True
1410
+ # episodes completed so far: 280
1411
+ # successes: 256 (91.4%)
1412
+
1413
+ Task: pick up the book and place it in the back compartment of the caddy
1414
+ Success: True
1415
+ # episodes completed so far: 281
1416
+ # successes: 257 (91.5%)
1417
+
1418
+ Task: pick up the book and place it in the back compartment of the caddy
1419
+ Success: True
1420
+ # episodes completed so far: 282
1421
+ # successes: 258 (91.5%)
1422
+
1423
+ Task: pick up the book and place it in the back compartment of the caddy
1424
+ Success: True
1425
+ # episodes completed so far: 283
1426
+ # successes: 259 (91.5%)
1427
+
1428
+ Task: pick up the book and place it in the back compartment of the caddy
1429
+ Success: True
1430
+ # episodes completed so far: 284
1431
+ # successes: 260 (91.5%)
1432
+
1433
+ Task: pick up the book and place it in the back compartment of the caddy
1434
+ Success: True
1435
+ # episodes completed so far: 285
1436
+ # successes: 261 (91.6%)
1437
+
1438
+ Task: pick up the book and place it in the back compartment of the caddy
1439
+ Success: True
1440
+ # episodes completed so far: 286
1441
+ # successes: 262 (91.6%)
1442
+
1443
+ Task: pick up the book and place it in the back compartment of the caddy
1444
+ Success: True
1445
+ # episodes completed so far: 287
1446
+ # successes: 263 (91.6%)
1447
+
1448
+ Task: pick up the book and place it in the back compartment of the caddy
1449
+ Success: True
1450
+ # episodes completed so far: 288
1451
+ # successes: 264 (91.7%)
1452
+
1453
+ Task: pick up the book and place it in the back compartment of the caddy
1454
+ Success: True
1455
+ # episodes completed so far: 289
1456
+ # successes: 265 (91.7%)
1457
+
1458
+ Task: pick up the book and place it in the back compartment of the caddy
1459
+ Success: True
1460
+ # episodes completed so far: 290
1461
+ # successes: 266 (91.7%)
1462
+
1463
+ Task: pick up the book and place it in the back compartment of the caddy
1464
+ Success: True
1465
+ # episodes completed so far: 291
1466
+ # successes: 267 (91.8%)
1467
+
1468
+ Task: pick up the book and place it in the back compartment of the caddy
1469
+ Success: True
1470
+ # episodes completed so far: 292
1471
+ # successes: 268 (91.8%)
1472
+
1473
+ Task: pick up the book and place it in the back compartment of the caddy
1474
+ Success: True
1475
+ # episodes completed so far: 293
1476
+ # successes: 269 (91.8%)
1477
+
1478
+ Task: pick up the book and place it in the back compartment of the caddy
1479
+ Success: True
1480
+ # episodes completed so far: 294
1481
+ # successes: 270 (91.8%)
1482
+
1483
+ Task: pick up the book and place it in the back compartment of the caddy
1484
+ Success: True
1485
+ # episodes completed so far: 295
1486
+ # successes: 271 (91.9%)
1487
+
1488
+ Task: pick up the book and place it in the back compartment of the caddy
1489
+ Success: True
1490
+ # episodes completed so far: 296
1491
+ # successes: 272 (91.9%)
1492
+
1493
+ Task: pick up the book and place it in the back compartment of the caddy
1494
+ Success: True
1495
+ # episodes completed so far: 297
1496
+ # successes: 273 (91.9%)
1497
+
1498
+ Task: pick up the book and place it in the back compartment of the caddy
1499
+ Success: True
1500
+ # episodes completed so far: 298
1501
+ # successes: 274 (91.9%)
1502
+
1503
+ Task: pick up the book and place it in the back compartment of the caddy
1504
+ Success: True
1505
+ # episodes completed so far: 299
1506
+ # successes: 275 (92.0%)
1507
+
1508
+ Task: pick up the book and place it in the back compartment of the caddy
1509
+ Success: True
1510
+ # episodes completed so far: 300
1511
+ # successes: 276 (92.0%)
1512
+ Current task success rate: 1.0
1513
+ Current total success rate: 0.92
1514
+
1515
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1516
+ Success: True
1517
+ # episodes completed so far: 301
1518
+ # successes: 277 (92.0%)
1519
+
1520
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1521
+ Success: True
1522
+ # episodes completed so far: 302
1523
+ # successes: 278 (92.1%)
1524
+
1525
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1526
+ Success: True
1527
+ # episodes completed so far: 303
1528
+ # successes: 279 (92.1%)
1529
+
1530
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1531
+ Success: True
1532
+ # episodes completed so far: 304
1533
+ # successes: 280 (92.1%)
1534
+
1535
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1536
+ Success: True
1537
+ # episodes completed so far: 305
1538
+ # successes: 281 (92.1%)
1539
+
1540
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1541
+ Success: True
1542
+ # episodes completed so far: 306
1543
+ # successes: 282 (92.2%)
1544
+
1545
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1546
+ Success: True
1547
+ # episodes completed so far: 307
1548
+ # successes: 283 (92.2%)
1549
+
1550
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1551
+ Success: True
1552
+ # episodes completed so far: 308
1553
+ # successes: 284 (92.2%)
1554
+
1555
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1556
+ Success: True
1557
+ # episodes completed so far: 309
1558
+ # successes: 285 (92.2%)
1559
+
1560
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1561
+ Success: True
1562
+ # episodes completed so far: 310
1563
+ # successes: 286 (92.3%)
1564
+
1565
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1566
+ Success: True
1567
+ # episodes completed so far: 311
1568
+ # successes: 287 (92.3%)
1569
+
1570
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1571
+ Success: True
1572
+ # episodes completed so far: 312
1573
+ # successes: 288 (92.3%)
1574
+
1575
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1576
+ Success: True
1577
+ # episodes completed so far: 313
1578
+ # successes: 289 (92.3%)
1579
+
1580
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1581
+ Success: True
1582
+ # episodes completed so far: 314
1583
+ # successes: 290 (92.4%)
1584
+
1585
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1586
+ Success: False
1587
+ # episodes completed so far: 315
1588
+ # successes: 290 (92.1%)
1589
+
1590
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1591
+ Success: True
1592
+ # episodes completed so far: 316
1593
+ # successes: 291 (92.1%)
1594
+
1595
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1596
+ Success: False
1597
+ # episodes completed so far: 317
1598
+ # successes: 291 (91.8%)
1599
+
1600
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1601
+ Success: True
1602
+ # episodes completed so far: 318
1603
+ # successes: 292 (91.8%)
1604
+
1605
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1606
+ Success: True
1607
+ # episodes completed so far: 319
1608
+ # successes: 293 (91.8%)
1609
+
1610
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1611
+ Success: True
1612
+ # episodes completed so far: 320
1613
+ # successes: 294 (91.9%)
1614
+
1615
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1616
+ Success: True
1617
+ # episodes completed so far: 321
1618
+ # successes: 295 (91.9%)
1619
+
1620
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1621
+ Success: False
1622
+ # episodes completed so far: 322
1623
+ # successes: 295 (91.6%)
1624
+
1625
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1626
+ Success: True
1627
+ # episodes completed so far: 323
1628
+ # successes: 296 (91.6%)
1629
+
1630
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1631
+ Success: False
1632
+ # episodes completed so far: 324
1633
+ # successes: 296 (91.4%)
1634
+
1635
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1636
+ Success: True
1637
+ # episodes completed so far: 325
1638
+ # successes: 297 (91.4%)
1639
+
1640
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1641
+ Success: False
1642
+ # episodes completed so far: 326
1643
+ # successes: 297 (91.1%)
1644
+
1645
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1646
+ Success: True
1647
+ # episodes completed so far: 327
1648
+ # successes: 298 (91.1%)
1649
+
1650
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1651
+ Success: False
1652
+ # episodes completed so far: 328
1653
+ # successes: 298 (90.9%)
1654
+
1655
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1656
+ Success: True
1657
+ # episodes completed so far: 329
1658
+ # successes: 299 (90.9%)
1659
+
1660
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1661
+ Success: False
1662
+ # episodes completed so far: 330
1663
+ # successes: 299 (90.6%)
1664
+
1665
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1666
+ Success: True
1667
+ # episodes completed so far: 331
1668
+ # successes: 300 (90.6%)
1669
+
1670
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1671
+ Success: True
1672
+ # episodes completed so far: 332
1673
+ # successes: 301 (90.7%)
1674
+
1675
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1676
+ Success: True
1677
+ # episodes completed so far: 333
1678
+ # successes: 302 (90.7%)
1679
+
1680
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1681
+ Success: True
1682
+ # episodes completed so far: 334
1683
+ # successes: 303 (90.7%)
1684
+
1685
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1686
+ Success: True
1687
+ # episodes completed so far: 335
1688
+ # successes: 304 (90.7%)
1689
+
1690
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1691
+ Success: True
1692
+ # episodes completed so far: 336
1693
+ # successes: 305 (90.8%)
1694
+
1695
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1696
+ Success: True
1697
+ # episodes completed so far: 337
1698
+ # successes: 306 (90.8%)
1699
+
1700
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1701
+ Success: True
1702
+ # episodes completed so far: 338
1703
+ # successes: 307 (90.8%)
1704
+
1705
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1706
+ Success: True
1707
+ # episodes completed so far: 339
1708
+ # successes: 308 (90.9%)
1709
+
1710
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1711
+ Success: False
1712
+ # episodes completed so far: 340
1713
+ # successes: 308 (90.6%)
1714
+
1715
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1716
+ Success: True
1717
+ # episodes completed so far: 341
1718
+ # successes: 309 (90.6%)
1719
+
1720
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1721
+ Success: True
1722
+ # episodes completed so far: 342
1723
+ # successes: 310 (90.6%)
1724
+
1725
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1726
+ Success: True
1727
+ # episodes completed so far: 343
1728
+ # successes: 311 (90.7%)
1729
+
1730
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1731
+ Success: True
1732
+ # episodes completed so far: 344
1733
+ # successes: 312 (90.7%)
1734
+
1735
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1736
+ Success: True
1737
+ # episodes completed so far: 345
1738
+ # successes: 313 (90.7%)
1739
+
1740
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1741
+ Success: True
1742
+ # episodes completed so far: 346
1743
+ # successes: 314 (90.8%)
1744
+
1745
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1746
+ Success: True
1747
+ # episodes completed so far: 347
1748
+ # successes: 315 (90.8%)
1749
+
1750
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1751
+ Success: True
1752
+ # episodes completed so far: 348
1753
+ # successes: 316 (90.8%)
1754
+
1755
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1756
+ Success: True
1757
+ # episodes completed so far: 349
1758
+ # successes: 317 (90.8%)
1759
+
1760
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1761
+ Success: True
1762
+ # episodes completed so far: 350
1763
+ # successes: 318 (90.9%)
1764
+ Current task success rate: 0.84
1765
+ Current total success rate: 0.9085714285714286
1766
+
1767
+ Task: put both the alphabet soup and the cream cheese box in the basket
1768
+ Success: True
1769
+ # episodes completed so far: 351
1770
+ # successes: 319 (90.9%)
1771
+
1772
+ Task: put both the alphabet soup and the cream cheese box in the basket
1773
+ Success: True
1774
+ # episodes completed so far: 352
1775
+ # successes: 320 (90.9%)
1776
+
1777
+ Task: put both the alphabet soup and the cream cheese box in the basket
1778
+ Success: True
1779
+ # episodes completed so far: 353
1780
+ # successes: 321 (90.9%)
1781
+
1782
+ Task: put both the alphabet soup and the cream cheese box in the basket
1783
+ Success: True
1784
+ # episodes completed so far: 354
1785
+ # successes: 322 (91.0%)
1786
+
1787
+ Task: put both the alphabet soup and the cream cheese box in the basket
1788
+ Success: True
1789
+ # episodes completed so far: 355
1790
+ # successes: 323 (91.0%)
1791
+
1792
+ Task: put both the alphabet soup and the cream cheese box in the basket
1793
+ Success: True
1794
+ # episodes completed so far: 356
1795
+ # successes: 324 (91.0%)
1796
+
1797
+ Task: put both the alphabet soup and the cream cheese box in the basket
1798
+ Success: True
1799
+ # episodes completed so far: 357
1800
+ # successes: 325 (91.0%)
1801
+
1802
+ Task: put both the alphabet soup and the cream cheese box in the basket
1803
+ Success: True
1804
+ # episodes completed so far: 358
1805
+ # successes: 326 (91.1%)
1806
+
1807
+ Task: put both the alphabet soup and the cream cheese box in the basket
1808
+ Success: True
1809
+ # episodes completed so far: 359
1810
+ # successes: 327 (91.1%)
1811
+
1812
+ Task: put both the alphabet soup and the cream cheese box in the basket
1813
+ Success: False
1814
+ # episodes completed so far: 360
1815
+ # successes: 327 (90.8%)
1816
+
1817
+ Task: put both the alphabet soup and the cream cheese box in the basket
1818
+ Success: True
1819
+ # episodes completed so far: 361
1820
+ # successes: 328 (90.9%)
1821
+
1822
+ Task: put both the alphabet soup and the cream cheese box in the basket
1823
+ Success: True
1824
+ # episodes completed so far: 362
1825
+ # successes: 329 (90.9%)
1826
+
1827
+ Task: put both the alphabet soup and the cream cheese box in the basket
1828
+ Success: True
1829
+ # episodes completed so far: 363
1830
+ # successes: 330 (90.9%)
1831
+
1832
+ Task: put both the alphabet soup and the cream cheese box in the basket
1833
+ Success: True
1834
+ # episodes completed so far: 364
1835
+ # successes: 331 (90.9%)
1836
+
1837
+ Task: put both the alphabet soup and the cream cheese box in the basket
1838
+ Success: True
1839
+ # episodes completed so far: 365
1840
+ # successes: 332 (91.0%)
1841
+
1842
+ Task: put both the alphabet soup and the cream cheese box in the basket
1843
+ Success: True
1844
+ # episodes completed so far: 366
1845
+ # successes: 333 (91.0%)
1846
+
1847
+ Task: put both the alphabet soup and the cream cheese box in the basket
1848
+ Success: True
1849
+ # episodes completed so far: 367
1850
+ # successes: 334 (91.0%)
1851
+
1852
+ Task: put both the alphabet soup and the cream cheese box in the basket
1853
+ Success: True
1854
+ # episodes completed so far: 368
1855
+ # successes: 335 (91.0%)
1856
+
1857
+ Task: put both the alphabet soup and the cream cheese box in the basket
1858
+ Success: True
1859
+ # episodes completed so far: 369
1860
+ # successes: 336 (91.1%)
1861
+
1862
+ Task: put both the alphabet soup and the cream cheese box in the basket
1863
+ Success: True
1864
+ # episodes completed so far: 370
1865
+ # successes: 337 (91.1%)
1866
+
1867
+ Task: put both the alphabet soup and the cream cheese box in the basket
1868
+ Success: True
1869
+ # episodes completed so far: 371
1870
+ # successes: 338 (91.1%)
1871
+
1872
+ Task: put both the alphabet soup and the cream cheese box in the basket
1873
+ Success: True
1874
+ # episodes completed so far: 372
1875
+ # successes: 339 (91.1%)
1876
+
1877
+ Task: put both the alphabet soup and the cream cheese box in the basket
1878
+ Success: False
1879
+ # episodes completed so far: 373
1880
+ # successes: 339 (90.9%)
1881
+
1882
+ Task: put both the alphabet soup and the cream cheese box in the basket
1883
+ Success: True
1884
+ # episodes completed so far: 374
1885
+ # successes: 340 (90.9%)
1886
+
1887
+ Task: put both the alphabet soup and the cream cheese box in the basket
1888
+ Success: True
1889
+ # episodes completed so far: 375
1890
+ # successes: 341 (90.9%)
1891
+
1892
+ Task: put both the alphabet soup and the cream cheese box in the basket
1893
+ Success: True
1894
+ # episodes completed so far: 376
1895
+ # successes: 342 (91.0%)
1896
+
1897
+ Task: put both the alphabet soup and the cream cheese box in the basket
1898
+ Success: True
1899
+ # episodes completed so far: 377
1900
+ # successes: 343 (91.0%)
1901
+
1902
+ Task: put both the alphabet soup and the cream cheese box in the basket
1903
+ Success: True
1904
+ # episodes completed so far: 378
1905
+ # successes: 344 (91.0%)
1906
+
1907
+ Task: put both the alphabet soup and the cream cheese box in the basket
1908
+ Success: True
1909
+ # episodes completed so far: 379
1910
+ # successes: 345 (91.0%)
1911
+
1912
+ Task: put both the alphabet soup and the cream cheese box in the basket
1913
+ Success: True
1914
+ # episodes completed so far: 380
1915
+ # successes: 346 (91.1%)
1916
+
1917
+ Task: put both the alphabet soup and the cream cheese box in the basket
1918
+ Success: True
1919
+ # episodes completed so far: 381
1920
+ # successes: 347 (91.1%)
1921
+
1922
+ Task: put both the alphabet soup and the cream cheese box in the basket
1923
+ Success: True
1924
+ # episodes completed so far: 382
1925
+ # successes: 348 (91.1%)
1926
+
1927
+ Task: put both the alphabet soup and the cream cheese box in the basket
1928
+ Success: True
1929
+ # episodes completed so far: 383
1930
+ # successes: 349 (91.1%)
1931
+
1932
+ Task: put both the alphabet soup and the cream cheese box in the basket
1933
+ Success: True
1934
+ # episodes completed so far: 384
1935
+ # successes: 350 (91.1%)
1936
+
1937
+ Task: put both the alphabet soup and the cream cheese box in the basket
1938
+ Success: True
1939
+ # episodes completed so far: 385
1940
+ # successes: 351 (91.2%)
1941
+
1942
+ Task: put both the alphabet soup and the cream cheese box in the basket
1943
+ Success: True
1944
+ # episodes completed so far: 386
1945
+ # successes: 352 (91.2%)
1946
+
1947
+ Task: put both the alphabet soup and the cream cheese box in the basket
1948
+ Success: True
1949
+ # episodes completed so far: 387
1950
+ # successes: 353 (91.2%)
1951
+
1952
+ Task: put both the alphabet soup and the cream cheese box in the basket
1953
+ Success: True
1954
+ # episodes completed so far: 388
1955
+ # successes: 354 (91.2%)
1956
+
1957
+ Task: put both the alphabet soup and the cream cheese box in the basket
1958
+ Success: True
1959
+ # episodes completed so far: 389
1960
+ # successes: 355 (91.3%)
1961
+
1962
+ Task: put both the alphabet soup and the cream cheese box in the basket
1963
+ Success: True
1964
+ # episodes completed so far: 390
1965
+ # successes: 356 (91.3%)
1966
+
1967
+ Task: put both the alphabet soup and the cream cheese box in the basket
1968
+ Success: True
1969
+ # episodes completed so far: 391
1970
+ # successes: 357 (91.3%)
1971
+
1972
+ Task: put both the alphabet soup and the cream cheese box in the basket
1973
+ Success: True
1974
+ # episodes completed so far: 392
1975
+ # successes: 358 (91.3%)
1976
+
1977
+ Task: put both the alphabet soup and the cream cheese box in the basket
1978
+ Success: True
1979
+ # episodes completed so far: 393
1980
+ # successes: 359 (91.3%)
1981
+
1982
+ Task: put both the alphabet soup and the cream cheese box in the basket
1983
+ Success: True
1984
+ # episodes completed so far: 394
1985
+ # successes: 360 (91.4%)
1986
+
1987
+ Task: put both the alphabet soup and the cream cheese box in the basket
1988
+ Success: True
1989
+ # episodes completed so far: 395
1990
+ # successes: 361 (91.4%)
1991
+
1992
+ Task: put both the alphabet soup and the cream cheese box in the basket
1993
+ Success: True
1994
+ # episodes completed so far: 396
1995
+ # successes: 362 (91.4%)
1996
+
1997
+ Task: put both the alphabet soup and the cream cheese box in the basket
1998
+ Success: True
1999
+ # episodes completed so far: 397
2000
+ # successes: 363 (91.4%)
2001
+
2002
+ Task: put both the alphabet soup and the cream cheese box in the basket
2003
+ Success: True
2004
+ # episodes completed so far: 398
2005
+ # successes: 364 (91.5%)
2006
+
2007
+ Task: put both the alphabet soup and the cream cheese box in the basket
2008
+ Success: False
2009
+ # episodes completed so far: 399
2010
+ # successes: 364 (91.2%)
2011
+
2012
+ Task: put both the alphabet soup and the cream cheese box in the basket
2013
+ Success: True
2014
+ # episodes completed so far: 400
2015
+ # successes: 365 (91.2%)
2016
+ Current task success rate: 0.94
2017
+ Current total success rate: 0.9125
2018
+
2019
+ Task: put both moka pots on the stove
2020
+ Success: True
2021
+ # episodes completed so far: 401
2022
+ # successes: 366 (91.3%)
2023
+
2024
+ Task: put both moka pots on the stove
2025
+ Success: False
2026
+ # episodes completed so far: 402
2027
+ # successes: 366 (91.0%)
2028
+
2029
+ Task: put both moka pots on the stove
2030
+ Success: True
2031
+ # episodes completed so far: 403
2032
+ # successes: 367 (91.1%)
2033
+
2034
+ Task: put both moka pots on the stove
2035
+ Success: False
2036
+ # episodes completed so far: 404
2037
+ # successes: 367 (90.8%)
2038
+
2039
+ Task: put both moka pots on the stove
2040
+ Success: True
2041
+ # episodes completed so far: 405
2042
+ # successes: 368 (90.9%)
2043
+
2044
+ Task: put both moka pots on the stove
2045
+ Success: False
2046
+ # episodes completed so far: 406
2047
+ # successes: 368 (90.6%)
2048
+
2049
+ Task: put both moka pots on the stove
2050
+ Success: True
2051
+ # episodes completed so far: 407
2052
+ # successes: 369 (90.7%)
2053
+
2054
+ Task: put both moka pots on the stove
2055
+ Success: False
2056
+ # episodes completed so far: 408
2057
+ # successes: 369 (90.4%)
2058
+
2059
+ Task: put both moka pots on the stove
2060
+ Success: True
2061
+ # episodes completed so far: 409
2062
+ # successes: 370 (90.5%)
2063
+
2064
+ Task: put both moka pots on the stove
2065
+ Success: False
2066
+ # episodes completed so far: 410
2067
+ # successes: 370 (90.2%)
2068
+
2069
+ Task: put both moka pots on the stove
2070
+ Success: True
2071
+ # episodes completed so far: 411
2072
+ # successes: 371 (90.3%)
2073
+
2074
+ Task: put both moka pots on the stove
2075
+ Success: False
2076
+ # episodes completed so far: 412
2077
+ # successes: 371 (90.0%)
2078
+
2079
+ Task: put both moka pots on the stove
2080
+ Success: False
2081
+ # episodes completed so far: 413
2082
+ # successes: 371 (89.8%)
2083
+
2084
+ Task: put both moka pots on the stove
2085
+ Success: True
2086
+ # episodes completed so far: 414
2087
+ # successes: 372 (89.9%)
2088
+
2089
+ Task: put both moka pots on the stove
2090
+ Success: True
2091
+ # episodes completed so far: 415
2092
+ # successes: 373 (89.9%)
2093
+
2094
+ Task: put both moka pots on the stove
2095
+ Success: False
2096
+ # episodes completed so far: 416
2097
+ # successes: 373 (89.7%)
2098
+
2099
+ Task: put both moka pots on the stove
2100
+ Success: True
2101
+ # episodes completed so far: 417
2102
+ # successes: 374 (89.7%)
2103
+
2104
+ Task: put both moka pots on the stove
2105
+ Success: False
2106
+ # episodes completed so far: 418
2107
+ # successes: 374 (89.5%)
2108
+
2109
+ Task: put both moka pots on the stove
2110
+ Success: False
2111
+ # episodes completed so far: 419
2112
+ # successes: 374 (89.3%)
2113
+
2114
+ Task: put both moka pots on the stove
2115
+ Success: True
2116
+ # episodes completed so far: 420
2117
+ # successes: 375 (89.3%)
2118
+
2119
+ Task: put both moka pots on the stove
2120
+ Success: False
2121
+ # episodes completed so far: 421
2122
+ # successes: 375 (89.1%)
2123
+
2124
+ Task: put both moka pots on the stove
2125
+ Success: True
2126
+ # episodes completed so far: 422
2127
+ # successes: 376 (89.1%)
2128
+
2129
+ Task: put both moka pots on the stove
2130
+ Success: True
2131
+ # episodes completed so far: 423
2132
+ # successes: 377 (89.1%)
2133
+
2134
+ Task: put both moka pots on the stove
2135
+ Success: True
2136
+ # episodes completed so far: 424
2137
+ # successes: 378 (89.2%)
2138
+
2139
+ Task: put both moka pots on the stove
2140
+ Success: False
2141
+ # episodes completed so far: 425
2142
+ # successes: 378 (88.9%)
2143
+
2144
+ Task: put both moka pots on the stove
2145
+ Success: True
2146
+ # episodes completed so far: 426
2147
+ # successes: 379 (89.0%)
2148
+
2149
+ Task: put both moka pots on the stove
2150
+ Success: False
2151
+ # episodes completed so far: 427
2152
+ # successes: 379 (88.8%)
2153
+
2154
+ Task: put both moka pots on the stove
2155
+ Success: True
2156
+ # episodes completed so far: 428
2157
+ # successes: 380 (88.8%)
2158
+
2159
+ Task: put both moka pots on the stove
2160
+ Success: False
2161
+ # episodes completed so far: 429
2162
+ # successes: 380 (88.6%)
2163
+
2164
+ Task: put both moka pots on the stove
2165
+ Success: True
2166
+ # episodes completed so far: 430
2167
+ # successes: 381 (88.6%)
2168
+
2169
+ Task: put both moka pots on the stove
2170
+ Success: True
2171
+ # episodes completed so far: 431
2172
+ # successes: 382 (88.6%)
2173
+
2174
+ Task: put both moka pots on the stove
2175
+ Success: True
2176
+ # episodes completed so far: 432
2177
+ # successes: 383 (88.7%)
2178
+
2179
+ Task: put both moka pots on the stove
2180
+ Success: True
2181
+ # episodes completed so far: 433
2182
+ # successes: 384 (88.7%)
2183
+
2184
+ Task: put both moka pots on the stove
2185
+ Success: True
2186
+ # episodes completed so far: 434
2187
+ # successes: 385 (88.7%)
2188
+
2189
+ Task: put both moka pots on the stove
2190
+ Success: True
2191
+ # episodes completed so far: 435
2192
+ # successes: 386 (88.7%)
2193
+
2194
+ Task: put both moka pots on the stove
2195
+ Success: True
2196
+ # episodes completed so far: 436
2197
+ # successes: 387 (88.8%)
2198
+
2199
+ Task: put both moka pots on the stove
2200
+ Success: True
2201
+ # episodes completed so far: 437
2202
+ # successes: 388 (88.8%)
2203
+
2204
+ Task: put both moka pots on the stove
2205
+ Success: True
2206
+ # episodes completed so far: 438
2207
+ # successes: 389 (88.8%)
2208
+
2209
+ Task: put both moka pots on the stove
2210
+ Success: False
2211
+ # episodes completed so far: 439
2212
+ # successes: 389 (88.6%)
2213
+
2214
+ Task: put both moka pots on the stove
2215
+ Success: True
2216
+ # episodes completed so far: 440
2217
+ # successes: 390 (88.6%)
2218
+
2219
+ Task: put both moka pots on the stove
2220
+ Success: False
2221
+ # episodes completed so far: 441
2222
+ # successes: 390 (88.4%)
2223
+
2224
+ Task: put both moka pots on the stove
2225
+ Success: True
2226
+ # episodes completed so far: 442
2227
+ # successes: 391 (88.5%)
2228
+
2229
+ Task: put both moka pots on the stove
2230
+ Success: True
2231
+ # episodes completed so far: 443
2232
+ # successes: 392 (88.5%)
2233
+
2234
+ Task: put both moka pots on the stove
2235
+ Success: True
2236
+ # episodes completed so far: 444
2237
+ # successes: 393 (88.5%)
2238
+
2239
+ Task: put both moka pots on the stove
2240
+ Success: True
2241
+ # episodes completed so far: 445
2242
+ # successes: 394 (88.5%)
2243
+
2244
+ Task: put both moka pots on the stove
2245
+ Success: False
2246
+ # episodes completed so far: 446
2247
+ # successes: 394 (88.3%)
2248
+
2249
+ Task: put both moka pots on the stove
2250
+ Success: True
2251
+ # episodes completed so far: 447
2252
+ # successes: 395 (88.4%)
2253
+
2254
+ Task: put both moka pots on the stove
2255
+ Success: False
2256
+ # episodes completed so far: 448
2257
+ # successes: 395 (88.2%)
2258
+
2259
+ Task: put both moka pots on the stove
2260
+ Success: True
2261
+ # episodes completed so far: 449
2262
+ # successes: 396 (88.2%)
2263
+
2264
+ Task: put both moka pots on the stove
2265
+ Success: True
2266
+ # episodes completed so far: 450
2267
+ # successes: 397 (88.2%)
2268
+ Current task success rate: 0.64
2269
+ Current total success rate: 0.8822222222222222
2270
+
2271
+ Task: put the yellow and white mug in the microwave and close it
2272
+ Success: True
2273
+ # episodes completed so far: 451
2274
+ # successes: 398 (88.2%)
2275
+
2276
+ Task: put the yellow and white mug in the microwave and close it
2277
+ Success: True
2278
+ # episodes completed so far: 452
2279
+ # successes: 399 (88.3%)
2280
+
2281
+ Task: put the yellow and white mug in the microwave and close it
2282
+ Success: True
2283
+ # episodes completed so far: 453
2284
+ # successes: 400 (88.3%)
2285
+
2286
+ Task: put the yellow and white mug in the microwave and close it
2287
+ Success: True
2288
+ # episodes completed so far: 454
2289
+ # successes: 401 (88.3%)
2290
+
2291
+ Task: put the yellow and white mug in the microwave and close it
2292
+ Success: True
2293
+ # episodes completed so far: 455
2294
+ # successes: 402 (88.4%)
2295
+
2296
+ Task: put the yellow and white mug in the microwave and close it
2297
+ Success: True
2298
+ # episodes completed so far: 456
2299
+ # successes: 403 (88.4%)
2300
+
2301
+ Task: put the yellow and white mug in the microwave and close it
2302
+ Success: True
2303
+ # episodes completed so far: 457
2304
+ # successes: 404 (88.4%)
2305
+
2306
+ Task: put the yellow and white mug in the microwave and close it
2307
+ Success: True
2308
+ # episodes completed so far: 458
2309
+ # successes: 405 (88.4%)
2310
+
2311
+ Task: put the yellow and white mug in the microwave and close it
2312
+ Success: True
2313
+ # episodes completed so far: 459
2314
+ # successes: 406 (88.5%)
2315
+
2316
+ Task: put the yellow and white mug in the microwave and close it
2317
+ Success: True
2318
+ # episodes completed so far: 460
2319
+ # successes: 407 (88.5%)
2320
+
2321
+ Task: put the yellow and white mug in the microwave and close it
2322
+ Success: True
2323
+ # episodes completed so far: 461
2324
+ # successes: 408 (88.5%)
2325
+
2326
+ Task: put the yellow and white mug in the microwave and close it
2327
+ Success: True
2328
+ # episodes completed so far: 462
2329
+ # successes: 409 (88.5%)
2330
+
2331
+ Task: put the yellow and white mug in the microwave and close it
2332
+ Success: True
2333
+ # episodes completed so far: 463
2334
+ # successes: 410 (88.6%)
2335
+
2336
+ Task: put the yellow and white mug in the microwave and close it
2337
+ Success: True
2338
+ # episodes completed so far: 464
2339
+ # successes: 411 (88.6%)
2340
+
2341
+ Task: put the yellow and white mug in the microwave and close it
2342
+ Success: True
2343
+ # episodes completed so far: 465
2344
+ # successes: 412 (88.6%)
2345
+
2346
+ Task: put the yellow and white mug in the microwave and close it
2347
+ Success: True
2348
+ # episodes completed so far: 466
2349
+ # successes: 413 (88.6%)
2350
+
2351
+ Task: put the yellow and white mug in the microwave and close it
2352
+ Success: True
2353
+ # episodes completed so far: 467
2354
+ # successes: 414 (88.7%)
2355
+
2356
+ Task: put the yellow and white mug in the microwave and close it
2357
+ Success: True
2358
+ # episodes completed so far: 468
2359
+ # successes: 415 (88.7%)
2360
+
2361
+ Task: put the yellow and white mug in the microwave and close it
2362
+ Success: True
2363
+ # episodes completed so far: 469
2364
+ # successes: 416 (88.7%)
2365
+
2366
+ Task: put the yellow and white mug in the microwave and close it
2367
+ Success: True
2368
+ # episodes completed so far: 470
2369
+ # successes: 417 (88.7%)
2370
+
2371
+ Task: put the yellow and white mug in the microwave and close it
2372
+ Success: True
2373
+ # episodes completed so far: 471
2374
+ # successes: 418 (88.7%)
2375
+
2376
+ Task: put the yellow and white mug in the microwave and close it
2377
+ Success: True
2378
+ # episodes completed so far: 472
2379
+ # successes: 419 (88.8%)
2380
+
2381
+ Task: put the yellow and white mug in the microwave and close it
2382
+ Success: True
2383
+ # episodes completed so far: 473
2384
+ # successes: 420 (88.8%)
2385
+
2386
+ Task: put the yellow and white mug in the microwave and close it
2387
+ Success: True
2388
+ # episodes completed so far: 474
2389
+ # successes: 421 (88.8%)
2390
+
2391
+ Task: put the yellow and white mug in the microwave and close it
2392
+ Success: True
2393
+ # episodes completed so far: 475
2394
+ # successes: 422 (88.8%)
2395
+
2396
+ Task: put the yellow and white mug in the microwave and close it
2397
+ Success: True
2398
+ # episodes completed so far: 476
2399
+ # successes: 423 (88.9%)
2400
+
2401
+ Task: put the yellow and white mug in the microwave and close it
2402
+ Success: True
2403
+ # episodes completed so far: 477
2404
+ # successes: 424 (88.9%)
2405
+
2406
+ Task: put the yellow and white mug in the microwave and close it
2407
+ Success: True
2408
+ # episodes completed so far: 478
2409
+ # successes: 425 (88.9%)
2410
+
2411
+ Task: put the yellow and white mug in the microwave and close it
2412
+ Success: True
2413
+ # episodes completed so far: 479
2414
+ # successes: 426 (88.9%)
2415
+
2416
+ Task: put the yellow and white mug in the microwave and close it
2417
+ Success: True
2418
+ # episodes completed so far: 480
2419
+ # successes: 427 (89.0%)
2420
+
2421
+ Task: put the yellow and white mug in the microwave and close it
2422
+ Success: True
2423
+ # episodes completed so far: 481
2424
+ # successes: 428 (89.0%)
2425
+
2426
+ Task: put the yellow and white mug in the microwave and close it
2427
+ Success: True
2428
+ # episodes completed so far: 482
2429
+ # successes: 429 (89.0%)
2430
+
2431
+ Task: put the yellow and white mug in the microwave and close it
2432
+ Success: True
2433
+ # episodes completed so far: 483
2434
+ # successes: 430 (89.0%)
2435
+
2436
+ Task: put the yellow and white mug in the microwave and close it
2437
+ Success: True
2438
+ # episodes completed so far: 484
2439
+ # successes: 431 (89.0%)
2440
+
2441
+ Task: put the yellow and white mug in the microwave and close it
2442
+ Success: True
2443
+ # episodes completed so far: 485
2444
+ # successes: 432 (89.1%)
2445
+
2446
+ Task: put the yellow and white mug in the microwave and close it
2447
+ Success: True
2448
+ # episodes completed so far: 486
2449
+ # successes: 433 (89.1%)
2450
+
2451
+ Task: put the yellow and white mug in the microwave and close it
2452
+ Success: True
2453
+ # episodes completed so far: 487
2454
+ # successes: 434 (89.1%)
2455
+
2456
+ Task: put the yellow and white mug in the microwave and close it
2457
+ Success: True
2458
+ # episodes completed so far: 488
2459
+ # successes: 435 (89.1%)
2460
+
2461
+ Task: put the yellow and white mug in the microwave and close it
2462
+ Success: True
2463
+ # episodes completed so far: 489
2464
+ # successes: 436 (89.2%)
2465
+
2466
+ Task: put the yellow and white mug in the microwave and close it
2467
+ Success: False
2468
+ # episodes completed so far: 490
2469
+ # successes: 436 (89.0%)
2470
+
2471
+ Task: put the yellow and white mug in the microwave and close it
2472
+ Success: True
2473
+ # episodes completed so far: 491
2474
+ # successes: 437 (89.0%)
2475
+
2476
+ Task: put the yellow and white mug in the microwave and close it
2477
+ Success: True
2478
+ # episodes completed so far: 492
2479
+ # successes: 438 (89.0%)
2480
+
2481
+ Task: put the yellow and white mug in the microwave and close it
2482
+ Success: True
2483
+ # episodes completed so far: 493
2484
+ # successes: 439 (89.0%)
2485
+
2486
+ Task: put the yellow and white mug in the microwave and close it
2487
+ Success: True
2488
+ # episodes completed so far: 494
2489
+ # successes: 440 (89.1%)
2490
+
2491
+ Task: put the yellow and white mug in the microwave and close it
2492
+ Success: True
2493
+ # episodes completed so far: 495
2494
+ # successes: 441 (89.1%)
2495
+
2496
+ Task: put the yellow and white mug in the microwave and close it
2497
+ Success: True
2498
+ # episodes completed so far: 496
2499
+ # successes: 442 (89.1%)
2500
+
2501
+ Task: put the yellow and white mug in the microwave and close it
2502
+ Success: True
2503
+ # episodes completed so far: 497
2504
+ # successes: 443 (89.1%)
2505
+
2506
+ Task: put the yellow and white mug in the microwave and close it
2507
+ Success: True
2508
+ # episodes completed so far: 498
2509
+ # successes: 444 (89.2%)
2510
+
2511
+ Task: put the yellow and white mug in the microwave and close it
2512
+ Success: True
2513
+ # episodes completed so far: 499
2514
+ # successes: 445 (89.2%)
2515
+
2516
+ Task: put the yellow and white mug in the microwave and close it
2517
+ Success: True
2518
+ # episodes completed so far: 500
2519
+ # successes: 446 (89.2%)
2520
+ Current task success rate: 0.98
2521
+ Current total success rate: 0.892
libero_goal_2B/starvla_qwen_dual/config.json ADDED
@@ -0,0 +1,129 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "run_id": "starvla_qwen_dual",
3
+ "run_root_dir": "/share/project/baishuanghao/code/starVLA/pretrained_models_2/libero_goal_2B",
4
+ "seed": 42,
5
+ "trackers": [
6
+ "jsonl",
7
+ "wandb"
8
+ ],
9
+ "wandb_project": "starVLA",
10
+ "is_debug": false,
11
+ "enable_mee": false,
12
+ "mee_weight": 0.01,
13
+ "framework": {
14
+ "name": "Qwen-Dual",
15
+ "qwenvl": {
16
+ "base_vlm": "/share/project/baishuanghao/code/HLM-VLA/models/Qwen3-VL-2B-Instruct",
17
+ "attn_implementation": "flash_attention_2",
18
+ "vl_hidden_dim": 2048
19
+ },
20
+ "dino": {
21
+ "dino_backbone": "dinov2_vits14"
22
+ },
23
+ "action_model": {
24
+ "action_model_type": "DiT-B",
25
+ "action_hidden_dim": 2,
26
+ "hidden_size": 1024,
27
+ "add_pos_embed": true,
28
+ "max_seq_len": 1024,
29
+ "action_dim": 7,
30
+ "state_dim": 7,
31
+ "future_action_window_size": 7,
32
+ "action_horizon": 8,
33
+ "past_action_window_size": 0,
34
+ "repeated_diffusion_steps": 8,
35
+ "noise_beta_alpha": 1.5,
36
+ "noise_beta_beta": 1.0,
37
+ "noise_s": 0.999,
38
+ "num_timestep_buckets": 1000,
39
+ "num_inference_timesteps": 4,
40
+ "num_target_vision_tokens": 32,
41
+ "diffusion_model_cfg": {
42
+ "cross_attention_dim": 2048,
43
+ "dropout": 0.2,
44
+ "final_dropout": true,
45
+ "interleave_self_attention": true,
46
+ "norm_type": "ada_norm",
47
+ "num_layers": 16,
48
+ "output_dim": 1024,
49
+ "positional_embeddings": null
50
+ }
51
+ },
52
+ "reduce_in_full_precision": true
53
+ },
54
+ "datasets": {
55
+ "vlm_data": {
56
+ "dataset_py": "vlm_datasets",
57
+ "dataformat": "llava_json",
58
+ "dataset_use": "asv2_conversation_en,asv2_detailed_description_en,asv2_region_captioning_en,coco_internvl_longcap_en,coco_karpathy_train_567_en,coco_negative_gpt4o_en,coco_poetry_zh,coco_rem_en_zh,cocorem_exist_yorn_en,cocotextv2_en,cocotextv2_gpt4o_en,okvqa_en,refcoco_grounding_aug_en,refcoco_grounding_en,tallyqa_coco_en,toloka_grounding_aug_en,vqav2_en,vsr_en",
59
+ "eval_dataset": "aokvqa_cauldron_llava_format",
60
+ "data_flatten": false,
61
+ "base_interval": 2,
62
+ "max_pixels": 12845056,
63
+ "min_pixels": 3136,
64
+ "model_max_length": 2048,
65
+ "model_type": "qwen2.5vl",
66
+ "per_device_batch_size": 4
67
+ },
68
+ "vla_data": {
69
+ "dataset_py": "lerobot_datasets",
70
+ "data_root_dir": "/share/project/baishuanghao/data/libero_lerobot",
71
+ "data_mix": "libero_goal",
72
+ "action_type": "delta_qpos",
73
+ "CoT_prompt": "Your task is {instruction}. To identify the key objects for your task. Locate their bounding boxes in [x1,y1,x2,y2] format.",
74
+ "CoT_answer": "bbox",
75
+ "default_image_resolution": [
76
+ 3,
77
+ 224,
78
+ 224
79
+ ],
80
+ "per_device_batch_size": 16,
81
+ "load_all_data_for_training": true,
82
+ "obs": [
83
+ "image_0"
84
+ ]
85
+ }
86
+ },
87
+ "trainer": {
88
+ "epochs": 100,
89
+ "max_train_steps": 30000,
90
+ "num_warmup_steps": 5000,
91
+ "save_interval": 60000,
92
+ "eval_interval": 30000,
93
+ "learning_rate": {
94
+ "base": 4e-05,
95
+ "qwen_vl_interface": 1e-05,
96
+ "action_model": 0.0001
97
+ },
98
+ "lr_scheduler_type": "cosine_with_min_lr",
99
+ "scheduler_specific_kwargs": {
100
+ "min_lr": 1e-06
101
+ },
102
+ "freeze_modules": null,
103
+ "loss_scale": {
104
+ "vla": 1.0,
105
+ "vlm": 0.1
106
+ },
107
+ "max_grad_norm": 1.0,
108
+ "warmup_ratio": 0.1,
109
+ "weight_decay": 0.0,
110
+ "logging_frequency": 100,
111
+ "gradient_clipping": 1.0,
112
+ "gradient_accumulation_steps": 1,
113
+ "optimizer": {
114
+ "name": "AdamW",
115
+ "betas": [
116
+ 0.9,
117
+ 0.95
118
+ ],
119
+ "eps": 1e-08,
120
+ "weight_decay": 1e-08
121
+ },
122
+ "is_resume": false,
123
+ "resume_epoch": null,
124
+ "resume_step": null,
125
+ "enable_gradient_checkpointing": true,
126
+ "enable_mixed_precision_training": true
127
+ },
128
+ "output_dir": "/share/project/baishuanghao/code/starVLA/pretrained_models_2/libero_goal_2B/starvla_qwen_dual"
129
+ }
libero_goal_2B/starvla_qwen_dual/dataset_statistics.json ADDED
@@ -0,0 +1,133 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "franka": {
3
+ "action": {
4
+ "mean": [
5
+ 0.04721052572131157,
6
+ 0.028835246339440346,
7
+ -0.1485840231180191,
8
+ -0.0025010062381625175,
9
+ 0.026408178731799126,
10
+ 0.027379808947443962,
11
+ 0.6299911737442017
12
+ ],
13
+ "std": [
14
+ 0.3968801498413086,
15
+ 0.3473387360572815,
16
+ 0.49239858984947205,
17
+ 0.055331431329250336,
18
+ 0.07844757288694382,
19
+ 0.10008802264928818,
20
+ 0.48270025849342346
21
+ ],
22
+ "max": [
23
+ 0.9375,
24
+ 0.9375,
25
+ 0.9375,
26
+ 0.3557142913341522,
27
+ 0.375,
28
+ 0.375,
29
+ 1.0
30
+ ],
31
+ "min": [
32
+ -0.9375,
33
+ -0.9375,
34
+ -0.9375,
35
+ -0.2582142949104309,
36
+ -0.375,
37
+ -0.2871428430080414,
38
+ 0.0
39
+ ],
40
+ "q01": [
41
+ -0.8785714507102966,
42
+ -0.7553571462631226,
43
+ -0.9375,
44
+ -0.1510714292526245,
45
+ -0.1639285683631897,
46
+ -0.13777500048279764,
47
+ 0.0
48
+ ],
49
+ "q99": [
50
+ 0.9375,
51
+ 0.9107142686843872,
52
+ 0.9375,
53
+ 0.20357142388820648,
54
+ 0.26357144117355347,
55
+ 0.375,
56
+ 1.0
57
+ ],
58
+ "mask": [
59
+ true,
60
+ true,
61
+ true,
62
+ true,
63
+ true,
64
+ true,
65
+ false
66
+ ]
67
+ },
68
+ "state": {
69
+ "mean": [
70
+ -0.09923473745584488,
71
+ 0.013597904704511166,
72
+ 1.0694637298583984,
73
+ 2.82898211479187,
74
+ 0.30799180269241333,
75
+ -0.274286687374115,
76
+ 0.028092455118894577,
77
+ -0.027339335530996323
78
+ ],
79
+ "std": [
80
+ 0.11653962731361389,
81
+ 0.11478105187416077,
82
+ 0.10487838834524128,
83
+ 0.5570293664932251,
84
+ 0.7221656441688538,
85
+ 0.36479514837265015,
86
+ 0.01507475133985281,
87
+ 0.014990941621363163
88
+ ],
89
+ "max": [
90
+ 0.13579000532627106,
91
+ 0.33316105604171753,
92
+ 1.3660105466842651,
93
+ 3.473310708999634,
94
+ 2.6688623428344727,
95
+ 0.8255361318588257,
96
+ 0.04233968257904053,
97
+ 0.0010111660230904818
98
+ ],
99
+ "min": [
100
+ -0.46141114830970764,
101
+ -0.30129560828208923,
102
+ 0.9083037972450256,
103
+ 0.35277295112609863,
104
+ -1.4858465194702148,
105
+ -1.5227035284042358,
106
+ -0.0013586411951109767,
107
+ -0.042040832340717316
108
+ ],
109
+ "q01": [
110
+ -0.42401049643754957,
111
+ -0.27338370531797407,
112
+ 0.911226047873497,
113
+ 1.3085840785503386,
114
+ -0.691297555565834,
115
+ -1.130668159723282,
116
+ 0.0016738151130266487,
117
+ -0.040336399003863335
118
+ ],
119
+ "q99": [
120
+ 0.08990443304181095,
121
+ 0.26473945528268716,
122
+ 1.2910678112506866,
123
+ 3.2425890421867365,
124
+ 2.3376442337036116,
125
+ 0.4659483411908149,
126
+ 0.040610933862626555,
127
+ -0.0015016929572448147
128
+ ]
129
+ },
130
+ "num_transitions": 51851,
131
+ "num_trajectories": 428
132
+ }
133
+ }
libero_goal_2B/starvla_qwen_dual/final_model/pytorch_model.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:86d00ffedfc4d658de0d0a80487a8e6a0afd1a87c4993cffbf1957d366657f09
3
+ size 5233814193
libero_goal_2B/starvla_qwen_dual/libero_eval_libero_goal.log ADDED
@@ -0,0 +1,2521 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Task suite: libero_goal
2
+
3
+ Task: open the middle drawer of the cabinet
4
+ Success: True
5
+ # episodes completed so far: 1
6
+ # successes: 1 (100.0%)
7
+
8
+ Task: open the middle drawer of the cabinet
9
+ Success: True
10
+ # episodes completed so far: 2
11
+ # successes: 2 (100.0%)
12
+
13
+ Task: open the middle drawer of the cabinet
14
+ Success: True
15
+ # episodes completed so far: 3
16
+ # successes: 3 (100.0%)
17
+
18
+ Task: open the middle drawer of the cabinet
19
+ Success: True
20
+ # episodes completed so far: 4
21
+ # successes: 4 (100.0%)
22
+
23
+ Task: open the middle drawer of the cabinet
24
+ Success: True
25
+ # episodes completed so far: 5
26
+ # successes: 5 (100.0%)
27
+
28
+ Task: open the middle drawer of the cabinet
29
+ Success: True
30
+ # episodes completed so far: 6
31
+ # successes: 6 (100.0%)
32
+
33
+ Task: open the middle drawer of the cabinet
34
+ Success: True
35
+ # episodes completed so far: 7
36
+ # successes: 7 (100.0%)
37
+
38
+ Task: open the middle drawer of the cabinet
39
+ Success: True
40
+ # episodes completed so far: 8
41
+ # successes: 8 (100.0%)
42
+
43
+ Task: open the middle drawer of the cabinet
44
+ Success: True
45
+ # episodes completed so far: 9
46
+ # successes: 9 (100.0%)
47
+
48
+ Task: open the middle drawer of the cabinet
49
+ Success: True
50
+ # episodes completed so far: 10
51
+ # successes: 10 (100.0%)
52
+
53
+ Task: open the middle drawer of the cabinet
54
+ Success: True
55
+ # episodes completed so far: 11
56
+ # successes: 11 (100.0%)
57
+
58
+ Task: open the middle drawer of the cabinet
59
+ Success: True
60
+ # episodes completed so far: 12
61
+ # successes: 12 (100.0%)
62
+
63
+ Task: open the middle drawer of the cabinet
64
+ Success: True
65
+ # episodes completed so far: 13
66
+ # successes: 13 (100.0%)
67
+
68
+ Task: open the middle drawer of the cabinet
69
+ Success: True
70
+ # episodes completed so far: 14
71
+ # successes: 14 (100.0%)
72
+
73
+ Task: open the middle drawer of the cabinet
74
+ Success: True
75
+ # episodes completed so far: 15
76
+ # successes: 15 (100.0%)
77
+
78
+ Task: open the middle drawer of the cabinet
79
+ Success: True
80
+ # episodes completed so far: 16
81
+ # successes: 16 (100.0%)
82
+
83
+ Task: open the middle drawer of the cabinet
84
+ Success: True
85
+ # episodes completed so far: 17
86
+ # successes: 17 (100.0%)
87
+
88
+ Task: open the middle drawer of the cabinet
89
+ Success: True
90
+ # episodes completed so far: 18
91
+ # successes: 18 (100.0%)
92
+
93
+ Task: open the middle drawer of the cabinet
94
+ Success: True
95
+ # episodes completed so far: 19
96
+ # successes: 19 (100.0%)
97
+
98
+ Task: open the middle drawer of the cabinet
99
+ Success: True
100
+ # episodes completed so far: 20
101
+ # successes: 20 (100.0%)
102
+
103
+ Task: open the middle drawer of the cabinet
104
+ Success: True
105
+ # episodes completed so far: 21
106
+ # successes: 21 (100.0%)
107
+
108
+ Task: open the middle drawer of the cabinet
109
+ Success: True
110
+ # episodes completed so far: 22
111
+ # successes: 22 (100.0%)
112
+
113
+ Task: open the middle drawer of the cabinet
114
+ Success: True
115
+ # episodes completed so far: 23
116
+ # successes: 23 (100.0%)
117
+
118
+ Task: open the middle drawer of the cabinet
119
+ Success: True
120
+ # episodes completed so far: 24
121
+ # successes: 24 (100.0%)
122
+
123
+ Task: open the middle drawer of the cabinet
124
+ Success: True
125
+ # episodes completed so far: 25
126
+ # successes: 25 (100.0%)
127
+
128
+ Task: open the middle drawer of the cabinet
129
+ Success: True
130
+ # episodes completed so far: 26
131
+ # successes: 26 (100.0%)
132
+
133
+ Task: open the middle drawer of the cabinet
134
+ Success: True
135
+ # episodes completed so far: 27
136
+ # successes: 27 (100.0%)
137
+
138
+ Task: open the middle drawer of the cabinet
139
+ Success: True
140
+ # episodes completed so far: 28
141
+ # successes: 28 (100.0%)
142
+
143
+ Task: open the middle drawer of the cabinet
144
+ Success: True
145
+ # episodes completed so far: 29
146
+ # successes: 29 (100.0%)
147
+
148
+ Task: open the middle drawer of the cabinet
149
+ Success: True
150
+ # episodes completed so far: 30
151
+ # successes: 30 (100.0%)
152
+
153
+ Task: open the middle drawer of the cabinet
154
+ Success: True
155
+ # episodes completed so far: 31
156
+ # successes: 31 (100.0%)
157
+
158
+ Task: open the middle drawer of the cabinet
159
+ Success: True
160
+ # episodes completed so far: 32
161
+ # successes: 32 (100.0%)
162
+
163
+ Task: open the middle drawer of the cabinet
164
+ Success: True
165
+ # episodes completed so far: 33
166
+ # successes: 33 (100.0%)
167
+
168
+ Task: open the middle drawer of the cabinet
169
+ Success: True
170
+ # episodes completed so far: 34
171
+ # successes: 34 (100.0%)
172
+
173
+ Task: open the middle drawer of the cabinet
174
+ Success: True
175
+ # episodes completed so far: 35
176
+ # successes: 35 (100.0%)
177
+
178
+ Task: open the middle drawer of the cabinet
179
+ Success: True
180
+ # episodes completed so far: 36
181
+ # successes: 36 (100.0%)
182
+
183
+ Task: open the middle drawer of the cabinet
184
+ Success: True
185
+ # episodes completed so far: 37
186
+ # successes: 37 (100.0%)
187
+
188
+ Task: open the middle drawer of the cabinet
189
+ Success: True
190
+ # episodes completed so far: 38
191
+ # successes: 38 (100.0%)
192
+
193
+ Task: open the middle drawer of the cabinet
194
+ Success: True
195
+ # episodes completed so far: 39
196
+ # successes: 39 (100.0%)
197
+
198
+ Task: open the middle drawer of the cabinet
199
+ Success: True
200
+ # episodes completed so far: 40
201
+ # successes: 40 (100.0%)
202
+
203
+ Task: open the middle drawer of the cabinet
204
+ Success: True
205
+ # episodes completed so far: 41
206
+ # successes: 41 (100.0%)
207
+
208
+ Task: open the middle drawer of the cabinet
209
+ Success: True
210
+ # episodes completed so far: 42
211
+ # successes: 42 (100.0%)
212
+
213
+ Task: open the middle drawer of the cabinet
214
+ Success: True
215
+ # episodes completed so far: 43
216
+ # successes: 43 (100.0%)
217
+
218
+ Task: open the middle drawer of the cabinet
219
+ Success: True
220
+ # episodes completed so far: 44
221
+ # successes: 44 (100.0%)
222
+
223
+ Task: open the middle drawer of the cabinet
224
+ Success: True
225
+ # episodes completed so far: 45
226
+ # successes: 45 (100.0%)
227
+
228
+ Task: open the middle drawer of the cabinet
229
+ Success: True
230
+ # episodes completed so far: 46
231
+ # successes: 46 (100.0%)
232
+
233
+ Task: open the middle drawer of the cabinet
234
+ Success: True
235
+ # episodes completed so far: 47
236
+ # successes: 47 (100.0%)
237
+
238
+ Task: open the middle drawer of the cabinet
239
+ Success: True
240
+ # episodes completed so far: 48
241
+ # successes: 48 (100.0%)
242
+
243
+ Task: open the middle drawer of the cabinet
244
+ Success: True
245
+ # episodes completed so far: 49
246
+ # successes: 49 (100.0%)
247
+
248
+ Task: open the middle drawer of the cabinet
249
+ Success: True
250
+ # episodes completed so far: 50
251
+ # successes: 50 (100.0%)
252
+ Current task success rate: 1.0
253
+ Current total success rate: 1.0
254
+
255
+ Task: put the bowl on the stove
256
+ Success: True
257
+ # episodes completed so far: 51
258
+ # successes: 51 (100.0%)
259
+
260
+ Task: put the bowl on the stove
261
+ Success: True
262
+ # episodes completed so far: 52
263
+ # successes: 52 (100.0%)
264
+
265
+ Task: put the bowl on the stove
266
+ Success: True
267
+ # episodes completed so far: 53
268
+ # successes: 53 (100.0%)
269
+
270
+ Task: put the bowl on the stove
271
+ Success: True
272
+ # episodes completed so far: 54
273
+ # successes: 54 (100.0%)
274
+
275
+ Task: put the bowl on the stove
276
+ Success: True
277
+ # episodes completed so far: 55
278
+ # successes: 55 (100.0%)
279
+
280
+ Task: put the bowl on the stove
281
+ Success: True
282
+ # episodes completed so far: 56
283
+ # successes: 56 (100.0%)
284
+
285
+ Task: put the bowl on the stove
286
+ Success: True
287
+ # episodes completed so far: 57
288
+ # successes: 57 (100.0%)
289
+
290
+ Task: put the bowl on the stove
291
+ Success: True
292
+ # episodes completed so far: 58
293
+ # successes: 58 (100.0%)
294
+
295
+ Task: put the bowl on the stove
296
+ Success: False
297
+ # episodes completed so far: 59
298
+ # successes: 58 (98.3%)
299
+
300
+ Task: put the bowl on the stove
301
+ Success: True
302
+ # episodes completed so far: 60
303
+ # successes: 59 (98.3%)
304
+
305
+ Task: put the bowl on the stove
306
+ Success: True
307
+ # episodes completed so far: 61
308
+ # successes: 60 (98.4%)
309
+
310
+ Task: put the bowl on the stove
311
+ Success: True
312
+ # episodes completed so far: 62
313
+ # successes: 61 (98.4%)
314
+
315
+ Task: put the bowl on the stove
316
+ Success: True
317
+ # episodes completed so far: 63
318
+ # successes: 62 (98.4%)
319
+
320
+ Task: put the bowl on the stove
321
+ Success: True
322
+ # episodes completed so far: 64
323
+ # successes: 63 (98.4%)
324
+
325
+ Task: put the bowl on the stove
326
+ Success: True
327
+ # episodes completed so far: 65
328
+ # successes: 64 (98.5%)
329
+
330
+ Task: put the bowl on the stove
331
+ Success: True
332
+ # episodes completed so far: 66
333
+ # successes: 65 (98.5%)
334
+
335
+ Task: put the bowl on the stove
336
+ Success: True
337
+ # episodes completed so far: 67
338
+ # successes: 66 (98.5%)
339
+
340
+ Task: put the bowl on the stove
341
+ Success: True
342
+ # episodes completed so far: 68
343
+ # successes: 67 (98.5%)
344
+
345
+ Task: put the bowl on the stove
346
+ Success: True
347
+ # episodes completed so far: 69
348
+ # successes: 68 (98.6%)
349
+
350
+ Task: put the bowl on the stove
351
+ Success: True
352
+ # episodes completed so far: 70
353
+ # successes: 69 (98.6%)
354
+
355
+ Task: put the bowl on the stove
356
+ Success: True
357
+ # episodes completed so far: 71
358
+ # successes: 70 (98.6%)
359
+
360
+ Task: put the bowl on the stove
361
+ Success: True
362
+ # episodes completed so far: 72
363
+ # successes: 71 (98.6%)
364
+
365
+ Task: put the bowl on the stove
366
+ Success: True
367
+ # episodes completed so far: 73
368
+ # successes: 72 (98.6%)
369
+
370
+ Task: put the bowl on the stove
371
+ Success: True
372
+ # episodes completed so far: 74
373
+ # successes: 73 (98.6%)
374
+
375
+ Task: put the bowl on the stove
376
+ Success: True
377
+ # episodes completed so far: 75
378
+ # successes: 74 (98.7%)
379
+
380
+ Task: put the bowl on the stove
381
+ Success: True
382
+ # episodes completed so far: 76
383
+ # successes: 75 (98.7%)
384
+
385
+ Task: put the bowl on the stove
386
+ Success: False
387
+ # episodes completed so far: 77
388
+ # successes: 75 (97.4%)
389
+
390
+ Task: put the bowl on the stove
391
+ Success: True
392
+ # episodes completed so far: 78
393
+ # successes: 76 (97.4%)
394
+
395
+ Task: put the bowl on the stove
396
+ Success: True
397
+ # episodes completed so far: 79
398
+ # successes: 77 (97.5%)
399
+
400
+ Task: put the bowl on the stove
401
+ Success: True
402
+ # episodes completed so far: 80
403
+ # successes: 78 (97.5%)
404
+
405
+ Task: put the bowl on the stove
406
+ Success: True
407
+ # episodes completed so far: 81
408
+ # successes: 79 (97.5%)
409
+
410
+ Task: put the bowl on the stove
411
+ Success: True
412
+ # episodes completed so far: 82
413
+ # successes: 80 (97.6%)
414
+
415
+ Task: put the bowl on the stove
416
+ Success: True
417
+ # episodes completed so far: 83
418
+ # successes: 81 (97.6%)
419
+
420
+ Task: put the bowl on the stove
421
+ Success: True
422
+ # episodes completed so far: 84
423
+ # successes: 82 (97.6%)
424
+
425
+ Task: put the bowl on the stove
426
+ Success: True
427
+ # episodes completed so far: 85
428
+ # successes: 83 (97.6%)
429
+
430
+ Task: put the bowl on the stove
431
+ Success: True
432
+ # episodes completed so far: 86
433
+ # successes: 84 (97.7%)
434
+
435
+ Task: put the bowl on the stove
436
+ Success: True
437
+ # episodes completed so far: 87
438
+ # successes: 85 (97.7%)
439
+
440
+ Task: put the bowl on the stove
441
+ Success: True
442
+ # episodes completed so far: 88
443
+ # successes: 86 (97.7%)
444
+
445
+ Task: put the bowl on the stove
446
+ Success: True
447
+ # episodes completed so far: 89
448
+ # successes: 87 (97.8%)
449
+
450
+ Task: put the bowl on the stove
451
+ Success: True
452
+ # episodes completed so far: 90
453
+ # successes: 88 (97.8%)
454
+
455
+ Task: put the bowl on the stove
456
+ Success: True
457
+ # episodes completed so far: 91
458
+ # successes: 89 (97.8%)
459
+
460
+ Task: put the bowl on the stove
461
+ Success: True
462
+ # episodes completed so far: 92
463
+ # successes: 90 (97.8%)
464
+
465
+ Task: put the bowl on the stove
466
+ Success: True
467
+ # episodes completed so far: 93
468
+ # successes: 91 (97.8%)
469
+
470
+ Task: put the bowl on the stove
471
+ Success: True
472
+ # episodes completed so far: 94
473
+ # successes: 92 (97.9%)
474
+
475
+ Task: put the bowl on the stove
476
+ Success: True
477
+ # episodes completed so far: 95
478
+ # successes: 93 (97.9%)
479
+
480
+ Task: put the bowl on the stove
481
+ Success: True
482
+ # episodes completed so far: 96
483
+ # successes: 94 (97.9%)
484
+
485
+ Task: put the bowl on the stove
486
+ Success: True
487
+ # episodes completed so far: 97
488
+ # successes: 95 (97.9%)
489
+
490
+ Task: put the bowl on the stove
491
+ Success: True
492
+ # episodes completed so far: 98
493
+ # successes: 96 (98.0%)
494
+
495
+ Task: put the bowl on the stove
496
+ Success: True
497
+ # episodes completed so far: 99
498
+ # successes: 97 (98.0%)
499
+
500
+ Task: put the bowl on the stove
501
+ Success: True
502
+ # episodes completed so far: 100
503
+ # successes: 98 (98.0%)
504
+ Current task success rate: 0.96
505
+ Current total success rate: 0.98
506
+
507
+ Task: put the wine bottle on top of the cabinet
508
+ Success: True
509
+ # episodes completed so far: 101
510
+ # successes: 99 (98.0%)
511
+
512
+ Task: put the wine bottle on top of the cabinet
513
+ Success: True
514
+ # episodes completed so far: 102
515
+ # successes: 100 (98.0%)
516
+
517
+ Task: put the wine bottle on top of the cabinet
518
+ Success: True
519
+ # episodes completed so far: 103
520
+ # successes: 101 (98.1%)
521
+
522
+ Task: put the wine bottle on top of the cabinet
523
+ Success: True
524
+ # episodes completed so far: 104
525
+ # successes: 102 (98.1%)
526
+
527
+ Task: put the wine bottle on top of the cabinet
528
+ Success: True
529
+ # episodes completed so far: 105
530
+ # successes: 103 (98.1%)
531
+
532
+ Task: put the wine bottle on top of the cabinet
533
+ Success: True
534
+ # episodes completed so far: 106
535
+ # successes: 104 (98.1%)
536
+
537
+ Task: put the wine bottle on top of the cabinet
538
+ Success: True
539
+ # episodes completed so far: 107
540
+ # successes: 105 (98.1%)
541
+
542
+ Task: put the wine bottle on top of the cabinet
543
+ Success: True
544
+ # episodes completed so far: 108
545
+ # successes: 106 (98.1%)
546
+
547
+ Task: put the wine bottle on top of the cabinet
548
+ Success: True
549
+ # episodes completed so far: 109
550
+ # successes: 107 (98.2%)
551
+
552
+ Task: put the wine bottle on top of the cabinet
553
+ Success: True
554
+ # episodes completed so far: 110
555
+ # successes: 108 (98.2%)
556
+
557
+ Task: put the wine bottle on top of the cabinet
558
+ Success: True
559
+ # episodes completed so far: 111
560
+ # successes: 109 (98.2%)
561
+
562
+ Task: put the wine bottle on top of the cabinet
563
+ Success: True
564
+ # episodes completed so far: 112
565
+ # successes: 110 (98.2%)
566
+
567
+ Task: put the wine bottle on top of the cabinet
568
+ Success: True
569
+ # episodes completed so far: 113
570
+ # successes: 111 (98.2%)
571
+
572
+ Task: put the wine bottle on top of the cabinet
573
+ Success: False
574
+ # episodes completed so far: 114
575
+ # successes: 111 (97.4%)
576
+
577
+ Task: put the wine bottle on top of the cabinet
578
+ Success: True
579
+ # episodes completed so far: 115
580
+ # successes: 112 (97.4%)
581
+
582
+ Task: put the wine bottle on top of the cabinet
583
+ Success: True
584
+ # episodes completed so far: 116
585
+ # successes: 113 (97.4%)
586
+
587
+ Task: put the wine bottle on top of the cabinet
588
+ Success: False
589
+ # episodes completed so far: 117
590
+ # successes: 113 (96.6%)
591
+
592
+ Task: put the wine bottle on top of the cabinet
593
+ Success: True
594
+ # episodes completed so far: 118
595
+ # successes: 114 (96.6%)
596
+
597
+ Task: put the wine bottle on top of the cabinet
598
+ Success: True
599
+ # episodes completed so far: 119
600
+ # successes: 115 (96.6%)
601
+
602
+ Task: put the wine bottle on top of the cabinet
603
+ Success: True
604
+ # episodes completed so far: 120
605
+ # successes: 116 (96.7%)
606
+
607
+ Task: put the wine bottle on top of the cabinet
608
+ Success: True
609
+ # episodes completed so far: 121
610
+ # successes: 117 (96.7%)
611
+
612
+ Task: put the wine bottle on top of the cabinet
613
+ Success: True
614
+ # episodes completed so far: 122
615
+ # successes: 118 (96.7%)
616
+
617
+ Task: put the wine bottle on top of the cabinet
618
+ Success: True
619
+ # episodes completed so far: 123
620
+ # successes: 119 (96.7%)
621
+
622
+ Task: put the wine bottle on top of the cabinet
623
+ Success: True
624
+ # episodes completed so far: 124
625
+ # successes: 120 (96.8%)
626
+
627
+ Task: put the wine bottle on top of the cabinet
628
+ Success: True
629
+ # episodes completed so far: 125
630
+ # successes: 121 (96.8%)
631
+
632
+ Task: put the wine bottle on top of the cabinet
633
+ Success: True
634
+ # episodes completed so far: 126
635
+ # successes: 122 (96.8%)
636
+
637
+ Task: put the wine bottle on top of the cabinet
638
+ Success: True
639
+ # episodes completed so far: 127
640
+ # successes: 123 (96.9%)
641
+
642
+ Task: put the wine bottle on top of the cabinet
643
+ Success: True
644
+ # episodes completed so far: 128
645
+ # successes: 124 (96.9%)
646
+
647
+ Task: put the wine bottle on top of the cabinet
648
+ Success: True
649
+ # episodes completed so far: 129
650
+ # successes: 125 (96.9%)
651
+
652
+ Task: put the wine bottle on top of the cabinet
653
+ Success: True
654
+ # episodes completed so far: 130
655
+ # successes: 126 (96.9%)
656
+
657
+ Task: put the wine bottle on top of the cabinet
658
+ Success: False
659
+ # episodes completed so far: 131
660
+ # successes: 126 (96.2%)
661
+
662
+ Task: put the wine bottle on top of the cabinet
663
+ Success: True
664
+ # episodes completed so far: 132
665
+ # successes: 127 (96.2%)
666
+
667
+ Task: put the wine bottle on top of the cabinet
668
+ Success: True
669
+ # episodes completed so far: 133
670
+ # successes: 128 (96.2%)
671
+
672
+ Task: put the wine bottle on top of the cabinet
673
+ Success: True
674
+ # episodes completed so far: 134
675
+ # successes: 129 (96.3%)
676
+
677
+ Task: put the wine bottle on top of the cabinet
678
+ Success: True
679
+ # episodes completed so far: 135
680
+ # successes: 130 (96.3%)
681
+
682
+ Task: put the wine bottle on top of the cabinet
683
+ Success: True
684
+ # episodes completed so far: 136
685
+ # successes: 131 (96.3%)
686
+
687
+ Task: put the wine bottle on top of the cabinet
688
+ Success: True
689
+ # episodes completed so far: 137
690
+ # successes: 132 (96.4%)
691
+
692
+ Task: put the wine bottle on top of the cabinet
693
+ Success: True
694
+ # episodes completed so far: 138
695
+ # successes: 133 (96.4%)
696
+
697
+ Task: put the wine bottle on top of the cabinet
698
+ Success: True
699
+ # episodes completed so far: 139
700
+ # successes: 134 (96.4%)
701
+
702
+ Task: put the wine bottle on top of the cabinet
703
+ Success: True
704
+ # episodes completed so far: 140
705
+ # successes: 135 (96.4%)
706
+
707
+ Task: put the wine bottle on top of the cabinet
708
+ Success: True
709
+ # episodes completed so far: 141
710
+ # successes: 136 (96.5%)
711
+
712
+ Task: put the wine bottle on top of the cabinet
713
+ Success: False
714
+ # episodes completed so far: 142
715
+ # successes: 136 (95.8%)
716
+
717
+ Task: put the wine bottle on top of the cabinet
718
+ Success: True
719
+ # episodes completed so far: 143
720
+ # successes: 137 (95.8%)
721
+
722
+ Task: put the wine bottle on top of the cabinet
723
+ Success: True
724
+ # episodes completed so far: 144
725
+ # successes: 138 (95.8%)
726
+
727
+ Task: put the wine bottle on top of the cabinet
728
+ Success: True
729
+ # episodes completed so far: 145
730
+ # successes: 139 (95.9%)
731
+
732
+ Task: put the wine bottle on top of the cabinet
733
+ Success: True
734
+ # episodes completed so far: 146
735
+ # successes: 140 (95.9%)
736
+
737
+ Task: put the wine bottle on top of the cabinet
738
+ Success: True
739
+ # episodes completed so far: 147
740
+ # successes: 141 (95.9%)
741
+
742
+ Task: put the wine bottle on top of the cabinet
743
+ Success: True
744
+ # episodes completed so far: 148
745
+ # successes: 142 (95.9%)
746
+
747
+ Task: put the wine bottle on top of the cabinet
748
+ Success: True
749
+ # episodes completed so far: 149
750
+ # successes: 143 (96.0%)
751
+
752
+ Task: put the wine bottle on top of the cabinet
753
+ Success: True
754
+ # episodes completed so far: 150
755
+ # successes: 144 (96.0%)
756
+ Current task success rate: 0.92
757
+ Current total success rate: 0.96
758
+
759
+ Task: open the top drawer and put the bowl inside
760
+ Success: True
761
+ # episodes completed so far: 151
762
+ # successes: 145 (96.0%)
763
+
764
+ Task: open the top drawer and put the bowl inside
765
+ Success: True
766
+ # episodes completed so far: 152
767
+ # successes: 146 (96.1%)
768
+
769
+ Task: open the top drawer and put the bowl inside
770
+ Success: True
771
+ # episodes completed so far: 153
772
+ # successes: 147 (96.1%)
773
+
774
+ Task: open the top drawer and put the bowl inside
775
+ Success: True
776
+ # episodes completed so far: 154
777
+ # successes: 148 (96.1%)
778
+
779
+ Task: open the top drawer and put the bowl inside
780
+ Success: True
781
+ # episodes completed so far: 155
782
+ # successes: 149 (96.1%)
783
+
784
+ Task: open the top drawer and put the bowl inside
785
+ Success: True
786
+ # episodes completed so far: 156
787
+ # successes: 150 (96.2%)
788
+
789
+ Task: open the top drawer and put the bowl inside
790
+ Success: True
791
+ # episodes completed so far: 157
792
+ # successes: 151 (96.2%)
793
+
794
+ Task: open the top drawer and put the bowl inside
795
+ Success: False
796
+ # episodes completed so far: 158
797
+ # successes: 151 (95.6%)
798
+
799
+ Task: open the top drawer and put the bowl inside
800
+ Success: True
801
+ # episodes completed so far: 159
802
+ # successes: 152 (95.6%)
803
+
804
+ Task: open the top drawer and put the bowl inside
805
+ Success: True
806
+ # episodes completed so far: 160
807
+ # successes: 153 (95.6%)
808
+
809
+ Task: open the top drawer and put the bowl inside
810
+ Success: True
811
+ # episodes completed so far: 161
812
+ # successes: 154 (95.7%)
813
+
814
+ Task: open the top drawer and put the bowl inside
815
+ Success: True
816
+ # episodes completed so far: 162
817
+ # successes: 155 (95.7%)
818
+
819
+ Task: open the top drawer and put the bowl inside
820
+ Success: True
821
+ # episodes completed so far: 163
822
+ # successes: 156 (95.7%)
823
+
824
+ Task: open the top drawer and put the bowl inside
825
+ Success: True
826
+ # episodes completed so far: 164
827
+ # successes: 157 (95.7%)
828
+
829
+ Task: open the top drawer and put the bowl inside
830
+ Success: True
831
+ # episodes completed so far: 165
832
+ # successes: 158 (95.8%)
833
+
834
+ Task: open the top drawer and put the bowl inside
835
+ Success: False
836
+ # episodes completed so far: 166
837
+ # successes: 158 (95.2%)
838
+
839
+ Task: open the top drawer and put the bowl inside
840
+ Success: True
841
+ # episodes completed so far: 167
842
+ # successes: 159 (95.2%)
843
+
844
+ Task: open the top drawer and put the bowl inside
845
+ Success: True
846
+ # episodes completed so far: 168
847
+ # successes: 160 (95.2%)
848
+
849
+ Task: open the top drawer and put the bowl inside
850
+ Success: True
851
+ # episodes completed so far: 169
852
+ # successes: 161 (95.3%)
853
+
854
+ Task: open the top drawer and put the bowl inside
855
+ Success: True
856
+ # episodes completed so far: 170
857
+ # successes: 162 (95.3%)
858
+
859
+ Task: open the top drawer and put the bowl inside
860
+ Success: False
861
+ # episodes completed so far: 171
862
+ # successes: 162 (94.7%)
863
+
864
+ Task: open the top drawer and put the bowl inside
865
+ Success: True
866
+ # episodes completed so far: 172
867
+ # successes: 163 (94.8%)
868
+
869
+ Task: open the top drawer and put the bowl inside
870
+ Success: True
871
+ # episodes completed so far: 173
872
+ # successes: 164 (94.8%)
873
+
874
+ Task: open the top drawer and put the bowl inside
875
+ Success: True
876
+ # episodes completed so far: 174
877
+ # successes: 165 (94.8%)
878
+
879
+ Task: open the top drawer and put the bowl inside
880
+ Success: True
881
+ # episodes completed so far: 175
882
+ # successes: 166 (94.9%)
883
+
884
+ Task: open the top drawer and put the bowl inside
885
+ Success: True
886
+ # episodes completed so far: 176
887
+ # successes: 167 (94.9%)
888
+
889
+ Task: open the top drawer and put the bowl inside
890
+ Success: True
891
+ # episodes completed so far: 177
892
+ # successes: 168 (94.9%)
893
+
894
+ Task: open the top drawer and put the bowl inside
895
+ Success: True
896
+ # episodes completed so far: 178
897
+ # successes: 169 (94.9%)
898
+
899
+ Task: open the top drawer and put the bowl inside
900
+ Success: True
901
+ # episodes completed so far: 179
902
+ # successes: 170 (95.0%)
903
+
904
+ Task: open the top drawer and put the bowl inside
905
+ Success: True
906
+ # episodes completed so far: 180
907
+ # successes: 171 (95.0%)
908
+
909
+ Task: open the top drawer and put the bowl inside
910
+ Success: True
911
+ # episodes completed so far: 181
912
+ # successes: 172 (95.0%)
913
+
914
+ Task: open the top drawer and put the bowl inside
915
+ Success: True
916
+ # episodes completed so far: 182
917
+ # successes: 173 (95.1%)
918
+
919
+ Task: open the top drawer and put the bowl inside
920
+ Success: True
921
+ # episodes completed so far: 183
922
+ # successes: 174 (95.1%)
923
+
924
+ Task: open the top drawer and put the bowl inside
925
+ Success: True
926
+ # episodes completed so far: 184
927
+ # successes: 175 (95.1%)
928
+
929
+ Task: open the top drawer and put the bowl inside
930
+ Success: True
931
+ # episodes completed so far: 185
932
+ # successes: 176 (95.1%)
933
+
934
+ Task: open the top drawer and put the bowl inside
935
+ Success: True
936
+ # episodes completed so far: 186
937
+ # successes: 177 (95.2%)
938
+
939
+ Task: open the top drawer and put the bowl inside
940
+ Success: True
941
+ # episodes completed so far: 187
942
+ # successes: 178 (95.2%)
943
+
944
+ Task: open the top drawer and put the bowl inside
945
+ Success: True
946
+ # episodes completed so far: 188
947
+ # successes: 179 (95.2%)
948
+
949
+ Task: open the top drawer and put the bowl inside
950
+ Success: True
951
+ # episodes completed so far: 189
952
+ # successes: 180 (95.2%)
953
+
954
+ Task: open the top drawer and put the bowl inside
955
+ Success: True
956
+ # episodes completed so far: 190
957
+ # successes: 181 (95.3%)
958
+
959
+ Task: open the top drawer and put the bowl inside
960
+ Success: True
961
+ # episodes completed so far: 191
962
+ # successes: 182 (95.3%)
963
+
964
+ Task: open the top drawer and put the bowl inside
965
+ Success: True
966
+ # episodes completed so far: 192
967
+ # successes: 183 (95.3%)
968
+
969
+ Task: open the top drawer and put the bowl inside
970
+ Success: True
971
+ # episodes completed so far: 193
972
+ # successes: 184 (95.3%)
973
+
974
+ Task: open the top drawer and put the bowl inside
975
+ Success: True
976
+ # episodes completed so far: 194
977
+ # successes: 185 (95.4%)
978
+
979
+ Task: open the top drawer and put the bowl inside
980
+ Success: True
981
+ # episodes completed so far: 195
982
+ # successes: 186 (95.4%)
983
+
984
+ Task: open the top drawer and put the bowl inside
985
+ Success: True
986
+ # episodes completed so far: 196
987
+ # successes: 187 (95.4%)
988
+
989
+ Task: open the top drawer and put the bowl inside
990
+ Success: True
991
+ # episodes completed so far: 197
992
+ # successes: 188 (95.4%)
993
+
994
+ Task: open the top drawer and put the bowl inside
995
+ Success: True
996
+ # episodes completed so far: 198
997
+ # successes: 189 (95.5%)
998
+
999
+ Task: open the top drawer and put the bowl inside
1000
+ Success: True
1001
+ # episodes completed so far: 199
1002
+ # successes: 190 (95.5%)
1003
+
1004
+ Task: open the top drawer and put the bowl inside
1005
+ Success: True
1006
+ # episodes completed so far: 200
1007
+ # successes: 191 (95.5%)
1008
+ Current task success rate: 0.94
1009
+ Current total success rate: 0.955
1010
+
1011
+ Task: put the bowl on top of the cabinet
1012
+ Success: True
1013
+ # episodes completed so far: 201
1014
+ # successes: 192 (95.5%)
1015
+
1016
+ Task: put the bowl on top of the cabinet
1017
+ Success: True
1018
+ # episodes completed so far: 202
1019
+ # successes: 193 (95.5%)
1020
+
1021
+ Task: put the bowl on top of the cabinet
1022
+ Success: True
1023
+ # episodes completed so far: 203
1024
+ # successes: 194 (95.6%)
1025
+
1026
+ Task: put the bowl on top of the cabinet
1027
+ Success: True
1028
+ # episodes completed so far: 204
1029
+ # successes: 195 (95.6%)
1030
+
1031
+ Task: put the bowl on top of the cabinet
1032
+ Success: True
1033
+ # episodes completed so far: 205
1034
+ # successes: 196 (95.6%)
1035
+
1036
+ Task: put the bowl on top of the cabinet
1037
+ Success: True
1038
+ # episodes completed so far: 206
1039
+ # successes: 197 (95.6%)
1040
+
1041
+ Task: put the bowl on top of the cabinet
1042
+ Success: True
1043
+ # episodes completed so far: 207
1044
+ # successes: 198 (95.7%)
1045
+
1046
+ Task: put the bowl on top of the cabinet
1047
+ Success: True
1048
+ # episodes completed so far: 208
1049
+ # successes: 199 (95.7%)
1050
+
1051
+ Task: put the bowl on top of the cabinet
1052
+ Success: True
1053
+ # episodes completed so far: 209
1054
+ # successes: 200 (95.7%)
1055
+
1056
+ Task: put the bowl on top of the cabinet
1057
+ Success: True
1058
+ # episodes completed so far: 210
1059
+ # successes: 201 (95.7%)
1060
+
1061
+ Task: put the bowl on top of the cabinet
1062
+ Success: True
1063
+ # episodes completed so far: 211
1064
+ # successes: 202 (95.7%)
1065
+
1066
+ Task: put the bowl on top of the cabinet
1067
+ Success: True
1068
+ # episodes completed so far: 212
1069
+ # successes: 203 (95.8%)
1070
+
1071
+ Task: put the bowl on top of the cabinet
1072
+ Success: True
1073
+ # episodes completed so far: 213
1074
+ # successes: 204 (95.8%)
1075
+
1076
+ Task: put the bowl on top of the cabinet
1077
+ Success: True
1078
+ # episodes completed so far: 214
1079
+ # successes: 205 (95.8%)
1080
+
1081
+ Task: put the bowl on top of the cabinet
1082
+ Success: True
1083
+ # episodes completed so far: 215
1084
+ # successes: 206 (95.8%)
1085
+
1086
+ Task: put the bowl on top of the cabinet
1087
+ Success: True
1088
+ # episodes completed so far: 216
1089
+ # successes: 207 (95.8%)
1090
+
1091
+ Task: put the bowl on top of the cabinet
1092
+ Success: True
1093
+ # episodes completed so far: 217
1094
+ # successes: 208 (95.9%)
1095
+
1096
+ Task: put the bowl on top of the cabinet
1097
+ Success: True
1098
+ # episodes completed so far: 218
1099
+ # successes: 209 (95.9%)
1100
+
1101
+ Task: put the bowl on top of the cabinet
1102
+ Success: True
1103
+ # episodes completed so far: 219
1104
+ # successes: 210 (95.9%)
1105
+
1106
+ Task: put the bowl on top of the cabinet
1107
+ Success: True
1108
+ # episodes completed so far: 220
1109
+ # successes: 211 (95.9%)
1110
+
1111
+ Task: put the bowl on top of the cabinet
1112
+ Success: True
1113
+ # episodes completed so far: 221
1114
+ # successes: 212 (95.9%)
1115
+
1116
+ Task: put the bowl on top of the cabinet
1117
+ Success: True
1118
+ # episodes completed so far: 222
1119
+ # successes: 213 (95.9%)
1120
+
1121
+ Task: put the bowl on top of the cabinet
1122
+ Success: True
1123
+ # episodes completed so far: 223
1124
+ # successes: 214 (96.0%)
1125
+
1126
+ Task: put the bowl on top of the cabinet
1127
+ Success: True
1128
+ # episodes completed so far: 224
1129
+ # successes: 215 (96.0%)
1130
+
1131
+ Task: put the bowl on top of the cabinet
1132
+ Success: True
1133
+ # episodes completed so far: 225
1134
+ # successes: 216 (96.0%)
1135
+
1136
+ Task: put the bowl on top of the cabinet
1137
+ Success: True
1138
+ # episodes completed so far: 226
1139
+ # successes: 217 (96.0%)
1140
+
1141
+ Task: put the bowl on top of the cabinet
1142
+ Success: True
1143
+ # episodes completed so far: 227
1144
+ # successes: 218 (96.0%)
1145
+
1146
+ Task: put the bowl on top of the cabinet
1147
+ Success: True
1148
+ # episodes completed so far: 228
1149
+ # successes: 219 (96.1%)
1150
+
1151
+ Task: put the bowl on top of the cabinet
1152
+ Success: True
1153
+ # episodes completed so far: 229
1154
+ # successes: 220 (96.1%)
1155
+
1156
+ Task: put the bowl on top of the cabinet
1157
+ Success: True
1158
+ # episodes completed so far: 230
1159
+ # successes: 221 (96.1%)
1160
+
1161
+ Task: put the bowl on top of the cabinet
1162
+ Success: True
1163
+ # episodes completed so far: 231
1164
+ # successes: 222 (96.1%)
1165
+
1166
+ Task: put the bowl on top of the cabinet
1167
+ Success: True
1168
+ # episodes completed so far: 232
1169
+ # successes: 223 (96.1%)
1170
+
1171
+ Task: put the bowl on top of the cabinet
1172
+ Success: True
1173
+ # episodes completed so far: 233
1174
+ # successes: 224 (96.1%)
1175
+
1176
+ Task: put the bowl on top of the cabinet
1177
+ Success: True
1178
+ # episodes completed so far: 234
1179
+ # successes: 225 (96.2%)
1180
+
1181
+ Task: put the bowl on top of the cabinet
1182
+ Success: True
1183
+ # episodes completed so far: 235
1184
+ # successes: 226 (96.2%)
1185
+
1186
+ Task: put the bowl on top of the cabinet
1187
+ Success: True
1188
+ # episodes completed so far: 236
1189
+ # successes: 227 (96.2%)
1190
+
1191
+ Task: put the bowl on top of the cabinet
1192
+ Success: True
1193
+ # episodes completed so far: 237
1194
+ # successes: 228 (96.2%)
1195
+
1196
+ Task: put the bowl on top of the cabinet
1197
+ Success: True
1198
+ # episodes completed so far: 238
1199
+ # successes: 229 (96.2%)
1200
+
1201
+ Task: put the bowl on top of the cabinet
1202
+ Success: True
1203
+ # episodes completed so far: 239
1204
+ # successes: 230 (96.2%)
1205
+
1206
+ Task: put the bowl on top of the cabinet
1207
+ Success: True
1208
+ # episodes completed so far: 240
1209
+ # successes: 231 (96.2%)
1210
+
1211
+ Task: put the bowl on top of the cabinet
1212
+ Success: True
1213
+ # episodes completed so far: 241
1214
+ # successes: 232 (96.3%)
1215
+
1216
+ Task: put the bowl on top of the cabinet
1217
+ Success: True
1218
+ # episodes completed so far: 242
1219
+ # successes: 233 (96.3%)
1220
+
1221
+ Task: put the bowl on top of the cabinet
1222
+ Success: True
1223
+ # episodes completed so far: 243
1224
+ # successes: 234 (96.3%)
1225
+
1226
+ Task: put the bowl on top of the cabinet
1227
+ Success: True
1228
+ # episodes completed so far: 244
1229
+ # successes: 235 (96.3%)
1230
+
1231
+ Task: put the bowl on top of the cabinet
1232
+ Success: True
1233
+ # episodes completed so far: 245
1234
+ # successes: 236 (96.3%)
1235
+
1236
+ Task: put the bowl on top of the cabinet
1237
+ Success: True
1238
+ # episodes completed so far: 246
1239
+ # successes: 237 (96.3%)
1240
+
1241
+ Task: put the bowl on top of the cabinet
1242
+ Success: True
1243
+ # episodes completed so far: 247
1244
+ # successes: 238 (96.4%)
1245
+
1246
+ Task: put the bowl on top of the cabinet
1247
+ Success: True
1248
+ # episodes completed so far: 248
1249
+ # successes: 239 (96.4%)
1250
+
1251
+ Task: put the bowl on top of the cabinet
1252
+ Success: False
1253
+ # episodes completed so far: 249
1254
+ # successes: 239 (96.0%)
1255
+
1256
+ Task: put the bowl on top of the cabinet
1257
+ Success: True
1258
+ # episodes completed so far: 250
1259
+ # successes: 240 (96.0%)
1260
+ Current task success rate: 0.98
1261
+ Current total success rate: 0.96
1262
+
1263
+ Task: push the plate to the front of the stove
1264
+ Success: True
1265
+ # episodes completed so far: 251
1266
+ # successes: 241 (96.0%)
1267
+
1268
+ Task: push the plate to the front of the stove
1269
+ Success: True
1270
+ # episodes completed so far: 252
1271
+ # successes: 242 (96.0%)
1272
+
1273
+ Task: push the plate to the front of the stove
1274
+ Success: True
1275
+ # episodes completed so far: 253
1276
+ # successes: 243 (96.0%)
1277
+
1278
+ Task: push the plate to the front of the stove
1279
+ Success: True
1280
+ # episodes completed so far: 254
1281
+ # successes: 244 (96.1%)
1282
+
1283
+ Task: push the plate to the front of the stove
1284
+ Success: True
1285
+ # episodes completed so far: 255
1286
+ # successes: 245 (96.1%)
1287
+
1288
+ Task: push the plate to the front of the stove
1289
+ Success: True
1290
+ # episodes completed so far: 256
1291
+ # successes: 246 (96.1%)
1292
+
1293
+ Task: push the plate to the front of the stove
1294
+ Success: True
1295
+ # episodes completed so far: 257
1296
+ # successes: 247 (96.1%)
1297
+
1298
+ Task: push the plate to the front of the stove
1299
+ Success: True
1300
+ # episodes completed so far: 258
1301
+ # successes: 248 (96.1%)
1302
+
1303
+ Task: push the plate to the front of the stove
1304
+ Success: True
1305
+ # episodes completed so far: 259
1306
+ # successes: 249 (96.1%)
1307
+
1308
+ Task: push the plate to the front of the stove
1309
+ Success: True
1310
+ # episodes completed so far: 260
1311
+ # successes: 250 (96.2%)
1312
+
1313
+ Task: push the plate to the front of the stove
1314
+ Success: True
1315
+ # episodes completed so far: 261
1316
+ # successes: 251 (96.2%)
1317
+
1318
+ Task: push the plate to the front of the stove
1319
+ Success: True
1320
+ # episodes completed so far: 262
1321
+ # successes: 252 (96.2%)
1322
+
1323
+ Task: push the plate to the front of the stove
1324
+ Success: True
1325
+ # episodes completed so far: 263
1326
+ # successes: 253 (96.2%)
1327
+
1328
+ Task: push the plate to the front of the stove
1329
+ Success: True
1330
+ # episodes completed so far: 264
1331
+ # successes: 254 (96.2%)
1332
+
1333
+ Task: push the plate to the front of the stove
1334
+ Success: True
1335
+ # episodes completed so far: 265
1336
+ # successes: 255 (96.2%)
1337
+
1338
+ Task: push the plate to the front of the stove
1339
+ Success: True
1340
+ # episodes completed so far: 266
1341
+ # successes: 256 (96.2%)
1342
+
1343
+ Task: push the plate to the front of the stove
1344
+ Success: True
1345
+ # episodes completed so far: 267
1346
+ # successes: 257 (96.3%)
1347
+
1348
+ Task: push the plate to the front of the stove
1349
+ Success: True
1350
+ # episodes completed so far: 268
1351
+ # successes: 258 (96.3%)
1352
+
1353
+ Task: push the plate to the front of the stove
1354
+ Success: True
1355
+ # episodes completed so far: 269
1356
+ # successes: 259 (96.3%)
1357
+
1358
+ Task: push the plate to the front of the stove
1359
+ Success: True
1360
+ # episodes completed so far: 270
1361
+ # successes: 260 (96.3%)
1362
+
1363
+ Task: push the plate to the front of the stove
1364
+ Success: True
1365
+ # episodes completed so far: 271
1366
+ # successes: 261 (96.3%)
1367
+
1368
+ Task: push the plate to the front of the stove
1369
+ Success: True
1370
+ # episodes completed so far: 272
1371
+ # successes: 262 (96.3%)
1372
+
1373
+ Task: push the plate to the front of the stove
1374
+ Success: False
1375
+ # episodes completed so far: 273
1376
+ # successes: 262 (96.0%)
1377
+
1378
+ Task: push the plate to the front of the stove
1379
+ Success: True
1380
+ # episodes completed so far: 274
1381
+ # successes: 263 (96.0%)
1382
+
1383
+ Task: push the plate to the front of the stove
1384
+ Success: True
1385
+ # episodes completed so far: 275
1386
+ # successes: 264 (96.0%)
1387
+
1388
+ Task: push the plate to the front of the stove
1389
+ Success: True
1390
+ # episodes completed so far: 276
1391
+ # successes: 265 (96.0%)
1392
+
1393
+ Task: push the plate to the front of the stove
1394
+ Success: True
1395
+ # episodes completed so far: 277
1396
+ # successes: 266 (96.0%)
1397
+
1398
+ Task: push the plate to the front of the stove
1399
+ Success: True
1400
+ # episodes completed so far: 278
1401
+ # successes: 267 (96.0%)
1402
+
1403
+ Task: push the plate to the front of the stove
1404
+ Success: True
1405
+ # episodes completed so far: 279
1406
+ # successes: 268 (96.1%)
1407
+
1408
+ Task: push the plate to the front of the stove
1409
+ Success: True
1410
+ # episodes completed so far: 280
1411
+ # successes: 269 (96.1%)
1412
+
1413
+ Task: push the plate to the front of the stove
1414
+ Success: True
1415
+ # episodes completed so far: 281
1416
+ # successes: 270 (96.1%)
1417
+
1418
+ Task: push the plate to the front of the stove
1419
+ Success: True
1420
+ # episodes completed so far: 282
1421
+ # successes: 271 (96.1%)
1422
+
1423
+ Task: push the plate to the front of the stove
1424
+ Success: True
1425
+ # episodes completed so far: 283
1426
+ # successes: 272 (96.1%)
1427
+
1428
+ Task: push the plate to the front of the stove
1429
+ Success: True
1430
+ # episodes completed so far: 284
1431
+ # successes: 273 (96.1%)
1432
+
1433
+ Task: push the plate to the front of the stove
1434
+ Success: True
1435
+ # episodes completed so far: 285
1436
+ # successes: 274 (96.1%)
1437
+
1438
+ Task: push the plate to the front of the stove
1439
+ Success: True
1440
+ # episodes completed so far: 286
1441
+ # successes: 275 (96.2%)
1442
+
1443
+ Task: push the plate to the front of the stove
1444
+ Success: True
1445
+ # episodes completed so far: 287
1446
+ # successes: 276 (96.2%)
1447
+
1448
+ Task: push the plate to the front of the stove
1449
+ Success: True
1450
+ # episodes completed so far: 288
1451
+ # successes: 277 (96.2%)
1452
+
1453
+ Task: push the plate to the front of the stove
1454
+ Success: True
1455
+ # episodes completed so far: 289
1456
+ # successes: 278 (96.2%)
1457
+
1458
+ Task: push the plate to the front of the stove
1459
+ Success: True
1460
+ # episodes completed so far: 290
1461
+ # successes: 279 (96.2%)
1462
+
1463
+ Task: push the plate to the front of the stove
1464
+ Success: True
1465
+ # episodes completed so far: 291
1466
+ # successes: 280 (96.2%)
1467
+
1468
+ Task: push the plate to the front of the stove
1469
+ Success: True
1470
+ # episodes completed so far: 292
1471
+ # successes: 281 (96.2%)
1472
+
1473
+ Task: push the plate to the front of the stove
1474
+ Success: True
1475
+ # episodes completed so far: 293
1476
+ # successes: 282 (96.2%)
1477
+
1478
+ Task: push the plate to the front of the stove
1479
+ Success: True
1480
+ # episodes completed so far: 294
1481
+ # successes: 283 (96.3%)
1482
+
1483
+ Task: push the plate to the front of the stove
1484
+ Success: True
1485
+ # episodes completed so far: 295
1486
+ # successes: 284 (96.3%)
1487
+
1488
+ Task: push the plate to the front of the stove
1489
+ Success: True
1490
+ # episodes completed so far: 296
1491
+ # successes: 285 (96.3%)
1492
+
1493
+ Task: push the plate to the front of the stove
1494
+ Success: True
1495
+ # episodes completed so far: 297
1496
+ # successes: 286 (96.3%)
1497
+
1498
+ Task: push the plate to the front of the stove
1499
+ Success: True
1500
+ # episodes completed so far: 298
1501
+ # successes: 287 (96.3%)
1502
+
1503
+ Task: push the plate to the front of the stove
1504
+ Success: True
1505
+ # episodes completed so far: 299
1506
+ # successes: 288 (96.3%)
1507
+
1508
+ Task: push the plate to the front of the stove
1509
+ Success: True
1510
+ # episodes completed so far: 300
1511
+ # successes: 289 (96.3%)
1512
+ Current task success rate: 0.98
1513
+ Current total success rate: 0.9633333333333334
1514
+
1515
+ Task: put the cream cheese in the bowl
1516
+ Success: True
1517
+ # episodes completed so far: 301
1518
+ # successes: 290 (96.3%)
1519
+
1520
+ Task: put the cream cheese in the bowl
1521
+ Success: False
1522
+ # episodes completed so far: 302
1523
+ # successes: 290 (96.0%)
1524
+
1525
+ Task: put the cream cheese in the bowl
1526
+ Success: True
1527
+ # episodes completed so far: 303
1528
+ # successes: 291 (96.0%)
1529
+
1530
+ Task: put the cream cheese in the bowl
1531
+ Success: True
1532
+ # episodes completed so far: 304
1533
+ # successes: 292 (96.1%)
1534
+
1535
+ Task: put the cream cheese in the bowl
1536
+ Success: True
1537
+ # episodes completed so far: 305
1538
+ # successes: 293 (96.1%)
1539
+
1540
+ Task: put the cream cheese in the bowl
1541
+ Success: True
1542
+ # episodes completed so far: 306
1543
+ # successes: 294 (96.1%)
1544
+
1545
+ Task: put the cream cheese in the bowl
1546
+ Success: True
1547
+ # episodes completed so far: 307
1548
+ # successes: 295 (96.1%)
1549
+
1550
+ Task: put the cream cheese in the bowl
1551
+ Success: True
1552
+ # episodes completed so far: 308
1553
+ # successes: 296 (96.1%)
1554
+
1555
+ Task: put the cream cheese in the bowl
1556
+ Success: True
1557
+ # episodes completed so far: 309
1558
+ # successes: 297 (96.1%)
1559
+
1560
+ Task: put the cream cheese in the bowl
1561
+ Success: True
1562
+ # episodes completed so far: 310
1563
+ # successes: 298 (96.1%)
1564
+
1565
+ Task: put the cream cheese in the bowl
1566
+ Success: True
1567
+ # episodes completed so far: 311
1568
+ # successes: 299 (96.1%)
1569
+
1570
+ Task: put the cream cheese in the bowl
1571
+ Success: True
1572
+ # episodes completed so far: 312
1573
+ # successes: 300 (96.2%)
1574
+
1575
+ Task: put the cream cheese in the bowl
1576
+ Success: True
1577
+ # episodes completed so far: 313
1578
+ # successes: 301 (96.2%)
1579
+
1580
+ Task: put the cream cheese in the bowl
1581
+ Success: True
1582
+ # episodes completed so far: 314
1583
+ # successes: 302 (96.2%)
1584
+
1585
+ Task: put the cream cheese in the bowl
1586
+ Success: True
1587
+ # episodes completed so far: 315
1588
+ # successes: 303 (96.2%)
1589
+
1590
+ Task: put the cream cheese in the bowl
1591
+ Success: True
1592
+ # episodes completed so far: 316
1593
+ # successes: 304 (96.2%)
1594
+
1595
+ Task: put the cream cheese in the bowl
1596
+ Success: True
1597
+ # episodes completed so far: 317
1598
+ # successes: 305 (96.2%)
1599
+
1600
+ Task: put the cream cheese in the bowl
1601
+ Success: True
1602
+ # episodes completed so far: 318
1603
+ # successes: 306 (96.2%)
1604
+
1605
+ Task: put the cream cheese in the bowl
1606
+ Success: True
1607
+ # episodes completed so far: 319
1608
+ # successes: 307 (96.2%)
1609
+
1610
+ Task: put the cream cheese in the bowl
1611
+ Success: True
1612
+ # episodes completed so far: 320
1613
+ # successes: 308 (96.2%)
1614
+
1615
+ Task: put the cream cheese in the bowl
1616
+ Success: False
1617
+ # episodes completed so far: 321
1618
+ # successes: 308 (96.0%)
1619
+
1620
+ Task: put the cream cheese in the bowl
1621
+ Success: True
1622
+ # episodes completed so far: 322
1623
+ # successes: 309 (96.0%)
1624
+
1625
+ Task: put the cream cheese in the bowl
1626
+ Success: True
1627
+ # episodes completed so far: 323
1628
+ # successes: 310 (96.0%)
1629
+
1630
+ Task: put the cream cheese in the bowl
1631
+ Success: True
1632
+ # episodes completed so far: 324
1633
+ # successes: 311 (96.0%)
1634
+
1635
+ Task: put the cream cheese in the bowl
1636
+ Success: True
1637
+ # episodes completed so far: 325
1638
+ # successes: 312 (96.0%)
1639
+
1640
+ Task: put the cream cheese in the bowl
1641
+ Success: True
1642
+ # episodes completed so far: 326
1643
+ # successes: 313 (96.0%)
1644
+
1645
+ Task: put the cream cheese in the bowl
1646
+ Success: True
1647
+ # episodes completed so far: 327
1648
+ # successes: 314 (96.0%)
1649
+
1650
+ Task: put the cream cheese in the bowl
1651
+ Success: True
1652
+ # episodes completed so far: 328
1653
+ # successes: 315 (96.0%)
1654
+
1655
+ Task: put the cream cheese in the bowl
1656
+ Success: True
1657
+ # episodes completed so far: 329
1658
+ # successes: 316 (96.0%)
1659
+
1660
+ Task: put the cream cheese in the bowl
1661
+ Success: True
1662
+ # episodes completed so far: 330
1663
+ # successes: 317 (96.1%)
1664
+
1665
+ Task: put the cream cheese in the bowl
1666
+ Success: True
1667
+ # episodes completed so far: 331
1668
+ # successes: 318 (96.1%)
1669
+
1670
+ Task: put the cream cheese in the bowl
1671
+ Success: True
1672
+ # episodes completed so far: 332
1673
+ # successes: 319 (96.1%)
1674
+
1675
+ Task: put the cream cheese in the bowl
1676
+ Success: True
1677
+ # episodes completed so far: 333
1678
+ # successes: 320 (96.1%)
1679
+
1680
+ Task: put the cream cheese in the bowl
1681
+ Success: True
1682
+ # episodes completed so far: 334
1683
+ # successes: 321 (96.1%)
1684
+
1685
+ Task: put the cream cheese in the bowl
1686
+ Success: True
1687
+ # episodes completed so far: 335
1688
+ # successes: 322 (96.1%)
1689
+
1690
+ Task: put the cream cheese in the bowl
1691
+ Success: True
1692
+ # episodes completed so far: 336
1693
+ # successes: 323 (96.1%)
1694
+
1695
+ Task: put the cream cheese in the bowl
1696
+ Success: True
1697
+ # episodes completed so far: 337
1698
+ # successes: 324 (96.1%)
1699
+
1700
+ Task: put the cream cheese in the bowl
1701
+ Success: True
1702
+ # episodes completed so far: 338
1703
+ # successes: 325 (96.2%)
1704
+
1705
+ Task: put the cream cheese in the bowl
1706
+ Success: True
1707
+ # episodes completed so far: 339
1708
+ # successes: 326 (96.2%)
1709
+
1710
+ Task: put the cream cheese in the bowl
1711
+ Success: True
1712
+ # episodes completed so far: 340
1713
+ # successes: 327 (96.2%)
1714
+
1715
+ Task: put the cream cheese in the bowl
1716
+ Success: True
1717
+ # episodes completed so far: 341
1718
+ # successes: 328 (96.2%)
1719
+
1720
+ Task: put the cream cheese in the bowl
1721
+ Success: True
1722
+ # episodes completed so far: 342
1723
+ # successes: 329 (96.2%)
1724
+
1725
+ Task: put the cream cheese in the bowl
1726
+ Success: True
1727
+ # episodes completed so far: 343
1728
+ # successes: 330 (96.2%)
1729
+
1730
+ Task: put the cream cheese in the bowl
1731
+ Success: True
1732
+ # episodes completed so far: 344
1733
+ # successes: 331 (96.2%)
1734
+
1735
+ Task: put the cream cheese in the bowl
1736
+ Success: True
1737
+ # episodes completed so far: 345
1738
+ # successes: 332 (96.2%)
1739
+
1740
+ Task: put the cream cheese in the bowl
1741
+ Success: True
1742
+ # episodes completed so far: 346
1743
+ # successes: 333 (96.2%)
1744
+
1745
+ Task: put the cream cheese in the bowl
1746
+ Success: True
1747
+ # episodes completed so far: 347
1748
+ # successes: 334 (96.3%)
1749
+
1750
+ Task: put the cream cheese in the bowl
1751
+ Success: True
1752
+ # episodes completed so far: 348
1753
+ # successes: 335 (96.3%)
1754
+
1755
+ Task: put the cream cheese in the bowl
1756
+ Success: True
1757
+ # episodes completed so far: 349
1758
+ # successes: 336 (96.3%)
1759
+
1760
+ Task: put the cream cheese in the bowl
1761
+ Success: True
1762
+ # episodes completed so far: 350
1763
+ # successes: 337 (96.3%)
1764
+ Current task success rate: 0.96
1765
+ Current total success rate: 0.9628571428571429
1766
+
1767
+ Task: turn on the stove
1768
+ Success: True
1769
+ # episodes completed so far: 351
1770
+ # successes: 338 (96.3%)
1771
+
1772
+ Task: turn on the stove
1773
+ Success: True
1774
+ # episodes completed so far: 352
1775
+ # successes: 339 (96.3%)
1776
+
1777
+ Task: turn on the stove
1778
+ Success: True
1779
+ # episodes completed so far: 353
1780
+ # successes: 340 (96.3%)
1781
+
1782
+ Task: turn on the stove
1783
+ Success: True
1784
+ # episodes completed so far: 354
1785
+ # successes: 341 (96.3%)
1786
+
1787
+ Task: turn on the stove
1788
+ Success: True
1789
+ # episodes completed so far: 355
1790
+ # successes: 342 (96.3%)
1791
+
1792
+ Task: turn on the stove
1793
+ Success: True
1794
+ # episodes completed so far: 356
1795
+ # successes: 343 (96.3%)
1796
+
1797
+ Task: turn on the stove
1798
+ Success: True
1799
+ # episodes completed so far: 357
1800
+ # successes: 344 (96.4%)
1801
+
1802
+ Task: turn on the stove
1803
+ Success: True
1804
+ # episodes completed so far: 358
1805
+ # successes: 345 (96.4%)
1806
+
1807
+ Task: turn on the stove
1808
+ Success: True
1809
+ # episodes completed so far: 359
1810
+ # successes: 346 (96.4%)
1811
+
1812
+ Task: turn on the stove
1813
+ Success: True
1814
+ # episodes completed so far: 360
1815
+ # successes: 347 (96.4%)
1816
+
1817
+ Task: turn on the stove
1818
+ Success: True
1819
+ # episodes completed so far: 361
1820
+ # successes: 348 (96.4%)
1821
+
1822
+ Task: turn on the stove
1823
+ Success: True
1824
+ # episodes completed so far: 362
1825
+ # successes: 349 (96.4%)
1826
+
1827
+ Task: turn on the stove
1828
+ Success: True
1829
+ # episodes completed so far: 363
1830
+ # successes: 350 (96.4%)
1831
+
1832
+ Task: turn on the stove
1833
+ Success: True
1834
+ # episodes completed so far: 364
1835
+ # successes: 351 (96.4%)
1836
+
1837
+ Task: turn on the stove
1838
+ Success: True
1839
+ # episodes completed so far: 365
1840
+ # successes: 352 (96.4%)
1841
+
1842
+ Task: turn on the stove
1843
+ Success: True
1844
+ # episodes completed so far: 366
1845
+ # successes: 353 (96.4%)
1846
+
1847
+ Task: turn on the stove
1848
+ Success: True
1849
+ # episodes completed so far: 367
1850
+ # successes: 354 (96.5%)
1851
+
1852
+ Task: turn on the stove
1853
+ Success: True
1854
+ # episodes completed so far: 368
1855
+ # successes: 355 (96.5%)
1856
+
1857
+ Task: turn on the stove
1858
+ Success: True
1859
+ # episodes completed so far: 369
1860
+ # successes: 356 (96.5%)
1861
+
1862
+ Task: turn on the stove
1863
+ Success: True
1864
+ # episodes completed so far: 370
1865
+ # successes: 357 (96.5%)
1866
+
1867
+ Task: turn on the stove
1868
+ Success: True
1869
+ # episodes completed so far: 371
1870
+ # successes: 358 (96.5%)
1871
+
1872
+ Task: turn on the stove
1873
+ Success: True
1874
+ # episodes completed so far: 372
1875
+ # successes: 359 (96.5%)
1876
+
1877
+ Task: turn on the stove
1878
+ Success: True
1879
+ # episodes completed so far: 373
1880
+ # successes: 360 (96.5%)
1881
+
1882
+ Task: turn on the stove
1883
+ Success: True
1884
+ # episodes completed so far: 374
1885
+ # successes: 361 (96.5%)
1886
+
1887
+ Task: turn on the stove
1888
+ Success: True
1889
+ # episodes completed so far: 375
1890
+ # successes: 362 (96.5%)
1891
+
1892
+ Task: turn on the stove
1893
+ Success: True
1894
+ # episodes completed so far: 376
1895
+ # successes: 363 (96.5%)
1896
+
1897
+ Task: turn on the stove
1898
+ Success: True
1899
+ # episodes completed so far: 377
1900
+ # successes: 364 (96.6%)
1901
+
1902
+ Task: turn on the stove
1903
+ Success: True
1904
+ # episodes completed so far: 378
1905
+ # successes: 365 (96.6%)
1906
+
1907
+ Task: turn on the stove
1908
+ Success: True
1909
+ # episodes completed so far: 379
1910
+ # successes: 366 (96.6%)
1911
+
1912
+ Task: turn on the stove
1913
+ Success: True
1914
+ # episodes completed so far: 380
1915
+ # successes: 367 (96.6%)
1916
+
1917
+ Task: turn on the stove
1918
+ Success: True
1919
+ # episodes completed so far: 381
1920
+ # successes: 368 (96.6%)
1921
+
1922
+ Task: turn on the stove
1923
+ Success: True
1924
+ # episodes completed so far: 382
1925
+ # successes: 369 (96.6%)
1926
+
1927
+ Task: turn on the stove
1928
+ Success: True
1929
+ # episodes completed so far: 383
1930
+ # successes: 370 (96.6%)
1931
+
1932
+ Task: turn on the stove
1933
+ Success: True
1934
+ # episodes completed so far: 384
1935
+ # successes: 371 (96.6%)
1936
+
1937
+ Task: turn on the stove
1938
+ Success: True
1939
+ # episodes completed so far: 385
1940
+ # successes: 372 (96.6%)
1941
+
1942
+ Task: turn on the stove
1943
+ Success: True
1944
+ # episodes completed so far: 386
1945
+ # successes: 373 (96.6%)
1946
+
1947
+ Task: turn on the stove
1948
+ Success: True
1949
+ # episodes completed so far: 387
1950
+ # successes: 374 (96.6%)
1951
+
1952
+ Task: turn on the stove
1953
+ Success: True
1954
+ # episodes completed so far: 388
1955
+ # successes: 375 (96.6%)
1956
+
1957
+ Task: turn on the stove
1958
+ Success: True
1959
+ # episodes completed so far: 389
1960
+ # successes: 376 (96.7%)
1961
+
1962
+ Task: turn on the stove
1963
+ Success: True
1964
+ # episodes completed so far: 390
1965
+ # successes: 377 (96.7%)
1966
+
1967
+ Task: turn on the stove
1968
+ Success: True
1969
+ # episodes completed so far: 391
1970
+ # successes: 378 (96.7%)
1971
+
1972
+ Task: turn on the stove
1973
+ Success: True
1974
+ # episodes completed so far: 392
1975
+ # successes: 379 (96.7%)
1976
+
1977
+ Task: turn on the stove
1978
+ Success: True
1979
+ # episodes completed so far: 393
1980
+ # successes: 380 (96.7%)
1981
+
1982
+ Task: turn on the stove
1983
+ Success: True
1984
+ # episodes completed so far: 394
1985
+ # successes: 381 (96.7%)
1986
+
1987
+ Task: turn on the stove
1988
+ Success: True
1989
+ # episodes completed so far: 395
1990
+ # successes: 382 (96.7%)
1991
+
1992
+ Task: turn on the stove
1993
+ Success: True
1994
+ # episodes completed so far: 396
1995
+ # successes: 383 (96.7%)
1996
+
1997
+ Task: turn on the stove
1998
+ Success: True
1999
+ # episodes completed so far: 397
2000
+ # successes: 384 (96.7%)
2001
+
2002
+ Task: turn on the stove
2003
+ Success: True
2004
+ # episodes completed so far: 398
2005
+ # successes: 385 (96.7%)
2006
+
2007
+ Task: turn on the stove
2008
+ Success: True
2009
+ # episodes completed so far: 399
2010
+ # successes: 386 (96.7%)
2011
+
2012
+ Task: turn on the stove
2013
+ Success: True
2014
+ # episodes completed so far: 400
2015
+ # successes: 387 (96.8%)
2016
+ Current task success rate: 1.0
2017
+ Current total success rate: 0.9675
2018
+
2019
+ Task: put the bowl on the plate
2020
+ Success: True
2021
+ # episodes completed so far: 401
2022
+ # successes: 388 (96.8%)
2023
+
2024
+ Task: put the bowl on the plate
2025
+ Success: True
2026
+ # episodes completed so far: 402
2027
+ # successes: 389 (96.8%)
2028
+
2029
+ Task: put the bowl on the plate
2030
+ Success: True
2031
+ # episodes completed so far: 403
2032
+ # successes: 390 (96.8%)
2033
+
2034
+ Task: put the bowl on the plate
2035
+ Success: True
2036
+ # episodes completed so far: 404
2037
+ # successes: 391 (96.8%)
2038
+
2039
+ Task: put the bowl on the plate
2040
+ Success: True
2041
+ # episodes completed so far: 405
2042
+ # successes: 392 (96.8%)
2043
+
2044
+ Task: put the bowl on the plate
2045
+ Success: True
2046
+ # episodes completed so far: 406
2047
+ # successes: 393 (96.8%)
2048
+
2049
+ Task: put the bowl on the plate
2050
+ Success: True
2051
+ # episodes completed so far: 407
2052
+ # successes: 394 (96.8%)
2053
+
2054
+ Task: put the bowl on the plate
2055
+ Success: True
2056
+ # episodes completed so far: 408
2057
+ # successes: 395 (96.8%)
2058
+
2059
+ Task: put the bowl on the plate
2060
+ Success: True
2061
+ # episodes completed so far: 409
2062
+ # successes: 396 (96.8%)
2063
+
2064
+ Task: put the bowl on the plate
2065
+ Success: True
2066
+ # episodes completed so far: 410
2067
+ # successes: 397 (96.8%)
2068
+
2069
+ Task: put the bowl on the plate
2070
+ Success: True
2071
+ # episodes completed so far: 411
2072
+ # successes: 398 (96.8%)
2073
+
2074
+ Task: put the bowl on the plate
2075
+ Success: True
2076
+ # episodes completed so far: 412
2077
+ # successes: 399 (96.8%)
2078
+
2079
+ Task: put the bowl on the plate
2080
+ Success: True
2081
+ # episodes completed so far: 413
2082
+ # successes: 400 (96.9%)
2083
+
2084
+ Task: put the bowl on the plate
2085
+ Success: True
2086
+ # episodes completed so far: 414
2087
+ # successes: 401 (96.9%)
2088
+
2089
+ Task: put the bowl on the plate
2090
+ Success: True
2091
+ # episodes completed so far: 415
2092
+ # successes: 402 (96.9%)
2093
+
2094
+ Task: put the bowl on the plate
2095
+ Success: True
2096
+ # episodes completed so far: 416
2097
+ # successes: 403 (96.9%)
2098
+
2099
+ Task: put the bowl on the plate
2100
+ Success: True
2101
+ # episodes completed so far: 417
2102
+ # successes: 404 (96.9%)
2103
+
2104
+ Task: put the bowl on the plate
2105
+ Success: True
2106
+ # episodes completed so far: 418
2107
+ # successes: 405 (96.9%)
2108
+
2109
+ Task: put the bowl on the plate
2110
+ Success: True
2111
+ # episodes completed so far: 419
2112
+ # successes: 406 (96.9%)
2113
+
2114
+ Task: put the bowl on the plate
2115
+ Success: True
2116
+ # episodes completed so far: 420
2117
+ # successes: 407 (96.9%)
2118
+
2119
+ Task: put the bowl on the plate
2120
+ Success: True
2121
+ # episodes completed so far: 421
2122
+ # successes: 408 (96.9%)
2123
+
2124
+ Task: put the bowl on the plate
2125
+ Success: True
2126
+ # episodes completed so far: 422
2127
+ # successes: 409 (96.9%)
2128
+
2129
+ Task: put the bowl on the plate
2130
+ Success: True
2131
+ # episodes completed so far: 423
2132
+ # successes: 410 (96.9%)
2133
+
2134
+ Task: put the bowl on the plate
2135
+ Success: True
2136
+ # episodes completed so far: 424
2137
+ # successes: 411 (96.9%)
2138
+
2139
+ Task: put the bowl on the plate
2140
+ Success: True
2141
+ # episodes completed so far: 425
2142
+ # successes: 412 (96.9%)
2143
+
2144
+ Task: put the bowl on the plate
2145
+ Success: True
2146
+ # episodes completed so far: 426
2147
+ # successes: 413 (96.9%)
2148
+
2149
+ Task: put the bowl on the plate
2150
+ Success: True
2151
+ # episodes completed so far: 427
2152
+ # successes: 414 (97.0%)
2153
+
2154
+ Task: put the bowl on the plate
2155
+ Success: True
2156
+ # episodes completed so far: 428
2157
+ # successes: 415 (97.0%)
2158
+
2159
+ Task: put the bowl on the plate
2160
+ Success: True
2161
+ # episodes completed so far: 429
2162
+ # successes: 416 (97.0%)
2163
+
2164
+ Task: put the bowl on the plate
2165
+ Success: True
2166
+ # episodes completed so far: 430
2167
+ # successes: 417 (97.0%)
2168
+
2169
+ Task: put the bowl on the plate
2170
+ Success: True
2171
+ # episodes completed so far: 431
2172
+ # successes: 418 (97.0%)
2173
+
2174
+ Task: put the bowl on the plate
2175
+ Success: True
2176
+ # episodes completed so far: 432
2177
+ # successes: 419 (97.0%)
2178
+
2179
+ Task: put the bowl on the plate
2180
+ Success: True
2181
+ # episodes completed so far: 433
2182
+ # successes: 420 (97.0%)
2183
+
2184
+ Task: put the bowl on the plate
2185
+ Success: True
2186
+ # episodes completed so far: 434
2187
+ # successes: 421 (97.0%)
2188
+
2189
+ Task: put the bowl on the plate
2190
+ Success: True
2191
+ # episodes completed so far: 435
2192
+ # successes: 422 (97.0%)
2193
+
2194
+ Task: put the bowl on the plate
2195
+ Success: True
2196
+ # episodes completed so far: 436
2197
+ # successes: 423 (97.0%)
2198
+
2199
+ Task: put the bowl on the plate
2200
+ Success: True
2201
+ # episodes completed so far: 437
2202
+ # successes: 424 (97.0%)
2203
+
2204
+ Task: put the bowl on the plate
2205
+ Success: True
2206
+ # episodes completed so far: 438
2207
+ # successes: 425 (97.0%)
2208
+
2209
+ Task: put the bowl on the plate
2210
+ Success: True
2211
+ # episodes completed so far: 439
2212
+ # successes: 426 (97.0%)
2213
+
2214
+ Task: put the bowl on the plate
2215
+ Success: True
2216
+ # episodes completed so far: 440
2217
+ # successes: 427 (97.0%)
2218
+
2219
+ Task: put the bowl on the plate
2220
+ Success: True
2221
+ # episodes completed so far: 441
2222
+ # successes: 428 (97.1%)
2223
+
2224
+ Task: put the bowl on the plate
2225
+ Success: True
2226
+ # episodes completed so far: 442
2227
+ # successes: 429 (97.1%)
2228
+
2229
+ Task: put the bowl on the plate
2230
+ Success: True
2231
+ # episodes completed so far: 443
2232
+ # successes: 430 (97.1%)
2233
+
2234
+ Task: put the bowl on the plate
2235
+ Success: True
2236
+ # episodes completed so far: 444
2237
+ # successes: 431 (97.1%)
2238
+
2239
+ Task: put the bowl on the plate
2240
+ Success: True
2241
+ # episodes completed so far: 445
2242
+ # successes: 432 (97.1%)
2243
+
2244
+ Task: put the bowl on the plate
2245
+ Success: True
2246
+ # episodes completed so far: 446
2247
+ # successes: 433 (97.1%)
2248
+
2249
+ Task: put the bowl on the plate
2250
+ Success: True
2251
+ # episodes completed so far: 447
2252
+ # successes: 434 (97.1%)
2253
+
2254
+ Task: put the bowl on the plate
2255
+ Success: True
2256
+ # episodes completed so far: 448
2257
+ # successes: 435 (97.1%)
2258
+
2259
+ Task: put the bowl on the plate
2260
+ Success: True
2261
+ # episodes completed so far: 449
2262
+ # successes: 436 (97.1%)
2263
+
2264
+ Task: put the bowl on the plate
2265
+ Success: True
2266
+ # episodes completed so far: 450
2267
+ # successes: 437 (97.1%)
2268
+ Current task success rate: 1.0
2269
+ Current total success rate: 0.9711111111111111
2270
+
2271
+ Task: put the wine bottle on the rack
2272
+ Success: False
2273
+ # episodes completed so far: 451
2274
+ # successes: 437 (96.9%)
2275
+
2276
+ Task: put the wine bottle on the rack
2277
+ Success: True
2278
+ # episodes completed so far: 452
2279
+ # successes: 438 (96.9%)
2280
+
2281
+ Task: put the wine bottle on the rack
2282
+ Success: True
2283
+ # episodes completed so far: 453
2284
+ # successes: 439 (96.9%)
2285
+
2286
+ Task: put the wine bottle on the rack
2287
+ Success: True
2288
+ # episodes completed so far: 454
2289
+ # successes: 440 (96.9%)
2290
+
2291
+ Task: put the wine bottle on the rack
2292
+ Success: True
2293
+ # episodes completed so far: 455
2294
+ # successes: 441 (96.9%)
2295
+
2296
+ Task: put the wine bottle on the rack
2297
+ Success: True
2298
+ # episodes completed so far: 456
2299
+ # successes: 442 (96.9%)
2300
+
2301
+ Task: put the wine bottle on the rack
2302
+ Success: True
2303
+ # episodes completed so far: 457
2304
+ # successes: 443 (96.9%)
2305
+
2306
+ Task: put the wine bottle on the rack
2307
+ Success: True
2308
+ # episodes completed so far: 458
2309
+ # successes: 444 (96.9%)
2310
+
2311
+ Task: put the wine bottle on the rack
2312
+ Success: True
2313
+ # episodes completed so far: 459
2314
+ # successes: 445 (96.9%)
2315
+
2316
+ Task: put the wine bottle on the rack
2317
+ Success: True
2318
+ # episodes completed so far: 460
2319
+ # successes: 446 (97.0%)
2320
+
2321
+ Task: put the wine bottle on the rack
2322
+ Success: True
2323
+ # episodes completed so far: 461
2324
+ # successes: 447 (97.0%)
2325
+
2326
+ Task: put the wine bottle on the rack
2327
+ Success: True
2328
+ # episodes completed so far: 462
2329
+ # successes: 448 (97.0%)
2330
+
2331
+ Task: put the wine bottle on the rack
2332
+ Success: True
2333
+ # episodes completed so far: 463
2334
+ # successes: 449 (97.0%)
2335
+
2336
+ Task: put the wine bottle on the rack
2337
+ Success: True
2338
+ # episodes completed so far: 464
2339
+ # successes: 450 (97.0%)
2340
+
2341
+ Task: put the wine bottle on the rack
2342
+ Success: False
2343
+ # episodes completed so far: 465
2344
+ # successes: 450 (96.8%)
2345
+
2346
+ Task: put the wine bottle on the rack
2347
+ Success: True
2348
+ # episodes completed so far: 466
2349
+ # successes: 451 (96.8%)
2350
+
2351
+ Task: put the wine bottle on the rack
2352
+ Success: False
2353
+ # episodes completed so far: 467
2354
+ # successes: 451 (96.6%)
2355
+
2356
+ Task: put the wine bottle on the rack
2357
+ Success: False
2358
+ # episodes completed so far: 468
2359
+ # successes: 451 (96.4%)
2360
+
2361
+ Task: put the wine bottle on the rack
2362
+ Success: True
2363
+ # episodes completed so far: 469
2364
+ # successes: 452 (96.4%)
2365
+
2366
+ Task: put the wine bottle on the rack
2367
+ Success: True
2368
+ # episodes completed so far: 470
2369
+ # successes: 453 (96.4%)
2370
+
2371
+ Task: put the wine bottle on the rack
2372
+ Success: True
2373
+ # episodes completed so far: 471
2374
+ # successes: 454 (96.4%)
2375
+
2376
+ Task: put the wine bottle on the rack
2377
+ Success: True
2378
+ # episodes completed so far: 472
2379
+ # successes: 455 (96.4%)
2380
+
2381
+ Task: put the wine bottle on the rack
2382
+ Success: True
2383
+ # episodes completed so far: 473
2384
+ # successes: 456 (96.4%)
2385
+
2386
+ Task: put the wine bottle on the rack
2387
+ Success: True
2388
+ # episodes completed so far: 474
2389
+ # successes: 457 (96.4%)
2390
+
2391
+ Task: put the wine bottle on the rack
2392
+ Success: True
2393
+ # episodes completed so far: 475
2394
+ # successes: 458 (96.4%)
2395
+
2396
+ Task: put the wine bottle on the rack
2397
+ Success: True
2398
+ # episodes completed so far: 476
2399
+ # successes: 459 (96.4%)
2400
+
2401
+ Task: put the wine bottle on the rack
2402
+ Success: True
2403
+ # episodes completed so far: 477
2404
+ # successes: 460 (96.4%)
2405
+
2406
+ Task: put the wine bottle on the rack
2407
+ Success: True
2408
+ # episodes completed so far: 478
2409
+ # successes: 461 (96.4%)
2410
+
2411
+ Task: put the wine bottle on the rack
2412
+ Success: True
2413
+ # episodes completed so far: 479
2414
+ # successes: 462 (96.5%)
2415
+
2416
+ Task: put the wine bottle on the rack
2417
+ Success: True
2418
+ # episodes completed so far: 480
2419
+ # successes: 463 (96.5%)
2420
+
2421
+ Task: put the wine bottle on the rack
2422
+ Success: True
2423
+ # episodes completed so far: 481
2424
+ # successes: 464 (96.5%)
2425
+
2426
+ Task: put the wine bottle on the rack
2427
+ Success: True
2428
+ # episodes completed so far: 482
2429
+ # successes: 465 (96.5%)
2430
+
2431
+ Task: put the wine bottle on the rack
2432
+ Success: True
2433
+ # episodes completed so far: 483
2434
+ # successes: 466 (96.5%)
2435
+
2436
+ Task: put the wine bottle on the rack
2437
+ Success: True
2438
+ # episodes completed so far: 484
2439
+ # successes: 467 (96.5%)
2440
+
2441
+ Task: put the wine bottle on the rack
2442
+ Success: True
2443
+ # episodes completed so far: 485
2444
+ # successes: 468 (96.5%)
2445
+
2446
+ Task: put the wine bottle on the rack
2447
+ Success: False
2448
+ # episodes completed so far: 486
2449
+ # successes: 468 (96.3%)
2450
+
2451
+ Task: put the wine bottle on the rack
2452
+ Success: True
2453
+ # episodes completed so far: 487
2454
+ # successes: 469 (96.3%)
2455
+
2456
+ Task: put the wine bottle on the rack
2457
+ Success: True
2458
+ # episodes completed so far: 488
2459
+ # successes: 470 (96.3%)
2460
+
2461
+ Task: put the wine bottle on the rack
2462
+ Success: True
2463
+ # episodes completed so far: 489
2464
+ # successes: 471 (96.3%)
2465
+
2466
+ Task: put the wine bottle on the rack
2467
+ Success: True
2468
+ # episodes completed so far: 490
2469
+ # successes: 472 (96.3%)
2470
+
2471
+ Task: put the wine bottle on the rack
2472
+ Success: True
2473
+ # episodes completed so far: 491
2474
+ # successes: 473 (96.3%)
2475
+
2476
+ Task: put the wine bottle on the rack
2477
+ Success: True
2478
+ # episodes completed so far: 492
2479
+ # successes: 474 (96.3%)
2480
+
2481
+ Task: put the wine bottle on the rack
2482
+ Success: True
2483
+ # episodes completed so far: 493
2484
+ # successes: 475 (96.3%)
2485
+
2486
+ Task: put the wine bottle on the rack
2487
+ Success: True
2488
+ # episodes completed so far: 494
2489
+ # successes: 476 (96.4%)
2490
+
2491
+ Task: put the wine bottle on the rack
2492
+ Success: True
2493
+ # episodes completed so far: 495
2494
+ # successes: 477 (96.4%)
2495
+
2496
+ Task: put the wine bottle on the rack
2497
+ Success: True
2498
+ # episodes completed so far: 496
2499
+ # successes: 478 (96.4%)
2500
+
2501
+ Task: put the wine bottle on the rack
2502
+ Success: True
2503
+ # episodes completed so far: 497
2504
+ # successes: 479 (96.4%)
2505
+
2506
+ Task: put the wine bottle on the rack
2507
+ Success: True
2508
+ # episodes completed so far: 498
2509
+ # successes: 480 (96.4%)
2510
+
2511
+ Task: put the wine bottle on the rack
2512
+ Success: True
2513
+ # episodes completed so far: 499
2514
+ # successes: 481 (96.4%)
2515
+
2516
+ Task: put the wine bottle on the rack
2517
+ Success: True
2518
+ # episodes completed so far: 500
2519
+ # successes: 482 (96.4%)
2520
+ Current task success rate: 0.9
2521
+ Current total success rate: 0.964
libero_goal_2B/starvla_qwen_dual/libero_goal.log ADDED
@@ -0,0 +1,300 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Step 100, Loss: {'mse_loss': 1.13235342502594, 'totoal_loss': 1.13235342502594, 'data_time': 0.02003104891628027, 'model_time': 0.7540001850575209, 'learning_rate': 2.0000000000000002e-07, 'epoch': 0.25})
2
+ Step 200, Loss: {'mse_loss': 1.044721007347107, 'totoal_loss': 1.044721007347107, 'data_time': 0.01976405316963792, 'model_time': 0.7031369609758258, 'learning_rate': 4.0000000000000003e-07, 'epoch': 0.49})
3
+ Step 300, Loss: {'mse_loss': 0.7938295602798462, 'totoal_loss': 0.7938295602798462, 'data_time': 0.019052489195019007, 'model_time': 0.7536049531772733, 'learning_rate': 6.000000000000001e-07, 'epoch': 0.74})
4
+ Step 400, Loss: {'mse_loss': 0.5639538764953613, 'totoal_loss': 0.5639538764953613, 'data_time': 0.01672526402398944, 'model_time': 0.6714198431000113, 'learning_rate': 8.000000000000001e-07, 'epoch': 0.99})
5
+ Step 500, Loss: {'mse_loss': 0.466010183095932, 'totoal_loss': 0.466010183095932, 'data_time': 0.02301518013700843, 'model_time': 0.7047572359442711, 'learning_rate': 1.0000000000000002e-06, 'epoch': 1.23})
6
+ Step 600, Loss: {'mse_loss': 0.34547242522239685, 'totoal_loss': 0.34547242522239685, 'data_time': 0.02540705190040171, 'model_time': 0.7240518608596176, 'learning_rate': 1.2000000000000002e-06, 'epoch': 1.48})
7
+ Step 700, Loss: {'mse_loss': 0.3189221918582916, 'totoal_loss': 0.3189221918582916, 'data_time': 0.0265121900010854, 'model_time': 0.6993386740796268, 'learning_rate': 1.4000000000000001e-06, 'epoch': 1.72})
8
+ Step 800, Loss: {'mse_loss': 0.2933785021305084, 'totoal_loss': 0.2933785021305084, 'data_time': 0.02621791698038578, 'model_time': 0.7822871538810432, 'learning_rate': 1.6000000000000001e-06, 'epoch': 1.97})
9
+ Step 900, Loss: {'mse_loss': 0.15656748414039612, 'totoal_loss': 0.15656748414039612, 'data_time': 0.020063944859430194, 'model_time': 0.70715969405137, 'learning_rate': 1.8000000000000001e-06, 'epoch': 2.22})
10
+ Step 1000, Loss: {'mse_loss': 0.13084977865219116, 'totoal_loss': 0.13084977865219116, 'data_time': 0.017530160956084728, 'model_time': 0.7164946829434484, 'learning_rate': 2.0000000000000003e-06, 'epoch': 2.46})
11
+ Step 1100, Loss: {'mse_loss': 0.10358764976263046, 'totoal_loss': 0.10358764976263046, 'data_time': 0.015221042791381478, 'model_time': 0.7444557470735162, 'learning_rate': 2.2e-06, 'epoch': 2.71})
12
+ Step 1200, Loss: {'mse_loss': 0.16990846395492554, 'totoal_loss': 0.16990846395492554, 'data_time': 0.015247669070959091, 'model_time': 0.7460093169938773, 'learning_rate': 2.4000000000000003e-06, 'epoch': 2.96})
13
+ Step 1300, Loss: {'mse_loss': 0.16059917211532593, 'totoal_loss': 0.16059917211532593, 'data_time': 0.0004286710172891617, 'model_time': 0.7357929849531502, 'learning_rate': 2.6e-06, 'epoch': 3.2})
14
+ Step 1400, Loss: {'mse_loss': 0.14228016138076782, 'totoal_loss': 0.14228016138076782, 'data_time': 0.00039218412712216377, 'model_time': 0.7266084149014205, 'learning_rate': 2.8000000000000003e-06, 'epoch': 3.45})
15
+ Step 1500, Loss: {'mse_loss': 0.19317403435707092, 'totoal_loss': 0.19317403435707092, 'data_time': 0.0004702848382294178, 'model_time': 0.7266604399774224, 'learning_rate': 3e-06, 'epoch': 3.69})
16
+ Step 1600, Loss: {'mse_loss': 0.13169358670711517, 'totoal_loss': 0.13169358670711517, 'data_time': 0.000427081948146224, 'model_time': 0.7200681739486754, 'learning_rate': 3.2000000000000003e-06, 'epoch': 3.94})
17
+ Step 1700, Loss: {'mse_loss': 0.13592976331710815, 'totoal_loss': 0.13592976331710815, 'data_time': 0.01657945499755442, 'model_time': 0.727178422966972, 'learning_rate': 3.4000000000000005e-06, 'epoch': 4.19})
18
+ Step 1800, Loss: {'mse_loss': 0.09770133346319199, 'totoal_loss': 0.09770133346319199, 'data_time': 0.01745521300472319, 'model_time': 0.7018931179773062, 'learning_rate': 3.6000000000000003e-06, 'epoch': 4.43})
19
+ Step 1900, Loss: {'mse_loss': 0.11376699805259705, 'totoal_loss': 0.11376699805259705, 'data_time': 0.016936133848503232, 'model_time': 0.7865388609934598, 'learning_rate': 3.8000000000000005e-06, 'epoch': 4.68})
20
+ Step 2000, Loss: {'mse_loss': 0.10370717942714691, 'totoal_loss': 0.10370717942714691, 'data_time': 0.01602081605233252, 'model_time': 0.7952003199607134, 'learning_rate': 4.000000000000001e-06, 'epoch': 4.93})
21
+ Step 2100, Loss: {'mse_loss': 0.0955595150589943, 'totoal_loss': 0.0955595150589943, 'data_time': 0.0003746398724615574, 'model_time': 0.7463259890209883, 'learning_rate': 4.2000000000000004e-06, 'epoch': 5.17})
22
+ Step 2200, Loss: {'mse_loss': 0.12716735899448395, 'totoal_loss': 0.12716735899448395, 'data_time': 0.0004155950155109167, 'model_time': 0.7805266019422561, 'learning_rate': 4.4e-06, 'epoch': 5.42})
23
+ Step 2300, Loss: {'mse_loss': 0.12242789566516876, 'totoal_loss': 0.12242789566516876, 'data_time': 0.0004194520879536867, 'model_time': 0.7228790749795735, 'learning_rate': 4.600000000000001e-06, 'epoch': 5.67})
24
+ Step 2400, Loss: {'mse_loss': 0.10280577838420868, 'totoal_loss': 0.10280577838420868, 'data_time': 0.0003707790747284889, 'model_time': 0.7339454779867083, 'learning_rate': 4.800000000000001e-06, 'epoch': 5.91})
25
+ Step 2500, Loss: {'mse_loss': 0.0813874900341034, 'totoal_loss': 0.0813874900341034, 'data_time': 0.022927676094695926, 'model_time': 0.7212295879144222, 'learning_rate': 5e-06, 'epoch': 6.16})
26
+ Step 2600, Loss: {'mse_loss': 0.12255821377038956, 'totoal_loss': 0.12255821377038956, 'data_time': 0.02250393503345549, 'model_time': 0.7927983240224421, 'learning_rate': 5.2e-06, 'epoch': 6.4})
27
+ Step 2700, Loss: {'mse_loss': 0.08868976682424545, 'totoal_loss': 0.08868976682424545, 'data_time': 0.02765864902175963, 'model_time': 0.7400594940409064, 'learning_rate': 5.400000000000001e-06, 'epoch': 6.65})
28
+ Step 2800, Loss: {'mse_loss': 0.0762496367096901, 'totoal_loss': 0.0762496367096901, 'data_time': 0.02359034400433302, 'model_time': 0.7180108029861003, 'learning_rate': 5.600000000000001e-06, 'epoch': 6.9})
29
+ Step 2900, Loss: {'mse_loss': 0.08120748400688171, 'totoal_loss': 0.08120748400688171, 'data_time': 0.015838742023333907, 'model_time': 0.7698554492089897, 'learning_rate': 5.8e-06, 'epoch': 7.14})
30
+ Step 3000, Loss: {'mse_loss': 0.07121717929840088, 'totoal_loss': 0.07121717929840088, 'data_time': 0.015878241043537855, 'model_time': 0.712959127034992, 'learning_rate': 6e-06, 'epoch': 7.39})
31
+ Step 3100, Loss: {'mse_loss': 0.05174682289361954, 'totoal_loss': 0.05174682289361954, 'data_time': 0.015840264968574047, 'model_time': 0.7452999011147767, 'learning_rate': 6.200000000000001e-06, 'epoch': 7.64})
32
+ Step 3200, Loss: {'mse_loss': 0.09152514487504959, 'totoal_loss': 0.09152514487504959, 'data_time': 0.015762481139972806, 'model_time': 0.7177364430390298, 'learning_rate': 6.4000000000000006e-06, 'epoch': 7.88})
33
+ Step 3300, Loss: {'mse_loss': 0.05876311659812927, 'totoal_loss': 0.05876311659812927, 'data_time': 0.02290432807058096, 'model_time': 0.6945000819396228, 'learning_rate': 6.600000000000001e-06, 'epoch': 8.13})
34
+ Step 3400, Loss: {'mse_loss': 0.09214566648006439, 'totoal_loss': 0.09214566648006439, 'data_time': 0.02611346496269107, 'model_time': 0.7417499360162765, 'learning_rate': 6.800000000000001e-06, 'epoch': 8.37})
35
+ Step 3500, Loss: {'mse_loss': 0.08846867829561234, 'totoal_loss': 0.08846867829561234, 'data_time': 0.023313252022489905, 'model_time': 0.7048832888249308, 'learning_rate': 7e-06, 'epoch': 8.62})
36
+ Step 3600, Loss: {'mse_loss': 0.07148750126361847, 'totoal_loss': 0.07148750126361847, 'data_time': 0.024460416985675693, 'model_time': 0.7293985181022435, 'learning_rate': 7.2000000000000005e-06, 'epoch': 8.87})
37
+ Step 3700, Loss: {'mse_loss': 0.05778084695339203, 'totoal_loss': 0.05778084695339203, 'data_time': 0.00044885207898914814, 'model_time': 0.7431270149536431, 'learning_rate': 7.4e-06, 'epoch': 9.11})
38
+ Step 3800, Loss: {'mse_loss': 0.06472771614789963, 'totoal_loss': 0.06472771614789963, 'data_time': 0.000445774057880044, 'model_time': 0.9716410469263792, 'learning_rate': 7.600000000000001e-06, 'epoch': 9.36})
39
+ Step 3900, Loss: {'mse_loss': 0.06096266210079193, 'totoal_loss': 0.06096266210079193, 'data_time': 0.0005155201070010662, 'model_time': 0.7559882360510528, 'learning_rate': 7.800000000000002e-06, 'epoch': 9.61})
40
+ Step 4000, Loss: {'mse_loss': 0.04948277026414871, 'totoal_loss': 0.04948277026414871, 'data_time': 0.0004295420367270708, 'model_time': 0.7266269370447844, 'learning_rate': 8.000000000000001e-06, 'epoch': 9.85})
41
+ Step 4100, Loss: {'mse_loss': 0.07451830804347992, 'totoal_loss': 0.07451830804347992, 'data_time': 0.015546387061476707, 'model_time': 0.732275330927223, 'learning_rate': 8.2e-06, 'epoch': 10.1})
42
+ Step 4200, Loss: {'mse_loss': 0.0421840064227581, 'totoal_loss': 0.0421840064227581, 'data_time': 0.018955945037305355, 'model_time': 0.7240558099001646, 'learning_rate': 8.400000000000001e-06, 'epoch': 10.34})
43
+ Step 4300, Loss: {'mse_loss': 0.07062847912311554, 'totoal_loss': 0.07062847912311554, 'data_time': 0.02383451210334897, 'model_time': 0.7112459000200033, 'learning_rate': 8.6e-06, 'epoch': 10.59})
44
+ Step 4400, Loss: {'mse_loss': 0.055105872452259064, 'totoal_loss': 0.055105872452259064, 'data_time': 0.016722982982173562, 'model_time': 0.7463902868330479, 'learning_rate': 8.8e-06, 'epoch': 10.84})
45
+ Step 4500, Loss: {'mse_loss': 0.07136349380016327, 'totoal_loss': 0.07136349380016327, 'data_time': 0.016390664037317038, 'model_time': 0.7174582458101213, 'learning_rate': 9e-06, 'epoch': 11.08})
46
+ Step 4600, Loss: {'mse_loss': 0.04807275906205177, 'totoal_loss': 0.04807275906205177, 'data_time': 0.01624635001644492, 'model_time': 1.0783615899272263, 'learning_rate': 9.200000000000002e-06, 'epoch': 11.33})
47
+ Step 4700, Loss: {'mse_loss': 0.045663025230169296, 'totoal_loss': 0.045663025230169296, 'data_time': 0.017579457024112344, 'model_time': 0.7241248420905322, 'learning_rate': 9.4e-06, 'epoch': 11.58})
48
+ Step 4800, Loss: {'mse_loss': 0.06463941186666489, 'totoal_loss': 0.06463941186666489, 'data_time': 0.019250834826380014, 'model_time': 0.7178303839173168, 'learning_rate': 9.600000000000001e-06, 'epoch': 11.82})
49
+ Step 4900, Loss: {'mse_loss': 0.03793349489569664, 'totoal_loss': 0.03793349489569664, 'data_time': 0.009401804069057107, 'model_time': 0.7771601749118418, 'learning_rate': 9.800000000000001e-06, 'epoch': 12.07})
50
+ Step 5000, Loss: {'mse_loss': 0.07581351697444916, 'totoal_loss': 0.07581351697444916, 'data_time': 0.008600027998909354, 'model_time': 0.7040182109922171, 'learning_rate': 1e-05, 'epoch': 12.32})
51
+ Step 5100, Loss: {'mse_loss': 0.05260660871863365, 'totoal_loss': 0.05260660871863365, 'data_time': 0.011034801136702299, 'model_time': 0.7192821931093931, 'learning_rate': 9.999615090493604e-06, 'epoch': 12.56})
52
+ Step 5200, Loss: {'mse_loss': 0.03742503374814987, 'totoal_loss': 0.03742503374814987, 'data_time': 0.009051371132954955, 'model_time': 0.7671258728951216, 'learning_rate': 9.998460422756089e-06, 'epoch': 12.81})
53
+ Step 5300, Loss: {'mse_loss': 0.04497196152806282, 'totoal_loss': 0.04497196152806282, 'data_time': 0.0004588649608194828, 'model_time': 0.8164676129817963, 'learning_rate': 9.996536179122874e-06, 'epoch': 13.05})
54
+ Step 5400, Loss: {'mse_loss': 0.04756006971001625, 'totoal_loss': 0.04756006971001625, 'data_time': 0.00034002610482275486, 'model_time': 0.8075681929476559, 'learning_rate': 9.993842663454337e-06, 'epoch': 13.3})
55
+ Step 5500, Loss: {'mse_loss': 0.04660799354314804, 'totoal_loss': 0.04660799354314804, 'data_time': 0.0004182080738246441, 'model_time': 0.745121476938948, 'learning_rate': 9.990380301087824e-06, 'epoch': 13.55})
56
+ Step 5600, Loss: {'mse_loss': 0.047828443348407745, 'totoal_loss': 0.047828443348407745, 'data_time': 0.000445640180259943, 'model_time': 0.7031579550821334, 'learning_rate': 9.986149638770493e-06, 'epoch': 13.79})
57
+ Step 5700, Loss: {'mse_loss': 0.05921897292137146, 'totoal_loss': 0.05921897292137146, 'data_time': 0.010123001877218485, 'model_time': 0.7091132279019803, 'learning_rate': 9.981151344572967e-06, 'epoch': 14.04})
58
+ Step 5800, Loss: {'mse_loss': 0.04087100178003311, 'totoal_loss': 0.04087100178003311, 'data_time': 0.009944028919562697, 'model_time': 0.7429353490006179, 'learning_rate': 9.975386207783839e-06, 'epoch': 14.29})
59
+ Step 5900, Loss: {'mse_loss': 0.03803366422653198, 'totoal_loss': 0.03803366422653198, 'data_time': 0.009696363937109709, 'model_time': 0.71014409000054, 'learning_rate': 9.968855138785041e-06, 'epoch': 14.53})
60
+ Step 6000, Loss: {'mse_loss': 0.03867204114794731, 'totoal_loss': 0.03867204114794731, 'data_time': 0.009189085103571415, 'model_time': 0.7415930200368166, 'learning_rate': 9.961559168908081e-06, 'epoch': 14.78})
61
+ Step 6100, Loss: {'mse_loss': 0.040710706263780594, 'totoal_loss': 0.040710706263780594, 'data_time': 0.00039236899465322495, 'model_time': 0.7123156199231744, 'learning_rate': 9.953499450271174e-06, 'epoch': 15.02})
62
+ Step 6200, Loss: {'mse_loss': 0.05013936012983322, 'totoal_loss': 0.05013936012983322, 'data_time': 0.00037229014560580254, 'model_time': 0.7095010371413082, 'learning_rate': 9.944677255597332e-06, 'epoch': 15.27})
63
+ Step 6300, Loss: {'mse_loss': 0.045127738267183304, 'totoal_loss': 0.045127738267183304, 'data_time': 0.0003920139279216528, 'model_time': 0.8049668269231915, 'learning_rate': 9.935093978013357e-06, 'epoch': 15.52})
64
+ Step 6400, Loss: {'mse_loss': 0.05657093971967697, 'totoal_loss': 0.05657093971967697, 'data_time': 0.00042192405089735985, 'model_time': 0.7273604939691722, 'learning_rate': 9.924751130829878e-06, 'epoch': 15.76})
65
+ Step 6500, Loss: {'mse_loss': 0.04729403927922249, 'totoal_loss': 0.04729403927922249, 'data_time': 0.07732977904379368, 'model_time': 0.7355047001037747, 'learning_rate': 9.91365034730236e-06, 'epoch': 16.01})
66
+ Step 6600, Loss: {'mse_loss': 0.054008468985557556, 'totoal_loss': 0.054008468985557556, 'data_time': 0.024182019056752324, 'model_time': 0.6971027671825141, 'learning_rate': 9.901793380373204e-06, 'epoch': 16.26})
67
+ Step 6700, Loss: {'mse_loss': 0.027174051851034164, 'totoal_loss': 0.027174051851034164, 'data_time': 0.02237064205110073, 'model_time': 0.6943326930049807, 'learning_rate': 9.889182102394944e-06, 'epoch': 16.5})
68
+ Step 6800, Loss: {'mse_loss': 0.03911862522363663, 'totoal_loss': 0.03911862522363663, 'data_time': 0.020544769009575248, 'model_time': 0.7120216130279005, 'learning_rate': 9.875818504834564e-06, 'epoch': 16.75})
69
+ Step 6900, Loss: {'mse_loss': 0.04865219444036484, 'totoal_loss': 0.04865219444036484, 'data_time': 0.013950964901596308, 'model_time': 0.6675751931034029, 'learning_rate': 9.861704697959036e-06, 'epoch': 17.0})
70
+ Step 7000, Loss: {'mse_loss': 0.02675320953130722, 'totoal_loss': 0.02675320953130722, 'data_time': 0.008703552884981036, 'model_time': 0.7084395447745919, 'learning_rate': 9.846842910502077e-06, 'epoch': 17.24})
71
+ Step 7100, Loss: {'mse_loss': 0.036696940660476685, 'totoal_loss': 0.036696940660476685, 'data_time': 0.007909053936600685, 'model_time': 0.7331263581290841, 'learning_rate': 9.831235489312212e-06, 'epoch': 17.49})
72
+ Step 7200, Loss: {'mse_loss': 0.041656434535980225, 'totoal_loss': 0.041656434535980225, 'data_time': 0.007172349141910672, 'model_time': 0.7063897210173309, 'learning_rate': 9.814884898982168e-06, 'epoch': 17.73})
73
+ Step 7300, Loss: {'mse_loss': 0.040669213980436325, 'totoal_loss': 0.040669213980436325, 'data_time': 0.008667999180033803, 'model_time': 0.6711678919382393, 'learning_rate': 9.797793721459709e-06, 'epoch': 17.98})
74
+ Step 7400, Loss: {'mse_loss': 0.033403415232896805, 'totoal_loss': 0.033403415232896805, 'data_time': 0.009357149014249444, 'model_time': 0.717901319032535, 'learning_rate': 9.779964655639886e-06, 'epoch': 18.23})
75
+ Step 7500, Loss: {'mse_loss': 0.03739799186587334, 'totoal_loss': 0.03739799186587334, 'data_time': 0.00830213911831379, 'model_time': 1.0129197458736598, 'learning_rate': 9.761400516938874e-06, 'epoch': 18.47})
76
+ Step 7600, Loss: {'mse_loss': 0.03319861739873886, 'totoal_loss': 0.03319861739873886, 'data_time': 0.00884093507193029, 'model_time': 0.7288996339775622, 'learning_rate': 9.74210423684938e-06, 'epoch': 18.72})
77
+ Step 7700, Loss: {'mse_loss': 0.04369316250085831, 'totoal_loss': 0.04369316250085831, 'data_time': 0.007966380100697279, 'model_time': 0.747495026094839, 'learning_rate': 9.722078862477715e-06, 'epoch': 18.97})
78
+ Step 7800, Loss: {'mse_loss': 0.02327541820704937, 'totoal_loss': 0.02327541820704937, 'data_time': 0.0003738070372492075, 'model_time': 0.7913774370681494, 'learning_rate': 9.701327556062637e-06, 'epoch': 19.21})
79
+ Step 7900, Loss: {'mse_loss': 0.07089388370513916, 'totoal_loss': 0.07089388370513916, 'data_time': 0.0003631189465522766, 'model_time': 0.7961062551476061, 'learning_rate': 9.679853594475985e-06, 'epoch': 19.46})
80
+ Step 8000, Loss: {'mse_loss': 0.04178516939282417, 'totoal_loss': 0.04178516939282417, 'data_time': 0.00039524491876363754, 'model_time': 0.7331873229704797, 'learning_rate': 9.657660368705225e-06, 'epoch': 19.7})
81
+ Step 8100, Loss: {'mse_loss': 0.05034498870372772, 'totoal_loss': 0.05034498870372772, 'data_time': 0.00038402900099754333, 'model_time': 0.748203027062118, 'learning_rate': 9.634751383317983e-06, 'epoch': 19.95})
82
+ Step 8200, Loss: {'mse_loss': 0.053064975887537, 'totoal_loss': 0.053064975887537, 'data_time': 0.010165635030716658, 'model_time': 0.7638682490214705, 'learning_rate': 9.611130255908619e-06, 'epoch': 20.2})
83
+ Step 8300, Loss: {'mse_loss': 0.0366375669836998, 'totoal_loss': 0.0366375669836998, 'data_time': 0.0084504340775311, 'model_time': 0.7242022890131921, 'learning_rate': 9.586800716526974e-06, 'epoch': 20.44})
84
+ Step 8400, Loss: {'mse_loss': 0.027119817212224007, 'totoal_loss': 0.027119817212224007, 'data_time': 0.008071878924965858, 'model_time': 0.7490362089592963, 'learning_rate': 9.561766607089355e-06, 'epoch': 20.69})
85
+ Step 8500, Loss: {'mse_loss': 0.05928470566868782, 'totoal_loss': 0.05928470566868782, 'data_time': 0.008718352997675538, 'model_time': 0.7362047589849681, 'learning_rate': 9.536031880771846e-06, 'epoch': 20.94})
86
+ Step 8600, Loss: {'mse_loss': 0.06061752513051033, 'totoal_loss': 0.06061752513051033, 'data_time': 0.00775099010206759, 'model_time': 0.6890284400433302, 'learning_rate': 9.50960060138606e-06, 'epoch': 21.18})
87
+ Step 8700, Loss: {'mse_loss': 0.033747486770153046, 'totoal_loss': 0.033747486770153046, 'data_time': 0.007731073070317507, 'model_time': 0.7088839919306338, 'learning_rate': 9.482476942737411e-06, 'epoch': 21.43})
88
+ Step 8800, Loss: {'mse_loss': 0.026754533872008324, 'totoal_loss': 0.026754533872008324, 'data_time': 0.008115743985399604, 'model_time': 0.806936461944133, 'learning_rate': 9.45466518796603e-06, 'epoch': 21.67})
89
+ Step 8900, Loss: {'mse_loss': 0.03885062783956528, 'totoal_loss': 0.03885062783956528, 'data_time': 0.007738706190139055, 'model_time': 0.7353517718147486, 'learning_rate': 9.426169728870399e-06, 'epoch': 21.92})
90
+ Step 9000, Loss: {'mse_loss': 0.03712266683578491, 'totoal_loss': 0.03712266683578491, 'data_time': 0.025212520034983754, 'model_time': 0.7702049179933965, 'learning_rate': 9.396995065213835e-06, 'epoch': 22.17})
91
+ Step 9100, Loss: {'mse_loss': 0.028558917343616486, 'totoal_loss': 0.028558917343616486, 'data_time': 0.028947838814929128, 'model_time': 0.7527430371847004, 'learning_rate': 9.367145804013938e-06, 'epoch': 22.41})
92
+ Step 9200, Loss: {'mse_loss': 0.021098347380757332, 'totoal_loss': 0.021098347380757332, 'data_time': 0.021906206849962473, 'model_time': 0.7499419848900288, 'learning_rate': 9.336626658815071e-06, 'epoch': 22.66})
93
+ Step 9300, Loss: {'mse_loss': 0.04562539607286453, 'totoal_loss': 0.04562539607286453, 'data_time': 0.021534962113946676, 'model_time': 0.795511482981965, 'learning_rate': 9.305442448944056e-06, 'epoch': 22.91})
94
+ Step 9400, Loss: {'mse_loss': 0.025095662102103233, 'totoal_loss': 0.025095662102103233, 'data_time': 0.0003733281046152115, 'model_time': 0.7510504180099815, 'learning_rate': 9.273598098749124e-06, 'epoch': 23.15})
95
+ Step 9500, Loss: {'mse_loss': 0.021567614749073982, 'totoal_loss': 0.021567614749073982, 'data_time': 0.0003752398770302534, 'model_time': 0.7631376378703862, 'learning_rate': 9.241098636822324e-06, 'epoch': 23.4})
96
+ Step 9600, Loss: {'mse_loss': 0.0267280675470829, 'totoal_loss': 0.0267280675470829, 'data_time': 0.000370565103366971, 'model_time': 0.8292810670100152, 'learning_rate': 9.207949195205442e-06, 'epoch': 23.65})
97
+ Step 9700, Loss: {'mse_loss': 0.02130330353975296, 'totoal_loss': 0.02130330353975296, 'data_time': 0.0003866038750857115, 'model_time': 0.7395905591547489, 'learning_rate': 9.174155008579588e-06, 'epoch': 23.89})
98
+ Step 9800, Loss: {'mse_loss': 0.04169420897960663, 'totoal_loss': 0.04169420897960663, 'data_time': 0.015969634987413883, 'model_time': 0.699375397991389, 'learning_rate': 9.139721413438583e-06, 'epoch': 24.14})
99
+ Step 9900, Loss: {'mse_loss': 0.033196575939655304, 'totoal_loss': 0.033196575939655304, 'data_time': 0.019970628898590803, 'model_time': 0.8061224920675159, 'learning_rate': 9.104653847246273e-06, 'epoch': 24.38})
100
+ Step 10000, Loss: {'mse_loss': 0.02089565619826317, 'totoal_loss': 0.02089565619826317, 'data_time': 0.01674975291825831, 'model_time': 0.7130508860573173, 'learning_rate': 9.068957847577869e-06, 'epoch': 24.63})
101
+ Step 10100, Loss: {'mse_loss': 0.030139312148094177, 'totoal_loss': 0.030139312148094177, 'data_time': 0.01721099903807044, 'model_time': 0.7307157760951668, 'learning_rate': 9.032639051245524e-06, 'epoch': 24.88})
102
+ Step 10200, Loss: {'mse_loss': 0.033991739153862, 'totoal_loss': 0.033991739153862, 'data_time': 0.021724281832575798, 'model_time': 0.7135313129983842, 'learning_rate': 8.995703193408199e-06, 'epoch': 25.12})
103
+ Step 10300, Loss: {'mse_loss': 0.04096740484237671, 'totoal_loss': 0.04096740484237671, 'data_time': 0.015027092071250081, 'model_time': 0.7155267740599811, 'learning_rate': 8.958156106666017e-06, 'epoch': 25.37})
104
+ Step 10400, Loss: {'mse_loss': 0.021310416981577873, 'totoal_loss': 0.021310416981577873, 'data_time': 0.014931894838809967, 'model_time': 0.6988219739869237, 'learning_rate': 8.92000372013924e-06, 'epoch': 25.62})
105
+ Step 10500, Loss: {'mse_loss': 0.023951780050992966, 'totoal_loss': 0.023951780050992966, 'data_time': 0.018346533877775073, 'model_time': 0.7052288840059191, 'learning_rate': 8.881252058531973e-06, 'epoch': 25.86})
106
+ Step 10600, Loss: {'mse_loss': 0.02623746171593666, 'totoal_loss': 0.02623746171593666, 'data_time': 0.01440381701104343, 'model_time': 0.792841395130381, 'learning_rate': 8.841907241180809e-06, 'epoch': 26.11})
107
+ Step 10700, Loss: {'mse_loss': 0.01877506822347641, 'totoal_loss': 0.01877506822347641, 'data_time': 0.015510524157434702, 'model_time': 0.693913014838472, 'learning_rate': 8.801975481088507e-06, 'epoch': 26.35})
108
+ Step 10800, Loss: {'mse_loss': 0.03179250285029411, 'totoal_loss': 0.03179250285029411, 'data_time': 0.017182152019813657, 'model_time': 0.716330923140049, 'learning_rate': 8.761463083942889e-06, 'epoch': 26.6})
109
+ Step 10900, Loss: {'mse_loss': 0.029475446790456772, 'totoal_loss': 0.029475446790456772, 'data_time': 0.018904061056673527, 'model_time': 0.7098198169842362, 'learning_rate': 8.720376447121098e-06, 'epoch': 26.85})
110
+ Step 11000, Loss: {'mse_loss': 0.028372779488563538, 'totoal_loss': 0.028372779488563538, 'data_time': 0.0003846539184451103, 'model_time': 0.7335767420008779, 'learning_rate': 8.678722058679382e-06, 'epoch': 27.09})
111
+ Step 11100, Loss: {'mse_loss': 0.026576977223157883, 'totoal_loss': 0.026576977223157883, 'data_time': 0.0003616830799728632, 'model_time': 0.7353381849825382, 'learning_rate': 8.636506496328546e-06, 'epoch': 27.34})
112
+ Step 11200, Loss: {'mse_loss': 0.02419249527156353, 'totoal_loss': 0.02419249527156353, 'data_time': 0.0003918630536645651, 'model_time': 0.8023593921680003, 'learning_rate': 8.593736426395268e-06, 'epoch': 27.59})
113
+ Step 11300, Loss: {'mse_loss': 0.014692379161715508, 'totoal_loss': 0.014692379161715508, 'data_time': 0.0004758499562740326, 'model_time': 0.7220692809205502, 'learning_rate': 8.550418602769392e-06, 'epoch': 27.83})
114
+ Step 11400, Loss: {'mse_loss': 0.04199714586138725, 'totoal_loss': 0.04199714586138725, 'data_time': 0.01743580400943756, 'model_time': 0.7705027961637825, 'learning_rate': 8.506559865837425e-06, 'epoch': 28.08})
115
+ Step 11500, Loss: {'mse_loss': 0.029696360230445862, 'totoal_loss': 0.029696360230445862, 'data_time': 0.01564279990270734, 'model_time': 0.7624271530658007, 'learning_rate': 8.462167141402359e-06, 'epoch': 28.33})
116
+ Step 11600, Loss: {'mse_loss': 0.01957695744931698, 'totoal_loss': 0.01957695744931698, 'data_time': 0.017252234974876046, 'model_time': 0.7152270348742604, 'learning_rate': 8.417247439589994e-06, 'epoch': 28.57})
117
+ Step 11700, Loss: {'mse_loss': 0.025690490379929543, 'totoal_loss': 0.025690490379929543, 'data_time': 0.0160145228728652, 'model_time': 0.7087319800630212, 'learning_rate': 8.371807853741978e-06, 'epoch': 28.82})
118
+ Step 11800, Loss: {'mse_loss': 0.028544435277581215, 'totoal_loss': 0.028544435277581215, 'data_time': 0.00035952101461589336, 'model_time': 0.7197721928823739, 'learning_rate': 8.325855559295663e-06, 'epoch': 29.06})
119
+ Step 11900, Loss: {'mse_loss': 0.014382269233465195, 'totoal_loss': 0.014382269233465195, 'data_time': 0.0004013048019260168, 'model_time': 0.8002329987939447, 'learning_rate': 8.279397812651042e-06, 'epoch': 29.31})
120
+ Step 12000, Loss: {'mse_loss': 0.025635989382863045, 'totoal_loss': 0.025635989382863045, 'data_time': 0.00038895499892532825, 'model_time': 0.7397445898968726, 'learning_rate': 8.232441950024864e-06, 'epoch': 29.56})
121
+ Step 12100, Loss: {'mse_loss': 0.02966630458831787, 'totoal_loss': 0.02966630458831787, 'data_time': 0.0005955339875072241, 'model_time': 0.7058785918634385, 'learning_rate': 8.184995386292166e-06, 'epoch': 29.8})
122
+ Step 12200, Loss: {'mse_loss': 0.024345172569155693, 'totoal_loss': 0.024345172569155693, 'data_time': 0.023787630023434758, 'model_time': 0.700573539128527, 'learning_rate': 8.137065613815381e-06, 'epoch': 30.05})
123
+ Step 12300, Loss: {'mse_loss': 0.015277746133506298, 'totoal_loss': 0.015277746133506298, 'data_time': 0.02392084989696741, 'model_time': 0.7016052820254117, 'learning_rate': 8.088660201261203e-06, 'epoch': 30.3})
124
+ Step 12400, Loss: {'mse_loss': 0.023316500708460808, 'totoal_loss': 0.023316500708460808, 'data_time': 0.022640272043645382, 'model_time': 0.7078994770999998, 'learning_rate': 8.039786792405404e-06, 'epoch': 30.54})
125
+ Step 12500, Loss: {'mse_loss': 0.03273051604628563, 'totoal_loss': 0.03273051604628563, 'data_time': 0.02068657404743135, 'model_time': 0.7598511388059705, 'learning_rate': 7.990453104925807e-06, 'epoch': 30.79})
126
+ Step 12600, Loss: {'mse_loss': 0.02668767422437668, 'totoal_loss': 0.02668767422437668, 'data_time': 0.00038927001878619194, 'model_time': 0.7094261969905347, 'learning_rate': 7.940666929183554e-06, 'epoch': 31.03})
127
+ Step 12700, Loss: {'mse_loss': 0.020870976150035858, 'totoal_loss': 0.020870976150035858, 'data_time': 0.000545186921954155, 'model_time': 0.7172528200317174, 'learning_rate': 7.89043612699294e-06, 'epoch': 31.28})
128
+ Step 12800, Loss: {'mse_loss': 0.03195575997233391, 'totoal_loss': 0.03195575997233391, 'data_time': 0.00046565313823521137, 'model_time': 0.7400876199826598, 'learning_rate': 7.839768630379917e-06, 'epoch': 31.53})
129
+ Step 12900, Loss: {'mse_loss': 0.02173027954995632, 'totoal_loss': 0.02173027954995632, 'data_time': 0.0003414170350879431, 'model_time': 0.7853850061073899, 'learning_rate': 7.788672440329562e-06, 'epoch': 31.77})
130
+ Step 13000, Loss: {'mse_loss': 0.037572529166936874, 'totoal_loss': 0.037572529166936874, 'data_time': 0.020792585099115968, 'model_time': 0.7019953879062086, 'learning_rate': 7.737155625522608e-06, 'epoch': 32.02})
131
+ Step 13100, Loss: {'mse_loss': 0.046386342495679855, 'totoal_loss': 0.046386342495679855, 'data_time': 0.017649804009124637, 'model_time': 0.7141026449389756, 'learning_rate': 7.685226321061318e-06, 'epoch': 32.27})
132
+ Step 13200, Loss: {'mse_loss': 0.016555016860365868, 'totoal_loss': 0.016555016860365868, 'data_time': 0.015775528037920594, 'model_time': 0.713018415030092, 'learning_rate': 7.632892727184844e-06, 'epoch': 32.51})
133
+ Step 13300, Loss: {'mse_loss': 0.030399609357118607, 'totoal_loss': 0.030399609357118607, 'data_time': 0.018281983910128474, 'model_time': 0.700525488005951, 'learning_rate': 7.580163107974335e-06, 'epoch': 32.76})
134
+ Step 13400, Loss: {'mse_loss': 0.027391508221626282, 'totoal_loss': 0.027391508221626282, 'data_time': 0.0004066170658916235, 'model_time': 0.775001420872286, 'learning_rate': 7.527045790047922e-06, 'epoch': 33.0})
135
+ Step 13500, Loss: {'mse_loss': 0.029866622760891914, 'totoal_loss': 0.029866622760891914, 'data_time': 0.0003977601882070303, 'model_time': 0.7155755180865526, 'learning_rate': 7.473549161245862e-06, 'epoch': 33.25})
136
+ Step 13600, Loss: {'mse_loss': 0.020266931504011154, 'totoal_loss': 0.020266931504011154, 'data_time': 0.0003663687966763973, 'model_time': 0.718240677844733, 'learning_rate': 7.419681669305998e-06, 'epoch': 33.5})
137
+ Step 13700, Loss: {'mse_loss': 0.024857094511389732, 'totoal_loss': 0.024857094511389732, 'data_time': 0.0004943490494042635, 'model_time': 0.7265746570192277, 'learning_rate': 7.365451820529756e-06, 'epoch': 33.74})
138
+ Step 13800, Loss: {'mse_loss': 0.02583807334303856, 'totoal_loss': 0.02583807334303856, 'data_time': 0.00029308791272342205, 'model_time': 0.6704450349789113, 'learning_rate': 7.310868178438909e-06, 'epoch': 33.99})
139
+ Step 13900, Loss: {'mse_loss': 0.02290818840265274, 'totoal_loss': 0.02290818840265274, 'data_time': 0.007925995858386159, 'model_time': 0.7302943300455809, 'learning_rate': 7.2559393624232985e-06, 'epoch': 34.24})
140
+ Step 14000, Loss: {'mse_loss': 0.01977955363690853, 'totoal_loss': 0.01977955363690853, 'data_time': 0.008132450981065631, 'model_time': 0.8099383600056171, 'learning_rate': 7.2006740463797296e-06, 'epoch': 34.48})
141
+ Step 14100, Loss: {'mse_loss': 0.025439243763685226, 'totoal_loss': 0.025439243763685226, 'data_time': 0.008912118151783943, 'model_time': 0.7125373741146177, 'learning_rate': 7.145080957342262e-06, 'epoch': 34.73})
142
+ Step 14200, Loss: {'mse_loss': 0.0266141165047884, 'totoal_loss': 0.0266141165047884, 'data_time': 0.007438525790348649, 'model_time': 0.8481716599781066, 'learning_rate': 7.0891688741041065e-06, 'epoch': 34.98})
143
+ Step 14300, Loss: {'mse_loss': 0.01769324578344822, 'totoal_loss': 0.01769324578344822, 'data_time': 0.0003728000447154045, 'model_time': 0.7568766679614782, 'learning_rate': 7.032946625831363e-06, 'epoch': 35.22})
144
+ Step 14400, Loss: {'mse_loss': 0.011891701258718967, 'totoal_loss': 0.011891701258718967, 'data_time': 0.0004010109696537256, 'model_time': 0.706685652025044, 'learning_rate': 6.976423090668781e-06, 'epoch': 35.47})
145
+ Step 14500, Loss: {'mse_loss': 0.029749825596809387, 'totoal_loss': 0.029749825596809387, 'data_time': 0.0003705511335283518, 'model_time': 0.7404526099562645, 'learning_rate': 6.919607194337806e-06, 'epoch': 35.71})
146
+ Step 14600, Loss: {'mse_loss': 0.018896980211138725, 'totoal_loss': 0.018896980211138725, 'data_time': 0.012197349919006228, 'model_time': 0.7266003778204322, 'learning_rate': 6.8625079087270976e-06, 'epoch': 35.96})
147
+ Step 14700, Loss: {'mse_loss': 0.023137923330068588, 'totoal_loss': 0.023137923330068588, 'data_time': 0.009178424021229148, 'model_time': 1.0221429369412363, 'learning_rate': 6.8051342504757714e-06, 'epoch': 36.21})
148
+ Step 14800, Loss: {'mse_loss': 0.01859973929822445, 'totoal_loss': 0.01859973929822445, 'data_time': 0.009394648019224405, 'model_time': 0.7348148750606924, 'learning_rate': 6.747495279549561e-06, 'epoch': 36.45})
149
+ Step 14900, Loss: {'mse_loss': 0.03870433196425438, 'totoal_loss': 0.03870433196425438, 'data_time': 0.007616240996867418, 'model_time': 0.7309791359584779, 'learning_rate': 6.6896000978101465e-06, 'epoch': 36.7})
150
+ Step 15000, Loss: {'mse_loss': 0.018701132386922836, 'totoal_loss': 0.018701132386922836, 'data_time': 0.00823324010707438, 'model_time': 0.7195668048225343, 'learning_rate': 6.631457847577869e-06, 'epoch': 36.95})
151
+ Step 15100, Loss: {'mse_loss': 0.021410617977380753, 'totoal_loss': 0.021410617977380753, 'data_time': 0.008303974056616426, 'model_time': 0.7225610548630357, 'learning_rate': 6.573077710188046e-06, 'epoch': 37.19})
152
+ Step 15200, Loss: {'mse_loss': 0.014057529158890247, 'totoal_loss': 0.014057529158890247, 'data_time': 0.008033946854993701, 'model_time': 0.7278524409048259, 'learning_rate': 6.5144689045411345e-06, 'epoch': 37.44})
153
+ Step 15300, Loss: {'mse_loss': 0.015041345730423927, 'totoal_loss': 0.015041345730423927, 'data_time': 0.011044648010283709, 'model_time': 0.7116687470115721, 'learning_rate': 6.455640685646961e-06, 'epoch': 37.68})
154
+ Step 15400, Loss: {'mse_loss': 0.015417148359119892, 'totoal_loss': 0.015417148359119892, 'data_time': 0.008852827828377485, 'model_time': 0.7213847949169576, 'learning_rate': 6.396602343163248e-06, 'epoch': 37.93})
155
+ Step 15500, Loss: {'mse_loss': 0.019077224656939507, 'totoal_loss': 0.019077224656939507, 'data_time': 0.014465580927208066, 'model_time': 0.7848714019637555, 'learning_rate': 6.337363199928669e-06, 'epoch': 38.18})
156
+ Step 15600, Loss: {'mse_loss': 0.01999373733997345, 'totoal_loss': 0.01999373733997345, 'data_time': 0.01856742100790143, 'model_time': 0.7342591150663793, 'learning_rate': 6.277932610490659e-06, 'epoch': 38.42})
157
+ Step 15700, Loss: {'mse_loss': 0.015301387757062912, 'totoal_loss': 0.015301387757062912, 'data_time': 0.016169711016118526, 'model_time': 0.7263609641231596, 'learning_rate': 6.218319959628234e-06, 'epoch': 38.67})
158
+ Step 15800, Loss: {'mse_loss': 0.024058056995272636, 'totoal_loss': 0.024058056995272636, 'data_time': 0.01515970891341567, 'model_time': 0.6894453098066151, 'learning_rate': 6.158534660870018e-06, 'epoch': 38.92})
159
+ Step 15900, Loss: {'mse_loss': 0.029955144971609116, 'totoal_loss': 0.029955144971609116, 'data_time': 0.0003623310476541519, 'model_time': 0.7569738640449941, 'learning_rate': 6.0985861550077345e-06, 'epoch': 39.16})
160
+ Step 16000, Loss: {'mse_loss': 0.0116480877622962, 'totoal_loss': 0.0116480877622962, 'data_time': 0.00038460991345345974, 'model_time': 0.7154500070028007, 'learning_rate': 6.0384839086054095e-06, 'epoch': 39.41})
161
+ Step 16100, Loss: {'mse_loss': 0.01577715016901493, 'totoal_loss': 0.01577715016901493, 'data_time': 0.000477322144433856, 'model_time': 0.7495669301133603, 'learning_rate': 5.978237412504472e-06, 'epoch': 39.66})
162
+ Step 16200, Loss: {'mse_loss': 0.019232643768191338, 'totoal_loss': 0.019232643768191338, 'data_time': 0.0003785379230976105, 'model_time': 0.8471893779933453, 'learning_rate': 5.917856180325059e-06, 'epoch': 39.9})
163
+ Step 16300, Loss: {'mse_loss': 0.01832568645477295, 'totoal_loss': 0.01832568645477295, 'data_time': 0.007853229064494371, 'model_time': 0.7165635891724378, 'learning_rate': 5.857349746963692e-06, 'epoch': 40.15})
164
+ Step 16400, Loss: {'mse_loss': 0.01770828291773796, 'totoal_loss': 0.01770828291773796, 'data_time': 0.00787251116707921, 'model_time': 0.7437100119423121, 'learning_rate': 5.796727667087611e-06, 'epoch': 40.39})
165
+ Step 16500, Loss: {'mse_loss': 0.018267177045345306, 'totoal_loss': 0.018267177045345306, 'data_time': 0.010278444038704038, 'model_time': 0.7144375909119844, 'learning_rate': 5.735999513625984e-06, 'epoch': 40.64})
166
+ Step 16600, Loss: {'mse_loss': 0.009750417433679104, 'totoal_loss': 0.009750417433679104, 'data_time': 0.008645473048090935, 'model_time': 0.7466528248041868, 'learning_rate': 5.675174876258223e-06, 'epoch': 40.89})
167
+ Step 16700, Loss: {'mse_loss': 0.011695374734699726, 'totoal_loss': 0.011695374734699726, 'data_time': 0.0003794680815190077, 'model_time': 0.748307203873992, 'learning_rate': 5.614263359899673e-06, 'epoch': 41.13})
168
+ Step 16800, Loss: {'mse_loss': 0.0248562041670084, 'totoal_loss': 0.0248562041670084, 'data_time': 0.0003752631600946188, 'model_time': 0.6961835019756109, 'learning_rate': 5.553274583184875e-06, 'epoch': 41.38})
169
+ Step 16900, Loss: {'mse_loss': 0.02838258072733879, 'totoal_loss': 0.02838258072733879, 'data_time': 0.0003750768955796957, 'model_time': 0.7448233929462731, 'learning_rate': 5.492218176948673e-06, 'epoch': 41.63})
170
+ Step 17000, Loss: {'mse_loss': 0.0265556238591671, 'totoal_loss': 0.0265556238591671, 'data_time': 0.0003771709743887186, 'model_time': 0.7306344921234995, 'learning_rate': 5.431103782705404e-06, 'epoch': 41.87})
171
+ Step 17100, Loss: {'mse_loss': 0.01497342623770237, 'totoal_loss': 0.01497342623770237, 'data_time': 0.02154613914899528, 'model_time': 0.7124078390188515, 'learning_rate': 5.369941051126377e-06, 'epoch': 42.12})
172
+ Step 17200, Loss: {'mse_loss': 0.013546117581427097, 'totoal_loss': 0.013546117581427097, 'data_time': 0.022761646891012788, 'model_time': 0.7091499159578234, 'learning_rate': 5.308739640515932e-06, 'epoch': 42.36})
173
+ Step 17300, Loss: {'mse_loss': 0.011065457947552204, 'totoal_loss': 0.011065457947552204, 'data_time': 0.02459709718823433, 'model_time': 0.8218077360652387, 'learning_rate': 5.24750921528627e-06, 'epoch': 42.61})
174
+ Step 17400, Loss: {'mse_loss': 0.02536107413470745, 'totoal_loss': 0.02536107413470745, 'data_time': 0.022894967813044786, 'model_time': 0.7339723368640989, 'learning_rate': 5.186259444431344e-06, 'epoch': 42.86})
175
+ Step 17500, Loss: {'mse_loss': 0.012279847636818886, 'totoal_loss': 0.012279847636818886, 'data_time': 0.0003542928025126457, 'model_time': 0.7116949448827654, 'learning_rate': 5.125e-06, 'epoch': 43.1})
176
+ Step 17600, Loss: {'mse_loss': 0.013664938509464264, 'totoal_loss': 0.013664938509464264, 'data_time': 0.00041391002014279366, 'model_time': 0.74455198016949, 'learning_rate': 5.063740555568656e-06, 'epoch': 43.35})
177
+ Step 17700, Loss: {'mse_loss': 0.02855905517935753, 'totoal_loss': 0.02855905517935753, 'data_time': 0.00037967110984027386, 'model_time': 0.754176203161478, 'learning_rate': 5.002490784713731e-06, 'epoch': 43.6})
178
+ Step 17800, Loss: {'mse_loss': 0.02094981260597706, 'totoal_loss': 0.02094981260597706, 'data_time': 0.00037023285403847694, 'model_time': 0.7361758330371231, 'learning_rate': 4.9412603594840695e-06, 'epoch': 43.84})
179
+ Step 17900, Loss: {'mse_loss': 0.016780732199549675, 'totoal_loss': 0.016780732199549675, 'data_time': 0.020262415055185556, 'model_time': 0.813506691949442, 'learning_rate': 4.8800589488736245e-06, 'epoch': 44.09})
180
+ Step 18000, Loss: {'mse_loss': 0.0317532941699028, 'totoal_loss': 0.0317532941699028, 'data_time': 0.019543001893907785, 'model_time': 0.7130007040686905, 'learning_rate': 4.818896217294598e-06, 'epoch': 44.33})
181
+ Step 18100, Loss: {'mse_loss': 0.02045614831149578, 'totoal_loss': 0.02045614831149578, 'data_time': 0.016112632118165493, 'model_time': 0.729854959063232, 'learning_rate': 4.757781823051329e-06, 'epoch': 44.58})
182
+ Step 18200, Loss: {'mse_loss': 0.019925037398934364, 'totoal_loss': 0.019925037398934364, 'data_time': 0.019654242089018226, 'model_time': 0.7365024739410728, 'learning_rate': 4.696725416815128e-06, 'epoch': 44.83})
183
+ Step 18300, Loss: {'mse_loss': 0.008304756134748459, 'totoal_loss': 0.008304756134748459, 'data_time': 0.007959038019180298, 'model_time': 0.701407911023125, 'learning_rate': 4.635736640100327e-06, 'epoch': 45.07})
184
+ Step 18400, Loss: {'mse_loss': 0.025339258834719658, 'totoal_loss': 0.025339258834719658, 'data_time': 0.007654113229364157, 'model_time': 0.6926779500208795, 'learning_rate': 4.574825123741778e-06, 'epoch': 45.32})
185
+ Step 18500, Loss: {'mse_loss': 0.013176611624658108, 'totoal_loss': 0.013176611624658108, 'data_time': 0.014238250907510519, 'model_time': 0.7217732770368457, 'learning_rate': 4.5140004863740165e-06, 'epoch': 45.57})
186
+ Step 18600, Loss: {'mse_loss': 0.015139386989176273, 'totoal_loss': 0.015139386989176273, 'data_time': 0.008258674992248416, 'model_time': 0.7094217429403216, 'learning_rate': 4.45327233291239e-06, 'epoch': 45.81})
187
+ Step 18700, Loss: {'mse_loss': 0.020663028582930565, 'totoal_loss': 0.020663028582930565, 'data_time': 0.016637054039165378, 'model_time': 0.7022591040004045, 'learning_rate': 4.39265025303631e-06, 'epoch': 46.06})
188
+ Step 18800, Loss: {'mse_loss': 0.021278314292430878, 'totoal_loss': 0.021278314292430878, 'data_time': 0.01708083413541317, 'model_time': 0.7261716697830707, 'learning_rate': 4.332143819674943e-06, 'epoch': 46.31})
189
+ Step 18900, Loss: {'mse_loss': 0.010303947143256664, 'totoal_loss': 0.010303947143256664, 'data_time': 0.019751363899558783, 'model_time': 0.7329925340600312, 'learning_rate': 4.271762587495529e-06, 'epoch': 46.55})
190
+ Step 19000, Loss: {'mse_loss': 0.013718162663280964, 'totoal_loss': 0.013718162663280964, 'data_time': 0.015434677014127374, 'model_time': 0.7038404610939324, 'learning_rate': 4.2115160913945914e-06, 'epoch': 46.8})
191
+ Step 19100, Loss: {'mse_loss': 0.020354095846414566, 'totoal_loss': 0.020354095846414566, 'data_time': 0.00910279806703329, 'model_time': 0.7413195369299501, 'learning_rate': 4.151413844992267e-06, 'epoch': 47.04})
192
+ Step 19200, Loss: {'mse_loss': 0.011256391182541847, 'totoal_loss': 0.011256391182541847, 'data_time': 0.010782763129100204, 'model_time': 0.6929229369852692, 'learning_rate': 4.091465339129985e-06, 'epoch': 47.29})
193
+ Step 19300, Loss: {'mse_loss': 0.014204228296875954, 'totoal_loss': 0.014204228296875954, 'data_time': 0.023260082118213177, 'model_time': 0.6972175119444728, 'learning_rate': 4.031680040371768e-06, 'epoch': 47.54})
194
+ Step 19400, Loss: {'mse_loss': 0.012248450890183449, 'totoal_loss': 0.012248450890183449, 'data_time': 0.02129370905458927, 'model_time': 0.7124215548392385, 'learning_rate': 3.972067389509344e-06, 'epoch': 47.78})
195
+ Step 19500, Loss: {'mse_loss': 0.015466379933059216, 'totoal_loss': 0.015466379933059216, 'data_time': 0.022414359962567687, 'model_time': 0.8051021131686866, 'learning_rate': 3.912636800071335e-06, 'epoch': 48.03})
196
+ Step 19600, Loss: {'mse_loss': 0.01794959045946598, 'totoal_loss': 0.01794959045946598, 'data_time': 0.022515577962622046, 'model_time': 0.7456794278696179, 'learning_rate': 3.853397656836754e-06, 'epoch': 48.28})
197
+ Step 19700, Loss: {'mse_loss': 0.013880395330488682, 'totoal_loss': 0.013880395330488682, 'data_time': 0.029104060027748346, 'model_time': 0.7072040208149701, 'learning_rate': 3.7943593143530404e-06, 'epoch': 48.52})
198
+ Step 19800, Loss: {'mse_loss': 0.016714725643396378, 'totoal_loss': 0.016714725643396378, 'data_time': 0.023339272011071444, 'model_time': 0.7234817971475422, 'learning_rate': 3.735531095458867e-06, 'epoch': 48.77})
199
+ Step 19900, Loss: {'mse_loss': 0.021030666306614876, 'totoal_loss': 0.021030666306614876, 'data_time': 0.00037240819074213505, 'model_time': 0.7824267849791795, 'learning_rate': 3.6769222898119562e-06, 'epoch': 49.01})
200
+ Step 20000, Loss: {'mse_loss': 0.01666400581598282, 'totoal_loss': 0.01666400581598282, 'data_time': 0.00043420493602752686, 'model_time': 0.8026857220102102, 'learning_rate': 3.618542152422132e-06, 'epoch': 49.26})
201
+ Step 20100, Loss: {'mse_loss': 0.02279297448694706, 'totoal_loss': 0.02279297448694706, 'data_time': 0.0004121169913560152, 'model_time': 0.7401886719744653, 'learning_rate': 3.560399902189855e-06, 'epoch': 49.51})
202
+ Step 20200, Loss: {'mse_loss': 0.01290601771324873, 'totoal_loss': 0.01290601771324873, 'data_time': 0.0004009329713881016, 'model_time': 0.7427148481365293, 'learning_rate': 3.502504720450441e-06, 'epoch': 49.75})
203
+ Step 20300, Loss: {'mse_loss': 0.009428444318473339, 'totoal_loss': 0.009428444318473339, 'data_time': 0.9820838659070432, 'model_time': 0.6739615038968623, 'learning_rate': 3.4448657495242304e-06, 'epoch': 50.0})
204
+ Step 20400, Loss: {'mse_loss': 0.031576044857501984, 'totoal_loss': 0.031576044857501984, 'data_time': 0.016323868883773685, 'model_time': 0.6971924810204655, 'learning_rate': 3.387492091272904e-06, 'epoch': 50.25})
205
+ Step 20500, Loss: {'mse_loss': 0.010348265059292316, 'totoal_loss': 0.010348265059292316, 'data_time': 0.015833061886951327, 'model_time': 0.7290261660236865, 'learning_rate': 3.3303928056621955e-06, 'epoch': 50.49})
206
+ Step 20600, Loss: {'mse_loss': 0.010673248209059238, 'totoal_loss': 0.010673248209059238, 'data_time': 0.0163497319445014, 'model_time': 0.7147036429960281, 'learning_rate': 3.2735769093312202e-06, 'epoch': 50.74})
207
+ Step 20700, Loss: {'mse_loss': 0.02115103229880333, 'totoal_loss': 0.02115103229880333, 'data_time': 0.0161986721213907, 'model_time': 0.6784804279450327, 'learning_rate': 3.217053374168639e-06, 'epoch': 50.99})
208
+ Step 20800, Loss: {'mse_loss': 0.0071529364213347435, 'totoal_loss': 0.0071529364213347435, 'data_time': 0.0004379821475595236, 'model_time': 0.770684408955276, 'learning_rate': 3.1608311258958953e-06, 'epoch': 51.23})
209
+ Step 20900, Loss: {'mse_loss': 0.020442675799131393, 'totoal_loss': 0.020442675799131393, 'data_time': 0.00039967894554138184, 'model_time': 0.7463352209888399, 'learning_rate': 3.10491904265774e-06, 'epoch': 51.48})
210
+ Step 21000, Loss: {'mse_loss': 0.009985617361962795, 'totoal_loss': 0.009985617361962795, 'data_time': 0.0003901990130543709, 'model_time': 0.7321701680775732, 'learning_rate': 3.0493259536202714e-06, 'epoch': 51.72})
211
+ Step 21100, Loss: {'mse_loss': 0.022055145353078842, 'totoal_loss': 0.022055145353078842, 'data_time': 0.0004053411539644003, 'model_time': 0.7439921500626951, 'learning_rate': 2.9940606375767038e-06, 'epoch': 51.97})
212
+ Step 21200, Loss: {'mse_loss': 0.01431896910071373, 'totoal_loss': 0.01431896910071373, 'data_time': 0.017163420096039772, 'model_time': 0.7052869028411806, 'learning_rate': 2.939131821561094e-06, 'epoch': 52.22})
213
+ Step 21300, Loss: {'mse_loss': 0.01754147745668888, 'totoal_loss': 0.01754147745668888, 'data_time': 0.013542308006435633, 'model_time': 0.7339864610694349, 'learning_rate': 2.8845481794702473e-06, 'epoch': 52.46})
214
+ Step 21400, Loss: {'mse_loss': 0.020770324394106865, 'totoal_loss': 0.020770324394106865, 'data_time': 0.015823472058400512, 'model_time': 0.698293583933264, 'learning_rate': 2.830318330694004e-06, 'epoch': 52.71})
215
+ Step 21500, Loss: {'mse_loss': 0.010911816731095314, 'totoal_loss': 0.010911816731095314, 'data_time': 0.0168205751106143, 'model_time': 0.7118755439296365, 'learning_rate': 2.7764508387541378e-06, 'epoch': 52.96})
216
+ Step 21600, Loss: {'mse_loss': 0.008115197531878948, 'totoal_loss': 0.008115197531878948, 'data_time': 0.0003766969311982393, 'model_time': 0.7066892480943352, 'learning_rate': 2.7229542099520797e-06, 'epoch': 53.2})
217
+ Step 21700, Loss: {'mse_loss': 0.01401301845908165, 'totoal_loss': 0.01401301845908165, 'data_time': 0.0003664889372885227, 'model_time': 0.7132211979478598, 'learning_rate': 2.669836892025666e-06, 'epoch': 53.45})
218
+ Step 21800, Loss: {'mse_loss': 0.009494258090853691, 'totoal_loss': 0.009494258090853691, 'data_time': 0.00035522901453077793, 'model_time': 0.7449754429981112, 'learning_rate': 2.6171072728151557e-06, 'epoch': 53.69})
219
+ Step 21900, Loss: {'mse_loss': 0.0070909857749938965, 'totoal_loss': 0.0070909857749938965, 'data_time': 0.00036875996738672256, 'model_time': 0.7337070610374212, 'learning_rate': 2.5647736789386828e-06, 'epoch': 53.94})
220
+ Step 22000, Loss: {'mse_loss': 0.02185704931616783, 'totoal_loss': 0.02185704931616783, 'data_time': 0.010818806011229753, 'model_time': 0.7250805529765785, 'learning_rate': 2.5128443744773904e-06, 'epoch': 54.19})
221
+ Step 22100, Loss: {'mse_loss': 0.01095609925687313, 'totoal_loss': 0.01095609925687313, 'data_time': 0.00876865186728537, 'model_time': 0.7495365471113473, 'learning_rate': 2.4613275596704386e-06, 'epoch': 54.43})
222
+ Step 22200, Loss: {'mse_loss': 0.013484776951372623, 'totoal_loss': 0.013484776951372623, 'data_time': 0.010241223033517599, 'model_time': 0.7723591290414333, 'learning_rate': 2.4102313696200853e-06, 'epoch': 54.68})
223
+ Step 22300, Loss: {'mse_loss': 0.011216775514185429, 'totoal_loss': 0.011216775514185429, 'data_time': 0.007884606020525098, 'model_time': 0.7431206901092082, 'learning_rate': 2.359563873007063e-06, 'epoch': 54.93})
224
+ Step 22400, Loss: {'mse_loss': 0.006521548610180616, 'totoal_loss': 0.006521548610180616, 'data_time': 0.0003614260349422693, 'model_time': 0.7676553048659116, 'learning_rate': 2.3093330708164465e-06, 'epoch': 55.17})
225
+ Step 22500, Loss: {'mse_loss': 0.01780938170850277, 'totoal_loss': 0.01780938170850277, 'data_time': 0.0003538660239428282, 'model_time': 0.7073406011331826, 'learning_rate': 2.2595468950741943e-06, 'epoch': 55.42})
226
+ Step 22600, Loss: {'mse_loss': 0.010430563241243362, 'totoal_loss': 0.010430563241243362, 'data_time': 0.00035950704477727413, 'model_time': 0.7553994341287762, 'learning_rate': 2.2102132075945974e-06, 'epoch': 55.67})
227
+ Step 22700, Loss: {'mse_loss': 0.021443745121359825, 'totoal_loss': 0.021443745121359825, 'data_time': 0.0008814739994704723, 'model_time': 0.7945175571367145, 'learning_rate': 2.1613397987388e-06, 'epoch': 55.91})
228
+ Step 22800, Loss: {'mse_loss': 0.015360334888100624, 'totoal_loss': 0.015360334888100624, 'data_time': 0.01782261999323964, 'model_time': 0.7167775060515851, 'learning_rate': 2.1129343861846207e-06, 'epoch': 56.16})
229
+ Step 22900, Loss: {'mse_loss': 0.008795405738055706, 'totoal_loss': 0.008795405738055706, 'data_time': 0.024724556133151054, 'model_time': 0.7181175090372562, 'learning_rate': 2.065004613707836e-06, 'epoch': 56.4})
230
+ Step 23000, Loss: {'mse_loss': 0.011659367009997368, 'totoal_loss': 0.011659367009997368, 'data_time': 0.01754684094339609, 'model_time': 0.7867650489788502, 'learning_rate': 2.0175580499751375e-06, 'epoch': 56.65})
231
+ Step 23100, Loss: {'mse_loss': 0.01274788100272417, 'totoal_loss': 0.01274788100272417, 'data_time': 0.02084320201538503, 'model_time': 0.7760199140757322, 'learning_rate': 1.9706021873489604e-06, 'epoch': 56.9})
232
+ Step 23200, Loss: {'mse_loss': 0.009380890987813473, 'totoal_loss': 0.009380890987813473, 'data_time': 0.01080298493616283, 'model_time': 0.7227684969548136, 'learning_rate': 1.924144440704338e-06, 'epoch': 57.14})
233
+ Step 23300, Loss: {'mse_loss': 0.009824824519455433, 'totoal_loss': 0.009824824519455433, 'data_time': 0.010194679955020547, 'model_time': 0.7120574479922652, 'learning_rate': 1.8781921462580238e-06, 'epoch': 57.39})
234
+ Step 23400, Loss: {'mse_loss': 0.015321200713515282, 'totoal_loss': 0.015321200713515282, 'data_time': 0.013953470857813954, 'model_time': 0.7349774460308254, 'learning_rate': 1.8327525604100058e-06, 'epoch': 57.64})
235
+ Step 23500, Loss: {'mse_loss': 0.0206289179623127, 'totoal_loss': 0.0206289179623127, 'data_time': 0.007812130032107234, 'model_time': 0.7187985249329358, 'learning_rate': 1.7878328585976426e-06, 'epoch': 57.88})
236
+ Step 23600, Loss: {'mse_loss': 0.01191056426614523, 'totoal_loss': 0.01191056426614523, 'data_time': 0.011611202964559197, 'model_time': 0.7335561488289386, 'learning_rate': 1.7434401341625765e-06, 'epoch': 58.13})
237
+ Step 23700, Loss: {'mse_loss': 0.02400338463485241, 'totoal_loss': 0.02400338463485241, 'data_time': 0.008833944099023938, 'model_time': 0.7436612921301275, 'learning_rate': 1.6995813972306108e-06, 'epoch': 58.37})
238
+ Step 23800, Loss: {'mse_loss': 0.015359909273684025, 'totoal_loss': 0.015359909273684025, 'data_time': 0.011173238046467304, 'model_time': 0.7174920269753784, 'learning_rate': 1.656263573604734e-06, 'epoch': 58.62})
239
+ Step 23900, Loss: {'mse_loss': 0.020095227286219597, 'totoal_loss': 0.020095227286219597, 'data_time': 0.009649902116507292, 'model_time': 0.7140730200335383, 'learning_rate': 1.613493503671454e-06, 'epoch': 58.87})
240
+ Step 24000, Loss: {'mse_loss': 0.024258505553007126, 'totoal_loss': 0.024258505553007126, 'data_time': 0.0004289208445698023, 'model_time': 0.7290364520158619, 'learning_rate': 1.5712779413206198e-06, 'epoch': 59.11})
241
+ Step 24100, Loss: {'mse_loss': 0.020031064748764038, 'totoal_loss': 0.020031064748764038, 'data_time': 0.00036045792512595654, 'model_time': 0.7455721129663289, 'learning_rate': 1.5296235528789028e-06, 'epoch': 59.36})
242
+ Step 24200, Loss: {'mse_loss': 0.007835417054593563, 'totoal_loss': 0.007835417054593563, 'data_time': 0.00037881103344261646, 'model_time': 0.7248616979923099, 'learning_rate': 1.4885369160571124e-06, 'epoch': 59.61})
243
+ Step 24300, Loss: {'mse_loss': 0.018684610724449158, 'totoal_loss': 0.018684610724449158, 'data_time': 0.0004481819923967123, 'model_time': 0.7287372020073235, 'learning_rate': 1.4480245189114938e-06, 'epoch': 59.85})
244
+ Step 24400, Loss: {'mse_loss': 0.028955252841114998, 'totoal_loss': 0.028955252841114998, 'data_time': 0.009070722851902246, 'model_time': 0.8107380501460284, 'learning_rate': 1.408092758819191e-06, 'epoch': 60.1})
245
+ Step 24500, Loss: {'mse_loss': 0.010994899086654186, 'totoal_loss': 0.010994899086654186, 'data_time': 0.00768634001724422, 'model_time': 0.805657935095951, 'learning_rate': 1.368747941468028e-06, 'epoch': 60.34})
246
+ Step 24600, Loss: {'mse_loss': 0.009532871656119823, 'totoal_loss': 0.009532871656119823, 'data_time': 0.009409622987732291, 'model_time': 0.7668446230236441, 'learning_rate': 1.3299962798607614e-06, 'epoch': 60.59})
247
+ Step 24700, Loss: {'mse_loss': 0.01617121323943138, 'totoal_loss': 0.01617121323943138, 'data_time': 0.007793287048116326, 'model_time': 0.7504715989343822, 'learning_rate': 1.2918438933339827e-06, 'epoch': 60.84})
248
+ Step 24800, Loss: {'mse_loss': 0.0092688649892807, 'totoal_loss': 0.0092688649892807, 'data_time': 0.0004069339483976364, 'model_time': 0.7088117899838835, 'learning_rate': 1.2542968065918027e-06, 'epoch': 61.08})
249
+ Step 24900, Loss: {'mse_loss': 0.013601751066744328, 'totoal_loss': 0.013601751066744328, 'data_time': 0.0003868809435516596, 'model_time': 0.7031529420055449, 'learning_rate': 1.217360948754476e-06, 'epoch': 61.33})
250
+ Step 25000, Loss: {'mse_loss': 0.01992698758840561, 'totoal_loss': 0.01992698758840561, 'data_time': 0.00038096681237220764, 'model_time': 0.728954175952822, 'learning_rate': 1.1810421524221318e-06, 'epoch': 61.58})
251
+ Step 25100, Loss: {'mse_loss': 0.019805453717708588, 'totoal_loss': 0.019805453717708588, 'data_time': 0.0003528858069330454, 'model_time': 0.7991924760863185, 'learning_rate': 1.1453461527537284e-06, 'epoch': 61.82})
252
+ Step 25200, Loss: {'mse_loss': 0.008879004046320915, 'totoal_loss': 0.008879004046320915, 'data_time': 0.01571311498992145, 'model_time': 0.7290069148875773, 'learning_rate': 1.1102785865614162e-06, 'epoch': 62.07})
253
+ Step 25300, Loss: {'mse_loss': 0.007845735177397728, 'totoal_loss': 0.007845735177397728, 'data_time': 0.01500013517215848, 'model_time': 0.7593469640705734, 'learning_rate': 1.0758449914204127e-06, 'epoch': 62.32})
254
+ Step 25400, Loss: {'mse_loss': 0.008130653761327267, 'totoal_loss': 0.008130653761327267, 'data_time': 0.01621094881556928, 'model_time': 0.7802583551965654, 'learning_rate': 1.0420508047945595e-06, 'epoch': 62.56})
255
+ Step 25500, Loss: {'mse_loss': 0.0069813779555261135, 'totoal_loss': 0.0069813779555261135, 'data_time': 0.018032275140285492, 'model_time': 0.8181706359609962, 'learning_rate': 1.0089013631776776e-06, 'epoch': 62.81})
256
+ Step 25600, Loss: {'mse_loss': 0.011600254103541374, 'totoal_loss': 0.011600254103541374, 'data_time': 0.0003884390462189913, 'model_time': 0.7241412629373372, 'learning_rate': 9.76401901250878e-07, 'epoch': 63.05})
257
+ Step 25700, Loss: {'mse_loss': 0.008471202105283737, 'totoal_loss': 0.008471202105283737, 'data_time': 0.00048508401960134506, 'model_time': 0.7228731629438698, 'learning_rate': 9.44557551055946e-07, 'epoch': 63.3})
258
+ Step 25800, Loss: {'mse_loss': 0.009639984928071499, 'totoal_loss': 0.009639984928071499, 'data_time': 0.0003763209097087383, 'model_time': 0.7696685080882162, 'learning_rate': 9.13373341184928e-07, 'epoch': 63.55})
259
+ Step 25900, Loss: {'mse_loss': 0.011000704020261765, 'totoal_loss': 0.011000704020261765, 'data_time': 0.0003759248647838831, 'model_time': 0.7454746591392905, 'learning_rate': 8.828541959860623e-07, 'epoch': 63.79})
260
+ Step 26000, Loss: {'mse_loss': 0.011861986480653286, 'totoal_loss': 0.011861986480653286, 'data_time': 0.015051259892061353, 'model_time': 0.6987002808600664, 'learning_rate': 8.530049347861661e-07, 'epoch': 64.04})
261
+ Step 26100, Loss: {'mse_loss': 0.006830914877355099, 'totoal_loss': 0.006830914877355099, 'data_time': 0.0215705509763211, 'model_time': 0.8003074189182371, 'learning_rate': 8.238302711296034e-07, 'epoch': 64.29})
262
+ Step 26200, Loss: {'mse_loss': 0.02392413280904293, 'totoal_loss': 0.02392413280904293, 'data_time': 0.015573075041174889, 'model_time': 0.7662678249180317, 'learning_rate': 7.953348120339707e-07, 'epoch': 64.53})
263
+ Step 26300, Loss: {'mse_loss': 0.011648870073258877, 'totoal_loss': 0.011648870073258877, 'data_time': 0.01856015482917428, 'model_time': 0.6966376979835331, 'learning_rate': 7.675230572625892e-07, 'epoch': 64.78})
264
+ Step 26400, Loss: {'mse_loss': 0.01502408180385828, 'totoal_loss': 0.01502408180385828, 'data_time': 0.00829349784180522, 'model_time': 0.7855155610013753, 'learning_rate': 7.40399398613941e-07, 'epoch': 65.02})
265
+ Step 26500, Loss: {'mse_loss': 0.014661876484751701, 'totoal_loss': 0.014661876484751701, 'data_time': 0.008751810062676668, 'model_time': 0.6903550089336932, 'learning_rate': 7.139681192281557e-07, 'epoch': 65.27})
266
+ Step 26600, Loss: {'mse_loss': 0.011548830196261406, 'totoal_loss': 0.011548830196261406, 'data_time': 0.008616209030151367, 'model_time': 0.8094347191508859, 'learning_rate': 6.882333929106462e-07, 'epoch': 65.52})
267
+ Step 26700, Loss: {'mse_loss': 0.007855038158595562, 'totoal_loss': 0.007855038158595562, 'data_time': 0.008421869948506355, 'model_time': 0.7007406740449369, 'learning_rate': 6.63199283473027e-07, 'epoch': 65.76})
268
+ Step 26800, Loss: {'mse_loss': 0.01077162567526102, 'totoal_loss': 0.01077162567526102, 'data_time': 0.03259019018150866, 'model_time': 0.7640705881640315, 'learning_rate': 6.388697440913819e-07, 'epoch': 66.01})
269
+ Step 26900, Loss: {'mse_loss': 0.01550968922674656, 'totoal_loss': 0.01550968922674656, 'data_time': 0.021617025835439563, 'model_time': 0.7432145639322698, 'learning_rate': 6.152486166820176e-07, 'epoch': 66.26})
270
+ Step 27000, Loss: {'mse_loss': 0.02115754596889019, 'totoal_loss': 0.02115754596889019, 'data_time': 0.02447567693889141, 'model_time': 0.7092975450213999, 'learning_rate': 5.923396312947748e-07, 'epoch': 66.5})
271
+ Step 27100, Loss: {'mse_loss': 0.005587951745837927, 'totoal_loss': 0.005587951745837927, 'data_time': 0.02751921396702528, 'model_time': 0.7431880650110543, 'learning_rate': 5.701464055240163e-07, 'epoch': 66.75})
272
+ Step 27200, Loss: {'mse_loss': 0.014418046921491623, 'totoal_loss': 0.014418046921491623, 'data_time': 0.01549792685545981, 'model_time': 0.6615661662071943, 'learning_rate': 5.48672443937364e-07, 'epoch': 67.0})
273
+ Step 27300, Loss: {'mse_loss': 0.00875219888985157, 'totoal_loss': 0.00875219888985157, 'data_time': 0.0004631779156625271, 'model_time': 0.7072878400795162, 'learning_rate': 5.279211375222855e-07, 'epoch': 67.24})
274
+ Step 27400, Loss: {'mse_loss': 0.020530937239527702, 'totoal_loss': 0.020530937239527702, 'data_time': 0.0004010959528386593, 'model_time': 0.7498098080977798, 'learning_rate': 5.07895763150622e-07, 'epoch': 67.49})
275
+ Step 27500, Loss: {'mse_loss': 0.008368794806301594, 'totoal_loss': 0.008368794806301594, 'data_time': 0.00041911518201231956, 'model_time': 0.7093565620016307, 'learning_rate': 4.885994830611266e-07, 'epoch': 67.73})
276
+ Step 27600, Loss: {'mse_loss': 0.02483280375599861, 'totoal_loss': 0.02483280375599861, 'data_time': 0.0003436370752751827, 'model_time': 0.6860337120015174, 'learning_rate': 4.700353443601156e-07, 'epoch': 67.98})
277
+ Step 27700, Loss: {'mse_loss': 0.005498705431818962, 'totoal_loss': 0.005498705431818962, 'data_time': 0.022062793839722872, 'model_time': 0.8176195330452174, 'learning_rate': 4.5220627854029224e-07, 'epoch': 68.23})
278
+ Step 27800, Loss: {'mse_loss': 0.015394811518490314, 'totoal_loss': 0.015394811518490314, 'data_time': 0.021487282123416662, 'model_time': 0.7166826829779893, 'learning_rate': 4.351151010178311e-07, 'epoch': 68.47})
279
+ Step 27900, Loss: {'mse_loss': 0.009011371061205864, 'totoal_loss': 0.009011371061205864, 'data_time': 0.023133588023483753, 'model_time': 0.7034987939987332, 'learning_rate': 4.1876451068778983e-07, 'epoch': 68.72})
280
+ Step 28000, Loss: {'mse_loss': 0.019302360713481903, 'totoal_loss': 0.019302360713481903, 'data_time': 0.02398418798111379, 'model_time': 0.7436025249771774, 'learning_rate': 4.031570894979235e-07, 'epoch': 68.97})
281
+ Step 28100, Loss: {'mse_loss': 0.0090206079185009, 'totoal_loss': 0.0090206079185009, 'data_time': 0.0003608639817684889, 'model_time': 0.8301883249077946, 'learning_rate': 3.882953020409644e-07, 'epoch': 69.21})
282
+ Step 28200, Loss: {'mse_loss': 0.01002874132245779, 'totoal_loss': 0.01002874132245779, 'data_time': 0.0003614898305386305, 'model_time': 0.7638097789604217, 'learning_rate': 3.74181495165436e-07, 'epoch': 69.46})
283
+ Step 28300, Loss: {'mse_loss': 0.015666676685214043, 'totoal_loss': 0.015666676685214043, 'data_time': 0.00038773403503000736, 'model_time': 0.7953290028963238, 'learning_rate': 3.608178976050568e-07, 'epoch': 69.7})
284
+ Step 28400, Loss: {'mse_loss': 0.014310546219348907, 'totoal_loss': 0.014310546219348907, 'data_time': 0.00040944991633296013, 'model_time': 0.7011462489608675, 'learning_rate': 3.482066196267966e-07, 'epoch': 69.95})
285
+ Step 28500, Loss: {'mse_loss': 0.014213377609848976, 'totoal_loss': 0.014213377609848976, 'data_time': 0.015396759146824479, 'model_time': 0.7029460740741342, 'learning_rate': 3.36349652697643e-07, 'epoch': 70.2})
286
+ Step 28600, Loss: {'mse_loss': 0.010482218116521835, 'totoal_loss': 0.010482218116521835, 'data_time': 0.01696360600180924, 'model_time': 0.7318485318683088, 'learning_rate': 3.2524886917012403e-07, 'epoch': 70.44})
287
+ Step 28700, Loss: {'mse_loss': 0.013912970200181007, 'totoal_loss': 0.013912970200181007, 'data_time': 0.015858259052038193, 'model_time': 0.8268245549406856, 'learning_rate': 3.149060219866433e-07, 'epoch': 70.69})
288
+ Step 28800, Loss: {'mse_loss': 0.00668303482234478, 'totoal_loss': 0.00668303482234478, 'data_time': 0.014909023884683847, 'model_time': 0.746030782116577, 'learning_rate': 3.053227444026695e-07, 'epoch': 70.94})
289
+ Step 28900, Loss: {'mse_loss': 0.011167606338858604, 'totoal_loss': 0.011167606338858604, 'data_time': 0.007958086906000972, 'model_time': 0.7184424661099911, 'learning_rate': 2.9650054972882544e-07, 'epoch': 71.18})
290
+ Step 29000, Loss: {'mse_loss': 0.006868368946015835, 'totoal_loss': 0.006868368946015835, 'data_time': 0.008600008906796575, 'model_time': 0.710648369975388, 'learning_rate': 2.884408310919209e-07, 'epoch': 71.43})
291
+ Step 29100, Loss: {'mse_loss': 0.007798769976943731, 'totoal_loss': 0.007798769976943731, 'data_time': 0.00800721812993288, 'model_time': 0.7440413110889494, 'learning_rate': 2.8114486121495906e-07, 'epoch': 71.67})
292
+ Step 29200, Loss: {'mse_loss': 0.011722920462489128, 'totoal_loss': 0.011722920462489128, 'data_time': 0.008884510956704617, 'model_time': 0.7068280321545899, 'learning_rate': 2.746137922161617e-07, 'epoch': 71.92})
293
+ Step 29300, Loss: {'mse_loss': 0.021382102742791176, 'totoal_loss': 0.021382102742791176, 'data_time': 0.01605472294613719, 'model_time': 0.7333722249604762, 'learning_rate': 2.68848655427034e-07, 'epoch': 72.17})
294
+ Step 29400, Loss: {'mse_loss': 0.008628069423139095, 'totoal_loss': 0.008628069423139095, 'data_time': 0.008354866178706288, 'model_time': 0.7136429829988629, 'learning_rate': 2.638503612295071e-07, 'epoch': 72.41})
295
+ Step 29500, Loss: {'mse_loss': 0.015260903164744377, 'totoal_loss': 0.015260903164744377, 'data_time': 0.00897857896052301, 'model_time': 0.7169413829687983, 'learning_rate': 2.5961969891217614e-07, 'epoch': 72.66})
296
+ Step 29600, Loss: {'mse_loss': 0.008368764072656631, 'totoal_loss': 0.008368764072656631, 'data_time': 0.010701634222641587, 'model_time': 0.8198181528132409, 'learning_rate': 2.5615733654566483e-07, 'epoch': 72.91})
297
+ Step 29700, Loss: {'mse_loss': 0.023195289075374603, 'totoal_loss': 0.023195289075374603, 'data_time': 0.0004705549217760563, 'model_time': 0.726234728936106, 'learning_rate': 2.5346382087712764e-07, 'epoch': 73.15})
298
+ Step 29800, Loss: {'mse_loss': 0.01754995994269848, 'totoal_loss': 0.01754995994269848, 'data_time': 0.0003658859059214592, 'model_time': 0.7515040100552142, 'learning_rate': 2.515395772439128e-07, 'epoch': 73.4})
299
+ Step 29900, Loss: {'mse_loss': 0.009065007790923119, 'totoal_loss': 0.009065007790923119, 'data_time': 0.00037251715548336506, 'model_time': 0.7114222678355873, 'learning_rate': 2.5038490950639644e-07, 'epoch': 73.65})
300
+ Step 30000, Loss: {'mse_loss': 0.01075481716543436, 'totoal_loss': 0.01075481716543436, 'mse_score': 0.001062778356884207, 'data_time': 0.0003910830710083246, 'model_time': 0.7583394239190966, 'learning_rate': 2.5e-07, 'epoch': 73.89})
libero_object_2B/starvla_qwen_dual/config.json ADDED
@@ -0,0 +1,129 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "run_id": "starvla_qwen_dual",
3
+ "run_root_dir": "/share/project/baishuanghao/code/starVLA/pretrained_models_2/libero_object_2B",
4
+ "seed": 42,
5
+ "trackers": [
6
+ "jsonl",
7
+ "wandb"
8
+ ],
9
+ "wandb_project": "starVLA",
10
+ "is_debug": false,
11
+ "enable_mee": false,
12
+ "mee_weight": 0.01,
13
+ "framework": {
14
+ "name": "Qwen-Dual",
15
+ "qwenvl": {
16
+ "base_vlm": "/share/project/baishuanghao/code/HLM-VLA/models/Qwen3-VL-2B-Instruct",
17
+ "attn_implementation": "flash_attention_2",
18
+ "vl_hidden_dim": 2048
19
+ },
20
+ "dino": {
21
+ "dino_backbone": "dinov2_vits14"
22
+ },
23
+ "action_model": {
24
+ "action_model_type": "DiT-B",
25
+ "action_hidden_dim": 2,
26
+ "hidden_size": 1024,
27
+ "add_pos_embed": true,
28
+ "max_seq_len": 1024,
29
+ "action_dim": 7,
30
+ "state_dim": 7,
31
+ "future_action_window_size": 7,
32
+ "action_horizon": 8,
33
+ "past_action_window_size": 0,
34
+ "repeated_diffusion_steps": 8,
35
+ "noise_beta_alpha": 1.5,
36
+ "noise_beta_beta": 1.0,
37
+ "noise_s": 0.999,
38
+ "num_timestep_buckets": 1000,
39
+ "num_inference_timesteps": 4,
40
+ "num_target_vision_tokens": 32,
41
+ "diffusion_model_cfg": {
42
+ "cross_attention_dim": 2048,
43
+ "dropout": 0.2,
44
+ "final_dropout": true,
45
+ "interleave_self_attention": true,
46
+ "norm_type": "ada_norm",
47
+ "num_layers": 16,
48
+ "output_dim": 1024,
49
+ "positional_embeddings": null
50
+ }
51
+ },
52
+ "reduce_in_full_precision": true
53
+ },
54
+ "datasets": {
55
+ "vlm_data": {
56
+ "dataset_py": "vlm_datasets",
57
+ "dataformat": "llava_json",
58
+ "dataset_use": "asv2_conversation_en,asv2_detailed_description_en,asv2_region_captioning_en,coco_internvl_longcap_en,coco_karpathy_train_567_en,coco_negative_gpt4o_en,coco_poetry_zh,coco_rem_en_zh,cocorem_exist_yorn_en,cocotextv2_en,cocotextv2_gpt4o_en,okvqa_en,refcoco_grounding_aug_en,refcoco_grounding_en,tallyqa_coco_en,toloka_grounding_aug_en,vqav2_en,vsr_en",
59
+ "eval_dataset": "aokvqa_cauldron_llava_format",
60
+ "data_flatten": false,
61
+ "base_interval": 2,
62
+ "max_pixels": 12845056,
63
+ "min_pixels": 3136,
64
+ "model_max_length": 2048,
65
+ "model_type": "qwen2.5vl",
66
+ "per_device_batch_size": 4
67
+ },
68
+ "vla_data": {
69
+ "dataset_py": "lerobot_datasets",
70
+ "data_root_dir": "/share/project/baishuanghao/data/libero_lerobot",
71
+ "data_mix": "libero_object",
72
+ "action_type": "delta_qpos",
73
+ "CoT_prompt": "Your task is {instruction}. To identify the key objects for your task. Locate their bounding boxes in [x1,y1,x2,y2] format.",
74
+ "CoT_answer": "bbox",
75
+ "default_image_resolution": [
76
+ 3,
77
+ 224,
78
+ 224
79
+ ],
80
+ "per_device_batch_size": 16,
81
+ "load_all_data_for_training": true,
82
+ "obs": [
83
+ "image_0"
84
+ ]
85
+ }
86
+ },
87
+ "trainer": {
88
+ "epochs": 100,
89
+ "max_train_steps": 30000,
90
+ "num_warmup_steps": 5000,
91
+ "save_interval": 60000,
92
+ "eval_interval": 30000,
93
+ "learning_rate": {
94
+ "base": 4e-05,
95
+ "qwen_vl_interface": 1e-05,
96
+ "action_model": 0.0001
97
+ },
98
+ "lr_scheduler_type": "cosine_with_min_lr",
99
+ "scheduler_specific_kwargs": {
100
+ "min_lr": 1e-06
101
+ },
102
+ "freeze_modules": null,
103
+ "loss_scale": {
104
+ "vla": 1.0,
105
+ "vlm": 0.1
106
+ },
107
+ "max_grad_norm": 1.0,
108
+ "warmup_ratio": 0.1,
109
+ "weight_decay": 0.0,
110
+ "logging_frequency": 100,
111
+ "gradient_clipping": 1.0,
112
+ "gradient_accumulation_steps": 1,
113
+ "optimizer": {
114
+ "name": "AdamW",
115
+ "betas": [
116
+ 0.9,
117
+ 0.95
118
+ ],
119
+ "eps": 1e-08,
120
+ "weight_decay": 1e-08
121
+ },
122
+ "is_resume": false,
123
+ "resume_epoch": null,
124
+ "resume_step": null,
125
+ "enable_gradient_checkpointing": true,
126
+ "enable_mixed_precision_training": true
127
+ },
128
+ "output_dir": "/share/project/baishuanghao/code/starVLA/pretrained_models_2/libero_object_2B/starvla_qwen_dual"
129
+ }
libero_object_2B/starvla_qwen_dual/dataset_statistics.json ADDED
@@ -0,0 +1,133 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "franka": {
3
+ "action": {
4
+ "mean": [
5
+ 0.07096529006958008,
6
+ 0.13498851656913757,
7
+ -0.04601382836699486,
8
+ 0.00123520044144243,
9
+ 0.006998839322477579,
10
+ -0.015027612447738647,
11
+ 0.46428999304771423
12
+ ],
13
+ "std": [
14
+ 0.2681235373020172,
15
+ 0.43846824765205383,
16
+ 0.4474974274635315,
17
+ 0.024446550756692886,
18
+ 0.049355510622262955,
19
+ 0.042107198387384415,
20
+ 0.49879148602485657
21
+ ],
22
+ "max": [
23
+ 0.9375,
24
+ 0.8919642567634583,
25
+ 0.9375,
26
+ 0.17678570747375488,
27
+ 0.35035714507102966,
28
+ 0.1810714304447174,
29
+ 1.0
30
+ ],
31
+ "min": [
32
+ -0.8839285969734192,
33
+ -0.9375,
34
+ -0.9375,
35
+ -0.15000000596046448,
36
+ -0.29035714268684387,
37
+ -0.32892856001853943,
38
+ 0.0
39
+ ],
40
+ "q01": [
41
+ -0.5383928418159485,
42
+ -0.8758928775787354,
43
+ -0.9375,
44
+ -0.06964285671710968,
45
+ -0.11678571254014969,
46
+ -0.15964286029338837,
47
+ 0.0
48
+ ],
49
+ "q99": [
50
+ 0.8464285731315613,
51
+ 0.84375,
52
+ 0.9375,
53
+ 0.08142857253551483,
54
+ 0.14892856776714325,
55
+ 0.0867857113480568,
56
+ 1.0
57
+ ],
58
+ "mask": [
59
+ true,
60
+ true,
61
+ true,
62
+ true,
63
+ true,
64
+ true,
65
+ false
66
+ ]
67
+ },
68
+ "state": {
69
+ "mean": [
70
+ -0.02999030612409115,
71
+ -0.007947085425257683,
72
+ 0.20293472707271576,
73
+ 3.1086409091949463,
74
+ -0.21404768526554108,
75
+ -0.11307074874639511,
76
+ 0.029380427673459053,
77
+ -0.030556727200746536
78
+ ],
79
+ "std": [
80
+ 0.06694897264242172,
81
+ 0.17608462274074554,
82
+ 0.07807064801454544,
83
+ 0.08684843033552649,
84
+ 0.33540457487106323,
85
+ 0.20728276669979095,
86
+ 0.00956575945019722,
87
+ 0.009197483770549297
88
+ ],
89
+ "max": [
90
+ 0.14580604434013367,
91
+ 0.33216384053230286,
92
+ 0.3857804834842682,
93
+ 3.4003844261169434,
94
+ 0.7954911589622498,
95
+ 0.6642207503318787,
96
+ 0.04104341194033623,
97
+ -0.00018117300351150334
98
+ ],
99
+ "min": [
100
+ -0.1765444278717041,
101
+ -0.29457300901412964,
102
+ 0.008128180168569088,
103
+ 2.2890501022338867,
104
+ -1.883241891860962,
105
+ -1.0600427389144897,
106
+ 0.0006495157140307128,
107
+ -0.041782498359680176
108
+ ],
109
+ "q01": [
110
+ -0.14911890715360643,
111
+ -0.25978428691625594,
112
+ 0.009925739830359817,
113
+ 2.7545341420173646,
114
+ -1.3996034812927245,
115
+ -0.6867720144987106,
116
+ 0.008197814421728254,
117
+ -0.04015838988125324
118
+ ],
119
+ "q99": [
120
+ 0.09063626825809479,
121
+ 0.29066365867853167,
122
+ 0.3370887073874472,
123
+ 3.2611824750900267,
124
+ 0.32092821151018125,
125
+ 0.4037663781642913,
126
+ 0.039891827926039694,
127
+ -0.009106044843792932
128
+ ]
129
+ },
130
+ "num_transitions": 66605,
131
+ "num_trajectories": 454
132
+ }
133
+ }
libero_object_2B/starvla_qwen_dual/final_model/pytorch_model.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7182fcf50aad2313af483bee43f4d7ab23deb9cbfa400e883c45241e90249e53
3
+ size 5233814193
libero_object_2B/starvla_qwen_dual/libero_eval_libero_object.log ADDED
@@ -0,0 +1,2521 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Task suite: libero_object
2
+
3
+ Task: pick up the alphabet soup and place it in the basket
4
+ Success: True
5
+ # episodes completed so far: 1
6
+ # successes: 1 (100.0%)
7
+
8
+ Task: pick up the alphabet soup and place it in the basket
9
+ Success: True
10
+ # episodes completed so far: 2
11
+ # successes: 2 (100.0%)
12
+
13
+ Task: pick up the alphabet soup and place it in the basket
14
+ Success: True
15
+ # episodes completed so far: 3
16
+ # successes: 3 (100.0%)
17
+
18
+ Task: pick up the alphabet soup and place it in the basket
19
+ Success: True
20
+ # episodes completed so far: 4
21
+ # successes: 4 (100.0%)
22
+
23
+ Task: pick up the alphabet soup and place it in the basket
24
+ Success: True
25
+ # episodes completed so far: 5
26
+ # successes: 5 (100.0%)
27
+
28
+ Task: pick up the alphabet soup and place it in the basket
29
+ Success: True
30
+ # episodes completed so far: 6
31
+ # successes: 6 (100.0%)
32
+
33
+ Task: pick up the alphabet soup and place it in the basket
34
+ Success: False
35
+ # episodes completed so far: 7
36
+ # successes: 6 (85.7%)
37
+
38
+ Task: pick up the alphabet soup and place it in the basket
39
+ Success: True
40
+ # episodes completed so far: 8
41
+ # successes: 7 (87.5%)
42
+
43
+ Task: pick up the alphabet soup and place it in the basket
44
+ Success: True
45
+ # episodes completed so far: 9
46
+ # successes: 8 (88.9%)
47
+
48
+ Task: pick up the alphabet soup and place it in the basket
49
+ Success: True
50
+ # episodes completed so far: 10
51
+ # successes: 9 (90.0%)
52
+
53
+ Task: pick up the alphabet soup and place it in the basket
54
+ Success: True
55
+ # episodes completed so far: 11
56
+ # successes: 10 (90.9%)
57
+
58
+ Task: pick up the alphabet soup and place it in the basket
59
+ Success: True
60
+ # episodes completed so far: 12
61
+ # successes: 11 (91.7%)
62
+
63
+ Task: pick up the alphabet soup and place it in the basket
64
+ Success: True
65
+ # episodes completed so far: 13
66
+ # successes: 12 (92.3%)
67
+
68
+ Task: pick up the alphabet soup and place it in the basket
69
+ Success: True
70
+ # episodes completed so far: 14
71
+ # successes: 13 (92.9%)
72
+
73
+ Task: pick up the alphabet soup and place it in the basket
74
+ Success: True
75
+ # episodes completed so far: 15
76
+ # successes: 14 (93.3%)
77
+
78
+ Task: pick up the alphabet soup and place it in the basket
79
+ Success: True
80
+ # episodes completed so far: 16
81
+ # successes: 15 (93.8%)
82
+
83
+ Task: pick up the alphabet soup and place it in the basket
84
+ Success: True
85
+ # episodes completed so far: 17
86
+ # successes: 16 (94.1%)
87
+
88
+ Task: pick up the alphabet soup and place it in the basket
89
+ Success: True
90
+ # episodes completed so far: 18
91
+ # successes: 17 (94.4%)
92
+
93
+ Task: pick up the alphabet soup and place it in the basket
94
+ Success: True
95
+ # episodes completed so far: 19
96
+ # successes: 18 (94.7%)
97
+
98
+ Task: pick up the alphabet soup and place it in the basket
99
+ Success: True
100
+ # episodes completed so far: 20
101
+ # successes: 19 (95.0%)
102
+
103
+ Task: pick up the alphabet soup and place it in the basket
104
+ Success: True
105
+ # episodes completed so far: 21
106
+ # successes: 20 (95.2%)
107
+
108
+ Task: pick up the alphabet soup and place it in the basket
109
+ Success: True
110
+ # episodes completed so far: 22
111
+ # successes: 21 (95.5%)
112
+
113
+ Task: pick up the alphabet soup and place it in the basket
114
+ Success: True
115
+ # episodes completed so far: 23
116
+ # successes: 22 (95.7%)
117
+
118
+ Task: pick up the alphabet soup and place it in the basket
119
+ Success: True
120
+ # episodes completed so far: 24
121
+ # successes: 23 (95.8%)
122
+
123
+ Task: pick up the alphabet soup and place it in the basket
124
+ Success: True
125
+ # episodes completed so far: 25
126
+ # successes: 24 (96.0%)
127
+
128
+ Task: pick up the alphabet soup and place it in the basket
129
+ Success: True
130
+ # episodes completed so far: 26
131
+ # successes: 25 (96.2%)
132
+
133
+ Task: pick up the alphabet soup and place it in the basket
134
+ Success: False
135
+ # episodes completed so far: 27
136
+ # successes: 25 (92.6%)
137
+
138
+ Task: pick up the alphabet soup and place it in the basket
139
+ Success: True
140
+ # episodes completed so far: 28
141
+ # successes: 26 (92.9%)
142
+
143
+ Task: pick up the alphabet soup and place it in the basket
144
+ Success: True
145
+ # episodes completed so far: 29
146
+ # successes: 27 (93.1%)
147
+
148
+ Task: pick up the alphabet soup and place it in the basket
149
+ Success: True
150
+ # episodes completed so far: 30
151
+ # successes: 28 (93.3%)
152
+
153
+ Task: pick up the alphabet soup and place it in the basket
154
+ Success: True
155
+ # episodes completed so far: 31
156
+ # successes: 29 (93.5%)
157
+
158
+ Task: pick up the alphabet soup and place it in the basket
159
+ Success: True
160
+ # episodes completed so far: 32
161
+ # successes: 30 (93.8%)
162
+
163
+ Task: pick up the alphabet soup and place it in the basket
164
+ Success: True
165
+ # episodes completed so far: 33
166
+ # successes: 31 (93.9%)
167
+
168
+ Task: pick up the alphabet soup and place it in the basket
169
+ Success: True
170
+ # episodes completed so far: 34
171
+ # successes: 32 (94.1%)
172
+
173
+ Task: pick up the alphabet soup and place it in the basket
174
+ Success: True
175
+ # episodes completed so far: 35
176
+ # successes: 33 (94.3%)
177
+
178
+ Task: pick up the alphabet soup and place it in the basket
179
+ Success: True
180
+ # episodes completed so far: 36
181
+ # successes: 34 (94.4%)
182
+
183
+ Task: pick up the alphabet soup and place it in the basket
184
+ Success: True
185
+ # episodes completed so far: 37
186
+ # successes: 35 (94.6%)
187
+
188
+ Task: pick up the alphabet soup and place it in the basket
189
+ Success: True
190
+ # episodes completed so far: 38
191
+ # successes: 36 (94.7%)
192
+
193
+ Task: pick up the alphabet soup and place it in the basket
194
+ Success: True
195
+ # episodes completed so far: 39
196
+ # successes: 37 (94.9%)
197
+
198
+ Task: pick up the alphabet soup and place it in the basket
199
+ Success: True
200
+ # episodes completed so far: 40
201
+ # successes: 38 (95.0%)
202
+
203
+ Task: pick up the alphabet soup and place it in the basket
204
+ Success: True
205
+ # episodes completed so far: 41
206
+ # successes: 39 (95.1%)
207
+
208
+ Task: pick up the alphabet soup and place it in the basket
209
+ Success: True
210
+ # episodes completed so far: 42
211
+ # successes: 40 (95.2%)
212
+
213
+ Task: pick up the alphabet soup and place it in the basket
214
+ Success: True
215
+ # episodes completed so far: 43
216
+ # successes: 41 (95.3%)
217
+
218
+ Task: pick up the alphabet soup and place it in the basket
219
+ Success: True
220
+ # episodes completed so far: 44
221
+ # successes: 42 (95.5%)
222
+
223
+ Task: pick up the alphabet soup and place it in the basket
224
+ Success: True
225
+ # episodes completed so far: 45
226
+ # successes: 43 (95.6%)
227
+
228
+ Task: pick up the alphabet soup and place it in the basket
229
+ Success: True
230
+ # episodes completed so far: 46
231
+ # successes: 44 (95.7%)
232
+
233
+ Task: pick up the alphabet soup and place it in the basket
234
+ Success: True
235
+ # episodes completed so far: 47
236
+ # successes: 45 (95.7%)
237
+
238
+ Task: pick up the alphabet soup and place it in the basket
239
+ Success: True
240
+ # episodes completed so far: 48
241
+ # successes: 46 (95.8%)
242
+
243
+ Task: pick up the alphabet soup and place it in the basket
244
+ Success: True
245
+ # episodes completed so far: 49
246
+ # successes: 47 (95.9%)
247
+
248
+ Task: pick up the alphabet soup and place it in the basket
249
+ Success: True
250
+ # episodes completed so far: 50
251
+ # successes: 48 (96.0%)
252
+ Current task success rate: 0.96
253
+ Current total success rate: 0.96
254
+
255
+ Task: pick up the cream cheese and place it in the basket
256
+ Success: True
257
+ # episodes completed so far: 51
258
+ # successes: 49 (96.1%)
259
+
260
+ Task: pick up the cream cheese and place it in the basket
261
+ Success: True
262
+ # episodes completed so far: 52
263
+ # successes: 50 (96.2%)
264
+
265
+ Task: pick up the cream cheese and place it in the basket
266
+ Success: True
267
+ # episodes completed so far: 53
268
+ # successes: 51 (96.2%)
269
+
270
+ Task: pick up the cream cheese and place it in the basket
271
+ Success: True
272
+ # episodes completed so far: 54
273
+ # successes: 52 (96.3%)
274
+
275
+ Task: pick up the cream cheese and place it in the basket
276
+ Success: True
277
+ # episodes completed so far: 55
278
+ # successes: 53 (96.4%)
279
+
280
+ Task: pick up the cream cheese and place it in the basket
281
+ Success: True
282
+ # episodes completed so far: 56
283
+ # successes: 54 (96.4%)
284
+
285
+ Task: pick up the cream cheese and place it in the basket
286
+ Success: True
287
+ # episodes completed so far: 57
288
+ # successes: 55 (96.5%)
289
+
290
+ Task: pick up the cream cheese and place it in the basket
291
+ Success: True
292
+ # episodes completed so far: 58
293
+ # successes: 56 (96.6%)
294
+
295
+ Task: pick up the cream cheese and place it in the basket
296
+ Success: True
297
+ # episodes completed so far: 59
298
+ # successes: 57 (96.6%)
299
+
300
+ Task: pick up the cream cheese and place it in the basket
301
+ Success: True
302
+ # episodes completed so far: 60
303
+ # successes: 58 (96.7%)
304
+
305
+ Task: pick up the cream cheese and place it in the basket
306
+ Success: True
307
+ # episodes completed so far: 61
308
+ # successes: 59 (96.7%)
309
+
310
+ Task: pick up the cream cheese and place it in the basket
311
+ Success: True
312
+ # episodes completed so far: 62
313
+ # successes: 60 (96.8%)
314
+
315
+ Task: pick up the cream cheese and place it in the basket
316
+ Success: True
317
+ # episodes completed so far: 63
318
+ # successes: 61 (96.8%)
319
+
320
+ Task: pick up the cream cheese and place it in the basket
321
+ Success: True
322
+ # episodes completed so far: 64
323
+ # successes: 62 (96.9%)
324
+
325
+ Task: pick up the cream cheese and place it in the basket
326
+ Success: True
327
+ # episodes completed so far: 65
328
+ # successes: 63 (96.9%)
329
+
330
+ Task: pick up the cream cheese and place it in the basket
331
+ Success: True
332
+ # episodes completed so far: 66
333
+ # successes: 64 (97.0%)
334
+
335
+ Task: pick up the cream cheese and place it in the basket
336
+ Success: True
337
+ # episodes completed so far: 67
338
+ # successes: 65 (97.0%)
339
+
340
+ Task: pick up the cream cheese and place it in the basket
341
+ Success: True
342
+ # episodes completed so far: 68
343
+ # successes: 66 (97.1%)
344
+
345
+ Task: pick up the cream cheese and place it in the basket
346
+ Success: True
347
+ # episodes completed so far: 69
348
+ # successes: 67 (97.1%)
349
+
350
+ Task: pick up the cream cheese and place it in the basket
351
+ Success: True
352
+ # episodes completed so far: 70
353
+ # successes: 68 (97.1%)
354
+
355
+ Task: pick up the cream cheese and place it in the basket
356
+ Success: True
357
+ # episodes completed so far: 71
358
+ # successes: 69 (97.2%)
359
+
360
+ Task: pick up the cream cheese and place it in the basket
361
+ Success: True
362
+ # episodes completed so far: 72
363
+ # successes: 70 (97.2%)
364
+
365
+ Task: pick up the cream cheese and place it in the basket
366
+ Success: True
367
+ # episodes completed so far: 73
368
+ # successes: 71 (97.3%)
369
+
370
+ Task: pick up the cream cheese and place it in the basket
371
+ Success: True
372
+ # episodes completed so far: 74
373
+ # successes: 72 (97.3%)
374
+
375
+ Task: pick up the cream cheese and place it in the basket
376
+ Success: True
377
+ # episodes completed so far: 75
378
+ # successes: 73 (97.3%)
379
+
380
+ Task: pick up the cream cheese and place it in the basket
381
+ Success: True
382
+ # episodes completed so far: 76
383
+ # successes: 74 (97.4%)
384
+
385
+ Task: pick up the cream cheese and place it in the basket
386
+ Success: True
387
+ # episodes completed so far: 77
388
+ # successes: 75 (97.4%)
389
+
390
+ Task: pick up the cream cheese and place it in the basket
391
+ Success: True
392
+ # episodes completed so far: 78
393
+ # successes: 76 (97.4%)
394
+
395
+ Task: pick up the cream cheese and place it in the basket
396
+ Success: True
397
+ # episodes completed so far: 79
398
+ # successes: 77 (97.5%)
399
+
400
+ Task: pick up the cream cheese and place it in the basket
401
+ Success: True
402
+ # episodes completed so far: 80
403
+ # successes: 78 (97.5%)
404
+
405
+ Task: pick up the cream cheese and place it in the basket
406
+ Success: True
407
+ # episodes completed so far: 81
408
+ # successes: 79 (97.5%)
409
+
410
+ Task: pick up the cream cheese and place it in the basket
411
+ Success: True
412
+ # episodes completed so far: 82
413
+ # successes: 80 (97.6%)
414
+
415
+ Task: pick up the cream cheese and place it in the basket
416
+ Success: True
417
+ # episodes completed so far: 83
418
+ # successes: 81 (97.6%)
419
+
420
+ Task: pick up the cream cheese and place it in the basket
421
+ Success: True
422
+ # episodes completed so far: 84
423
+ # successes: 82 (97.6%)
424
+
425
+ Task: pick up the cream cheese and place it in the basket
426
+ Success: True
427
+ # episodes completed so far: 85
428
+ # successes: 83 (97.6%)
429
+
430
+ Task: pick up the cream cheese and place it in the basket
431
+ Success: True
432
+ # episodes completed so far: 86
433
+ # successes: 84 (97.7%)
434
+
435
+ Task: pick up the cream cheese and place it in the basket
436
+ Success: True
437
+ # episodes completed so far: 87
438
+ # successes: 85 (97.7%)
439
+
440
+ Task: pick up the cream cheese and place it in the basket
441
+ Success: True
442
+ # episodes completed so far: 88
443
+ # successes: 86 (97.7%)
444
+
445
+ Task: pick up the cream cheese and place it in the basket
446
+ Success: True
447
+ # episodes completed so far: 89
448
+ # successes: 87 (97.8%)
449
+
450
+ Task: pick up the cream cheese and place it in the basket
451
+ Success: True
452
+ # episodes completed so far: 90
453
+ # successes: 88 (97.8%)
454
+
455
+ Task: pick up the cream cheese and place it in the basket
456
+ Success: True
457
+ # episodes completed so far: 91
458
+ # successes: 89 (97.8%)
459
+
460
+ Task: pick up the cream cheese and place it in the basket
461
+ Success: True
462
+ # episodes completed so far: 92
463
+ # successes: 90 (97.8%)
464
+
465
+ Task: pick up the cream cheese and place it in the basket
466
+ Success: True
467
+ # episodes completed so far: 93
468
+ # successes: 91 (97.8%)
469
+
470
+ Task: pick up the cream cheese and place it in the basket
471
+ Success: True
472
+ # episodes completed so far: 94
473
+ # successes: 92 (97.9%)
474
+
475
+ Task: pick up the cream cheese and place it in the basket
476
+ Success: True
477
+ # episodes completed so far: 95
478
+ # successes: 93 (97.9%)
479
+
480
+ Task: pick up the cream cheese and place it in the basket
481
+ Success: True
482
+ # episodes completed so far: 96
483
+ # successes: 94 (97.9%)
484
+
485
+ Task: pick up the cream cheese and place it in the basket
486
+ Success: True
487
+ # episodes completed so far: 97
488
+ # successes: 95 (97.9%)
489
+
490
+ Task: pick up the cream cheese and place it in the basket
491
+ Success: True
492
+ # episodes completed so far: 98
493
+ # successes: 96 (98.0%)
494
+
495
+ Task: pick up the cream cheese and place it in the basket
496
+ Success: True
497
+ # episodes completed so far: 99
498
+ # successes: 97 (98.0%)
499
+
500
+ Task: pick up the cream cheese and place it in the basket
501
+ Success: True
502
+ # episodes completed so far: 100
503
+ # successes: 98 (98.0%)
504
+ Current task success rate: 1.0
505
+ Current total success rate: 0.98
506
+
507
+ Task: pick up the salad dressing and place it in the basket
508
+ Success: True
509
+ # episodes completed so far: 101
510
+ # successes: 99 (98.0%)
511
+
512
+ Task: pick up the salad dressing and place it in the basket
513
+ Success: True
514
+ # episodes completed so far: 102
515
+ # successes: 100 (98.0%)
516
+
517
+ Task: pick up the salad dressing and place it in the basket
518
+ Success: True
519
+ # episodes completed so far: 103
520
+ # successes: 101 (98.1%)
521
+
522
+ Task: pick up the salad dressing and place it in the basket
523
+ Success: True
524
+ # episodes completed so far: 104
525
+ # successes: 102 (98.1%)
526
+
527
+ Task: pick up the salad dressing and place it in the basket
528
+ Success: True
529
+ # episodes completed so far: 105
530
+ # successes: 103 (98.1%)
531
+
532
+ Task: pick up the salad dressing and place it in the basket
533
+ Success: True
534
+ # episodes completed so far: 106
535
+ # successes: 104 (98.1%)
536
+
537
+ Task: pick up the salad dressing and place it in the basket
538
+ Success: True
539
+ # episodes completed so far: 107
540
+ # successes: 105 (98.1%)
541
+
542
+ Task: pick up the salad dressing and place it in the basket
543
+ Success: True
544
+ # episodes completed so far: 108
545
+ # successes: 106 (98.1%)
546
+
547
+ Task: pick up the salad dressing and place it in the basket
548
+ Success: True
549
+ # episodes completed so far: 109
550
+ # successes: 107 (98.2%)
551
+
552
+ Task: pick up the salad dressing and place it in the basket
553
+ Success: True
554
+ # episodes completed so far: 110
555
+ # successes: 108 (98.2%)
556
+
557
+ Task: pick up the salad dressing and place it in the basket
558
+ Success: True
559
+ # episodes completed so far: 111
560
+ # successes: 109 (98.2%)
561
+
562
+ Task: pick up the salad dressing and place it in the basket
563
+ Success: True
564
+ # episodes completed so far: 112
565
+ # successes: 110 (98.2%)
566
+
567
+ Task: pick up the salad dressing and place it in the basket
568
+ Success: True
569
+ # episodes completed so far: 113
570
+ # successes: 111 (98.2%)
571
+
572
+ Task: pick up the salad dressing and place it in the basket
573
+ Success: True
574
+ # episodes completed so far: 114
575
+ # successes: 112 (98.2%)
576
+
577
+ Task: pick up the salad dressing and place it in the basket
578
+ Success: True
579
+ # episodes completed so far: 115
580
+ # successes: 113 (98.3%)
581
+
582
+ Task: pick up the salad dressing and place it in the basket
583
+ Success: True
584
+ # episodes completed so far: 116
585
+ # successes: 114 (98.3%)
586
+
587
+ Task: pick up the salad dressing and place it in the basket
588
+ Success: True
589
+ # episodes completed so far: 117
590
+ # successes: 115 (98.3%)
591
+
592
+ Task: pick up the salad dressing and place it in the basket
593
+ Success: True
594
+ # episodes completed so far: 118
595
+ # successes: 116 (98.3%)
596
+
597
+ Task: pick up the salad dressing and place it in the basket
598
+ Success: True
599
+ # episodes completed so far: 119
600
+ # successes: 117 (98.3%)
601
+
602
+ Task: pick up the salad dressing and place it in the basket
603
+ Success: True
604
+ # episodes completed so far: 120
605
+ # successes: 118 (98.3%)
606
+
607
+ Task: pick up the salad dressing and place it in the basket
608
+ Success: True
609
+ # episodes completed so far: 121
610
+ # successes: 119 (98.3%)
611
+
612
+ Task: pick up the salad dressing and place it in the basket
613
+ Success: True
614
+ # episodes completed so far: 122
615
+ # successes: 120 (98.4%)
616
+
617
+ Task: pick up the salad dressing and place it in the basket
618
+ Success: True
619
+ # episodes completed so far: 123
620
+ # successes: 121 (98.4%)
621
+
622
+ Task: pick up the salad dressing and place it in the basket
623
+ Success: True
624
+ # episodes completed so far: 124
625
+ # successes: 122 (98.4%)
626
+
627
+ Task: pick up the salad dressing and place it in the basket
628
+ Success: True
629
+ # episodes completed so far: 125
630
+ # successes: 123 (98.4%)
631
+
632
+ Task: pick up the salad dressing and place it in the basket
633
+ Success: True
634
+ # episodes completed so far: 126
635
+ # successes: 124 (98.4%)
636
+
637
+ Task: pick up the salad dressing and place it in the basket
638
+ Success: True
639
+ # episodes completed so far: 127
640
+ # successes: 125 (98.4%)
641
+
642
+ Task: pick up the salad dressing and place it in the basket
643
+ Success: True
644
+ # episodes completed so far: 128
645
+ # successes: 126 (98.4%)
646
+
647
+ Task: pick up the salad dressing and place it in the basket
648
+ Success: True
649
+ # episodes completed so far: 129
650
+ # successes: 127 (98.4%)
651
+
652
+ Task: pick up the salad dressing and place it in the basket
653
+ Success: True
654
+ # episodes completed so far: 130
655
+ # successes: 128 (98.5%)
656
+
657
+ Task: pick up the salad dressing and place it in the basket
658
+ Success: True
659
+ # episodes completed so far: 131
660
+ # successes: 129 (98.5%)
661
+
662
+ Task: pick up the salad dressing and place it in the basket
663
+ Success: True
664
+ # episodes completed so far: 132
665
+ # successes: 130 (98.5%)
666
+
667
+ Task: pick up the salad dressing and place it in the basket
668
+ Success: True
669
+ # episodes completed so far: 133
670
+ # successes: 131 (98.5%)
671
+
672
+ Task: pick up the salad dressing and place it in the basket
673
+ Success: True
674
+ # episodes completed so far: 134
675
+ # successes: 132 (98.5%)
676
+
677
+ Task: pick up the salad dressing and place it in the basket
678
+ Success: True
679
+ # episodes completed so far: 135
680
+ # successes: 133 (98.5%)
681
+
682
+ Task: pick up the salad dressing and place it in the basket
683
+ Success: True
684
+ # episodes completed so far: 136
685
+ # successes: 134 (98.5%)
686
+
687
+ Task: pick up the salad dressing and place it in the basket
688
+ Success: True
689
+ # episodes completed so far: 137
690
+ # successes: 135 (98.5%)
691
+
692
+ Task: pick up the salad dressing and place it in the basket
693
+ Success: True
694
+ # episodes completed so far: 138
695
+ # successes: 136 (98.6%)
696
+
697
+ Task: pick up the salad dressing and place it in the basket
698
+ Success: True
699
+ # episodes completed so far: 139
700
+ # successes: 137 (98.6%)
701
+
702
+ Task: pick up the salad dressing and place it in the basket
703
+ Success: True
704
+ # episodes completed so far: 140
705
+ # successes: 138 (98.6%)
706
+
707
+ Task: pick up the salad dressing and place it in the basket
708
+ Success: True
709
+ # episodes completed so far: 141
710
+ # successes: 139 (98.6%)
711
+
712
+ Task: pick up the salad dressing and place it in the basket
713
+ Success: True
714
+ # episodes completed so far: 142
715
+ # successes: 140 (98.6%)
716
+
717
+ Task: pick up the salad dressing and place it in the basket
718
+ Success: True
719
+ # episodes completed so far: 143
720
+ # successes: 141 (98.6%)
721
+
722
+ Task: pick up the salad dressing and place it in the basket
723
+ Success: True
724
+ # episodes completed so far: 144
725
+ # successes: 142 (98.6%)
726
+
727
+ Task: pick up the salad dressing and place it in the basket
728
+ Success: True
729
+ # episodes completed so far: 145
730
+ # successes: 143 (98.6%)
731
+
732
+ Task: pick up the salad dressing and place it in the basket
733
+ Success: True
734
+ # episodes completed so far: 146
735
+ # successes: 144 (98.6%)
736
+
737
+ Task: pick up the salad dressing and place it in the basket
738
+ Success: True
739
+ # episodes completed so far: 147
740
+ # successes: 145 (98.6%)
741
+
742
+ Task: pick up the salad dressing and place it in the basket
743
+ Success: True
744
+ # episodes completed so far: 148
745
+ # successes: 146 (98.6%)
746
+
747
+ Task: pick up the salad dressing and place it in the basket
748
+ Success: True
749
+ # episodes completed so far: 149
750
+ # successes: 147 (98.7%)
751
+
752
+ Task: pick up the salad dressing and place it in the basket
753
+ Success: True
754
+ # episodes completed so far: 150
755
+ # successes: 148 (98.7%)
756
+ Current task success rate: 1.0
757
+ Current total success rate: 0.9866666666666667
758
+
759
+ Task: pick up the bbq sauce and place it in the basket
760
+ Success: True
761
+ # episodes completed so far: 151
762
+ # successes: 149 (98.7%)
763
+
764
+ Task: pick up the bbq sauce and place it in the basket
765
+ Success: True
766
+ # episodes completed so far: 152
767
+ # successes: 150 (98.7%)
768
+
769
+ Task: pick up the bbq sauce and place it in the basket
770
+ Success: True
771
+ # episodes completed so far: 153
772
+ # successes: 151 (98.7%)
773
+
774
+ Task: pick up the bbq sauce and place it in the basket
775
+ Success: True
776
+ # episodes completed so far: 154
777
+ # successes: 152 (98.7%)
778
+
779
+ Task: pick up the bbq sauce and place it in the basket
780
+ Success: True
781
+ # episodes completed so far: 155
782
+ # successes: 153 (98.7%)
783
+
784
+ Task: pick up the bbq sauce and place it in the basket
785
+ Success: True
786
+ # episodes completed so far: 156
787
+ # successes: 154 (98.7%)
788
+
789
+ Task: pick up the bbq sauce and place it in the basket
790
+ Success: True
791
+ # episodes completed so far: 157
792
+ # successes: 155 (98.7%)
793
+
794
+ Task: pick up the bbq sauce and place it in the basket
795
+ Success: True
796
+ # episodes completed so far: 158
797
+ # successes: 156 (98.7%)
798
+
799
+ Task: pick up the bbq sauce and place it in the basket
800
+ Success: True
801
+ # episodes completed so far: 159
802
+ # successes: 157 (98.7%)
803
+
804
+ Task: pick up the bbq sauce and place it in the basket
805
+ Success: True
806
+ # episodes completed so far: 160
807
+ # successes: 158 (98.8%)
808
+
809
+ Task: pick up the bbq sauce and place it in the basket
810
+ Success: True
811
+ # episodes completed so far: 161
812
+ # successes: 159 (98.8%)
813
+
814
+ Task: pick up the bbq sauce and place it in the basket
815
+ Success: True
816
+ # episodes completed so far: 162
817
+ # successes: 160 (98.8%)
818
+
819
+ Task: pick up the bbq sauce and place it in the basket
820
+ Success: True
821
+ # episodes completed so far: 163
822
+ # successes: 161 (98.8%)
823
+
824
+ Task: pick up the bbq sauce and place it in the basket
825
+ Success: True
826
+ # episodes completed so far: 164
827
+ # successes: 162 (98.8%)
828
+
829
+ Task: pick up the bbq sauce and place it in the basket
830
+ Success: True
831
+ # episodes completed so far: 165
832
+ # successes: 163 (98.8%)
833
+
834
+ Task: pick up the bbq sauce and place it in the basket
835
+ Success: True
836
+ # episodes completed so far: 166
837
+ # successes: 164 (98.8%)
838
+
839
+ Task: pick up the bbq sauce and place it in the basket
840
+ Success: True
841
+ # episodes completed so far: 167
842
+ # successes: 165 (98.8%)
843
+
844
+ Task: pick up the bbq sauce and place it in the basket
845
+ Success: True
846
+ # episodes completed so far: 168
847
+ # successes: 166 (98.8%)
848
+
849
+ Task: pick up the bbq sauce and place it in the basket
850
+ Success: True
851
+ # episodes completed so far: 169
852
+ # successes: 167 (98.8%)
853
+
854
+ Task: pick up the bbq sauce and place it in the basket
855
+ Success: True
856
+ # episodes completed so far: 170
857
+ # successes: 168 (98.8%)
858
+
859
+ Task: pick up the bbq sauce and place it in the basket
860
+ Success: True
861
+ # episodes completed so far: 171
862
+ # successes: 169 (98.8%)
863
+
864
+ Task: pick up the bbq sauce and place it in the basket
865
+ Success: True
866
+ # episodes completed so far: 172
867
+ # successes: 170 (98.8%)
868
+
869
+ Task: pick up the bbq sauce and place it in the basket
870
+ Success: False
871
+ # episodes completed so far: 173
872
+ # successes: 170 (98.3%)
873
+
874
+ Task: pick up the bbq sauce and place it in the basket
875
+ Success: True
876
+ # episodes completed so far: 174
877
+ # successes: 171 (98.3%)
878
+
879
+ Task: pick up the bbq sauce and place it in the basket
880
+ Success: True
881
+ # episodes completed so far: 175
882
+ # successes: 172 (98.3%)
883
+
884
+ Task: pick up the bbq sauce and place it in the basket
885
+ Success: True
886
+ # episodes completed so far: 176
887
+ # successes: 173 (98.3%)
888
+
889
+ Task: pick up the bbq sauce and place it in the basket
890
+ Success: True
891
+ # episodes completed so far: 177
892
+ # successes: 174 (98.3%)
893
+
894
+ Task: pick up the bbq sauce and place it in the basket
895
+ Success: True
896
+ # episodes completed so far: 178
897
+ # successes: 175 (98.3%)
898
+
899
+ Task: pick up the bbq sauce and place it in the basket
900
+ Success: True
901
+ # episodes completed so far: 179
902
+ # successes: 176 (98.3%)
903
+
904
+ Task: pick up the bbq sauce and place it in the basket
905
+ Success: True
906
+ # episodes completed so far: 180
907
+ # successes: 177 (98.3%)
908
+
909
+ Task: pick up the bbq sauce and place it in the basket
910
+ Success: True
911
+ # episodes completed so far: 181
912
+ # successes: 178 (98.3%)
913
+
914
+ Task: pick up the bbq sauce and place it in the basket
915
+ Success: True
916
+ # episodes completed so far: 182
917
+ # successes: 179 (98.4%)
918
+
919
+ Task: pick up the bbq sauce and place it in the basket
920
+ Success: True
921
+ # episodes completed so far: 183
922
+ # successes: 180 (98.4%)
923
+
924
+ Task: pick up the bbq sauce and place it in the basket
925
+ Success: True
926
+ # episodes completed so far: 184
927
+ # successes: 181 (98.4%)
928
+
929
+ Task: pick up the bbq sauce and place it in the basket
930
+ Success: True
931
+ # episodes completed so far: 185
932
+ # successes: 182 (98.4%)
933
+
934
+ Task: pick up the bbq sauce and place it in the basket
935
+ Success: True
936
+ # episodes completed so far: 186
937
+ # successes: 183 (98.4%)
938
+
939
+ Task: pick up the bbq sauce and place it in the basket
940
+ Success: True
941
+ # episodes completed so far: 187
942
+ # successes: 184 (98.4%)
943
+
944
+ Task: pick up the bbq sauce and place it in the basket
945
+ Success: True
946
+ # episodes completed so far: 188
947
+ # successes: 185 (98.4%)
948
+
949
+ Task: pick up the bbq sauce and place it in the basket
950
+ Success: True
951
+ # episodes completed so far: 189
952
+ # successes: 186 (98.4%)
953
+
954
+ Task: pick up the bbq sauce and place it in the basket
955
+ Success: True
956
+ # episodes completed so far: 190
957
+ # successes: 187 (98.4%)
958
+
959
+ Task: pick up the bbq sauce and place it in the basket
960
+ Success: True
961
+ # episodes completed so far: 191
962
+ # successes: 188 (98.4%)
963
+
964
+ Task: pick up the bbq sauce and place it in the basket
965
+ Success: True
966
+ # episodes completed so far: 192
967
+ # successes: 189 (98.4%)
968
+
969
+ Task: pick up the bbq sauce and place it in the basket
970
+ Success: True
971
+ # episodes completed so far: 193
972
+ # successes: 190 (98.4%)
973
+
974
+ Task: pick up the bbq sauce and place it in the basket
975
+ Success: False
976
+ # episodes completed so far: 194
977
+ # successes: 190 (97.9%)
978
+
979
+ Task: pick up the bbq sauce and place it in the basket
980
+ Success: True
981
+ # episodes completed so far: 195
982
+ # successes: 191 (97.9%)
983
+
984
+ Task: pick up the bbq sauce and place it in the basket
985
+ Success: True
986
+ # episodes completed so far: 196
987
+ # successes: 192 (98.0%)
988
+
989
+ Task: pick up the bbq sauce and place it in the basket
990
+ Success: True
991
+ # episodes completed so far: 197
992
+ # successes: 193 (98.0%)
993
+
994
+ Task: pick up the bbq sauce and place it in the basket
995
+ Success: True
996
+ # episodes completed so far: 198
997
+ # successes: 194 (98.0%)
998
+
999
+ Task: pick up the bbq sauce and place it in the basket
1000
+ Success: True
1001
+ # episodes completed so far: 199
1002
+ # successes: 195 (98.0%)
1003
+
1004
+ Task: pick up the bbq sauce and place it in the basket
1005
+ Success: True
1006
+ # episodes completed so far: 200
1007
+ # successes: 196 (98.0%)
1008
+ Current task success rate: 0.96
1009
+ Current total success rate: 0.98
1010
+
1011
+ Task: pick up the ketchup and place it in the basket
1012
+ Success: True
1013
+ # episodes completed so far: 201
1014
+ # successes: 197 (98.0%)
1015
+
1016
+ Task: pick up the ketchup and place it in the basket
1017
+ Success: True
1018
+ # episodes completed so far: 202
1019
+ # successes: 198 (98.0%)
1020
+
1021
+ Task: pick up the ketchup and place it in the basket
1022
+ Success: True
1023
+ # episodes completed so far: 203
1024
+ # successes: 199 (98.0%)
1025
+
1026
+ Task: pick up the ketchup and place it in the basket
1027
+ Success: True
1028
+ # episodes completed so far: 204
1029
+ # successes: 200 (98.0%)
1030
+
1031
+ Task: pick up the ketchup and place it in the basket
1032
+ Success: True
1033
+ # episodes completed so far: 205
1034
+ # successes: 201 (98.0%)
1035
+
1036
+ Task: pick up the ketchup and place it in the basket
1037
+ Success: True
1038
+ # episodes completed so far: 206
1039
+ # successes: 202 (98.1%)
1040
+
1041
+ Task: pick up the ketchup and place it in the basket
1042
+ Success: True
1043
+ # episodes completed so far: 207
1044
+ # successes: 203 (98.1%)
1045
+
1046
+ Task: pick up the ketchup and place it in the basket
1047
+ Success: True
1048
+ # episodes completed so far: 208
1049
+ # successes: 204 (98.1%)
1050
+
1051
+ Task: pick up the ketchup and place it in the basket
1052
+ Success: True
1053
+ # episodes completed so far: 209
1054
+ # successes: 205 (98.1%)
1055
+
1056
+ Task: pick up the ketchup and place it in the basket
1057
+ Success: True
1058
+ # episodes completed so far: 210
1059
+ # successes: 206 (98.1%)
1060
+
1061
+ Task: pick up the ketchup and place it in the basket
1062
+ Success: True
1063
+ # episodes completed so far: 211
1064
+ # successes: 207 (98.1%)
1065
+
1066
+ Task: pick up the ketchup and place it in the basket
1067
+ Success: True
1068
+ # episodes completed so far: 212
1069
+ # successes: 208 (98.1%)
1070
+
1071
+ Task: pick up the ketchup and place it in the basket
1072
+ Success: True
1073
+ # episodes completed so far: 213
1074
+ # successes: 209 (98.1%)
1075
+
1076
+ Task: pick up the ketchup and place it in the basket
1077
+ Success: True
1078
+ # episodes completed so far: 214
1079
+ # successes: 210 (98.1%)
1080
+
1081
+ Task: pick up the ketchup and place it in the basket
1082
+ Success: True
1083
+ # episodes completed so far: 215
1084
+ # successes: 211 (98.1%)
1085
+
1086
+ Task: pick up the ketchup and place it in the basket
1087
+ Success: True
1088
+ # episodes completed so far: 216
1089
+ # successes: 212 (98.1%)
1090
+
1091
+ Task: pick up the ketchup and place it in the basket
1092
+ Success: True
1093
+ # episodes completed so far: 217
1094
+ # successes: 213 (98.2%)
1095
+
1096
+ Task: pick up the ketchup and place it in the basket
1097
+ Success: True
1098
+ # episodes completed so far: 218
1099
+ # successes: 214 (98.2%)
1100
+
1101
+ Task: pick up the ketchup and place it in the basket
1102
+ Success: True
1103
+ # episodes completed so far: 219
1104
+ # successes: 215 (98.2%)
1105
+
1106
+ Task: pick up the ketchup and place it in the basket
1107
+ Success: True
1108
+ # episodes completed so far: 220
1109
+ # successes: 216 (98.2%)
1110
+
1111
+ Task: pick up the ketchup and place it in the basket
1112
+ Success: True
1113
+ # episodes completed so far: 221
1114
+ # successes: 217 (98.2%)
1115
+
1116
+ Task: pick up the ketchup and place it in the basket
1117
+ Success: True
1118
+ # episodes completed so far: 222
1119
+ # successes: 218 (98.2%)
1120
+
1121
+ Task: pick up the ketchup and place it in the basket
1122
+ Success: True
1123
+ # episodes completed so far: 223
1124
+ # successes: 219 (98.2%)
1125
+
1126
+ Task: pick up the ketchup and place it in the basket
1127
+ Success: True
1128
+ # episodes completed so far: 224
1129
+ # successes: 220 (98.2%)
1130
+
1131
+ Task: pick up the ketchup and place it in the basket
1132
+ Success: True
1133
+ # episodes completed so far: 225
1134
+ # successes: 221 (98.2%)
1135
+
1136
+ Task: pick up the ketchup and place it in the basket
1137
+ Success: True
1138
+ # episodes completed so far: 226
1139
+ # successes: 222 (98.2%)
1140
+
1141
+ Task: pick up the ketchup and place it in the basket
1142
+ Success: True
1143
+ # episodes completed so far: 227
1144
+ # successes: 223 (98.2%)
1145
+
1146
+ Task: pick up the ketchup and place it in the basket
1147
+ Success: True
1148
+ # episodes completed so far: 228
1149
+ # successes: 224 (98.2%)
1150
+
1151
+ Task: pick up the ketchup and place it in the basket
1152
+ Success: True
1153
+ # episodes completed so far: 229
1154
+ # successes: 225 (98.3%)
1155
+
1156
+ Task: pick up the ketchup and place it in the basket
1157
+ Success: True
1158
+ # episodes completed so far: 230
1159
+ # successes: 226 (98.3%)
1160
+
1161
+ Task: pick up the ketchup and place it in the basket
1162
+ Success: True
1163
+ # episodes completed so far: 231
1164
+ # successes: 227 (98.3%)
1165
+
1166
+ Task: pick up the ketchup and place it in the basket
1167
+ Success: True
1168
+ # episodes completed so far: 232
1169
+ # successes: 228 (98.3%)
1170
+
1171
+ Task: pick up the ketchup and place it in the basket
1172
+ Success: True
1173
+ # episodes completed so far: 233
1174
+ # successes: 229 (98.3%)
1175
+
1176
+ Task: pick up the ketchup and place it in the basket
1177
+ Success: True
1178
+ # episodes completed so far: 234
1179
+ # successes: 230 (98.3%)
1180
+
1181
+ Task: pick up the ketchup and place it in the basket
1182
+ Success: True
1183
+ # episodes completed so far: 235
1184
+ # successes: 231 (98.3%)
1185
+
1186
+ Task: pick up the ketchup and place it in the basket
1187
+ Success: True
1188
+ # episodes completed so far: 236
1189
+ # successes: 232 (98.3%)
1190
+
1191
+ Task: pick up the ketchup and place it in the basket
1192
+ Success: True
1193
+ # episodes completed so far: 237
1194
+ # successes: 233 (98.3%)
1195
+
1196
+ Task: pick up the ketchup and place it in the basket
1197
+ Success: True
1198
+ # episodes completed so far: 238
1199
+ # successes: 234 (98.3%)
1200
+
1201
+ Task: pick up the ketchup and place it in the basket
1202
+ Success: True
1203
+ # episodes completed so far: 239
1204
+ # successes: 235 (98.3%)
1205
+
1206
+ Task: pick up the ketchup and place it in the basket
1207
+ Success: True
1208
+ # episodes completed so far: 240
1209
+ # successes: 236 (98.3%)
1210
+
1211
+ Task: pick up the ketchup and place it in the basket
1212
+ Success: True
1213
+ # episodes completed so far: 241
1214
+ # successes: 237 (98.3%)
1215
+
1216
+ Task: pick up the ketchup and place it in the basket
1217
+ Success: True
1218
+ # episodes completed so far: 242
1219
+ # successes: 238 (98.3%)
1220
+
1221
+ Task: pick up the ketchup and place it in the basket
1222
+ Success: True
1223
+ # episodes completed so far: 243
1224
+ # successes: 239 (98.4%)
1225
+
1226
+ Task: pick up the ketchup and place it in the basket
1227
+ Success: True
1228
+ # episodes completed so far: 244
1229
+ # successes: 240 (98.4%)
1230
+
1231
+ Task: pick up the ketchup and place it in the basket
1232
+ Success: True
1233
+ # episodes completed so far: 245
1234
+ # successes: 241 (98.4%)
1235
+
1236
+ Task: pick up the ketchup and place it in the basket
1237
+ Success: True
1238
+ # episodes completed so far: 246
1239
+ # successes: 242 (98.4%)
1240
+
1241
+ Task: pick up the ketchup and place it in the basket
1242
+ Success: True
1243
+ # episodes completed so far: 247
1244
+ # successes: 243 (98.4%)
1245
+
1246
+ Task: pick up the ketchup and place it in the basket
1247
+ Success: True
1248
+ # episodes completed so far: 248
1249
+ # successes: 244 (98.4%)
1250
+
1251
+ Task: pick up the ketchup and place it in the basket
1252
+ Success: True
1253
+ # episodes completed so far: 249
1254
+ # successes: 245 (98.4%)
1255
+
1256
+ Task: pick up the ketchup and place it in the basket
1257
+ Success: True
1258
+ # episodes completed so far: 250
1259
+ # successes: 246 (98.4%)
1260
+ Current task success rate: 1.0
1261
+ Current total success rate: 0.984
1262
+
1263
+ Task: pick up the tomato sauce and place it in the basket
1264
+ Success: True
1265
+ # episodes completed so far: 251
1266
+ # successes: 247 (98.4%)
1267
+
1268
+ Task: pick up the tomato sauce and place it in the basket
1269
+ Success: True
1270
+ # episodes completed so far: 252
1271
+ # successes: 248 (98.4%)
1272
+
1273
+ Task: pick up the tomato sauce and place it in the basket
1274
+ Success: True
1275
+ # episodes completed so far: 253
1276
+ # successes: 249 (98.4%)
1277
+
1278
+ Task: pick up the tomato sauce and place it in the basket
1279
+ Success: True
1280
+ # episodes completed so far: 254
1281
+ # successes: 250 (98.4%)
1282
+
1283
+ Task: pick up the tomato sauce and place it in the basket
1284
+ Success: True
1285
+ # episodes completed so far: 255
1286
+ # successes: 251 (98.4%)
1287
+
1288
+ Task: pick up the tomato sauce and place it in the basket
1289
+ Success: True
1290
+ # episodes completed so far: 256
1291
+ # successes: 252 (98.4%)
1292
+
1293
+ Task: pick up the tomato sauce and place it in the basket
1294
+ Success: True
1295
+ # episodes completed so far: 257
1296
+ # successes: 253 (98.4%)
1297
+
1298
+ Task: pick up the tomato sauce and place it in the basket
1299
+ Success: True
1300
+ # episodes completed so far: 258
1301
+ # successes: 254 (98.4%)
1302
+
1303
+ Task: pick up the tomato sauce and place it in the basket
1304
+ Success: True
1305
+ # episodes completed so far: 259
1306
+ # successes: 255 (98.5%)
1307
+
1308
+ Task: pick up the tomato sauce and place it in the basket
1309
+ Success: True
1310
+ # episodes completed so far: 260
1311
+ # successes: 256 (98.5%)
1312
+
1313
+ Task: pick up the tomato sauce and place it in the basket
1314
+ Success: True
1315
+ # episodes completed so far: 261
1316
+ # successes: 257 (98.5%)
1317
+
1318
+ Task: pick up the tomato sauce and place it in the basket
1319
+ Success: True
1320
+ # episodes completed so far: 262
1321
+ # successes: 258 (98.5%)
1322
+
1323
+ Task: pick up the tomato sauce and place it in the basket
1324
+ Success: True
1325
+ # episodes completed so far: 263
1326
+ # successes: 259 (98.5%)
1327
+
1328
+ Task: pick up the tomato sauce and place it in the basket
1329
+ Success: True
1330
+ # episodes completed so far: 264
1331
+ # successes: 260 (98.5%)
1332
+
1333
+ Task: pick up the tomato sauce and place it in the basket
1334
+ Success: True
1335
+ # episodes completed so far: 265
1336
+ # successes: 261 (98.5%)
1337
+
1338
+ Task: pick up the tomato sauce and place it in the basket
1339
+ Success: True
1340
+ # episodes completed so far: 266
1341
+ # successes: 262 (98.5%)
1342
+
1343
+ Task: pick up the tomato sauce and place it in the basket
1344
+ Success: True
1345
+ # episodes completed so far: 267
1346
+ # successes: 263 (98.5%)
1347
+
1348
+ Task: pick up the tomato sauce and place it in the basket
1349
+ Success: True
1350
+ # episodes completed so far: 268
1351
+ # successes: 264 (98.5%)
1352
+
1353
+ Task: pick up the tomato sauce and place it in the basket
1354
+ Success: True
1355
+ # episodes completed so far: 269
1356
+ # successes: 265 (98.5%)
1357
+
1358
+ Task: pick up the tomato sauce and place it in the basket
1359
+ Success: True
1360
+ # episodes completed so far: 270
1361
+ # successes: 266 (98.5%)
1362
+
1363
+ Task: pick up the tomato sauce and place it in the basket
1364
+ Success: True
1365
+ # episodes completed so far: 271
1366
+ # successes: 267 (98.5%)
1367
+
1368
+ Task: pick up the tomato sauce and place it in the basket
1369
+ Success: True
1370
+ # episodes completed so far: 272
1371
+ # successes: 268 (98.5%)
1372
+
1373
+ Task: pick up the tomato sauce and place it in the basket
1374
+ Success: True
1375
+ # episodes completed so far: 273
1376
+ # successes: 269 (98.5%)
1377
+
1378
+ Task: pick up the tomato sauce and place it in the basket
1379
+ Success: True
1380
+ # episodes completed so far: 274
1381
+ # successes: 270 (98.5%)
1382
+
1383
+ Task: pick up the tomato sauce and place it in the basket
1384
+ Success: True
1385
+ # episodes completed so far: 275
1386
+ # successes: 271 (98.5%)
1387
+
1388
+ Task: pick up the tomato sauce and place it in the basket
1389
+ Success: True
1390
+ # episodes completed so far: 276
1391
+ # successes: 272 (98.6%)
1392
+
1393
+ Task: pick up the tomato sauce and place it in the basket
1394
+ Success: True
1395
+ # episodes completed so far: 277
1396
+ # successes: 273 (98.6%)
1397
+
1398
+ Task: pick up the tomato sauce and place it in the basket
1399
+ Success: True
1400
+ # episodes completed so far: 278
1401
+ # successes: 274 (98.6%)
1402
+
1403
+ Task: pick up the tomato sauce and place it in the basket
1404
+ Success: True
1405
+ # episodes completed so far: 279
1406
+ # successes: 275 (98.6%)
1407
+
1408
+ Task: pick up the tomato sauce and place it in the basket
1409
+ Success: True
1410
+ # episodes completed so far: 280
1411
+ # successes: 276 (98.6%)
1412
+
1413
+ Task: pick up the tomato sauce and place it in the basket
1414
+ Success: True
1415
+ # episodes completed so far: 281
1416
+ # successes: 277 (98.6%)
1417
+
1418
+ Task: pick up the tomato sauce and place it in the basket
1419
+ Success: True
1420
+ # episodes completed so far: 282
1421
+ # successes: 278 (98.6%)
1422
+
1423
+ Task: pick up the tomato sauce and place it in the basket
1424
+ Success: True
1425
+ # episodes completed so far: 283
1426
+ # successes: 279 (98.6%)
1427
+
1428
+ Task: pick up the tomato sauce and place it in the basket
1429
+ Success: True
1430
+ # episodes completed so far: 284
1431
+ # successes: 280 (98.6%)
1432
+
1433
+ Task: pick up the tomato sauce and place it in the basket
1434
+ Success: True
1435
+ # episodes completed so far: 285
1436
+ # successes: 281 (98.6%)
1437
+
1438
+ Task: pick up the tomato sauce and place it in the basket
1439
+ Success: True
1440
+ # episodes completed so far: 286
1441
+ # successes: 282 (98.6%)
1442
+
1443
+ Task: pick up the tomato sauce and place it in the basket
1444
+ Success: True
1445
+ # episodes completed so far: 287
1446
+ # successes: 283 (98.6%)
1447
+
1448
+ Task: pick up the tomato sauce and place it in the basket
1449
+ Success: True
1450
+ # episodes completed so far: 288
1451
+ # successes: 284 (98.6%)
1452
+
1453
+ Task: pick up the tomato sauce and place it in the basket
1454
+ Success: True
1455
+ # episodes completed so far: 289
1456
+ # successes: 285 (98.6%)
1457
+
1458
+ Task: pick up the tomato sauce and place it in the basket
1459
+ Success: True
1460
+ # episodes completed so far: 290
1461
+ # successes: 286 (98.6%)
1462
+
1463
+ Task: pick up the tomato sauce and place it in the basket
1464
+ Success: True
1465
+ # episodes completed so far: 291
1466
+ # successes: 287 (98.6%)
1467
+
1468
+ Task: pick up the tomato sauce and place it in the basket
1469
+ Success: True
1470
+ # episodes completed so far: 292
1471
+ # successes: 288 (98.6%)
1472
+
1473
+ Task: pick up the tomato sauce and place it in the basket
1474
+ Success: True
1475
+ # episodes completed so far: 293
1476
+ # successes: 289 (98.6%)
1477
+
1478
+ Task: pick up the tomato sauce and place it in the basket
1479
+ Success: True
1480
+ # episodes completed so far: 294
1481
+ # successes: 290 (98.6%)
1482
+
1483
+ Task: pick up the tomato sauce and place it in the basket
1484
+ Success: True
1485
+ # episodes completed so far: 295
1486
+ # successes: 291 (98.6%)
1487
+
1488
+ Task: pick up the tomato sauce and place it in the basket
1489
+ Success: True
1490
+ # episodes completed so far: 296
1491
+ # successes: 292 (98.6%)
1492
+
1493
+ Task: pick up the tomato sauce and place it in the basket
1494
+ Success: True
1495
+ # episodes completed so far: 297
1496
+ # successes: 293 (98.7%)
1497
+
1498
+ Task: pick up the tomato sauce and place it in the basket
1499
+ Success: True
1500
+ # episodes completed so far: 298
1501
+ # successes: 294 (98.7%)
1502
+
1503
+ Task: pick up the tomato sauce and place it in the basket
1504
+ Success: True
1505
+ # episodes completed so far: 299
1506
+ # successes: 295 (98.7%)
1507
+
1508
+ Task: pick up the tomato sauce and place it in the basket
1509
+ Success: True
1510
+ # episodes completed so far: 300
1511
+ # successes: 296 (98.7%)
1512
+ Current task success rate: 1.0
1513
+ Current total success rate: 0.9866666666666667
1514
+
1515
+ Task: pick up the butter and place it in the basket
1516
+ Success: True
1517
+ # episodes completed so far: 301
1518
+ # successes: 297 (98.7%)
1519
+
1520
+ Task: pick up the butter and place it in the basket
1521
+ Success: True
1522
+ # episodes completed so far: 302
1523
+ # successes: 298 (98.7%)
1524
+
1525
+ Task: pick up the butter and place it in the basket
1526
+ Success: True
1527
+ # episodes completed so far: 303
1528
+ # successes: 299 (98.7%)
1529
+
1530
+ Task: pick up the butter and place it in the basket
1531
+ Success: True
1532
+ # episodes completed so far: 304
1533
+ # successes: 300 (98.7%)
1534
+
1535
+ Task: pick up the butter and place it in the basket
1536
+ Success: True
1537
+ # episodes completed so far: 305
1538
+ # successes: 301 (98.7%)
1539
+
1540
+ Task: pick up the butter and place it in the basket
1541
+ Success: True
1542
+ # episodes completed so far: 306
1543
+ # successes: 302 (98.7%)
1544
+
1545
+ Task: pick up the butter and place it in the basket
1546
+ Success: True
1547
+ # episodes completed so far: 307
1548
+ # successes: 303 (98.7%)
1549
+
1550
+ Task: pick up the butter and place it in the basket
1551
+ Success: True
1552
+ # episodes completed so far: 308
1553
+ # successes: 304 (98.7%)
1554
+
1555
+ Task: pick up the butter and place it in the basket
1556
+ Success: True
1557
+ # episodes completed so far: 309
1558
+ # successes: 305 (98.7%)
1559
+
1560
+ Task: pick up the butter and place it in the basket
1561
+ Success: True
1562
+ # episodes completed so far: 310
1563
+ # successes: 306 (98.7%)
1564
+
1565
+ Task: pick up the butter and place it in the basket
1566
+ Success: True
1567
+ # episodes completed so far: 311
1568
+ # successes: 307 (98.7%)
1569
+
1570
+ Task: pick up the butter and place it in the basket
1571
+ Success: True
1572
+ # episodes completed so far: 312
1573
+ # successes: 308 (98.7%)
1574
+
1575
+ Task: pick up the butter and place it in the basket
1576
+ Success: True
1577
+ # episodes completed so far: 313
1578
+ # successes: 309 (98.7%)
1579
+
1580
+ Task: pick up the butter and place it in the basket
1581
+ Success: True
1582
+ # episodes completed so far: 314
1583
+ # successes: 310 (98.7%)
1584
+
1585
+ Task: pick up the butter and place it in the basket
1586
+ Success: True
1587
+ # episodes completed so far: 315
1588
+ # successes: 311 (98.7%)
1589
+
1590
+ Task: pick up the butter and place it in the basket
1591
+ Success: True
1592
+ # episodes completed so far: 316
1593
+ # successes: 312 (98.7%)
1594
+
1595
+ Task: pick up the butter and place it in the basket
1596
+ Success: True
1597
+ # episodes completed so far: 317
1598
+ # successes: 313 (98.7%)
1599
+
1600
+ Task: pick up the butter and place it in the basket
1601
+ Success: True
1602
+ # episodes completed so far: 318
1603
+ # successes: 314 (98.7%)
1604
+
1605
+ Task: pick up the butter and place it in the basket
1606
+ Success: True
1607
+ # episodes completed so far: 319
1608
+ # successes: 315 (98.7%)
1609
+
1610
+ Task: pick up the butter and place it in the basket
1611
+ Success: True
1612
+ # episodes completed so far: 320
1613
+ # successes: 316 (98.8%)
1614
+
1615
+ Task: pick up the butter and place it in the basket
1616
+ Success: True
1617
+ # episodes completed so far: 321
1618
+ # successes: 317 (98.8%)
1619
+
1620
+ Task: pick up the butter and place it in the basket
1621
+ Success: True
1622
+ # episodes completed so far: 322
1623
+ # successes: 318 (98.8%)
1624
+
1625
+ Task: pick up the butter and place it in the basket
1626
+ Success: True
1627
+ # episodes completed so far: 323
1628
+ # successes: 319 (98.8%)
1629
+
1630
+ Task: pick up the butter and place it in the basket
1631
+ Success: True
1632
+ # episodes completed so far: 324
1633
+ # successes: 320 (98.8%)
1634
+
1635
+ Task: pick up the butter and place it in the basket
1636
+ Success: True
1637
+ # episodes completed so far: 325
1638
+ # successes: 321 (98.8%)
1639
+
1640
+ Task: pick up the butter and place it in the basket
1641
+ Success: True
1642
+ # episodes completed so far: 326
1643
+ # successes: 322 (98.8%)
1644
+
1645
+ Task: pick up the butter and place it in the basket
1646
+ Success: True
1647
+ # episodes completed so far: 327
1648
+ # successes: 323 (98.8%)
1649
+
1650
+ Task: pick up the butter and place it in the basket
1651
+ Success: True
1652
+ # episodes completed so far: 328
1653
+ # successes: 324 (98.8%)
1654
+
1655
+ Task: pick up the butter and place it in the basket
1656
+ Success: True
1657
+ # episodes completed so far: 329
1658
+ # successes: 325 (98.8%)
1659
+
1660
+ Task: pick up the butter and place it in the basket
1661
+ Success: True
1662
+ # episodes completed so far: 330
1663
+ # successes: 326 (98.8%)
1664
+
1665
+ Task: pick up the butter and place it in the basket
1666
+ Success: True
1667
+ # episodes completed so far: 331
1668
+ # successes: 327 (98.8%)
1669
+
1670
+ Task: pick up the butter and place it in the basket
1671
+ Success: True
1672
+ # episodes completed so far: 332
1673
+ # successes: 328 (98.8%)
1674
+
1675
+ Task: pick up the butter and place it in the basket
1676
+ Success: True
1677
+ # episodes completed so far: 333
1678
+ # successes: 329 (98.8%)
1679
+
1680
+ Task: pick up the butter and place it in the basket
1681
+ Success: True
1682
+ # episodes completed so far: 334
1683
+ # successes: 330 (98.8%)
1684
+
1685
+ Task: pick up the butter and place it in the basket
1686
+ Success: True
1687
+ # episodes completed so far: 335
1688
+ # successes: 331 (98.8%)
1689
+
1690
+ Task: pick up the butter and place it in the basket
1691
+ Success: True
1692
+ # episodes completed so far: 336
1693
+ # successes: 332 (98.8%)
1694
+
1695
+ Task: pick up the butter and place it in the basket
1696
+ Success: True
1697
+ # episodes completed so far: 337
1698
+ # successes: 333 (98.8%)
1699
+
1700
+ Task: pick up the butter and place it in the basket
1701
+ Success: True
1702
+ # episodes completed so far: 338
1703
+ # successes: 334 (98.8%)
1704
+
1705
+ Task: pick up the butter and place it in the basket
1706
+ Success: True
1707
+ # episodes completed so far: 339
1708
+ # successes: 335 (98.8%)
1709
+
1710
+ Task: pick up the butter and place it in the basket
1711
+ Success: True
1712
+ # episodes completed so far: 340
1713
+ # successes: 336 (98.8%)
1714
+
1715
+ Task: pick up the butter and place it in the basket
1716
+ Success: True
1717
+ # episodes completed so far: 341
1718
+ # successes: 337 (98.8%)
1719
+
1720
+ Task: pick up the butter and place it in the basket
1721
+ Success: True
1722
+ # episodes completed so far: 342
1723
+ # successes: 338 (98.8%)
1724
+
1725
+ Task: pick up the butter and place it in the basket
1726
+ Success: True
1727
+ # episodes completed so far: 343
1728
+ # successes: 339 (98.8%)
1729
+
1730
+ Task: pick up the butter and place it in the basket
1731
+ Success: True
1732
+ # episodes completed so far: 344
1733
+ # successes: 340 (98.8%)
1734
+
1735
+ Task: pick up the butter and place it in the basket
1736
+ Success: True
1737
+ # episodes completed so far: 345
1738
+ # successes: 341 (98.8%)
1739
+
1740
+ Task: pick up the butter and place it in the basket
1741
+ Success: True
1742
+ # episodes completed so far: 346
1743
+ # successes: 342 (98.8%)
1744
+
1745
+ Task: pick up the butter and place it in the basket
1746
+ Success: True
1747
+ # episodes completed so far: 347
1748
+ # successes: 343 (98.8%)
1749
+
1750
+ Task: pick up the butter and place it in the basket
1751
+ Success: True
1752
+ # episodes completed so far: 348
1753
+ # successes: 344 (98.9%)
1754
+
1755
+ Task: pick up the butter and place it in the basket
1756
+ Success: True
1757
+ # episodes completed so far: 349
1758
+ # successes: 345 (98.9%)
1759
+
1760
+ Task: pick up the butter and place it in the basket
1761
+ Success: True
1762
+ # episodes completed so far: 350
1763
+ # successes: 346 (98.9%)
1764
+ Current task success rate: 1.0
1765
+ Current total success rate: 0.9885714285714285
1766
+
1767
+ Task: pick up the milk and place it in the basket
1768
+ Success: True
1769
+ # episodes completed so far: 351
1770
+ # successes: 347 (98.9%)
1771
+
1772
+ Task: pick up the milk and place it in the basket
1773
+ Success: True
1774
+ # episodes completed so far: 352
1775
+ # successes: 348 (98.9%)
1776
+
1777
+ Task: pick up the milk and place it in the basket
1778
+ Success: True
1779
+ # episodes completed so far: 353
1780
+ # successes: 349 (98.9%)
1781
+
1782
+ Task: pick up the milk and place it in the basket
1783
+ Success: True
1784
+ # episodes completed so far: 354
1785
+ # successes: 350 (98.9%)
1786
+
1787
+ Task: pick up the milk and place it in the basket
1788
+ Success: True
1789
+ # episodes completed so far: 355
1790
+ # successes: 351 (98.9%)
1791
+
1792
+ Task: pick up the milk and place it in the basket
1793
+ Success: True
1794
+ # episodes completed so far: 356
1795
+ # successes: 352 (98.9%)
1796
+
1797
+ Task: pick up the milk and place it in the basket
1798
+ Success: True
1799
+ # episodes completed so far: 357
1800
+ # successes: 353 (98.9%)
1801
+
1802
+ Task: pick up the milk and place it in the basket
1803
+ Success: True
1804
+ # episodes completed so far: 358
1805
+ # successes: 354 (98.9%)
1806
+
1807
+ Task: pick up the milk and place it in the basket
1808
+ Success: True
1809
+ # episodes completed so far: 359
1810
+ # successes: 355 (98.9%)
1811
+
1812
+ Task: pick up the milk and place it in the basket
1813
+ Success: True
1814
+ # episodes completed so far: 360
1815
+ # successes: 356 (98.9%)
1816
+
1817
+ Task: pick up the milk and place it in the basket
1818
+ Success: True
1819
+ # episodes completed so far: 361
1820
+ # successes: 357 (98.9%)
1821
+
1822
+ Task: pick up the milk and place it in the basket
1823
+ Success: True
1824
+ # episodes completed so far: 362
1825
+ # successes: 358 (98.9%)
1826
+
1827
+ Task: pick up the milk and place it in the basket
1828
+ Success: True
1829
+ # episodes completed so far: 363
1830
+ # successes: 359 (98.9%)
1831
+
1832
+ Task: pick up the milk and place it in the basket
1833
+ Success: True
1834
+ # episodes completed so far: 364
1835
+ # successes: 360 (98.9%)
1836
+
1837
+ Task: pick up the milk and place it in the basket
1838
+ Success: True
1839
+ # episodes completed so far: 365
1840
+ # successes: 361 (98.9%)
1841
+
1842
+ Task: pick up the milk and place it in the basket
1843
+ Success: True
1844
+ # episodes completed so far: 366
1845
+ # successes: 362 (98.9%)
1846
+
1847
+ Task: pick up the milk and place it in the basket
1848
+ Success: True
1849
+ # episodes completed so far: 367
1850
+ # successes: 363 (98.9%)
1851
+
1852
+ Task: pick up the milk and place it in the basket
1853
+ Success: True
1854
+ # episodes completed so far: 368
1855
+ # successes: 364 (98.9%)
1856
+
1857
+ Task: pick up the milk and place it in the basket
1858
+ Success: True
1859
+ # episodes completed so far: 369
1860
+ # successes: 365 (98.9%)
1861
+
1862
+ Task: pick up the milk and place it in the basket
1863
+ Success: True
1864
+ # episodes completed so far: 370
1865
+ # successes: 366 (98.9%)
1866
+
1867
+ Task: pick up the milk and place it in the basket
1868
+ Success: True
1869
+ # episodes completed so far: 371
1870
+ # successes: 367 (98.9%)
1871
+
1872
+ Task: pick up the milk and place it in the basket
1873
+ Success: True
1874
+ # episodes completed so far: 372
1875
+ # successes: 368 (98.9%)
1876
+
1877
+ Task: pick up the milk and place it in the basket
1878
+ Success: True
1879
+ # episodes completed so far: 373
1880
+ # successes: 369 (98.9%)
1881
+
1882
+ Task: pick up the milk and place it in the basket
1883
+ Success: True
1884
+ # episodes completed so far: 374
1885
+ # successes: 370 (98.9%)
1886
+
1887
+ Task: pick up the milk and place it in the basket
1888
+ Success: True
1889
+ # episodes completed so far: 375
1890
+ # successes: 371 (98.9%)
1891
+
1892
+ Task: pick up the milk and place it in the basket
1893
+ Success: True
1894
+ # episodes completed so far: 376
1895
+ # successes: 372 (98.9%)
1896
+
1897
+ Task: pick up the milk and place it in the basket
1898
+ Success: True
1899
+ # episodes completed so far: 377
1900
+ # successes: 373 (98.9%)
1901
+
1902
+ Task: pick up the milk and place it in the basket
1903
+ Success: True
1904
+ # episodes completed so far: 378
1905
+ # successes: 374 (98.9%)
1906
+
1907
+ Task: pick up the milk and place it in the basket
1908
+ Success: True
1909
+ # episodes completed so far: 379
1910
+ # successes: 375 (98.9%)
1911
+
1912
+ Task: pick up the milk and place it in the basket
1913
+ Success: True
1914
+ # episodes completed so far: 380
1915
+ # successes: 376 (98.9%)
1916
+
1917
+ Task: pick up the milk and place it in the basket
1918
+ Success: True
1919
+ # episodes completed so far: 381
1920
+ # successes: 377 (99.0%)
1921
+
1922
+ Task: pick up the milk and place it in the basket
1923
+ Success: True
1924
+ # episodes completed so far: 382
1925
+ # successes: 378 (99.0%)
1926
+
1927
+ Task: pick up the milk and place it in the basket
1928
+ Success: True
1929
+ # episodes completed so far: 383
1930
+ # successes: 379 (99.0%)
1931
+
1932
+ Task: pick up the milk and place it in the basket
1933
+ Success: True
1934
+ # episodes completed so far: 384
1935
+ # successes: 380 (99.0%)
1936
+
1937
+ Task: pick up the milk and place it in the basket
1938
+ Success: True
1939
+ # episodes completed so far: 385
1940
+ # successes: 381 (99.0%)
1941
+
1942
+ Task: pick up the milk and place it in the basket
1943
+ Success: True
1944
+ # episodes completed so far: 386
1945
+ # successes: 382 (99.0%)
1946
+
1947
+ Task: pick up the milk and place it in the basket
1948
+ Success: True
1949
+ # episodes completed so far: 387
1950
+ # successes: 383 (99.0%)
1951
+
1952
+ Task: pick up the milk and place it in the basket
1953
+ Success: True
1954
+ # episodes completed so far: 388
1955
+ # successes: 384 (99.0%)
1956
+
1957
+ Task: pick up the milk and place it in the basket
1958
+ Success: True
1959
+ # episodes completed so far: 389
1960
+ # successes: 385 (99.0%)
1961
+
1962
+ Task: pick up the milk and place it in the basket
1963
+ Success: True
1964
+ # episodes completed so far: 390
1965
+ # successes: 386 (99.0%)
1966
+
1967
+ Task: pick up the milk and place it in the basket
1968
+ Success: True
1969
+ # episodes completed so far: 391
1970
+ # successes: 387 (99.0%)
1971
+
1972
+ Task: pick up the milk and place it in the basket
1973
+ Success: True
1974
+ # episodes completed so far: 392
1975
+ # successes: 388 (99.0%)
1976
+
1977
+ Task: pick up the milk and place it in the basket
1978
+ Success: True
1979
+ # episodes completed so far: 393
1980
+ # successes: 389 (99.0%)
1981
+
1982
+ Task: pick up the milk and place it in the basket
1983
+ Success: True
1984
+ # episodes completed so far: 394
1985
+ # successes: 390 (99.0%)
1986
+
1987
+ Task: pick up the milk and place it in the basket
1988
+ Success: True
1989
+ # episodes completed so far: 395
1990
+ # successes: 391 (99.0%)
1991
+
1992
+ Task: pick up the milk and place it in the basket
1993
+ Success: True
1994
+ # episodes completed so far: 396
1995
+ # successes: 392 (99.0%)
1996
+
1997
+ Task: pick up the milk and place it in the basket
1998
+ Success: True
1999
+ # episodes completed so far: 397
2000
+ # successes: 393 (99.0%)
2001
+
2002
+ Task: pick up the milk and place it in the basket
2003
+ Success: True
2004
+ # episodes completed so far: 398
2005
+ # successes: 394 (99.0%)
2006
+
2007
+ Task: pick up the milk and place it in the basket
2008
+ Success: True
2009
+ # episodes completed so far: 399
2010
+ # successes: 395 (99.0%)
2011
+
2012
+ Task: pick up the milk and place it in the basket
2013
+ Success: True
2014
+ # episodes completed so far: 400
2015
+ # successes: 396 (99.0%)
2016
+ Current task success rate: 1.0
2017
+ Current total success rate: 0.99
2018
+
2019
+ Task: pick up the chocolate pudding and place it in the basket
2020
+ Success: True
2021
+ # episodes completed so far: 401
2022
+ # successes: 397 (99.0%)
2023
+
2024
+ Task: pick up the chocolate pudding and place it in the basket
2025
+ Success: True
2026
+ # episodes completed so far: 402
2027
+ # successes: 398 (99.0%)
2028
+
2029
+ Task: pick up the chocolate pudding and place it in the basket
2030
+ Success: True
2031
+ # episodes completed so far: 403
2032
+ # successes: 399 (99.0%)
2033
+
2034
+ Task: pick up the chocolate pudding and place it in the basket
2035
+ Success: True
2036
+ # episodes completed so far: 404
2037
+ # successes: 400 (99.0%)
2038
+
2039
+ Task: pick up the chocolate pudding and place it in the basket
2040
+ Success: True
2041
+ # episodes completed so far: 405
2042
+ # successes: 401 (99.0%)
2043
+
2044
+ Task: pick up the chocolate pudding and place it in the basket
2045
+ Success: True
2046
+ # episodes completed so far: 406
2047
+ # successes: 402 (99.0%)
2048
+
2049
+ Task: pick up the chocolate pudding and place it in the basket
2050
+ Success: True
2051
+ # episodes completed so far: 407
2052
+ # successes: 403 (99.0%)
2053
+
2054
+ Task: pick up the chocolate pudding and place it in the basket
2055
+ Success: True
2056
+ # episodes completed so far: 408
2057
+ # successes: 404 (99.0%)
2058
+
2059
+ Task: pick up the chocolate pudding and place it in the basket
2060
+ Success: True
2061
+ # episodes completed so far: 409
2062
+ # successes: 405 (99.0%)
2063
+
2064
+ Task: pick up the chocolate pudding and place it in the basket
2065
+ Success: True
2066
+ # episodes completed so far: 410
2067
+ # successes: 406 (99.0%)
2068
+
2069
+ Task: pick up the chocolate pudding and place it in the basket
2070
+ Success: True
2071
+ # episodes completed so far: 411
2072
+ # successes: 407 (99.0%)
2073
+
2074
+ Task: pick up the chocolate pudding and place it in the basket
2075
+ Success: True
2076
+ # episodes completed so far: 412
2077
+ # successes: 408 (99.0%)
2078
+
2079
+ Task: pick up the chocolate pudding and place it in the basket
2080
+ Success: True
2081
+ # episodes completed so far: 413
2082
+ # successes: 409 (99.0%)
2083
+
2084
+ Task: pick up the chocolate pudding and place it in the basket
2085
+ Success: True
2086
+ # episodes completed so far: 414
2087
+ # successes: 410 (99.0%)
2088
+
2089
+ Task: pick up the chocolate pudding and place it in the basket
2090
+ Success: True
2091
+ # episodes completed so far: 415
2092
+ # successes: 411 (99.0%)
2093
+
2094
+ Task: pick up the chocolate pudding and place it in the basket
2095
+ Success: True
2096
+ # episodes completed so far: 416
2097
+ # successes: 412 (99.0%)
2098
+
2099
+ Task: pick up the chocolate pudding and place it in the basket
2100
+ Success: True
2101
+ # episodes completed so far: 417
2102
+ # successes: 413 (99.0%)
2103
+
2104
+ Task: pick up the chocolate pudding and place it in the basket
2105
+ Success: True
2106
+ # episodes completed so far: 418
2107
+ # successes: 414 (99.0%)
2108
+
2109
+ Task: pick up the chocolate pudding and place it in the basket
2110
+ Success: True
2111
+ # episodes completed so far: 419
2112
+ # successes: 415 (99.0%)
2113
+
2114
+ Task: pick up the chocolate pudding and place it in the basket
2115
+ Success: True
2116
+ # episodes completed so far: 420
2117
+ # successes: 416 (99.0%)
2118
+
2119
+ Task: pick up the chocolate pudding and place it in the basket
2120
+ Success: True
2121
+ # episodes completed so far: 421
2122
+ # successes: 417 (99.0%)
2123
+
2124
+ Task: pick up the chocolate pudding and place it in the basket
2125
+ Success: True
2126
+ # episodes completed so far: 422
2127
+ # successes: 418 (99.1%)
2128
+
2129
+ Task: pick up the chocolate pudding and place it in the basket
2130
+ Success: True
2131
+ # episodes completed so far: 423
2132
+ # successes: 419 (99.1%)
2133
+
2134
+ Task: pick up the chocolate pudding and place it in the basket
2135
+ Success: True
2136
+ # episodes completed so far: 424
2137
+ # successes: 420 (99.1%)
2138
+
2139
+ Task: pick up the chocolate pudding and place it in the basket
2140
+ Success: True
2141
+ # episodes completed so far: 425
2142
+ # successes: 421 (99.1%)
2143
+
2144
+ Task: pick up the chocolate pudding and place it in the basket
2145
+ Success: True
2146
+ # episodes completed so far: 426
2147
+ # successes: 422 (99.1%)
2148
+
2149
+ Task: pick up the chocolate pudding and place it in the basket
2150
+ Success: True
2151
+ # episodes completed so far: 427
2152
+ # successes: 423 (99.1%)
2153
+
2154
+ Task: pick up the chocolate pudding and place it in the basket
2155
+ Success: True
2156
+ # episodes completed so far: 428
2157
+ # successes: 424 (99.1%)
2158
+
2159
+ Task: pick up the chocolate pudding and place it in the basket
2160
+ Success: True
2161
+ # episodes completed so far: 429
2162
+ # successes: 425 (99.1%)
2163
+
2164
+ Task: pick up the chocolate pudding and place it in the basket
2165
+ Success: True
2166
+ # episodes completed so far: 430
2167
+ # successes: 426 (99.1%)
2168
+
2169
+ Task: pick up the chocolate pudding and place it in the basket
2170
+ Success: True
2171
+ # episodes completed so far: 431
2172
+ # successes: 427 (99.1%)
2173
+
2174
+ Task: pick up the chocolate pudding and place it in the basket
2175
+ Success: True
2176
+ # episodes completed so far: 432
2177
+ # successes: 428 (99.1%)
2178
+
2179
+ Task: pick up the chocolate pudding and place it in the basket
2180
+ Success: True
2181
+ # episodes completed so far: 433
2182
+ # successes: 429 (99.1%)
2183
+
2184
+ Task: pick up the chocolate pudding and place it in the basket
2185
+ Success: True
2186
+ # episodes completed so far: 434
2187
+ # successes: 430 (99.1%)
2188
+
2189
+ Task: pick up the chocolate pudding and place it in the basket
2190
+ Success: True
2191
+ # episodes completed so far: 435
2192
+ # successes: 431 (99.1%)
2193
+
2194
+ Task: pick up the chocolate pudding and place it in the basket
2195
+ Success: True
2196
+ # episodes completed so far: 436
2197
+ # successes: 432 (99.1%)
2198
+
2199
+ Task: pick up the chocolate pudding and place it in the basket
2200
+ Success: True
2201
+ # episodes completed so far: 437
2202
+ # successes: 433 (99.1%)
2203
+
2204
+ Task: pick up the chocolate pudding and place it in the basket
2205
+ Success: True
2206
+ # episodes completed so far: 438
2207
+ # successes: 434 (99.1%)
2208
+
2209
+ Task: pick up the chocolate pudding and place it in the basket
2210
+ Success: True
2211
+ # episodes completed so far: 439
2212
+ # successes: 435 (99.1%)
2213
+
2214
+ Task: pick up the chocolate pudding and place it in the basket
2215
+ Success: True
2216
+ # episodes completed so far: 440
2217
+ # successes: 436 (99.1%)
2218
+
2219
+ Task: pick up the chocolate pudding and place it in the basket
2220
+ Success: True
2221
+ # episodes completed so far: 441
2222
+ # successes: 437 (99.1%)
2223
+
2224
+ Task: pick up the chocolate pudding and place it in the basket
2225
+ Success: True
2226
+ # episodes completed so far: 442
2227
+ # successes: 438 (99.1%)
2228
+
2229
+ Task: pick up the chocolate pudding and place it in the basket
2230
+ Success: True
2231
+ # episodes completed so far: 443
2232
+ # successes: 439 (99.1%)
2233
+
2234
+ Task: pick up the chocolate pudding and place it in the basket
2235
+ Success: True
2236
+ # episodes completed so far: 444
2237
+ # successes: 440 (99.1%)
2238
+
2239
+ Task: pick up the chocolate pudding and place it in the basket
2240
+ Success: True
2241
+ # episodes completed so far: 445
2242
+ # successes: 441 (99.1%)
2243
+
2244
+ Task: pick up the chocolate pudding and place it in the basket
2245
+ Success: True
2246
+ # episodes completed so far: 446
2247
+ # successes: 442 (99.1%)
2248
+
2249
+ Task: pick up the chocolate pudding and place it in the basket
2250
+ Success: True
2251
+ # episodes completed so far: 447
2252
+ # successes: 443 (99.1%)
2253
+
2254
+ Task: pick up the chocolate pudding and place it in the basket
2255
+ Success: True
2256
+ # episodes completed so far: 448
2257
+ # successes: 444 (99.1%)
2258
+
2259
+ Task: pick up the chocolate pudding and place it in the basket
2260
+ Success: True
2261
+ # episodes completed so far: 449
2262
+ # successes: 445 (99.1%)
2263
+
2264
+ Task: pick up the chocolate pudding and place it in the basket
2265
+ Success: True
2266
+ # episodes completed so far: 450
2267
+ # successes: 446 (99.1%)
2268
+ Current task success rate: 1.0
2269
+ Current total success rate: 0.9911111111111112
2270
+
2271
+ Task: pick up the orange juice and place it in the basket
2272
+ Success: True
2273
+ # episodes completed so far: 451
2274
+ # successes: 447 (99.1%)
2275
+
2276
+ Task: pick up the orange juice and place it in the basket
2277
+ Success: True
2278
+ # episodes completed so far: 452
2279
+ # successes: 448 (99.1%)
2280
+
2281
+ Task: pick up the orange juice and place it in the basket
2282
+ Success: True
2283
+ # episodes completed so far: 453
2284
+ # successes: 449 (99.1%)
2285
+
2286
+ Task: pick up the orange juice and place it in the basket
2287
+ Success: True
2288
+ # episodes completed so far: 454
2289
+ # successes: 450 (99.1%)
2290
+
2291
+ Task: pick up the orange juice and place it in the basket
2292
+ Success: True
2293
+ # episodes completed so far: 455
2294
+ # successes: 451 (99.1%)
2295
+
2296
+ Task: pick up the orange juice and place it in the basket
2297
+ Success: True
2298
+ # episodes completed so far: 456
2299
+ # successes: 452 (99.1%)
2300
+
2301
+ Task: pick up the orange juice and place it in the basket
2302
+ Success: True
2303
+ # episodes completed so far: 457
2304
+ # successes: 453 (99.1%)
2305
+
2306
+ Task: pick up the orange juice and place it in the basket
2307
+ Success: True
2308
+ # episodes completed so far: 458
2309
+ # successes: 454 (99.1%)
2310
+
2311
+ Task: pick up the orange juice and place it in the basket
2312
+ Success: True
2313
+ # episodes completed so far: 459
2314
+ # successes: 455 (99.1%)
2315
+
2316
+ Task: pick up the orange juice and place it in the basket
2317
+ Success: True
2318
+ # episodes completed so far: 460
2319
+ # successes: 456 (99.1%)
2320
+
2321
+ Task: pick up the orange juice and place it in the basket
2322
+ Success: True
2323
+ # episodes completed so far: 461
2324
+ # successes: 457 (99.1%)
2325
+
2326
+ Task: pick up the orange juice and place it in the basket
2327
+ Success: True
2328
+ # episodes completed so far: 462
2329
+ # successes: 458 (99.1%)
2330
+
2331
+ Task: pick up the orange juice and place it in the basket
2332
+ Success: True
2333
+ # episodes completed so far: 463
2334
+ # successes: 459 (99.1%)
2335
+
2336
+ Task: pick up the orange juice and place it in the basket
2337
+ Success: True
2338
+ # episodes completed so far: 464
2339
+ # successes: 460 (99.1%)
2340
+
2341
+ Task: pick up the orange juice and place it in the basket
2342
+ Success: True
2343
+ # episodes completed so far: 465
2344
+ # successes: 461 (99.1%)
2345
+
2346
+ Task: pick up the orange juice and place it in the basket
2347
+ Success: True
2348
+ # episodes completed so far: 466
2349
+ # successes: 462 (99.1%)
2350
+
2351
+ Task: pick up the orange juice and place it in the basket
2352
+ Success: True
2353
+ # episodes completed so far: 467
2354
+ # successes: 463 (99.1%)
2355
+
2356
+ Task: pick up the orange juice and place it in the basket
2357
+ Success: True
2358
+ # episodes completed so far: 468
2359
+ # successes: 464 (99.1%)
2360
+
2361
+ Task: pick up the orange juice and place it in the basket
2362
+ Success: True
2363
+ # episodes completed so far: 469
2364
+ # successes: 465 (99.1%)
2365
+
2366
+ Task: pick up the orange juice and place it in the basket
2367
+ Success: True
2368
+ # episodes completed so far: 470
2369
+ # successes: 466 (99.1%)
2370
+
2371
+ Task: pick up the orange juice and place it in the basket
2372
+ Success: True
2373
+ # episodes completed so far: 471
2374
+ # successes: 467 (99.2%)
2375
+
2376
+ Task: pick up the orange juice and place it in the basket
2377
+ Success: True
2378
+ # episodes completed so far: 472
2379
+ # successes: 468 (99.2%)
2380
+
2381
+ Task: pick up the orange juice and place it in the basket
2382
+ Success: True
2383
+ # episodes completed so far: 473
2384
+ # successes: 469 (99.2%)
2385
+
2386
+ Task: pick up the orange juice and place it in the basket
2387
+ Success: True
2388
+ # episodes completed so far: 474
2389
+ # successes: 470 (99.2%)
2390
+
2391
+ Task: pick up the orange juice and place it in the basket
2392
+ Success: True
2393
+ # episodes completed so far: 475
2394
+ # successes: 471 (99.2%)
2395
+
2396
+ Task: pick up the orange juice and place it in the basket
2397
+ Success: True
2398
+ # episodes completed so far: 476
2399
+ # successes: 472 (99.2%)
2400
+
2401
+ Task: pick up the orange juice and place it in the basket
2402
+ Success: True
2403
+ # episodes completed so far: 477
2404
+ # successes: 473 (99.2%)
2405
+
2406
+ Task: pick up the orange juice and place it in the basket
2407
+ Success: True
2408
+ # episodes completed so far: 478
2409
+ # successes: 474 (99.2%)
2410
+
2411
+ Task: pick up the orange juice and place it in the basket
2412
+ Success: True
2413
+ # episodes completed so far: 479
2414
+ # successes: 475 (99.2%)
2415
+
2416
+ Task: pick up the orange juice and place it in the basket
2417
+ Success: True
2418
+ # episodes completed so far: 480
2419
+ # successes: 476 (99.2%)
2420
+
2421
+ Task: pick up the orange juice and place it in the basket
2422
+ Success: True
2423
+ # episodes completed so far: 481
2424
+ # successes: 477 (99.2%)
2425
+
2426
+ Task: pick up the orange juice and place it in the basket
2427
+ Success: True
2428
+ # episodes completed so far: 482
2429
+ # successes: 478 (99.2%)
2430
+
2431
+ Task: pick up the orange juice and place it in the basket
2432
+ Success: True
2433
+ # episodes completed so far: 483
2434
+ # successes: 479 (99.2%)
2435
+
2436
+ Task: pick up the orange juice and place it in the basket
2437
+ Success: True
2438
+ # episodes completed so far: 484
2439
+ # successes: 480 (99.2%)
2440
+
2441
+ Task: pick up the orange juice and place it in the basket
2442
+ Success: True
2443
+ # episodes completed so far: 485
2444
+ # successes: 481 (99.2%)
2445
+
2446
+ Task: pick up the orange juice and place it in the basket
2447
+ Success: True
2448
+ # episodes completed so far: 486
2449
+ # successes: 482 (99.2%)
2450
+
2451
+ Task: pick up the orange juice and place it in the basket
2452
+ Success: True
2453
+ # episodes completed so far: 487
2454
+ # successes: 483 (99.2%)
2455
+
2456
+ Task: pick up the orange juice and place it in the basket
2457
+ Success: True
2458
+ # episodes completed so far: 488
2459
+ # successes: 484 (99.2%)
2460
+
2461
+ Task: pick up the orange juice and place it in the basket
2462
+ Success: True
2463
+ # episodes completed so far: 489
2464
+ # successes: 485 (99.2%)
2465
+
2466
+ Task: pick up the orange juice and place it in the basket
2467
+ Success: True
2468
+ # episodes completed so far: 490
2469
+ # successes: 486 (99.2%)
2470
+
2471
+ Task: pick up the orange juice and place it in the basket
2472
+ Success: True
2473
+ # episodes completed so far: 491
2474
+ # successes: 487 (99.2%)
2475
+
2476
+ Task: pick up the orange juice and place it in the basket
2477
+ Success: True
2478
+ # episodes completed so far: 492
2479
+ # successes: 488 (99.2%)
2480
+
2481
+ Task: pick up the orange juice and place it in the basket
2482
+ Success: True
2483
+ # episodes completed so far: 493
2484
+ # successes: 489 (99.2%)
2485
+
2486
+ Task: pick up the orange juice and place it in the basket
2487
+ Success: True
2488
+ # episodes completed so far: 494
2489
+ # successes: 490 (99.2%)
2490
+
2491
+ Task: pick up the orange juice and place it in the basket
2492
+ Success: True
2493
+ # episodes completed so far: 495
2494
+ # successes: 491 (99.2%)
2495
+
2496
+ Task: pick up the orange juice and place it in the basket
2497
+ Success: True
2498
+ # episodes completed so far: 496
2499
+ # successes: 492 (99.2%)
2500
+
2501
+ Task: pick up the orange juice and place it in the basket
2502
+ Success: True
2503
+ # episodes completed so far: 497
2504
+ # successes: 493 (99.2%)
2505
+
2506
+ Task: pick up the orange juice and place it in the basket
2507
+ Success: True
2508
+ # episodes completed so far: 498
2509
+ # successes: 494 (99.2%)
2510
+
2511
+ Task: pick up the orange juice and place it in the basket
2512
+ Success: True
2513
+ # episodes completed so far: 499
2514
+ # successes: 495 (99.2%)
2515
+
2516
+ Task: pick up the orange juice and place it in the basket
2517
+ Success: True
2518
+ # episodes completed so far: 500
2519
+ # successes: 496 (99.2%)
2520
+ Current task success rate: 1.0
2521
+ Current total success rate: 0.992
libero_object_2B/starvla_qwen_dual/libero_object.log ADDED
@@ -0,0 +1,300 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Step 100, Loss: {'mse_loss': 1.0920847654342651, 'totoal_loss': 1.0920847654342651, 'data_time': 0.02343060285784304, 'model_time': 0.7308909250423312, 'learning_rate': 2.0000000000000002e-07, 'epoch': 0.19})
2
+ Step 200, Loss: {'mse_loss': 1.013953685760498, 'totoal_loss': 1.013953685760498, 'data_time': 0.015784183982759714, 'model_time': 0.7554569509811699, 'learning_rate': 4.0000000000000003e-07, 'epoch': 0.38})
3
+ Step 300, Loss: {'mse_loss': 0.7903984785079956, 'totoal_loss': 0.7903984785079956, 'data_time': 0.018286193953827024, 'model_time': 0.6943496810272336, 'learning_rate': 6.000000000000001e-07, 'epoch': 0.58})
4
+ Step 400, Loss: {'mse_loss': 0.5798404812812805, 'totoal_loss': 0.5798404812812805, 'data_time': 0.015069403918460011, 'model_time': 0.726154742995277, 'learning_rate': 8.000000000000001e-07, 'epoch': 0.77})
5
+ Step 500, Loss: {'mse_loss': 0.44030675292015076, 'totoal_loss': 0.44030675292015076, 'data_time': 0.018939897185191512, 'model_time': 0.731265036156401, 'learning_rate': 1.0000000000000002e-06, 'epoch': 0.96})
6
+ Step 600, Loss: {'mse_loss': 0.31561365723609924, 'totoal_loss': 0.31561365723609924, 'data_time': 0.00958547811023891, 'model_time': 0.72026436496526, 'learning_rate': 1.2000000000000002e-06, 'epoch': 1.15})
7
+ Step 700, Loss: {'mse_loss': 0.27839016914367676, 'totoal_loss': 0.27839016914367676, 'data_time': 0.008717965800315142, 'model_time': 0.7289881380274892, 'learning_rate': 1.4000000000000001e-06, 'epoch': 1.34})
8
+ Step 800, Loss: {'mse_loss': 0.24903728067874908, 'totoal_loss': 0.24903728067874908, 'data_time': 0.01200939598493278, 'model_time': 0.6902258789632469, 'learning_rate': 1.6000000000000001e-06, 'epoch': 1.54})
9
+ Step 900, Loss: {'mse_loss': 0.13907194137573242, 'totoal_loss': 0.13907194137573242, 'data_time': 0.010014379862695932, 'model_time': 0.7619895760435611, 'learning_rate': 1.8000000000000001e-06, 'epoch': 1.73})
10
+ Step 1000, Loss: {'mse_loss': 0.14329072833061218, 'totoal_loss': 0.14329072833061218, 'data_time': 0.007780236890539527, 'model_time': 0.7075905289966613, 'learning_rate': 2.0000000000000003e-06, 'epoch': 1.92})
11
+ Step 1100, Loss: {'mse_loss': 0.10863454639911652, 'totoal_loss': 0.10863454639911652, 'data_time': 0.0005872398614883423, 'model_time': 0.7117184060625732, 'learning_rate': 2.2e-06, 'epoch': 2.11})
12
+ Step 1200, Loss: {'mse_loss': 0.11539728939533234, 'totoal_loss': 0.11539728939533234, 'data_time': 0.00039407401345670223, 'model_time': 0.7391370648983866, 'learning_rate': 2.4000000000000003e-06, 'epoch': 2.3})
13
+ Step 1300, Loss: {'mse_loss': 0.1289437711238861, 'totoal_loss': 0.1289437711238861, 'data_time': 0.0005200039595365524, 'model_time': 0.8281702960375696, 'learning_rate': 2.6e-06, 'epoch': 2.5})
14
+ Step 1400, Loss: {'mse_loss': 0.10825217515230179, 'totoal_loss': 0.10825217515230179, 'data_time': 0.0003972630947828293, 'model_time': 0.7434797869063914, 'learning_rate': 2.8000000000000003e-06, 'epoch': 2.69})
15
+ Step 1500, Loss: {'mse_loss': 0.10928871482610703, 'totoal_loss': 0.10928871482610703, 'data_time': 0.0005122979637235403, 'model_time': 0.8024768689647317, 'learning_rate': 3e-06, 'epoch': 2.88})
16
+ Step 1600, Loss: {'mse_loss': 0.11294952034950256, 'totoal_loss': 0.11294952034950256, 'data_time': 0.014398896135389805, 'model_time': 0.7262050660792738, 'learning_rate': 3.2000000000000003e-06, 'epoch': 3.07})
17
+ Step 1700, Loss: {'mse_loss': 0.11071083694696426, 'totoal_loss': 0.11071083694696426, 'data_time': 0.015914395917207003, 'model_time': 0.7179847669322044, 'learning_rate': 3.4000000000000005e-06, 'epoch': 3.26})
18
+ Step 1800, Loss: {'mse_loss': 0.08492431044578552, 'totoal_loss': 0.08492431044578552, 'data_time': 0.01867756899446249, 'model_time': 0.8027431659866124, 'learning_rate': 3.6000000000000003e-06, 'epoch': 3.45})
19
+ Step 1900, Loss: {'mse_loss': 0.1059599220752716, 'totoal_loss': 0.1059599220752716, 'data_time': 0.01615074696019292, 'model_time': 0.6930923811160028, 'learning_rate': 3.8000000000000005e-06, 'epoch': 3.65})
20
+ Step 2000, Loss: {'mse_loss': 0.08806969970464706, 'totoal_loss': 0.08806969970464706, 'data_time': 0.015536651946604252, 'model_time': 0.7064903951250017, 'learning_rate': 4.000000000000001e-06, 'epoch': 3.84})
21
+ Step 2100, Loss: {'mse_loss': 0.08092450350522995, 'totoal_loss': 0.08092450350522995, 'data_time': 0.023628258146345615, 'model_time': 0.7459355220198631, 'learning_rate': 4.2000000000000004e-06, 'epoch': 4.03})
22
+ Step 2200, Loss: {'mse_loss': 0.11737465858459473, 'totoal_loss': 0.11737465858459473, 'data_time': 0.02305603213608265, 'model_time': 0.7736091769766062, 'learning_rate': 4.4e-06, 'epoch': 4.22})
23
+ Step 2300, Loss: {'mse_loss': 0.11407825350761414, 'totoal_loss': 0.11407825350761414, 'data_time': 0.022239361191168427, 'model_time': 0.7720185918733478, 'learning_rate': 4.600000000000001e-06, 'epoch': 4.41})
24
+ Step 2400, Loss: {'mse_loss': 0.08045818656682968, 'totoal_loss': 0.08045818656682968, 'data_time': 0.02333595114760101, 'model_time': 0.7342059360817075, 'learning_rate': 4.800000000000001e-06, 'epoch': 4.61})
25
+ Step 2500, Loss: {'mse_loss': 0.10001964122056961, 'totoal_loss': 0.10001964122056961, 'data_time': 0.02219679392874241, 'model_time': 0.7220925989095122, 'learning_rate': 5e-06, 'epoch': 4.8})
26
+ Step 2600, Loss: {'mse_loss': 0.08649373799562454, 'totoal_loss': 0.08649373799562454, 'data_time': 0.021405488019809127, 'model_time': 0.668902481906116, 'learning_rate': 5.2e-06, 'epoch': 4.99})
27
+ Step 2700, Loss: {'mse_loss': 0.05948375165462494, 'totoal_loss': 0.05948375165462494, 'data_time': 0.0003965948708355427, 'model_time': 0.7296819370239973, 'learning_rate': 5.400000000000001e-06, 'epoch': 5.18})
28
+ Step 2800, Loss: {'mse_loss': 0.07164201140403748, 'totoal_loss': 0.07164201140403748, 'data_time': 0.00037374207749962807, 'model_time': 0.7505897311493754, 'learning_rate': 5.600000000000001e-06, 'epoch': 5.37})
29
+ Step 2900, Loss: {'mse_loss': 0.049003638327121735, 'totoal_loss': 0.049003638327121735, 'data_time': 0.00037630507722496986, 'model_time': 0.7440552061889321, 'learning_rate': 5.8e-06, 'epoch': 5.57})
30
+ Step 3000, Loss: {'mse_loss': 0.07626175880432129, 'totoal_loss': 0.07626175880432129, 'data_time': 0.00032834894955158234, 'model_time': 0.7604364731814712, 'learning_rate': 6e-06, 'epoch': 5.76})
31
+ Step 3100, Loss: {'mse_loss': 0.08215879648923874, 'totoal_loss': 0.08215879648923874, 'data_time': 0.00032220594584941864, 'model_time': 0.7587748949881643, 'learning_rate': 6.200000000000001e-06, 'epoch': 5.95})
32
+ Step 3200, Loss: {'mse_loss': 0.049999840557575226, 'totoal_loss': 0.049999840557575226, 'data_time': 0.0006572098936885595, 'model_time': 0.7854860089719296, 'learning_rate': 6.4000000000000006e-06, 'epoch': 6.14})
33
+ Step 3300, Loss: {'mse_loss': 0.04878899082541466, 'totoal_loss': 0.04878899082541466, 'data_time': 0.00037459307350218296, 'model_time': 0.7602060660719872, 'learning_rate': 6.600000000000001e-06, 'epoch': 6.33})
34
+ Step 3400, Loss: {'mse_loss': 0.0942612737417221, 'totoal_loss': 0.0942612737417221, 'data_time': 0.0005466921720653772, 'model_time': 0.8280778301414102, 'learning_rate': 6.800000000000001e-06, 'epoch': 6.53})
35
+ Step 3500, Loss: {'mse_loss': 0.07430335879325867, 'totoal_loss': 0.07430335879325867, 'data_time': 0.0004409770481288433, 'model_time': 0.7226893259212375, 'learning_rate': 7e-06, 'epoch': 6.72})
36
+ Step 3600, Loss: {'mse_loss': 0.05002336576581001, 'totoal_loss': 0.05002336576581001, 'data_time': 0.000482392031699419, 'model_time': 0.810030200984329, 'learning_rate': 7.2000000000000005e-06, 'epoch': 6.91})
37
+ Step 3700, Loss: {'mse_loss': 0.04194067046046257, 'totoal_loss': 0.04194067046046257, 'data_time': 0.01636562100611627, 'model_time': 0.6967385089956224, 'learning_rate': 7.4e-06, 'epoch': 7.1})
38
+ Step 3800, Loss: {'mse_loss': 0.048008594661951065, 'totoal_loss': 0.048008594661951065, 'data_time': 0.01767585310153663, 'model_time': 0.9780662078410387, 'learning_rate': 7.600000000000001e-06, 'epoch': 7.29})
39
+ Step 3900, Loss: {'mse_loss': 0.05387110263109207, 'totoal_loss': 0.05387110263109207, 'data_time': 0.014988776994869113, 'model_time': 0.7438321660738438, 'learning_rate': 7.800000000000002e-06, 'epoch': 7.49})
40
+ Step 4000, Loss: {'mse_loss': 0.0620727464556694, 'totoal_loss': 0.0620727464556694, 'data_time': 0.01754714990966022, 'model_time': 0.7051222510635853, 'learning_rate': 8.000000000000001e-06, 'epoch': 7.68})
41
+ Step 4100, Loss: {'mse_loss': 0.06100829318165779, 'totoal_loss': 0.06100829318165779, 'data_time': 0.01601624395698309, 'model_time': 0.7734201541170478, 'learning_rate': 8.2e-06, 'epoch': 7.87})
42
+ Step 4200, Loss: {'mse_loss': 0.05932135507464409, 'totoal_loss': 0.05932135507464409, 'data_time': 0.007849342189729214, 'model_time': 0.8066664200741798, 'learning_rate': 8.400000000000001e-06, 'epoch': 8.06})
43
+ Step 4300, Loss: {'mse_loss': 0.04850471392273903, 'totoal_loss': 0.04850471392273903, 'data_time': 0.008827543118968606, 'model_time': 0.7975061878096312, 'learning_rate': 8.6e-06, 'epoch': 8.25})
44
+ Step 4400, Loss: {'mse_loss': 0.08841116726398468, 'totoal_loss': 0.08841116726398468, 'data_time': 0.008378867991268635, 'model_time': 0.7437195959500968, 'learning_rate': 8.8e-06, 'epoch': 8.45})
45
+ Step 4500, Loss: {'mse_loss': 0.07513365149497986, 'totoal_loss': 0.07513365149497986, 'data_time': 0.01073434203863144, 'model_time': 0.759082725038752, 'learning_rate': 9e-06, 'epoch': 8.64})
46
+ Step 4600, Loss: {'mse_loss': 0.051326584070920944, 'totoal_loss': 0.051326584070920944, 'data_time': 0.009363105986267328, 'model_time': 0.7378299741540104, 'learning_rate': 9.200000000000002e-06, 'epoch': 8.83})
47
+ Step 4700, Loss: {'mse_loss': 0.06674464046955109, 'totoal_loss': 0.06674464046955109, 'data_time': 0.008365972898900509, 'model_time': 0.7148252290207893, 'learning_rate': 9.4e-06, 'epoch': 9.02})
48
+ Step 4800, Loss: {'mse_loss': 0.032604046165943146, 'totoal_loss': 0.032604046165943146, 'data_time': 0.008227626094594598, 'model_time': 0.8228613410610706, 'learning_rate': 9.600000000000001e-06, 'epoch': 9.21})
49
+ Step 4900, Loss: {'mse_loss': 0.04241829365491867, 'totoal_loss': 0.04241829365491867, 'data_time': 0.008502282900735736, 'model_time': 0.7329984889365733, 'learning_rate': 9.800000000000001e-06, 'epoch': 9.4})
50
+ Step 5000, Loss: {'mse_loss': 0.05776876583695412, 'totoal_loss': 0.05776876583695412, 'data_time': 0.008678165031597018, 'model_time': 0.7044772659428418, 'learning_rate': 1e-05, 'epoch': 9.6})
51
+ Step 5100, Loss: {'mse_loss': 0.052203454077243805, 'totoal_loss': 0.052203454077243805, 'data_time': 0.008355787955224514, 'model_time': 0.7080730930902064, 'learning_rate': 9.999615090493604e-06, 'epoch': 9.79})
52
+ Step 5200, Loss: {'mse_loss': 0.029819244518876076, 'totoal_loss': 0.029819244518876076, 'data_time': 0.008393511874601245, 'model_time': 0.7188414451666176, 'learning_rate': 9.998460422756089e-06, 'epoch': 9.98})
53
+ Step 5300, Loss: {'mse_loss': 0.04854217916727066, 'totoal_loss': 0.04854217916727066, 'data_time': 0.00034162402153015137, 'model_time': 0.7093251829501241, 'learning_rate': 9.996536179122874e-06, 'epoch': 10.17})
54
+ Step 5400, Loss: {'mse_loss': 0.05773342773318291, 'totoal_loss': 0.05773342773318291, 'data_time': 0.0004138180520385504, 'model_time': 0.7994937461335212, 'learning_rate': 9.993842663454337e-06, 'epoch': 10.36})
55
+ Step 5500, Loss: {'mse_loss': 0.046958256512880325, 'totoal_loss': 0.046958256512880325, 'data_time': 0.0004640768747776747, 'model_time': 0.7057794909924269, 'learning_rate': 9.990380301087824e-06, 'epoch': 10.56})
56
+ Step 5600, Loss: {'mse_loss': 0.04251040145754814, 'totoal_loss': 0.04251040145754814, 'data_time': 0.0007949469145387411, 'model_time': 0.6985377608798444, 'learning_rate': 9.986149638770493e-06, 'epoch': 10.75})
57
+ Step 5700, Loss: {'mse_loss': 0.0648089125752449, 'totoal_loss': 0.0648089125752449, 'data_time': 0.00037800404243171215, 'model_time': 0.7887391890399158, 'learning_rate': 9.981151344572967e-06, 'epoch': 10.94})
58
+ Step 5800, Loss: {'mse_loss': 0.03618064522743225, 'totoal_loss': 0.03618064522743225, 'data_time': 0.01154196192510426, 'model_time': 0.7662397939711809, 'learning_rate': 9.975386207783839e-06, 'epoch': 11.13})
59
+ Step 5900, Loss: {'mse_loss': 0.029743041843175888, 'totoal_loss': 0.029743041843175888, 'data_time': 0.008748946944251657, 'model_time': 0.7359931108076125, 'learning_rate': 9.968855138785041e-06, 'epoch': 11.32})
60
+ Step 6000, Loss: {'mse_loss': 0.053677044808864594, 'totoal_loss': 0.053677044808864594, 'data_time': 0.012554885121062398, 'model_time': 0.7385996179655194, 'learning_rate': 9.961559168908081e-06, 'epoch': 11.52})
61
+ Step 6100, Loss: {'mse_loss': 0.03623627871274948, 'totoal_loss': 0.03623627871274948, 'data_time': 0.009090204956009984, 'model_time': 0.7254684269428253, 'learning_rate': 9.953499450271174e-06, 'epoch': 11.71})
62
+ Step 6200, Loss: {'mse_loss': 0.06485217064619064, 'totoal_loss': 0.06485217064619064, 'data_time': 0.010258454130962491, 'model_time': 0.6966716579627246, 'learning_rate': 9.944677255597332e-06, 'epoch': 11.9})
63
+ Step 6300, Loss: {'mse_loss': 0.07177970558404922, 'totoal_loss': 0.07177970558404922, 'data_time': 0.00934776896610856, 'model_time': 0.8203168329782784, 'learning_rate': 9.935093978013357e-06, 'epoch': 12.09})
64
+ Step 6400, Loss: {'mse_loss': 0.06033426895737648, 'totoal_loss': 0.06033426895737648, 'data_time': 0.009029475972056389, 'model_time': 0.7437694240361452, 'learning_rate': 9.924751130829878e-06, 'epoch': 12.28})
65
+ Step 6500, Loss: {'mse_loss': 0.06259758025407791, 'totoal_loss': 0.06259758025407791, 'data_time': 0.008303953101858497, 'model_time': 0.7570314418990165, 'learning_rate': 9.91365034730236e-06, 'epoch': 12.48})
66
+ Step 6600, Loss: {'mse_loss': 0.04144638031721115, 'totoal_loss': 0.04144638031721115, 'data_time': 0.008762445067986846, 'model_time': 0.7371075141709298, 'learning_rate': 9.901793380373204e-06, 'epoch': 12.67})
67
+ Step 6700, Loss: {'mse_loss': 0.042474761605262756, 'totoal_loss': 0.042474761605262756, 'data_time': 0.008677056059241295, 'model_time': 0.7085791260469705, 'learning_rate': 9.889182102394944e-06, 'epoch': 12.86})
68
+ Step 6800, Loss: {'mse_loss': 0.035049449652433395, 'totoal_loss': 0.035049449652433395, 'data_time': 0.00969194807112217, 'model_time': 0.7373382779769599, 'learning_rate': 9.875818504834564e-06, 'epoch': 13.05})
69
+ Step 6900, Loss: {'mse_loss': 0.06618570536375046, 'totoal_loss': 0.06618570536375046, 'data_time': 0.011543180793523788, 'model_time': 0.7246945991646498, 'learning_rate': 9.861704697959036e-06, 'epoch': 13.24})
70
+ Step 7000, Loss: {'mse_loss': 0.027039185166358948, 'totoal_loss': 0.027039185166358948, 'data_time': 0.008685895940288901, 'model_time': 0.7132872638758272, 'learning_rate': 9.846842910502077e-06, 'epoch': 13.44})
71
+ Step 7100, Loss: {'mse_loss': 0.041005950421094894, 'totoal_loss': 0.041005950421094894, 'data_time': 0.010179101023823023, 'model_time': 0.7112309630028903, 'learning_rate': 9.831235489312212e-06, 'epoch': 13.63})
72
+ Step 7200, Loss: {'mse_loss': 0.030970880761742592, 'totoal_loss': 0.030970880761742592, 'data_time': 0.009403584990650415, 'model_time': 0.6947180139832199, 'learning_rate': 9.814884898982168e-06, 'epoch': 13.82})
73
+ Step 7300, Loss: {'mse_loss': 0.02890520915389061, 'totoal_loss': 0.02890520915389061, 'data_time': 0.00960975093767047, 'model_time': 0.9499097510706633, 'learning_rate': 9.797793721459709e-06, 'epoch': 14.01})
74
+ Step 7400, Loss: {'mse_loss': 0.02809273451566696, 'totoal_loss': 0.02809273451566696, 'data_time': 0.00953502394258976, 'model_time': 0.7317585509736091, 'learning_rate': 9.779964655639886e-06, 'epoch': 14.2})
75
+ Step 7500, Loss: {'mse_loss': 0.04206806793808937, 'totoal_loss': 0.04206806793808937, 'data_time': 0.007079293020069599, 'model_time': 0.7090131801087409, 'learning_rate': 9.761400516938874e-06, 'epoch': 14.4})
76
+ Step 7600, Loss: {'mse_loss': 0.04481825977563858, 'totoal_loss': 0.04481825977563858, 'data_time': 0.012733026873320341, 'model_time': 0.7509514691773802, 'learning_rate': 9.74210423684938e-06, 'epoch': 14.59})
77
+ Step 7700, Loss: {'mse_loss': 0.05087508261203766, 'totoal_loss': 0.05087508261203766, 'data_time': 0.008517618989571929, 'model_time': 0.7387509241234511, 'learning_rate': 9.722078862477715e-06, 'epoch': 14.78})
78
+ Step 7800, Loss: {'mse_loss': 0.033079639077186584, 'totoal_loss': 0.033079639077186584, 'data_time': 0.008028051117435098, 'model_time': 0.7164363188203424, 'learning_rate': 9.701327556062637e-06, 'epoch': 14.97})
79
+ Step 7900, Loss: {'mse_loss': 0.041696060448884964, 'totoal_loss': 0.041696060448884964, 'data_time': 0.0003905720077455044, 'model_time': 0.7437919599469751, 'learning_rate': 9.679853594475985e-06, 'epoch': 15.16})
80
+ Step 8000, Loss: {'mse_loss': 0.024226313456892967, 'totoal_loss': 0.024226313456892967, 'data_time': 0.0003886129707098007, 'model_time': 0.7604458569549024, 'learning_rate': 9.657660368705225e-06, 'epoch': 15.36})
81
+ Step 8100, Loss: {'mse_loss': 0.04961169511079788, 'totoal_loss': 0.04961169511079788, 'data_time': 0.0005064799915999174, 'model_time': 0.7641856130212545, 'learning_rate': 9.634751383317983e-06, 'epoch': 15.55})
82
+ Step 8200, Loss: {'mse_loss': 0.03235645219683647, 'totoal_loss': 0.03235645219683647, 'data_time': 0.0004688519984483719, 'model_time': 0.7568358189892024, 'learning_rate': 9.611130255908619e-06, 'epoch': 15.74})
83
+ Step 8300, Loss: {'mse_loss': 0.02698090299963951, 'totoal_loss': 0.02698090299963951, 'data_time': 0.0004009469412267208, 'model_time': 0.7384491339325905, 'learning_rate': 9.586800716526974e-06, 'epoch': 15.93})
84
+ Step 8400, Loss: {'mse_loss': 0.03900247812271118, 'totoal_loss': 0.03900247812271118, 'data_time': 0.008231970015913248, 'model_time': 0.713727222988382, 'learning_rate': 9.561766607089355e-06, 'epoch': 16.12})
85
+ Step 8500, Loss: {'mse_loss': 0.04589349403977394, 'totoal_loss': 0.04589349403977394, 'data_time': 0.009528452064841986, 'model_time': 0.719239505007863, 'learning_rate': 9.536031880771846e-06, 'epoch': 16.31})
86
+ Step 8600, Loss: {'mse_loss': 0.06401956081390381, 'totoal_loss': 0.06401956081390381, 'data_time': 0.00881220307201147, 'model_time': 0.8354902199935168, 'learning_rate': 9.50960060138606e-06, 'epoch': 16.51})
87
+ Step 8700, Loss: {'mse_loss': 0.030583564192056656, 'totoal_loss': 0.030583564192056656, 'data_time': 0.012497060932219028, 'model_time': 0.6989681019913405, 'learning_rate': 9.482476942737411e-06, 'epoch': 16.7})
88
+ Step 8800, Loss: {'mse_loss': 0.030478855594992638, 'totoal_loss': 0.030478855594992638, 'data_time': 0.008731137029826641, 'model_time': 0.7433080768678337, 'learning_rate': 9.45466518796603e-06, 'epoch': 16.89})
89
+ Step 8900, Loss: {'mse_loss': 0.029444009065628052, 'totoal_loss': 0.029444009065628052, 'data_time': 0.00037519680336117744, 'model_time': 0.7124192682094872, 'learning_rate': 9.426169728870399e-06, 'epoch': 17.08})
90
+ Step 9000, Loss: {'mse_loss': 0.04442914202809334, 'totoal_loss': 0.04442914202809334, 'data_time': 0.000506082084029913, 'model_time': 0.7171233519911766, 'learning_rate': 9.396995065213835e-06, 'epoch': 17.27})
91
+ Step 9100, Loss: {'mse_loss': 0.02283179573714733, 'totoal_loss': 0.02283179573714733, 'data_time': 0.0004637991078197956, 'model_time': 0.726072354009375, 'learning_rate': 9.367145804013938e-06, 'epoch': 17.47})
92
+ Step 9200, Loss: {'mse_loss': 0.03492137789726257, 'totoal_loss': 0.03492137789726257, 'data_time': 0.0003564879298210144, 'model_time': 0.7471453140024096, 'learning_rate': 9.336626658815071e-06, 'epoch': 17.66})
93
+ Step 9300, Loss: {'mse_loss': 0.041591912508010864, 'totoal_loss': 0.041591912508010864, 'data_time': 0.0003736191429197788, 'model_time': 0.7046264880336821, 'learning_rate': 9.305442448944056e-06, 'epoch': 17.85})
94
+ Step 9400, Loss: {'mse_loss': 0.0489891842007637, 'totoal_loss': 0.0489891842007637, 'data_time': 0.009292477974668145, 'model_time': 0.718574098078534, 'learning_rate': 9.273598098749124e-06, 'epoch': 18.04})
95
+ Step 9500, Loss: {'mse_loss': 0.02294195629656315, 'totoal_loss': 0.02294195629656315, 'data_time': 0.010158240096643567, 'model_time': 0.7203390400391072, 'learning_rate': 9.241098636822324e-06, 'epoch': 18.23})
96
+ Step 9600, Loss: {'mse_loss': 0.03132305666804314, 'totoal_loss': 0.03132305666804314, 'data_time': 0.008276929846033454, 'model_time': 0.82576780510135, 'learning_rate': 9.207949195205442e-06, 'epoch': 18.43})
97
+ Step 9700, Loss: {'mse_loss': 0.020233357325196266, 'totoal_loss': 0.020233357325196266, 'data_time': 0.009559941943734884, 'model_time': 0.7798621768597513, 'learning_rate': 9.174155008579588e-06, 'epoch': 18.62})
98
+ Step 9800, Loss: {'mse_loss': 0.030211837962269783, 'totoal_loss': 0.030211837962269783, 'data_time': 0.011239211075007915, 'model_time': 0.7119612488895655, 'learning_rate': 9.139721413438583e-06, 'epoch': 18.81})
99
+ Step 9900, Loss: {'mse_loss': 0.02049325965344906, 'totoal_loss': 0.02049325965344906, 'data_time': 1.9641395129729062, 'model_time': 1.0679177059791982, 'learning_rate': 9.104653847246273e-06, 'epoch': 19.0})
100
+ Step 10000, Loss: {'mse_loss': 0.020608922466635704, 'totoal_loss': 0.020608922466635704, 'data_time': 0.01792752300389111, 'model_time': 0.7107511600479484, 'learning_rate': 9.068957847577869e-06, 'epoch': 19.19})
101
+ Step 10100, Loss: {'mse_loss': 0.037057239562273026, 'totoal_loss': 0.037057239562273026, 'data_time': 0.01663572690449655, 'model_time': 0.7541124748531729, 'learning_rate': 9.032639051245524e-06, 'epoch': 19.39})
102
+ Step 10200, Loss: {'mse_loss': 0.03329411521553993, 'totoal_loss': 0.03329411521553993, 'data_time': 0.01630500704050064, 'model_time': 0.6855893509928137, 'learning_rate': 8.995703193408199e-06, 'epoch': 19.58})
103
+ Step 10300, Loss: {'mse_loss': 0.032977234572172165, 'totoal_loss': 0.032977234572172165, 'data_time': 0.017764967866241932, 'model_time': 0.7833426659926772, 'learning_rate': 8.958156106666017e-06, 'epoch': 19.77})
104
+ Step 10400, Loss: {'mse_loss': 0.021661143749952316, 'totoal_loss': 0.021661143749952316, 'data_time': 0.016710472060367465, 'model_time': 0.699397403979674, 'learning_rate': 8.92000372013924e-06, 'epoch': 19.96})
105
+ Step 10500, Loss: {'mse_loss': 0.028207335621118546, 'totoal_loss': 0.028207335621118546, 'data_time': 0.01623769709840417, 'model_time': 0.727909830166027, 'learning_rate': 8.881252058531973e-06, 'epoch': 20.15})
106
+ Step 10600, Loss: {'mse_loss': 0.027855977416038513, 'totoal_loss': 0.027855977416038513, 'data_time': 0.015409091021865606, 'model_time': 0.7434313979465514, 'learning_rate': 8.841907241180809e-06, 'epoch': 20.35})
107
+ Step 10700, Loss: {'mse_loss': 0.01905183121562004, 'totoal_loss': 0.01905183121562004, 'data_time': 0.018481021048501134, 'model_time': 0.7954737187828869, 'learning_rate': 8.801975481088507e-06, 'epoch': 20.54})
108
+ Step 10800, Loss: {'mse_loss': 0.036284998059272766, 'totoal_loss': 0.036284998059272766, 'data_time': 0.01936021586880088, 'model_time': 0.8093767380341887, 'learning_rate': 8.761463083942889e-06, 'epoch': 20.73})
109
+ Step 10900, Loss: {'mse_loss': 0.028048623353242874, 'totoal_loss': 0.028048623353242874, 'data_time': 0.01602370198816061, 'model_time': 0.6999608760233968, 'learning_rate': 8.720376447121098e-06, 'epoch': 20.92})
110
+ Step 11000, Loss: {'mse_loss': 0.031373679637908936, 'totoal_loss': 0.031373679637908936, 'data_time': 0.00897225714288652, 'model_time': 0.781140323029831, 'learning_rate': 8.678722058679382e-06, 'epoch': 21.11})
111
+ Step 11100, Loss: {'mse_loss': 0.015154816210269928, 'totoal_loss': 0.015154816210269928, 'data_time': 0.011078970972448587, 'model_time': 0.8113631238229573, 'learning_rate': 8.636506496328546e-06, 'epoch': 21.31})
112
+ Step 11200, Loss: {'mse_loss': 0.029491668567061424, 'totoal_loss': 0.029491668567061424, 'data_time': 0.011887399014085531, 'model_time': 0.698444196023047, 'learning_rate': 8.593736426395268e-06, 'epoch': 21.5})
113
+ Step 11300, Loss: {'mse_loss': 0.020188957452774048, 'totoal_loss': 0.020188957452774048, 'data_time': 0.009286412037909031, 'model_time': 0.7292170261498541, 'learning_rate': 8.550418602769392e-06, 'epoch': 21.69})
114
+ Step 11400, Loss: {'mse_loss': 0.030071860179305077, 'totoal_loss': 0.030071860179305077, 'data_time': 0.007383530028164387, 'model_time': 0.9217805219814181, 'learning_rate': 8.506559865837425e-06, 'epoch': 21.88})
115
+ Step 11500, Loss: {'mse_loss': 0.03719724342226982, 'totoal_loss': 0.03719724342226982, 'data_time': 0.008090450894087553, 'model_time': 0.7264074077829719, 'learning_rate': 8.462167141402359e-06, 'epoch': 22.07})
116
+ Step 11600, Loss: {'mse_loss': 0.025153521448373795, 'totoal_loss': 0.025153521448373795, 'data_time': 0.008926391135901213, 'model_time': 0.6947740779723972, 'learning_rate': 8.417247439589994e-06, 'epoch': 22.26})
117
+ Step 11700, Loss: {'mse_loss': 0.019076401367783546, 'totoal_loss': 0.019076401367783546, 'data_time': 0.00922491098754108, 'model_time': 0.7320559110958129, 'learning_rate': 8.371807853741978e-06, 'epoch': 22.46})
118
+ Step 11800, Loss: {'mse_loss': 0.02848297543823719, 'totoal_loss': 0.02848297543823719, 'data_time': 0.011651409091427922, 'model_time': 0.7363767249044031, 'learning_rate': 8.325855559295663e-06, 'epoch': 22.65})
119
+ Step 11900, Loss: {'mse_loss': 0.02519809640944004, 'totoal_loss': 0.02519809640944004, 'data_time': 0.010472032940015197, 'model_time': 0.7666329948697239, 'learning_rate': 8.279397812651042e-06, 'epoch': 22.84})
120
+ Step 12000, Loss: {'mse_loss': 0.023141304031014442, 'totoal_loss': 0.023141304031014442, 'data_time': 0.010260938899591565, 'model_time': 0.7288079941645265, 'learning_rate': 8.232441950024864e-06, 'epoch': 23.03})
121
+ Step 12100, Loss: {'mse_loss': 0.035543106496334076, 'totoal_loss': 0.035543106496334076, 'data_time': 0.00723102712072432, 'model_time': 0.8161064879968762, 'learning_rate': 8.184995386292166e-06, 'epoch': 23.22})
122
+ Step 12200, Loss: {'mse_loss': 0.019029144197702408, 'totoal_loss': 0.019029144197702408, 'data_time': 0.015279724029824138, 'model_time': 0.7410052809864283, 'learning_rate': 8.137065613815381e-06, 'epoch': 23.42})
123
+ Step 12300, Loss: {'mse_loss': 0.01457303762435913, 'totoal_loss': 0.01457303762435913, 'data_time': 0.008601922076195478, 'model_time': 0.7419542078860104, 'learning_rate': 8.088660201261203e-06, 'epoch': 23.61})
124
+ Step 12400, Loss: {'mse_loss': 0.019109219312667847, 'totoal_loss': 0.019109219312667847, 'data_time': 0.02285227901302278, 'model_time': 0.9264680221676826, 'learning_rate': 8.039786792405404e-06, 'epoch': 23.8})
125
+ Step 12500, Loss: {'mse_loss': 0.035047128796577454, 'totoal_loss': 0.035047128796577454, 'data_time': 0.021230331156402826, 'model_time': 0.6752872250508517, 'learning_rate': 7.990453104925807e-06, 'epoch': 23.99})
126
+ Step 12600, Loss: {'mse_loss': 0.016676045954227448, 'totoal_loss': 0.016676045954227448, 'data_time': 0.010389704024419188, 'model_time': 0.7149289189837873, 'learning_rate': 7.940666929183554e-06, 'epoch': 24.18})
127
+ Step 12700, Loss: {'mse_loss': 0.01292789913713932, 'totoal_loss': 0.01292789913713932, 'data_time': 0.009473463986068964, 'model_time': 0.7515716149937361, 'learning_rate': 7.89043612699294e-06, 'epoch': 24.38})
128
+ Step 12800, Loss: {'mse_loss': 0.026840712875127792, 'totoal_loss': 0.026840712875127792, 'data_time': 0.010217441944405437, 'model_time': 0.7418205419089645, 'learning_rate': 7.839768630379917e-06, 'epoch': 24.57})
129
+ Step 12900, Loss: {'mse_loss': 0.02029963582754135, 'totoal_loss': 0.02029963582754135, 'data_time': 0.010998134035617113, 'model_time': 0.7045332049019635, 'learning_rate': 7.788672440329562e-06, 'epoch': 24.76})
130
+ Step 13000, Loss: {'mse_loss': 0.0353579968214035, 'totoal_loss': 0.0353579968214035, 'data_time': 0.008669461822137237, 'model_time': 0.7596784080378711, 'learning_rate': 7.737155625522608e-06, 'epoch': 24.95})
131
+ Step 13100, Loss: {'mse_loss': 0.040842682123184204, 'totoal_loss': 0.040842682123184204, 'data_time': 0.009377490961924195, 'model_time': 1.0043869488872588, 'learning_rate': 7.685226321061318e-06, 'epoch': 25.14})
132
+ Step 13200, Loss: {'mse_loss': 0.0163023229688406, 'totoal_loss': 0.0163023229688406, 'data_time': 0.009166837902739644, 'model_time': 0.6909024829510599, 'learning_rate': 7.632892727184844e-06, 'epoch': 25.34})
133
+ Step 13300, Loss: {'mse_loss': 0.02137325145304203, 'totoal_loss': 0.02137325145304203, 'data_time': 0.02609773795120418, 'model_time': 0.6855172191280872, 'learning_rate': 7.580163107974335e-06, 'epoch': 25.53})
134
+ Step 13400, Loss: {'mse_loss': 0.03825279697775841, 'totoal_loss': 0.03825279697775841, 'data_time': 0.023203371092677116, 'model_time': 0.7378578898496926, 'learning_rate': 7.527045790047922e-06, 'epoch': 25.72})
135
+ Step 13500, Loss: {'mse_loss': 0.030912723392248154, 'totoal_loss': 0.030912723392248154, 'data_time': 0.023936002980917692, 'model_time': 0.7234099658671767, 'learning_rate': 7.473549161245862e-06, 'epoch': 25.91})
136
+ Step 13600, Loss: {'mse_loss': 0.028697453439235687, 'totoal_loss': 0.028697453439235687, 'data_time': 0.008768609026446939, 'model_time': 0.71273865387775, 'learning_rate': 7.419681669305998e-06, 'epoch': 26.1})
137
+ Step 13700, Loss: {'mse_loss': 0.017000669613480568, 'totoal_loss': 0.017000669613480568, 'data_time': 0.009556043893098831, 'model_time': 0.7258449930232018, 'learning_rate': 7.365451820529756e-06, 'epoch': 26.3})
138
+ Step 13800, Loss: {'mse_loss': 0.024351684376597404, 'totoal_loss': 0.024351684376597404, 'data_time': 0.0100764490198344, 'model_time': 0.7267610169947147, 'learning_rate': 7.310868178438909e-06, 'epoch': 26.49})
139
+ Step 13900, Loss: {'mse_loss': 0.018296360969543457, 'totoal_loss': 0.018296360969543457, 'data_time': 0.010169219924136996, 'model_time': 0.7019082750193775, 'learning_rate': 7.2559393624232985e-06, 'epoch': 26.68})
140
+ Step 14000, Loss: {'mse_loss': 0.02807101234793663, 'totoal_loss': 0.02807101234793663, 'data_time': 0.008023034082725644, 'model_time': 0.8097843308933079, 'learning_rate': 7.2006740463797296e-06, 'epoch': 26.87})
141
+ Step 14100, Loss: {'mse_loss': 0.029364844784140587, 'totoal_loss': 0.029364844784140587, 'data_time': 0.0003932761028409004, 'model_time': 0.7254254131112248, 'learning_rate': 7.145080957342262e-06, 'epoch': 27.06})
142
+ Step 14200, Loss: {'mse_loss': 0.018387606367468834, 'totoal_loss': 0.018387606367468834, 'data_time': 0.00036154803819954395, 'model_time': 0.9786157379858196, 'learning_rate': 7.0891688741041065e-06, 'epoch': 27.26})
143
+ Step 14300, Loss: {'mse_loss': 0.019313504919409752, 'totoal_loss': 0.019313504919409752, 'data_time': 0.0004365229979157448, 'model_time': 0.7162884059362113, 'learning_rate': 7.032946625831363e-06, 'epoch': 27.45})
144
+ Step 14400, Loss: {'mse_loss': 0.021763624623417854, 'totoal_loss': 0.021763624623417854, 'data_time': 0.0004873459693044424, 'model_time': 0.78601278597489, 'learning_rate': 6.976423090668781e-06, 'epoch': 27.64})
145
+ Step 14500, Loss: {'mse_loss': 0.01941557601094246, 'totoal_loss': 0.01941557601094246, 'data_time': 0.0003631270956248045, 'model_time': 0.724098919890821, 'learning_rate': 6.919607194337806e-06, 'epoch': 27.83})
146
+ Step 14600, Loss: {'mse_loss': 0.01404878031462431, 'totoal_loss': 0.01404878031462431, 'data_time': 0.02159047592431307, 'model_time': 0.7148757658433169, 'learning_rate': 6.8625079087270976e-06, 'epoch': 28.02})
147
+ Step 14700, Loss: {'mse_loss': 0.01505508366972208, 'totoal_loss': 0.01505508366972208, 'data_time': 0.023699985817074776, 'model_time': 0.6953202921431512, 'learning_rate': 6.8051342504757714e-06, 'epoch': 28.21})
148
+ Step 14800, Loss: {'mse_loss': 0.016797145828604698, 'totoal_loss': 0.016797145828604698, 'data_time': 0.02294146502390504, 'model_time': 0.7151654271874577, 'learning_rate': 6.747495279549561e-06, 'epoch': 28.41})
149
+ Step 14900, Loss: {'mse_loss': 0.024730103090405464, 'totoal_loss': 0.024730103090405464, 'data_time': 0.022755502024665475, 'model_time': 0.7244633019436151, 'learning_rate': 6.6896000978101465e-06, 'epoch': 28.6})
150
+ Step 15000, Loss: {'mse_loss': 0.019510043784976006, 'totoal_loss': 0.019510043784976006, 'data_time': 0.025754814967513084, 'model_time': 0.7197346459142864, 'learning_rate': 6.631457847577869e-06, 'epoch': 28.79})
151
+ Step 15100, Loss: {'mse_loss': 0.019060948863625526, 'totoal_loss': 0.019060948863625526, 'data_time': 0.02286177105270326, 'model_time': 0.6908311010338366, 'learning_rate': 6.573077710188046e-06, 'epoch': 28.98})
152
+ Step 15200, Loss: {'mse_loss': 0.008734092116355896, 'totoal_loss': 0.008734092116355896, 'data_time': 0.0003815540112555027, 'model_time': 0.7067637860309333, 'learning_rate': 6.5144689045411345e-06, 'epoch': 29.17})
153
+ Step 15300, Loss: {'mse_loss': 0.01431029848754406, 'totoal_loss': 0.01431029848754406, 'data_time': 0.000382730970159173, 'model_time': 0.7328870410565287, 'learning_rate': 6.455640685646961e-06, 'epoch': 29.37})
154
+ Step 15400, Loss: {'mse_loss': 0.01687311939895153, 'totoal_loss': 0.01687311939895153, 'data_time': 0.00036955298855900764, 'model_time': 0.7273036930710077, 'learning_rate': 6.396602343163248e-06, 'epoch': 29.56})
155
+ Step 15500, Loss: {'mse_loss': 0.02223893254995346, 'totoal_loss': 0.02223893254995346, 'data_time': 0.0004183079581707716, 'model_time': 0.7055197511799634, 'learning_rate': 6.337363199928669e-06, 'epoch': 29.75})
156
+ Step 15600, Loss: {'mse_loss': 0.01771930605173111, 'totoal_loss': 0.01771930605173111, 'data_time': 0.0004050780553370714, 'model_time': 0.8265711469575763, 'learning_rate': 6.277932610490659e-06, 'epoch': 29.94})
157
+ Step 15700, Loss: {'mse_loss': 0.012657052837312222, 'totoal_loss': 0.012657052837312222, 'data_time': 0.000417178962379694, 'model_time': 0.8155476928222924, 'learning_rate': 6.218319959628234e-06, 'epoch': 30.13})
158
+ Step 15800, Loss: {'mse_loss': 0.021038861945271492, 'totoal_loss': 0.021038861945271492, 'data_time': 0.0003889889921993017, 'model_time': 0.7366996300406754, 'learning_rate': 6.158534660870018e-06, 'epoch': 30.33})
159
+ Step 15900, Loss: {'mse_loss': 0.03258727490901947, 'totoal_loss': 0.03258727490901947, 'data_time': 0.00035121687687933445, 'model_time': 0.7420031810179353, 'learning_rate': 6.0985861550077345e-06, 'epoch': 30.52})
160
+ Step 16000, Loss: {'mse_loss': 0.015727544203400612, 'totoal_loss': 0.015727544203400612, 'data_time': 0.0003493227995932102, 'model_time': 0.7101992599200457, 'learning_rate': 6.0384839086054095e-06, 'epoch': 30.71})
161
+ Step 16100, Loss: {'mse_loss': 0.015238847583532333, 'totoal_loss': 0.015238847583532333, 'data_time': 0.0005491541232913733, 'model_time': 0.7094573460053653, 'learning_rate': 5.978237412504472e-06, 'epoch': 30.9})
162
+ Step 16200, Loss: {'mse_loss': 0.013086383230984211, 'totoal_loss': 0.013086383230984211, 'data_time': 0.0005246491637080908, 'model_time': 0.7142047099769115, 'learning_rate': 5.917856180325059e-06, 'epoch': 31.09})
163
+ Step 16300, Loss: {'mse_loss': 0.017487945035099983, 'totoal_loss': 0.017487945035099983, 'data_time': 0.0004623320419341326, 'model_time': 0.7778880740515888, 'learning_rate': 5.857349746963692e-06, 'epoch': 31.29})
164
+ Step 16400, Loss: {'mse_loss': 0.015904882922768593, 'totoal_loss': 0.015904882922768593, 'data_time': 0.0003563421778380871, 'model_time': 0.767363176913932, 'learning_rate': 5.796727667087611e-06, 'epoch': 31.48})
165
+ Step 16500, Loss: {'mse_loss': 0.018885556608438492, 'totoal_loss': 0.018885556608438492, 'data_time': 0.000423504039645195, 'model_time': 0.762138738995418, 'learning_rate': 5.735999513625984e-06, 'epoch': 31.67})
166
+ Step 16600, Loss: {'mse_loss': 0.01597602106630802, 'totoal_loss': 0.01597602106630802, 'data_time': 0.0004614850040525198, 'model_time': 0.7809887349139899, 'learning_rate': 5.675174876258223e-06, 'epoch': 31.86})
167
+ Step 16700, Loss: {'mse_loss': 0.013961073011159897, 'totoal_loss': 0.013961073011159897, 'data_time': 0.013162624090909958, 'model_time': 0.72799106920138, 'learning_rate': 5.614263359899673e-06, 'epoch': 32.05})
168
+ Step 16800, Loss: {'mse_loss': 0.019912295043468475, 'totoal_loss': 0.019912295043468475, 'data_time': 0.00836351583711803, 'model_time': 0.7346003279089928, 'learning_rate': 5.553274583184875e-06, 'epoch': 32.25})
169
+ Step 16900, Loss: {'mse_loss': 0.035282962024211884, 'totoal_loss': 0.035282962024211884, 'data_time': 0.009056902956217527, 'model_time': 0.7463281818199903, 'learning_rate': 5.492218176948673e-06, 'epoch': 32.44})
170
+ Step 17000, Loss: {'mse_loss': 0.029394449666142464, 'totoal_loss': 0.029394449666142464, 'data_time': 0.00943059311248362, 'model_time': 0.7133698819670826, 'learning_rate': 5.431103782705404e-06, 'epoch': 32.63})
171
+ Step 17100, Loss: {'mse_loss': 0.01882253959774971, 'totoal_loss': 0.01882253959774971, 'data_time': 0.012461593141779304, 'model_time': 0.7902173430193216, 'learning_rate': 5.369941051126377e-06, 'epoch': 32.82})
172
+ Step 17200, Loss: {'mse_loss': 0.022126799449324608, 'totoal_loss': 0.022126799449324608, 'data_time': 0.011996357003226876, 'model_time': 0.7124257329851389, 'learning_rate': 5.308739640515932e-06, 'epoch': 33.01})
173
+ Step 17300, Loss: {'mse_loss': 0.011621447280049324, 'totoal_loss': 0.011621447280049324, 'data_time': 0.009141477989032865, 'model_time': 0.7246974839363247, 'learning_rate': 5.24750921528627e-06, 'epoch': 33.21})
174
+ Step 17400, Loss: {'mse_loss': 0.028562072664499283, 'totoal_loss': 0.028562072664499283, 'data_time': 0.008810444036498666, 'model_time': 0.7343126637861133, 'learning_rate': 5.186259444431344e-06, 'epoch': 33.4})
175
+ Step 17500, Loss: {'mse_loss': 0.01791135035455227, 'totoal_loss': 0.01791135035455227, 'data_time': 0.008190056076273322, 'model_time': 0.7396656388882548, 'learning_rate': 5.125e-06, 'epoch': 33.59})
176
+ Step 17600, Loss: {'mse_loss': 0.011571179144084454, 'totoal_loss': 0.011571179144084454, 'data_time': 0.008840549038723111, 'model_time': 0.7302694369573146, 'learning_rate': 5.063740555568656e-06, 'epoch': 33.78})
177
+ Step 17700, Loss: {'mse_loss': 0.022321246564388275, 'totoal_loss': 0.022321246564388275, 'data_time': 0.009640787960961461, 'model_time': 0.7108754799701273, 'learning_rate': 5.002490784713731e-06, 'epoch': 33.97})
178
+ Step 17800, Loss: {'mse_loss': 0.014647124335169792, 'totoal_loss': 0.014647124335169792, 'data_time': 0.008839561138302088, 'model_time': 0.7313546610530466, 'learning_rate': 4.9412603594840695e-06, 'epoch': 34.17})
179
+ Step 17900, Loss: {'mse_loss': 0.018466515466570854, 'totoal_loss': 0.018466515466570854, 'data_time': 0.008943752152845263, 'model_time': 0.7199891330674291, 'learning_rate': 4.8800589488736245e-06, 'epoch': 34.36})
180
+ Step 18000, Loss: {'mse_loss': 0.026059288531541824, 'totoal_loss': 0.026059288531541824, 'data_time': 0.007372441003099084, 'model_time': 0.7191176610067487, 'learning_rate': 4.818896217294598e-06, 'epoch': 34.55})
181
+ Step 18100, Loss: {'mse_loss': 0.011995414271950722, 'totoal_loss': 0.011995414271950722, 'data_time': 0.008566199103370309, 'model_time': 0.7110225930809975, 'learning_rate': 4.757781823051329e-06, 'epoch': 34.74})
182
+ Step 18200, Loss: {'mse_loss': 0.009896798059344292, 'totoal_loss': 0.009896798059344292, 'data_time': 0.00999693595804274, 'model_time': 0.7149884279351681, 'learning_rate': 4.696725416815128e-06, 'epoch': 34.93})
183
+ Step 18300, Loss: {'mse_loss': 0.014828712679445744, 'totoal_loss': 0.014828712679445744, 'data_time': 0.000630923081189394, 'model_time': 0.804455725941807, 'learning_rate': 4.635736640100327e-06, 'epoch': 35.12})
184
+ Step 18400, Loss: {'mse_loss': 0.021244831383228302, 'totoal_loss': 0.021244831383228302, 'data_time': 0.0003720419481396675, 'model_time': 0.7096388030331582, 'learning_rate': 4.574825123741778e-06, 'epoch': 35.32})
185
+ Step 18500, Loss: {'mse_loss': 0.01914328895509243, 'totoal_loss': 0.01914328895509243, 'data_time': 0.00039999792352318764, 'model_time': 0.7085552951321006, 'learning_rate': 4.5140004863740165e-06, 'epoch': 35.51})
186
+ Step 18600, Loss: {'mse_loss': 0.017945189028978348, 'totoal_loss': 0.017945189028978348, 'data_time': 0.00034524593502283096, 'model_time': 0.9496474009938538, 'learning_rate': 4.45327233291239e-06, 'epoch': 35.7})
187
+ Step 18700, Loss: {'mse_loss': 0.01827157475054264, 'totoal_loss': 0.01827157475054264, 'data_time': 0.00037328689359128475, 'model_time': 0.8145107519812882, 'learning_rate': 4.39265025303631e-06, 'epoch': 35.89})
188
+ Step 18800, Loss: {'mse_loss': 0.020643673837184906, 'totoal_loss': 0.020643673837184906, 'data_time': 0.00986746302805841, 'model_time': 0.7266333419829607, 'learning_rate': 4.332143819674943e-06, 'epoch': 36.08})
189
+ Step 18900, Loss: {'mse_loss': 0.009556937962770462, 'totoal_loss': 0.009556937962770462, 'data_time': 0.008643998065963387, 'model_time': 0.7272517620585859, 'learning_rate': 4.271762587495529e-06, 'epoch': 36.28})
190
+ Step 19000, Loss: {'mse_loss': 0.012527442537248135, 'totoal_loss': 0.012527442537248135, 'data_time': 0.008999434066936374, 'model_time': 0.7263792210724205, 'learning_rate': 4.2115160913945914e-06, 'epoch': 36.47})
191
+ Step 19100, Loss: {'mse_loss': 0.015997879207134247, 'totoal_loss': 0.015997879207134247, 'data_time': 0.009456976084038615, 'model_time': 0.7098019130062312, 'learning_rate': 4.151413844992267e-06, 'epoch': 36.66})
192
+ Step 19200, Loss: {'mse_loss': 0.009789232164621353, 'totoal_loss': 0.009789232164621353, 'data_time': 0.007833312032744288, 'model_time': 0.7191414278931916, 'learning_rate': 4.091465339129985e-06, 'epoch': 36.85})
193
+ Step 19300, Loss: {'mse_loss': 0.012404575012624264, 'totoal_loss': 0.012404575012624264, 'data_time': 0.012021171860396862, 'model_time': 0.7318341031204909, 'learning_rate': 4.031680040371768e-06, 'epoch': 37.04})
194
+ Step 19400, Loss: {'mse_loss': 0.00857729371637106, 'totoal_loss': 0.00857729371637106, 'data_time': 0.010928755858913064, 'model_time': 0.7370119919069111, 'learning_rate': 3.972067389509344e-06, 'epoch': 37.24})
195
+ Step 19500, Loss: {'mse_loss': 0.013941355049610138, 'totoal_loss': 0.013941355049610138, 'data_time': 0.012913048034533858, 'model_time': 0.7224476509727538, 'learning_rate': 3.912636800071335e-06, 'epoch': 37.43})
196
+ Step 19600, Loss: {'mse_loss': 0.012888074852526188, 'totoal_loss': 0.012888074852526188, 'data_time': 0.012180540943518281, 'model_time': 0.720631096046418, 'learning_rate': 3.853397656836754e-06, 'epoch': 37.62})
197
+ Step 19700, Loss: {'mse_loss': 0.011910280212759972, 'totoal_loss': 0.011910280212759972, 'data_time': 0.011833517113700509, 'model_time': 0.7224797150120139, 'learning_rate': 3.7943593143530404e-06, 'epoch': 37.81})
198
+ Step 19800, Loss: {'mse_loss': 0.00794272031635046, 'totoal_loss': 0.00794272031635046, 'data_time': 0.0005302210338413715, 'model_time': 0.7831325570587069, 'learning_rate': 3.735531095458867e-06, 'epoch': 38.0})
199
+ Step 19900, Loss: {'mse_loss': 0.011865119449794292, 'totoal_loss': 0.011865119449794292, 'data_time': 0.0004088710993528366, 'model_time': 0.8126879730261862, 'learning_rate': 3.6769222898119562e-06, 'epoch': 38.2})
200
+ Step 20000, Loss: {'mse_loss': 0.008041862398386002, 'totoal_loss': 0.008041862398386002, 'data_time': 0.0003723348490893841, 'model_time': 0.7823412460274994, 'learning_rate': 3.618542152422132e-06, 'epoch': 38.39})
201
+ Step 20100, Loss: {'mse_loss': 0.013975106179714203, 'totoal_loss': 0.013975106179714203, 'data_time': 0.00038517313078045845, 'model_time': 0.7447131657972932, 'learning_rate': 3.560399902189855e-06, 'epoch': 38.58})
202
+ Step 20200, Loss: {'mse_loss': 0.010360215790569782, 'totoal_loss': 0.010360215790569782, 'data_time': 0.0003757160156965256, 'model_time': 0.7407625091727823, 'learning_rate': 3.502504720450441e-06, 'epoch': 38.77})
203
+ Step 20300, Loss: {'mse_loss': 0.01065545342862606, 'totoal_loss': 0.01065545342862606, 'data_time': 0.0005113789811730385, 'model_time': 0.7797373160719872, 'learning_rate': 3.4448657495242304e-06, 'epoch': 38.96})
204
+ Step 20400, Loss: {'mse_loss': 0.020054016262292862, 'totoal_loss': 0.020054016262292862, 'data_time': 0.000337052159011364, 'model_time': 0.7743419019971043, 'learning_rate': 3.387492091272904e-06, 'epoch': 39.16})
205
+ Step 20500, Loss: {'mse_loss': 0.014534320682287216, 'totoal_loss': 0.014534320682287216, 'data_time': 0.0006094439886510372, 'model_time': 0.7590837189927697, 'learning_rate': 3.3303928056621955e-06, 'epoch': 39.35})
206
+ Step 20600, Loss: {'mse_loss': 0.009238568134605885, 'totoal_loss': 0.009238568134605885, 'data_time': 0.0004764758050441742, 'model_time': 0.7301115521695465, 'learning_rate': 3.2735769093312202e-06, 'epoch': 39.54})
207
+ Step 20700, Loss: {'mse_loss': 0.012197786942124367, 'totoal_loss': 0.012197786942124367, 'data_time': 0.0005102967843413353, 'model_time': 0.7477468431461602, 'learning_rate': 3.217053374168639e-06, 'epoch': 39.73})
208
+ Step 20800, Loss: {'mse_loss': 0.007654959801584482, 'totoal_loss': 0.007654959801584482, 'data_time': 0.0004010619595646858, 'model_time': 0.7216961889062077, 'learning_rate': 3.1608311258958953e-06, 'epoch': 39.92})
209
+ Step 20900, Loss: {'mse_loss': 0.018033474683761597, 'totoal_loss': 0.018033474683761597, 'data_time': 0.01602632086724043, 'model_time': 0.7500604870729148, 'learning_rate': 3.10491904265774e-06, 'epoch': 40.12})
210
+ Step 21000, Loss: {'mse_loss': 0.012413909658789635, 'totoal_loss': 0.012413909658789635, 'data_time': 0.01583237899467349, 'model_time': 0.7067903520073742, 'learning_rate': 3.0493259536202714e-06, 'epoch': 40.31})
211
+ Step 21100, Loss: {'mse_loss': 0.023530984297394753, 'totoal_loss': 0.023530984297394753, 'data_time': 0.017147063044831157, 'model_time': 0.7301133160945028, 'learning_rate': 2.9940606375767038e-06, 'epoch': 40.5})
212
+ Step 21200, Loss: {'mse_loss': 0.010242714546620846, 'totoal_loss': 0.010242714546620846, 'data_time': 0.016349988989531994, 'model_time': 0.7061417719814926, 'learning_rate': 2.939131821561094e-06, 'epoch': 40.69})
213
+ Step 21300, Loss: {'mse_loss': 0.014734986238181591, 'totoal_loss': 0.014734986238181591, 'data_time': 0.01582840201444924, 'model_time': 0.7543139071203768, 'learning_rate': 2.8845481794702473e-06, 'epoch': 40.88})
214
+ Step 21400, Loss: {'mse_loss': 0.022472025826573372, 'totoal_loss': 0.022472025826573372, 'data_time': 0.01049991906620562, 'model_time': 0.6993559140246361, 'learning_rate': 2.830318330694004e-06, 'epoch': 41.07})
215
+ Step 21500, Loss: {'mse_loss': 0.010685506276786327, 'totoal_loss': 0.010685506276786327, 'data_time': 0.008815353969112039, 'model_time': 0.7592344270087779, 'learning_rate': 2.7764508387541378e-06, 'epoch': 41.27})
216
+ Step 21600, Loss: {'mse_loss': 0.011422679759562016, 'totoal_loss': 0.011422679759562016, 'data_time': 0.009840826969593763, 'model_time': 0.7194288589525968, 'learning_rate': 2.7229542099520797e-06, 'epoch': 41.46})
217
+ Step 21700, Loss: {'mse_loss': 0.013385394588112831, 'totoal_loss': 0.013385394588112831, 'data_time': 0.012680689105764031, 'model_time': 0.7260980750434101, 'learning_rate': 2.669836892025666e-06, 'epoch': 41.65})
218
+ Step 21800, Loss: {'mse_loss': 0.0067716334015131, 'totoal_loss': 0.0067716334015131, 'data_time': 0.010772439884021878, 'model_time': 0.7064219969324768, 'learning_rate': 2.6171072728151557e-06, 'epoch': 41.84})
219
+ Step 21900, Loss: {'mse_loss': 0.01567498780786991, 'totoal_loss': 0.01567498780786991, 'data_time': 0.00037891510874032974, 'model_time': 0.7460231338627636, 'learning_rate': 2.5647736789386828e-06, 'epoch': 42.03})
220
+ Step 22000, Loss: {'mse_loss': 0.020751086995005608, 'totoal_loss': 0.020751086995005608, 'data_time': 0.0004764318000525236, 'model_time': 0.7049123891629279, 'learning_rate': 2.5128443744773904e-06, 'epoch': 42.23})
221
+ Step 22100, Loss: {'mse_loss': 0.010350272059440613, 'totoal_loss': 0.010350272059440613, 'data_time': 0.00042683188803493977, 'model_time': 0.730023356154561, 'learning_rate': 2.4613275596704386e-06, 'epoch': 42.42})
222
+ Step 22200, Loss: {'mse_loss': 0.013750934973359108, 'totoal_loss': 0.013750934973359108, 'data_time': 0.00034104916267096996, 'model_time': 0.7374972610268742, 'learning_rate': 2.4102313696200853e-06, 'epoch': 42.61})
223
+ Step 22300, Loss: {'mse_loss': 0.016932440921664238, 'totoal_loss': 0.016932440921664238, 'data_time': 0.00037334696389734745, 'model_time': 0.7342260470613837, 'learning_rate': 2.359563873007063e-06, 'epoch': 42.8})
224
+ Step 22400, Loss: {'mse_loss': 0.010992796160280704, 'totoal_loss': 0.010992796160280704, 'data_time': 0.0002840990200638771, 'model_time': 0.6817695999052376, 'learning_rate': 2.3093330708164465e-06, 'epoch': 42.99})
225
+ Step 22500, Loss: {'mse_loss': 0.018445271998643875, 'totoal_loss': 0.018445271998643875, 'data_time': 0.0003906320780515671, 'model_time': 0.7480808701366186, 'learning_rate': 2.2595468950741943e-06, 'epoch': 43.19})
226
+ Step 22600, Loss: {'mse_loss': 0.008606056682765484, 'totoal_loss': 0.008606056682765484, 'data_time': 0.0004856809973716736, 'model_time': 0.7516834458801895, 'learning_rate': 2.2102132075945974e-06, 'epoch': 43.38})
227
+ Step 22700, Loss: {'mse_loss': 0.011463794857263565, 'totoal_loss': 0.011463794857263565, 'data_time': 0.00039793900214135647, 'model_time': 0.7131945160217583, 'learning_rate': 2.1613397987388e-06, 'epoch': 43.57})
228
+ Step 22800, Loss: {'mse_loss': 0.016556378453969955, 'totoal_loss': 0.016556378453969955, 'data_time': 0.0005642350297421217, 'model_time': 0.7428504808340222, 'learning_rate': 2.1129343861846207e-06, 'epoch': 43.76})
229
+ Step 22900, Loss: {'mse_loss': 0.008072733879089355, 'totoal_loss': 0.008072733879089355, 'data_time': 0.0003882939927279949, 'model_time': 0.7138239599298686, 'learning_rate': 2.065004613707836e-06, 'epoch': 43.95})
230
+ Step 23000, Loss: {'mse_loss': 0.012684228830039501, 'totoal_loss': 0.012684228830039501, 'data_time': 0.01601891592144966, 'model_time': 0.7349616969004273, 'learning_rate': 2.0175580499751375e-06, 'epoch': 44.15})
231
+ Step 23100, Loss: {'mse_loss': 0.013688984327018261, 'totoal_loss': 0.013688984327018261, 'data_time': 0.00904672290198505, 'model_time': 0.7384016010910273, 'learning_rate': 1.9706021873489604e-06, 'epoch': 44.34})
232
+ Step 23200, Loss: {'mse_loss': 0.008832558989524841, 'totoal_loss': 0.008832558989524841, 'data_time': 0.01231325906701386, 'model_time': 0.7295741979032755, 'learning_rate': 1.924144440704338e-06, 'epoch': 44.53})
233
+ Step 23300, Loss: {'mse_loss': 0.010612639598548412, 'totoal_loss': 0.010612639598548412, 'data_time': 0.009615353774279356, 'model_time': 0.7270340519025922, 'learning_rate': 1.8781921462580238e-06, 'epoch': 44.72})
234
+ Step 23400, Loss: {'mse_loss': 0.007687442470341921, 'totoal_loss': 0.007687442470341921, 'data_time': 0.009875737130641937, 'model_time': 0.742649536114186, 'learning_rate': 1.8327525604100058e-06, 'epoch': 44.91})
235
+ Step 23500, Loss: {'mse_loss': 0.013844777829945087, 'totoal_loss': 0.013844777829945087, 'data_time': 0.012276953086256981, 'model_time': 0.8042184880468994, 'learning_rate': 1.7878328585976426e-06, 'epoch': 45.11})
236
+ Step 23600, Loss: {'mse_loss': 0.012621616944670677, 'totoal_loss': 0.012621616944670677, 'data_time': 0.008297584019601345, 'model_time': 0.6893849049229175, 'learning_rate': 1.7434401341625765e-06, 'epoch': 45.3})
237
+ Step 23700, Loss: {'mse_loss': 0.014733705669641495, 'totoal_loss': 0.014733705669641495, 'data_time': 0.008221594849601388, 'model_time': 0.7769486200995743, 'learning_rate': 1.6995813972306108e-06, 'epoch': 45.49})
238
+ Step 23800, Loss: {'mse_loss': 0.013675259426236153, 'totoal_loss': 0.013675259426236153, 'data_time': 0.00718089914880693, 'model_time': 0.8078374199103564, 'learning_rate': 1.656263573604734e-06, 'epoch': 45.68})
239
+ Step 23900, Loss: {'mse_loss': 0.010395529679954052, 'totoal_loss': 0.010395529679954052, 'data_time': 0.008581343805417418, 'model_time': 0.7072615448851138, 'learning_rate': 1.613493503671454e-06, 'epoch': 45.87})
240
+ Step 24000, Loss: {'mse_loss': 0.02488585188984871, 'totoal_loss': 0.02488585188984871, 'data_time': 0.00037340610288083553, 'model_time': 0.748262549052015, 'learning_rate': 1.5712779413206198e-06, 'epoch': 46.07})
241
+ Step 24100, Loss: {'mse_loss': 0.026330120861530304, 'totoal_loss': 0.026330120861530304, 'data_time': 0.00039994181133806705, 'model_time': 0.7102295570075512, 'learning_rate': 1.5296235528789028e-06, 'epoch': 46.26})
242
+ Step 24200, Loss: {'mse_loss': 0.007119618821889162, 'totoal_loss': 0.007119618821889162, 'data_time': 0.00038219010457396507, 'model_time': 0.74414451001212, 'learning_rate': 1.4885369160571124e-06, 'epoch': 46.45})
243
+ Step 24300, Loss: {'mse_loss': 0.01784169115126133, 'totoal_loss': 0.01784169115126133, 'data_time': 0.0003841810394078493, 'model_time': 0.7247433811426163, 'learning_rate': 1.4480245189114938e-06, 'epoch': 46.64})
244
+ Step 24400, Loss: {'mse_loss': 0.027601167559623718, 'totoal_loss': 0.027601167559623718, 'data_time': 0.0003890558145940304, 'model_time': 0.7853021810296923, 'learning_rate': 1.408092758819191e-06, 'epoch': 46.83})
245
+ Step 24500, Loss: {'mse_loss': 0.00749959796667099, 'totoal_loss': 0.00749959796667099, 'data_time': 0.00038122013211250305, 'model_time': 0.7145566770341247, 'learning_rate': 1.368747941468028e-06, 'epoch': 47.02})
246
+ Step 24600, Loss: {'mse_loss': 0.007245717104524374, 'totoal_loss': 0.007245717104524374, 'data_time': 0.0004412450361996889, 'model_time': 0.7374229300767183, 'learning_rate': 1.3299962798607614e-06, 'epoch': 47.22})
247
+ Step 24700, Loss: {'mse_loss': 0.016490932554006577, 'totoal_loss': 0.016490932554006577, 'data_time': 0.00039856904186308384, 'model_time': 0.711320964153856, 'learning_rate': 1.2918438933339827e-06, 'epoch': 47.41})
248
+ Step 24800, Loss: {'mse_loss': 0.013184469193220139, 'totoal_loss': 0.013184469193220139, 'data_time': 0.0005021179094910622, 'model_time': 0.7328886210452765, 'learning_rate': 1.2542968065918027e-06, 'epoch': 47.6})
249
+ Step 24900, Loss: {'mse_loss': 0.011220457032322884, 'totoal_loss': 0.011220457032322884, 'data_time': 0.0005375880282372236, 'model_time': 0.7649896321818233, 'learning_rate': 1.217360948754476e-06, 'epoch': 47.79})
250
+ Step 25000, Loss: {'mse_loss': 0.012950393371284008, 'totoal_loss': 0.012950393371284008, 'data_time': 0.0003364500589668751, 'model_time': 0.6838887550402433, 'learning_rate': 1.1810421524221318e-06, 'epoch': 47.98})
251
+ Step 25100, Loss: {'mse_loss': 0.01823008991777897, 'totoal_loss': 0.01823008991777897, 'data_time': 0.008258696179836988, 'model_time': 0.8270824609789997, 'learning_rate': 1.1453461527537284e-06, 'epoch': 48.18})
252
+ Step 25200, Loss: {'mse_loss': 0.007450828794389963, 'totoal_loss': 0.007450828794389963, 'data_time': 0.008779893862083554, 'model_time': 0.746214488055557, 'learning_rate': 1.1102785865614162e-06, 'epoch': 48.37})
253
+ Step 25300, Loss: {'mse_loss': 0.01059381477534771, 'totoal_loss': 0.01059381477534771, 'data_time': 0.011181197827681899, 'model_time': 0.7774195629172027, 'learning_rate': 1.0758449914204127e-06, 'epoch': 48.56})
254
+ Step 25400, Loss: {'mse_loss': 0.006771332584321499, 'totoal_loss': 0.006771332584321499, 'data_time': 0.01025220612064004, 'model_time': 0.7254897118546069, 'learning_rate': 1.0420508047945595e-06, 'epoch': 48.75})
255
+ Step 25500, Loss: {'mse_loss': 0.01736849918961525, 'totoal_loss': 0.01736849918961525, 'data_time': 0.008664816850796342, 'model_time': 0.7336229749489576, 'learning_rate': 1.0089013631776776e-06, 'epoch': 48.94})
256
+ Step 25600, Loss: {'mse_loss': 0.011792978271842003, 'totoal_loss': 0.011792978271842003, 'data_time': 0.012228525942191482, 'model_time': 0.7854541561100632, 'learning_rate': 9.76401901250878e-07, 'epoch': 49.14})
257
+ Step 25700, Loss: {'mse_loss': 0.009692510589957237, 'totoal_loss': 0.009692510589957237, 'data_time': 0.009192554978653789, 'model_time': 0.7534806439653039, 'learning_rate': 9.44557551055946e-07, 'epoch': 49.33})
258
+ Step 25800, Loss: {'mse_loss': 0.008878915570676327, 'totoal_loss': 0.008878915570676327, 'data_time': 0.008891678182408214, 'model_time': 0.971472853096202, 'learning_rate': 9.13373341184928e-07, 'epoch': 49.52})
259
+ Step 25900, Loss: {'mse_loss': 0.009845132939517498, 'totoal_loss': 0.009845132939517498, 'data_time': 0.009765736991539598, 'model_time': 0.7105323758441955, 'learning_rate': 8.828541959860623e-07, 'epoch': 49.71})
260
+ Step 26000, Loss: {'mse_loss': 0.011938442476093769, 'totoal_loss': 0.011938442476093769, 'data_time': 0.009663047967478633, 'model_time': 0.6965647630859166, 'learning_rate': 8.530049347861661e-07, 'epoch': 49.9})
261
+ Step 26100, Loss: {'mse_loss': 0.009841005317866802, 'totoal_loss': 0.009841005317866802, 'data_time': 0.0003433928359299898, 'model_time': 0.703984450083226, 'learning_rate': 8.238302711296034e-07, 'epoch': 50.1})
262
+ Step 26200, Loss: {'mse_loss': 0.0190766341984272, 'totoal_loss': 0.0190766341984272, 'data_time': 0.00041090697050094604, 'model_time': 0.7608007269445807, 'learning_rate': 7.953348120339707e-07, 'epoch': 50.29})
263
+ Step 26300, Loss: {'mse_loss': 0.01262232381850481, 'totoal_loss': 0.01262232381850481, 'data_time': 0.0005176800768822432, 'model_time': 0.7614856830332428, 'learning_rate': 7.675230572625892e-07, 'epoch': 50.48})
264
+ Step 26400, Loss: {'mse_loss': 0.017091423273086548, 'totoal_loss': 0.017091423273086548, 'data_time': 0.0003981138579547405, 'model_time': 0.7318798459600657, 'learning_rate': 7.40399398613941e-07, 'epoch': 50.67})
265
+ Step 26500, Loss: {'mse_loss': 0.006450111977756023, 'totoal_loss': 0.006450111977756023, 'data_time': 0.00041513703763484955, 'model_time': 0.7141538611613214, 'learning_rate': 7.139681192281557e-07, 'epoch': 50.86})
266
+ Step 26600, Loss: {'mse_loss': 0.01125746127218008, 'totoal_loss': 0.01125746127218008, 'data_time': 0.009635990019887686, 'model_time': 0.7301575250457972, 'learning_rate': 6.882333929106462e-07, 'epoch': 51.06})
267
+ Step 26700, Loss: {'mse_loss': 0.007438512984663248, 'totoal_loss': 0.007438512984663248, 'data_time': 0.008889288874343038, 'model_time': 0.8039558059535921, 'learning_rate': 6.63199283473027e-07, 'epoch': 51.25})
268
+ Step 26800, Loss: {'mse_loss': 0.010900688357651234, 'totoal_loss': 0.010900688357651234, 'data_time': 0.008491458836942911, 'model_time': 0.7072636859957129, 'learning_rate': 6.388697440913819e-07, 'epoch': 51.44})
269
+ Step 26900, Loss: {'mse_loss': 0.014405660331249237, 'totoal_loss': 0.014405660331249237, 'data_time': 0.011017657117918134, 'model_time': 0.693013311130926, 'learning_rate': 6.152486166820176e-07, 'epoch': 51.63})
270
+ Step 27000, Loss: {'mse_loss': 0.008650001138448715, 'totoal_loss': 0.008650001138448715, 'data_time': 0.010914047015830874, 'model_time': 0.7272768327966332, 'learning_rate': 5.923396312947748e-07, 'epoch': 51.82})
271
+ Step 27100, Loss: {'mse_loss': 0.00724373571574688, 'totoal_loss': 0.00724373571574688, 'data_time': 0.010608465177938342, 'model_time': 0.7319910239893943, 'learning_rate': 5.701464055240163e-07, 'epoch': 52.02})
272
+ Step 27200, Loss: {'mse_loss': 0.01576581597328186, 'totoal_loss': 0.01576581597328186, 'data_time': 0.010820199036970735, 'model_time': 0.7262651158962399, 'learning_rate': 5.48672443937364e-07, 'epoch': 52.21})
273
+ Step 27300, Loss: {'mse_loss': 0.012182322330772877, 'totoal_loss': 0.012182322330772877, 'data_time': 0.00860063498839736, 'model_time': 0.7288343710824847, 'learning_rate': 5.279211375222855e-07, 'epoch': 52.4})
274
+ Step 27400, Loss: {'mse_loss': 0.009729038923978806, 'totoal_loss': 0.009729038923978806, 'data_time': 0.008946526097133756, 'model_time': 0.8307277411222458, 'learning_rate': 5.07895763150622e-07, 'epoch': 52.59})
275
+ Step 27500, Loss: {'mse_loss': 0.008209221065044403, 'totoal_loss': 0.008209221065044403, 'data_time': 0.014008681988343596, 'model_time': 0.7043332899920642, 'learning_rate': 4.885994830611266e-07, 'epoch': 52.78})
276
+ Step 27600, Loss: {'mse_loss': 0.012325715273618698, 'totoal_loss': 0.012325715273618698, 'data_time': 0.010518627939745784, 'model_time': 0.7318197970744222, 'learning_rate': 4.700353443601156e-07, 'epoch': 52.98})
277
+ Step 27700, Loss: {'mse_loss': 0.007176068611443043, 'totoal_loss': 0.007176068611443043, 'data_time': 0.009351436980068684, 'model_time': 0.7194946580566466, 'learning_rate': 4.5220627854029224e-07, 'epoch': 53.17})
278
+ Step 27800, Loss: {'mse_loss': 0.00820315070450306, 'totoal_loss': 0.00820315070450306, 'data_time': 0.008227480109781027, 'model_time': 0.736100688111037, 'learning_rate': 4.351151010178311e-07, 'epoch': 53.36})
279
+ Step 27900, Loss: {'mse_loss': 0.00547450827434659, 'totoal_loss': 0.00547450827434659, 'data_time': 0.010937979212030768, 'model_time': 0.7583701319526881, 'learning_rate': 4.1876451068778983e-07, 'epoch': 53.55})
280
+ Step 28000, Loss: {'mse_loss': 0.013225740753114223, 'totoal_loss': 0.013225740753114223, 'data_time': 0.010076245060190558, 'model_time': 0.7220289460383356, 'learning_rate': 4.031570894979235e-07, 'epoch': 53.74})
281
+ Step 28100, Loss: {'mse_loss': 0.006637883838266134, 'totoal_loss': 0.006637883838266134, 'data_time': 0.011150349164381623, 'model_time': 0.6924186102114618, 'learning_rate': 3.882953020409644e-07, 'epoch': 53.93})
282
+ Step 28200, Loss: {'mse_loss': 0.008405782282352448, 'totoal_loss': 0.008405782282352448, 'data_time': 0.000393926864489913, 'model_time': 0.7690443720202893, 'learning_rate': 3.74181495165436e-07, 'epoch': 54.13})
283
+ Step 28300, Loss: {'mse_loss': 0.006509954575449228, 'totoal_loss': 0.006509954575449228, 'data_time': 0.00037419702857732773, 'model_time': 0.8337474591098726, 'learning_rate': 3.608178976050568e-07, 'epoch': 54.32})
284
+ Step 28400, Loss: {'mse_loss': 0.011382720433175564, 'totoal_loss': 0.011382720433175564, 'data_time': 0.0003851240035146475, 'model_time': 0.7169231621082872, 'learning_rate': 3.482066196267966e-07, 'epoch': 54.51})
285
+ Step 28500, Loss: {'mse_loss': 0.017549945041537285, 'totoal_loss': 0.017549945041537285, 'data_time': 0.00038518384099006653, 'model_time': 0.7443399999756366, 'learning_rate': 3.36349652697643e-07, 'epoch': 54.7})
286
+ Step 28600, Loss: {'mse_loss': 0.008226744830608368, 'totoal_loss': 0.008226744830608368, 'data_time': 0.0003527621738612652, 'model_time': 0.7268304070457816, 'learning_rate': 3.2524886917012403e-07, 'epoch': 54.89})
287
+ Step 28700, Loss: {'mse_loss': 0.007823760621249676, 'totoal_loss': 0.007823760621249676, 'data_time': 0.016038583125919104, 'model_time': 0.7081718042027205, 'learning_rate': 3.149060219866433e-07, 'epoch': 55.09})
288
+ Step 28800, Loss: {'mse_loss': 0.009344981983304024, 'totoal_loss': 0.009344981983304024, 'data_time': 0.016268900129944086, 'model_time': 0.7424354760441929, 'learning_rate': 3.053227444026695e-07, 'epoch': 55.28})
289
+ Step 28900, Loss: {'mse_loss': 0.008039147593080997, 'totoal_loss': 0.008039147593080997, 'data_time': 0.014567960985004902, 'model_time': 0.6990637360140681, 'learning_rate': 2.9650054972882544e-07, 'epoch': 55.47})
290
+ Step 29000, Loss: {'mse_loss': 0.006792448926717043, 'totoal_loss': 0.006792448926717043, 'data_time': 0.015447174897417426, 'model_time': 0.735011873068288, 'learning_rate': 2.884408310919209e-07, 'epoch': 55.66})
291
+ Step 29100, Loss: {'mse_loss': 0.006229997146874666, 'totoal_loss': 0.006229997146874666, 'data_time': 0.0157460980117321, 'model_time': 0.7128369889687747, 'learning_rate': 2.8114486121495906e-07, 'epoch': 55.85})
292
+ Step 29200, Loss: {'mse_loss': 0.01039363257586956, 'totoal_loss': 0.01039363257586956, 'data_time': 0.018346409080550075, 'model_time': 0.7490631539840251, 'learning_rate': 2.746137922161617e-07, 'epoch': 56.05})
293
+ Step 29300, Loss: {'mse_loss': 0.014644462615251541, 'totoal_loss': 0.014644462615251541, 'data_time': 0.014979320811107755, 'model_time': 0.7954170459415764, 'learning_rate': 2.68848655427034e-07, 'epoch': 56.24})
294
+ Step 29400, Loss: {'mse_loss': 0.01064978912472725, 'totoal_loss': 0.01064978912472725, 'data_time': 0.017706020968034863, 'model_time': 0.710806090850383, 'learning_rate': 2.638503612295071e-07, 'epoch': 56.43})
295
+ Step 29500, Loss: {'mse_loss': 0.01309907529503107, 'totoal_loss': 0.01309907529503107, 'data_time': 0.01741092698648572, 'model_time': 0.7467143489047885, 'learning_rate': 2.5961969891217614e-07, 'epoch': 56.62})
296
+ Step 29600, Loss: {'mse_loss': 0.014864534139633179, 'totoal_loss': 0.014864534139633179, 'data_time': 0.016498886048793793, 'model_time': 0.6980291109066457, 'learning_rate': 2.5615733654566483e-07, 'epoch': 56.81})
297
+ Step 29700, Loss: {'mse_loss': 0.025474390015006065, 'totoal_loss': 0.025474390015006065, 'data_time': 0.015437500085681677, 'model_time': 0.8367881830781698, 'learning_rate': 2.5346382087712764e-07, 'epoch': 57.01})
298
+ Step 29800, Loss: {'mse_loss': 0.012468094006180763, 'totoal_loss': 0.012468094006180763, 'data_time': 0.008605761919170618, 'model_time': 0.7243249248713255, 'learning_rate': 2.515395772439128e-07, 'epoch': 57.2})
299
+ Step 29900, Loss: {'mse_loss': 0.0047164796851575375, 'totoal_loss': 0.0047164796851575375, 'data_time': 0.009688928024843335, 'model_time': 0.6843922680709511, 'learning_rate': 2.5038490950639644e-07, 'epoch': 57.39})
300
+ Step 30000, Loss: {'mse_loss': 0.00584928784519434, 'totoal_loss': 0.00584928784519434, 'mse_score': 0.0013657717832497188, 'data_time': 0.010037573054432869, 'model_time': 0.812750096898526, 'learning_rate': 2.5e-07, 'epoch': 57.58})
libero_spatial_2B/starvla_qwen_dual/config.json ADDED
@@ -0,0 +1,129 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "run_id": "starvla_qwen_dual",
3
+ "run_root_dir": "/share/project/baishuanghao/code/starVLA/pretrained_models_2/libero_spatial_2B",
4
+ "seed": 42,
5
+ "trackers": [
6
+ "jsonl",
7
+ "wandb"
8
+ ],
9
+ "wandb_project": "starVLA",
10
+ "is_debug": false,
11
+ "enable_mee": false,
12
+ "mee_weight": 0.01,
13
+ "framework": {
14
+ "name": "Qwen-Dual",
15
+ "qwenvl": {
16
+ "base_vlm": "/share/project/baishuanghao/code/HLM-VLA/models/Qwen3-VL-2B-Instruct",
17
+ "attn_implementation": "flash_attention_2",
18
+ "vl_hidden_dim": 2048
19
+ },
20
+ "dino": {
21
+ "dino_backbone": "dinov2_vits14"
22
+ },
23
+ "action_model": {
24
+ "action_model_type": "DiT-B",
25
+ "action_hidden_dim": 2,
26
+ "hidden_size": 1024,
27
+ "add_pos_embed": true,
28
+ "max_seq_len": 1024,
29
+ "action_dim": 7,
30
+ "state_dim": 7,
31
+ "future_action_window_size": 7,
32
+ "action_horizon": 8,
33
+ "past_action_window_size": 0,
34
+ "repeated_diffusion_steps": 8,
35
+ "noise_beta_alpha": 1.5,
36
+ "noise_beta_beta": 1.0,
37
+ "noise_s": 0.999,
38
+ "num_timestep_buckets": 1000,
39
+ "num_inference_timesteps": 4,
40
+ "num_target_vision_tokens": 32,
41
+ "diffusion_model_cfg": {
42
+ "cross_attention_dim": 2048,
43
+ "dropout": 0.2,
44
+ "final_dropout": true,
45
+ "interleave_self_attention": true,
46
+ "norm_type": "ada_norm",
47
+ "num_layers": 16,
48
+ "output_dim": 1024,
49
+ "positional_embeddings": null
50
+ }
51
+ },
52
+ "reduce_in_full_precision": true
53
+ },
54
+ "datasets": {
55
+ "vlm_data": {
56
+ "dataset_py": "vlm_datasets",
57
+ "dataformat": "llava_json",
58
+ "dataset_use": "asv2_conversation_en,asv2_detailed_description_en,asv2_region_captioning_en,coco_internvl_longcap_en,coco_karpathy_train_567_en,coco_negative_gpt4o_en,coco_poetry_zh,coco_rem_en_zh,cocorem_exist_yorn_en,cocotextv2_en,cocotextv2_gpt4o_en,okvqa_en,refcoco_grounding_aug_en,refcoco_grounding_en,tallyqa_coco_en,toloka_grounding_aug_en,vqav2_en,vsr_en",
59
+ "eval_dataset": "aokvqa_cauldron_llava_format",
60
+ "data_flatten": false,
61
+ "base_interval": 2,
62
+ "max_pixels": 12845056,
63
+ "min_pixels": 3136,
64
+ "model_max_length": 2048,
65
+ "model_type": "qwen2.5vl",
66
+ "per_device_batch_size": 4
67
+ },
68
+ "vla_data": {
69
+ "dataset_py": "lerobot_datasets",
70
+ "data_root_dir": "/share/project/baishuanghao/data/libero_lerobot",
71
+ "data_mix": "libero_spatial",
72
+ "action_type": "delta_qpos",
73
+ "CoT_prompt": "Your task is {instruction}. To identify the key objects for your task. Locate their bounding boxes in [x1,y1,x2,y2] format.",
74
+ "CoT_answer": "bbox",
75
+ "default_image_resolution": [
76
+ 3,
77
+ 224,
78
+ 224
79
+ ],
80
+ "per_device_batch_size": 16,
81
+ "load_all_data_for_training": true,
82
+ "obs": [
83
+ "image_0"
84
+ ]
85
+ }
86
+ },
87
+ "trainer": {
88
+ "epochs": 100,
89
+ "max_train_steps": 30000,
90
+ "num_warmup_steps": 5000,
91
+ "save_interval": 60000,
92
+ "eval_interval": 30000,
93
+ "learning_rate": {
94
+ "base": 4e-05,
95
+ "qwen_vl_interface": 1e-05,
96
+ "action_model": 0.0001
97
+ },
98
+ "lr_scheduler_type": "cosine_with_min_lr",
99
+ "scheduler_specific_kwargs": {
100
+ "min_lr": 1e-06
101
+ },
102
+ "freeze_modules": null,
103
+ "loss_scale": {
104
+ "vla": 1.0,
105
+ "vlm": 0.1
106
+ },
107
+ "max_grad_norm": 1.0,
108
+ "warmup_ratio": 0.1,
109
+ "weight_decay": 0.0,
110
+ "logging_frequency": 100,
111
+ "gradient_clipping": 1.0,
112
+ "gradient_accumulation_steps": 1,
113
+ "optimizer": {
114
+ "name": "AdamW",
115
+ "betas": [
116
+ 0.9,
117
+ 0.95
118
+ ],
119
+ "eps": 1e-08,
120
+ "weight_decay": 1e-08
121
+ },
122
+ "is_resume": false,
123
+ "resume_epoch": null,
124
+ "resume_step": null,
125
+ "enable_gradient_checkpointing": true,
126
+ "enable_mixed_precision_training": true
127
+ },
128
+ "output_dir": "/share/project/baishuanghao/code/starVLA/pretrained_models_2/libero_spatial_2B/starvla_qwen_dual"
129
+ }
libero_spatial_2B/starvla_qwen_dual/dataset_statistics.json ADDED
@@ -0,0 +1,133 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "franka": {
3
+ "action": {
4
+ "mean": [
5
+ 0.15312479436397552,
6
+ 0.13707277178764343,
7
+ -0.15526802837848663,
8
+ -0.005176450591534376,
9
+ -0.01120874285697937,
10
+ -0.020194264128804207,
11
+ 0.4578818082809448
12
+ ],
13
+ "std": [
14
+ 0.41272708773612976,
15
+ 0.34724321961402893,
16
+ 0.50869220495224,
17
+ 0.037266165018081665,
18
+ 0.07244449853897095,
19
+ 0.05762382969260216,
20
+ 0.49827873706817627
21
+ ],
22
+ "max": [
23
+ 0.9375,
24
+ 0.9375,
25
+ 0.9375,
26
+ 0.1971428543329239,
27
+ 0.33642858266830444,
28
+ 0.375,
29
+ 1.0
30
+ ],
31
+ "min": [
32
+ -0.9375,
33
+ -0.9375,
34
+ -0.9375,
35
+ -0.1875,
36
+ -0.3675000071525574,
37
+ -0.36000001430511475,
38
+ 0.0
39
+ ],
40
+ "q01": [
41
+ -0.7454732114076613,
42
+ -0.6616071462631226,
43
+ -0.9375,
44
+ -0.1071428582072258,
45
+ -0.20678570866584778,
46
+ -0.1842857152223587,
47
+ 0.0
48
+ ],
49
+ "q99": [
50
+ 0.9375,
51
+ 0.8758928775787354,
52
+ 0.9321428537368774,
53
+ 0.1039285734295845,
54
+ 0.17678570747375488,
55
+ 0.14571428298950195,
56
+ 1.0
57
+ ],
58
+ "mask": [
59
+ true,
60
+ true,
61
+ true,
62
+ true,
63
+ true,
64
+ true,
65
+ false
66
+ ]
67
+ },
68
+ "state": {
69
+ "mean": [
70
+ -0.024462558329105377,
71
+ 0.106529600918293,
72
+ 1.0580483675003052,
73
+ 3.0628468990325928,
74
+ -0.10464039444923401,
75
+ 0.08307311683893204,
76
+ 0.01995457336306572,
77
+ -0.020162804052233696
78
+ ],
79
+ "std": [
80
+ 0.1101478561758995,
81
+ 0.13784688711166382,
82
+ 0.10442823916673634,
83
+ 0.10451053828000996,
84
+ 0.4112098217010498,
85
+ 0.2176690548658371,
86
+ 0.017260896041989326,
87
+ 0.0171116404235363
88
+ ],
89
+ "max": [
90
+ 0.1759040206670761,
91
+ 0.3904820382595062,
92
+ 1.3290715217590332,
93
+ 3.4566118717193604,
94
+ 1.2268599271774292,
95
+ 1.0429412126541138,
96
+ 0.041053611785173416,
97
+ 0.000775813648942858
98
+ ],
99
+ "min": [
100
+ -0.3095473051071167,
101
+ -0.29250794649124146,
102
+ 0.9095591306686401,
103
+ 2.497488260269165,
104
+ -1.8006486892700195,
105
+ -0.7207611203193665,
106
+ -0.0004703797458205372,
107
+ -0.041536275297403336
108
+ ],
109
+ "q01": [
110
+ -0.2727657300233841,
111
+ -0.23721413239836692,
112
+ 0.9160063165426254,
113
+ 2.77949666261673,
114
+ -1.3187511622905732,
115
+ -0.41989982962608335,
116
+ 0.001503719249740243,
117
+ -0.03989770736545324
118
+ ],
119
+ "q99": [
120
+ 0.13529365032911292,
121
+ 0.3629165390133857,
122
+ 1.2862326657772063,
123
+ 3.2829698753356933,
124
+ 0.9332760351896285,
125
+ 0.6325724506378171,
126
+ 0.039933966137468815,
127
+ -0.001671919699292631
128
+ ]
129
+ },
130
+ "num_transitions": 52791,
131
+ "num_trajectories": 432
132
+ }
133
+ }
libero_spatial_2B/starvla_qwen_dual/final_model/pytorch_model.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c93cee31b57faaa1fb37a382f099df82bdc9cd738377faa8340afc3941da8a20
3
+ size 5233814193
libero_spatial_2B/starvla_qwen_dual/libero_eval_libero_spatial.log ADDED
@@ -0,0 +1,2521 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Task suite: libero_spatial
2
+
3
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
4
+ Success: True
5
+ # episodes completed so far: 1
6
+ # successes: 1 (100.0%)
7
+
8
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
9
+ Success: True
10
+ # episodes completed so far: 2
11
+ # successes: 2 (100.0%)
12
+
13
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
14
+ Success: True
15
+ # episodes completed so far: 3
16
+ # successes: 3 (100.0%)
17
+
18
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
19
+ Success: True
20
+ # episodes completed so far: 4
21
+ # successes: 4 (100.0%)
22
+
23
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
24
+ Success: True
25
+ # episodes completed so far: 5
26
+ # successes: 5 (100.0%)
27
+
28
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
29
+ Success: True
30
+ # episodes completed so far: 6
31
+ # successes: 6 (100.0%)
32
+
33
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
34
+ Success: True
35
+ # episodes completed so far: 7
36
+ # successes: 7 (100.0%)
37
+
38
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
39
+ Success: True
40
+ # episodes completed so far: 8
41
+ # successes: 8 (100.0%)
42
+
43
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
44
+ Success: True
45
+ # episodes completed so far: 9
46
+ # successes: 9 (100.0%)
47
+
48
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
49
+ Success: True
50
+ # episodes completed so far: 10
51
+ # successes: 10 (100.0%)
52
+
53
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
54
+ Success: True
55
+ # episodes completed so far: 11
56
+ # successes: 11 (100.0%)
57
+
58
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
59
+ Success: True
60
+ # episodes completed so far: 12
61
+ # successes: 12 (100.0%)
62
+
63
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
64
+ Success: True
65
+ # episodes completed so far: 13
66
+ # successes: 13 (100.0%)
67
+
68
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
69
+ Success: True
70
+ # episodes completed so far: 14
71
+ # successes: 14 (100.0%)
72
+
73
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
74
+ Success: True
75
+ # episodes completed so far: 15
76
+ # successes: 15 (100.0%)
77
+
78
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
79
+ Success: True
80
+ # episodes completed so far: 16
81
+ # successes: 16 (100.0%)
82
+
83
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
84
+ Success: True
85
+ # episodes completed so far: 17
86
+ # successes: 17 (100.0%)
87
+
88
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
89
+ Success: True
90
+ # episodes completed so far: 18
91
+ # successes: 18 (100.0%)
92
+
93
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
94
+ Success: True
95
+ # episodes completed so far: 19
96
+ # successes: 19 (100.0%)
97
+
98
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
99
+ Success: True
100
+ # episodes completed so far: 20
101
+ # successes: 20 (100.0%)
102
+
103
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
104
+ Success: True
105
+ # episodes completed so far: 21
106
+ # successes: 21 (100.0%)
107
+
108
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
109
+ Success: True
110
+ # episodes completed so far: 22
111
+ # successes: 22 (100.0%)
112
+
113
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
114
+ Success: True
115
+ # episodes completed so far: 23
116
+ # successes: 23 (100.0%)
117
+
118
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
119
+ Success: True
120
+ # episodes completed so far: 24
121
+ # successes: 24 (100.0%)
122
+
123
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
124
+ Success: True
125
+ # episodes completed so far: 25
126
+ # successes: 25 (100.0%)
127
+
128
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
129
+ Success: True
130
+ # episodes completed so far: 26
131
+ # successes: 26 (100.0%)
132
+
133
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
134
+ Success: True
135
+ # episodes completed so far: 27
136
+ # successes: 27 (100.0%)
137
+
138
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
139
+ Success: True
140
+ # episodes completed so far: 28
141
+ # successes: 28 (100.0%)
142
+
143
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
144
+ Success: True
145
+ # episodes completed so far: 29
146
+ # successes: 29 (100.0%)
147
+
148
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
149
+ Success: True
150
+ # episodes completed so far: 30
151
+ # successes: 30 (100.0%)
152
+
153
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
154
+ Success: True
155
+ # episodes completed so far: 31
156
+ # successes: 31 (100.0%)
157
+
158
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
159
+ Success: True
160
+ # episodes completed so far: 32
161
+ # successes: 32 (100.0%)
162
+
163
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
164
+ Success: True
165
+ # episodes completed so far: 33
166
+ # successes: 33 (100.0%)
167
+
168
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
169
+ Success: True
170
+ # episodes completed so far: 34
171
+ # successes: 34 (100.0%)
172
+
173
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
174
+ Success: True
175
+ # episodes completed so far: 35
176
+ # successes: 35 (100.0%)
177
+
178
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
179
+ Success: True
180
+ # episodes completed so far: 36
181
+ # successes: 36 (100.0%)
182
+
183
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
184
+ Success: True
185
+ # episodes completed so far: 37
186
+ # successes: 37 (100.0%)
187
+
188
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
189
+ Success: True
190
+ # episodes completed so far: 38
191
+ # successes: 38 (100.0%)
192
+
193
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
194
+ Success: True
195
+ # episodes completed so far: 39
196
+ # successes: 39 (100.0%)
197
+
198
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
199
+ Success: True
200
+ # episodes completed so far: 40
201
+ # successes: 40 (100.0%)
202
+
203
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
204
+ Success: True
205
+ # episodes completed so far: 41
206
+ # successes: 41 (100.0%)
207
+
208
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
209
+ Success: True
210
+ # episodes completed so far: 42
211
+ # successes: 42 (100.0%)
212
+
213
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
214
+ Success: True
215
+ # episodes completed so far: 43
216
+ # successes: 43 (100.0%)
217
+
218
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
219
+ Success: True
220
+ # episodes completed so far: 44
221
+ # successes: 44 (100.0%)
222
+
223
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
224
+ Success: True
225
+ # episodes completed so far: 45
226
+ # successes: 45 (100.0%)
227
+
228
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
229
+ Success: True
230
+ # episodes completed so far: 46
231
+ # successes: 46 (100.0%)
232
+
233
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
234
+ Success: True
235
+ # episodes completed so far: 47
236
+ # successes: 47 (100.0%)
237
+
238
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
239
+ Success: True
240
+ # episodes completed so far: 48
241
+ # successes: 48 (100.0%)
242
+
243
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
244
+ Success: True
245
+ # episodes completed so far: 49
246
+ # successes: 49 (100.0%)
247
+
248
+ Task: pick up the black bowl between the plate and the ramekin and place it on the plate
249
+ Success: True
250
+ # episodes completed so far: 50
251
+ # successes: 50 (100.0%)
252
+ Current task success rate: 1.0
253
+ Current total success rate: 1.0
254
+
255
+ Task: pick up the black bowl next to the ramekin and place it on the plate
256
+ Success: True
257
+ # episodes completed so far: 51
258
+ # successes: 51 (100.0%)
259
+
260
+ Task: pick up the black bowl next to the ramekin and place it on the plate
261
+ Success: True
262
+ # episodes completed so far: 52
263
+ # successes: 52 (100.0%)
264
+
265
+ Task: pick up the black bowl next to the ramekin and place it on the plate
266
+ Success: True
267
+ # episodes completed so far: 53
268
+ # successes: 53 (100.0%)
269
+
270
+ Task: pick up the black bowl next to the ramekin and place it on the plate
271
+ Success: True
272
+ # episodes completed so far: 54
273
+ # successes: 54 (100.0%)
274
+
275
+ Task: pick up the black bowl next to the ramekin and place it on the plate
276
+ Success: True
277
+ # episodes completed so far: 55
278
+ # successes: 55 (100.0%)
279
+
280
+ Task: pick up the black bowl next to the ramekin and place it on the plate
281
+ Success: True
282
+ # episodes completed so far: 56
283
+ # successes: 56 (100.0%)
284
+
285
+ Task: pick up the black bowl next to the ramekin and place it on the plate
286
+ Success: True
287
+ # episodes completed so far: 57
288
+ # successes: 57 (100.0%)
289
+
290
+ Task: pick up the black bowl next to the ramekin and place it on the plate
291
+ Success: True
292
+ # episodes completed so far: 58
293
+ # successes: 58 (100.0%)
294
+
295
+ Task: pick up the black bowl next to the ramekin and place it on the plate
296
+ Success: True
297
+ # episodes completed so far: 59
298
+ # successes: 59 (100.0%)
299
+
300
+ Task: pick up the black bowl next to the ramekin and place it on the plate
301
+ Success: True
302
+ # episodes completed so far: 60
303
+ # successes: 60 (100.0%)
304
+
305
+ Task: pick up the black bowl next to the ramekin and place it on the plate
306
+ Success: True
307
+ # episodes completed so far: 61
308
+ # successes: 61 (100.0%)
309
+
310
+ Task: pick up the black bowl next to the ramekin and place it on the plate
311
+ Success: True
312
+ # episodes completed so far: 62
313
+ # successes: 62 (100.0%)
314
+
315
+ Task: pick up the black bowl next to the ramekin and place it on the plate
316
+ Success: True
317
+ # episodes completed so far: 63
318
+ # successes: 63 (100.0%)
319
+
320
+ Task: pick up the black bowl next to the ramekin and place it on the plate
321
+ Success: True
322
+ # episodes completed so far: 64
323
+ # successes: 64 (100.0%)
324
+
325
+ Task: pick up the black bowl next to the ramekin and place it on the plate
326
+ Success: True
327
+ # episodes completed so far: 65
328
+ # successes: 65 (100.0%)
329
+
330
+ Task: pick up the black bowl next to the ramekin and place it on the plate
331
+ Success: True
332
+ # episodes completed so far: 66
333
+ # successes: 66 (100.0%)
334
+
335
+ Task: pick up the black bowl next to the ramekin and place it on the plate
336
+ Success: True
337
+ # episodes completed so far: 67
338
+ # successes: 67 (100.0%)
339
+
340
+ Task: pick up the black bowl next to the ramekin and place it on the plate
341
+ Success: True
342
+ # episodes completed so far: 68
343
+ # successes: 68 (100.0%)
344
+
345
+ Task: pick up the black bowl next to the ramekin and place it on the plate
346
+ Success: True
347
+ # episodes completed so far: 69
348
+ # successes: 69 (100.0%)
349
+
350
+ Task: pick up the black bowl next to the ramekin and place it on the plate
351
+ Success: True
352
+ # episodes completed so far: 70
353
+ # successes: 70 (100.0%)
354
+
355
+ Task: pick up the black bowl next to the ramekin and place it on the plate
356
+ Success: True
357
+ # episodes completed so far: 71
358
+ # successes: 71 (100.0%)
359
+
360
+ Task: pick up the black bowl next to the ramekin and place it on the plate
361
+ Success: True
362
+ # episodes completed so far: 72
363
+ # successes: 72 (100.0%)
364
+
365
+ Task: pick up the black bowl next to the ramekin and place it on the plate
366
+ Success: True
367
+ # episodes completed so far: 73
368
+ # successes: 73 (100.0%)
369
+
370
+ Task: pick up the black bowl next to the ramekin and place it on the plate
371
+ Success: True
372
+ # episodes completed so far: 74
373
+ # successes: 74 (100.0%)
374
+
375
+ Task: pick up the black bowl next to the ramekin and place it on the plate
376
+ Success: True
377
+ # episodes completed so far: 75
378
+ # successes: 75 (100.0%)
379
+
380
+ Task: pick up the black bowl next to the ramekin and place it on the plate
381
+ Success: True
382
+ # episodes completed so far: 76
383
+ # successes: 76 (100.0%)
384
+
385
+ Task: pick up the black bowl next to the ramekin and place it on the plate
386
+ Success: False
387
+ # episodes completed so far: 77
388
+ # successes: 76 (98.7%)
389
+
390
+ Task: pick up the black bowl next to the ramekin and place it on the plate
391
+ Success: True
392
+ # episodes completed so far: 78
393
+ # successes: 77 (98.7%)
394
+
395
+ Task: pick up the black bowl next to the ramekin and place it on the plate
396
+ Success: True
397
+ # episodes completed so far: 79
398
+ # successes: 78 (98.7%)
399
+
400
+ Task: pick up the black bowl next to the ramekin and place it on the plate
401
+ Success: True
402
+ # episodes completed so far: 80
403
+ # successes: 79 (98.8%)
404
+
405
+ Task: pick up the black bowl next to the ramekin and place it on the plate
406
+ Success: True
407
+ # episodes completed so far: 81
408
+ # successes: 80 (98.8%)
409
+
410
+ Task: pick up the black bowl next to the ramekin and place it on the plate
411
+ Success: True
412
+ # episodes completed so far: 82
413
+ # successes: 81 (98.8%)
414
+
415
+ Task: pick up the black bowl next to the ramekin and place it on the plate
416
+ Success: True
417
+ # episodes completed so far: 83
418
+ # successes: 82 (98.8%)
419
+
420
+ Task: pick up the black bowl next to the ramekin and place it on the plate
421
+ Success: True
422
+ # episodes completed so far: 84
423
+ # successes: 83 (98.8%)
424
+
425
+ Task: pick up the black bowl next to the ramekin and place it on the plate
426
+ Success: True
427
+ # episodes completed so far: 85
428
+ # successes: 84 (98.8%)
429
+
430
+ Task: pick up the black bowl next to the ramekin and place it on the plate
431
+ Success: True
432
+ # episodes completed so far: 86
433
+ # successes: 85 (98.8%)
434
+
435
+ Task: pick up the black bowl next to the ramekin and place it on the plate
436
+ Success: True
437
+ # episodes completed so far: 87
438
+ # successes: 86 (98.9%)
439
+
440
+ Task: pick up the black bowl next to the ramekin and place it on the plate
441
+ Success: True
442
+ # episodes completed so far: 88
443
+ # successes: 87 (98.9%)
444
+
445
+ Task: pick up the black bowl next to the ramekin and place it on the plate
446
+ Success: True
447
+ # episodes completed so far: 89
448
+ # successes: 88 (98.9%)
449
+
450
+ Task: pick up the black bowl next to the ramekin and place it on the plate
451
+ Success: True
452
+ # episodes completed so far: 90
453
+ # successes: 89 (98.9%)
454
+
455
+ Task: pick up the black bowl next to the ramekin and place it on the plate
456
+ Success: True
457
+ # episodes completed so far: 91
458
+ # successes: 90 (98.9%)
459
+
460
+ Task: pick up the black bowl next to the ramekin and place it on the plate
461
+ Success: True
462
+ # episodes completed so far: 92
463
+ # successes: 91 (98.9%)
464
+
465
+ Task: pick up the black bowl next to the ramekin and place it on the plate
466
+ Success: True
467
+ # episodes completed so far: 93
468
+ # successes: 92 (98.9%)
469
+
470
+ Task: pick up the black bowl next to the ramekin and place it on the plate
471
+ Success: True
472
+ # episodes completed so far: 94
473
+ # successes: 93 (98.9%)
474
+
475
+ Task: pick up the black bowl next to the ramekin and place it on the plate
476
+ Success: True
477
+ # episodes completed so far: 95
478
+ # successes: 94 (98.9%)
479
+
480
+ Task: pick up the black bowl next to the ramekin and place it on the plate
481
+ Success: True
482
+ # episodes completed so far: 96
483
+ # successes: 95 (99.0%)
484
+
485
+ Task: pick up the black bowl next to the ramekin and place it on the plate
486
+ Success: False
487
+ # episodes completed so far: 97
488
+ # successes: 95 (97.9%)
489
+
490
+ Task: pick up the black bowl next to the ramekin and place it on the plate
491
+ Success: True
492
+ # episodes completed so far: 98
493
+ # successes: 96 (98.0%)
494
+
495
+ Task: pick up the black bowl next to the ramekin and place it on the plate
496
+ Success: True
497
+ # episodes completed so far: 99
498
+ # successes: 97 (98.0%)
499
+
500
+ Task: pick up the black bowl next to the ramekin and place it on the plate
501
+ Success: True
502
+ # episodes completed so far: 100
503
+ # successes: 98 (98.0%)
504
+ Current task success rate: 0.96
505
+ Current total success rate: 0.98
506
+
507
+ Task: pick up the black bowl from table center and place it on the plate
508
+ Success: True
509
+ # episodes completed so far: 101
510
+ # successes: 99 (98.0%)
511
+
512
+ Task: pick up the black bowl from table center and place it on the plate
513
+ Success: True
514
+ # episodes completed so far: 102
515
+ # successes: 100 (98.0%)
516
+
517
+ Task: pick up the black bowl from table center and place it on the plate
518
+ Success: True
519
+ # episodes completed so far: 103
520
+ # successes: 101 (98.1%)
521
+
522
+ Task: pick up the black bowl from table center and place it on the plate
523
+ Success: True
524
+ # episodes completed so far: 104
525
+ # successes: 102 (98.1%)
526
+
527
+ Task: pick up the black bowl from table center and place it on the plate
528
+ Success: True
529
+ # episodes completed so far: 105
530
+ # successes: 103 (98.1%)
531
+
532
+ Task: pick up the black bowl from table center and place it on the plate
533
+ Success: True
534
+ # episodes completed so far: 106
535
+ # successes: 104 (98.1%)
536
+
537
+ Task: pick up the black bowl from table center and place it on the plate
538
+ Success: True
539
+ # episodes completed so far: 107
540
+ # successes: 105 (98.1%)
541
+
542
+ Task: pick up the black bowl from table center and place it on the plate
543
+ Success: True
544
+ # episodes completed so far: 108
545
+ # successes: 106 (98.1%)
546
+
547
+ Task: pick up the black bowl from table center and place it on the plate
548
+ Success: True
549
+ # episodes completed so far: 109
550
+ # successes: 107 (98.2%)
551
+
552
+ Task: pick up the black bowl from table center and place it on the plate
553
+ Success: True
554
+ # episodes completed so far: 110
555
+ # successes: 108 (98.2%)
556
+
557
+ Task: pick up the black bowl from table center and place it on the plate
558
+ Success: True
559
+ # episodes completed so far: 111
560
+ # successes: 109 (98.2%)
561
+
562
+ Task: pick up the black bowl from table center and place it on the plate
563
+ Success: True
564
+ # episodes completed so far: 112
565
+ # successes: 110 (98.2%)
566
+
567
+ Task: pick up the black bowl from table center and place it on the plate
568
+ Success: True
569
+ # episodes completed so far: 113
570
+ # successes: 111 (98.2%)
571
+
572
+ Task: pick up the black bowl from table center and place it on the plate
573
+ Success: True
574
+ # episodes completed so far: 114
575
+ # successes: 112 (98.2%)
576
+
577
+ Task: pick up the black bowl from table center and place it on the plate
578
+ Success: True
579
+ # episodes completed so far: 115
580
+ # successes: 113 (98.3%)
581
+
582
+ Task: pick up the black bowl from table center and place it on the plate
583
+ Success: True
584
+ # episodes completed so far: 116
585
+ # successes: 114 (98.3%)
586
+
587
+ Task: pick up the black bowl from table center and place it on the plate
588
+ Success: True
589
+ # episodes completed so far: 117
590
+ # successes: 115 (98.3%)
591
+
592
+ Task: pick up the black bowl from table center and place it on the plate
593
+ Success: True
594
+ # episodes completed so far: 118
595
+ # successes: 116 (98.3%)
596
+
597
+ Task: pick up the black bowl from table center and place it on the plate
598
+ Success: True
599
+ # episodes completed so far: 119
600
+ # successes: 117 (98.3%)
601
+
602
+ Task: pick up the black bowl from table center and place it on the plate
603
+ Success: True
604
+ # episodes completed so far: 120
605
+ # successes: 118 (98.3%)
606
+
607
+ Task: pick up the black bowl from table center and place it on the plate
608
+ Success: True
609
+ # episodes completed so far: 121
610
+ # successes: 119 (98.3%)
611
+
612
+ Task: pick up the black bowl from table center and place it on the plate
613
+ Success: True
614
+ # episodes completed so far: 122
615
+ # successes: 120 (98.4%)
616
+
617
+ Task: pick up the black bowl from table center and place it on the plate
618
+ Success: True
619
+ # episodes completed so far: 123
620
+ # successes: 121 (98.4%)
621
+
622
+ Task: pick up the black bowl from table center and place it on the plate
623
+ Success: True
624
+ # episodes completed so far: 124
625
+ # successes: 122 (98.4%)
626
+
627
+ Task: pick up the black bowl from table center and place it on the plate
628
+ Success: True
629
+ # episodes completed so far: 125
630
+ # successes: 123 (98.4%)
631
+
632
+ Task: pick up the black bowl from table center and place it on the plate
633
+ Success: True
634
+ # episodes completed so far: 126
635
+ # successes: 124 (98.4%)
636
+
637
+ Task: pick up the black bowl from table center and place it on the plate
638
+ Success: True
639
+ # episodes completed so far: 127
640
+ # successes: 125 (98.4%)
641
+
642
+ Task: pick up the black bowl from table center and place it on the plate
643
+ Success: True
644
+ # episodes completed so far: 128
645
+ # successes: 126 (98.4%)
646
+
647
+ Task: pick up the black bowl from table center and place it on the plate
648
+ Success: True
649
+ # episodes completed so far: 129
650
+ # successes: 127 (98.4%)
651
+
652
+ Task: pick up the black bowl from table center and place it on the plate
653
+ Success: True
654
+ # episodes completed so far: 130
655
+ # successes: 128 (98.5%)
656
+
657
+ Task: pick up the black bowl from table center and place it on the plate
658
+ Success: True
659
+ # episodes completed so far: 131
660
+ # successes: 129 (98.5%)
661
+
662
+ Task: pick up the black bowl from table center and place it on the plate
663
+ Success: True
664
+ # episodes completed so far: 132
665
+ # successes: 130 (98.5%)
666
+
667
+ Task: pick up the black bowl from table center and place it on the plate
668
+ Success: True
669
+ # episodes completed so far: 133
670
+ # successes: 131 (98.5%)
671
+
672
+ Task: pick up the black bowl from table center and place it on the plate
673
+ Success: True
674
+ # episodes completed so far: 134
675
+ # successes: 132 (98.5%)
676
+
677
+ Task: pick up the black bowl from table center and place it on the plate
678
+ Success: True
679
+ # episodes completed so far: 135
680
+ # successes: 133 (98.5%)
681
+
682
+ Task: pick up the black bowl from table center and place it on the plate
683
+ Success: True
684
+ # episodes completed so far: 136
685
+ # successes: 134 (98.5%)
686
+
687
+ Task: pick up the black bowl from table center and place it on the plate
688
+ Success: True
689
+ # episodes completed so far: 137
690
+ # successes: 135 (98.5%)
691
+
692
+ Task: pick up the black bowl from table center and place it on the plate
693
+ Success: True
694
+ # episodes completed so far: 138
695
+ # successes: 136 (98.6%)
696
+
697
+ Task: pick up the black bowl from table center and place it on the plate
698
+ Success: True
699
+ # episodes completed so far: 139
700
+ # successes: 137 (98.6%)
701
+
702
+ Task: pick up the black bowl from table center and place it on the plate
703
+ Success: True
704
+ # episodes completed so far: 140
705
+ # successes: 138 (98.6%)
706
+
707
+ Task: pick up the black bowl from table center and place it on the plate
708
+ Success: True
709
+ # episodes completed so far: 141
710
+ # successes: 139 (98.6%)
711
+
712
+ Task: pick up the black bowl from table center and place it on the plate
713
+ Success: True
714
+ # episodes completed so far: 142
715
+ # successes: 140 (98.6%)
716
+
717
+ Task: pick up the black bowl from table center and place it on the plate
718
+ Success: True
719
+ # episodes completed so far: 143
720
+ # successes: 141 (98.6%)
721
+
722
+ Task: pick up the black bowl from table center and place it on the plate
723
+ Success: True
724
+ # episodes completed so far: 144
725
+ # successes: 142 (98.6%)
726
+
727
+ Task: pick up the black bowl from table center and place it on the plate
728
+ Success: True
729
+ # episodes completed so far: 145
730
+ # successes: 143 (98.6%)
731
+
732
+ Task: pick up the black bowl from table center and place it on the plate
733
+ Success: True
734
+ # episodes completed so far: 146
735
+ # successes: 144 (98.6%)
736
+
737
+ Task: pick up the black bowl from table center and place it on the plate
738
+ Success: True
739
+ # episodes completed so far: 147
740
+ # successes: 145 (98.6%)
741
+
742
+ Task: pick up the black bowl from table center and place it on the plate
743
+ Success: True
744
+ # episodes completed so far: 148
745
+ # successes: 146 (98.6%)
746
+
747
+ Task: pick up the black bowl from table center and place it on the plate
748
+ Success: True
749
+ # episodes completed so far: 149
750
+ # successes: 147 (98.7%)
751
+
752
+ Task: pick up the black bowl from table center and place it on the plate
753
+ Success: True
754
+ # episodes completed so far: 150
755
+ # successes: 148 (98.7%)
756
+ Current task success rate: 1.0
757
+ Current total success rate: 0.9866666666666667
758
+
759
+ Task: pick up the black bowl on the cookie box and place it on the plate
760
+ Success: True
761
+ # episodes completed so far: 151
762
+ # successes: 149 (98.7%)
763
+
764
+ Task: pick up the black bowl on the cookie box and place it on the plate
765
+ Success: True
766
+ # episodes completed so far: 152
767
+ # successes: 150 (98.7%)
768
+
769
+ Task: pick up the black bowl on the cookie box and place it on the plate
770
+ Success: True
771
+ # episodes completed so far: 153
772
+ # successes: 151 (98.7%)
773
+
774
+ Task: pick up the black bowl on the cookie box and place it on the plate
775
+ Success: True
776
+ # episodes completed so far: 154
777
+ # successes: 152 (98.7%)
778
+
779
+ Task: pick up the black bowl on the cookie box and place it on the plate
780
+ Success: True
781
+ # episodes completed so far: 155
782
+ # successes: 153 (98.7%)
783
+
784
+ Task: pick up the black bowl on the cookie box and place it on the plate
785
+ Success: True
786
+ # episodes completed so far: 156
787
+ # successes: 154 (98.7%)
788
+
789
+ Task: pick up the black bowl on the cookie box and place it on the plate
790
+ Success: True
791
+ # episodes completed so far: 157
792
+ # successes: 155 (98.7%)
793
+
794
+ Task: pick up the black bowl on the cookie box and place it on the plate
795
+ Success: True
796
+ # episodes completed so far: 158
797
+ # successes: 156 (98.7%)
798
+
799
+ Task: pick up the black bowl on the cookie box and place it on the plate
800
+ Success: True
801
+ # episodes completed so far: 159
802
+ # successes: 157 (98.7%)
803
+
804
+ Task: pick up the black bowl on the cookie box and place it on the plate
805
+ Success: True
806
+ # episodes completed so far: 160
807
+ # successes: 158 (98.8%)
808
+
809
+ Task: pick up the black bowl on the cookie box and place it on the plate
810
+ Success: True
811
+ # episodes completed so far: 161
812
+ # successes: 159 (98.8%)
813
+
814
+ Task: pick up the black bowl on the cookie box and place it on the plate
815
+ Success: True
816
+ # episodes completed so far: 162
817
+ # successes: 160 (98.8%)
818
+
819
+ Task: pick up the black bowl on the cookie box and place it on the plate
820
+ Success: True
821
+ # episodes completed so far: 163
822
+ # successes: 161 (98.8%)
823
+
824
+ Task: pick up the black bowl on the cookie box and place it on the plate
825
+ Success: True
826
+ # episodes completed so far: 164
827
+ # successes: 162 (98.8%)
828
+
829
+ Task: pick up the black bowl on the cookie box and place it on the plate
830
+ Success: True
831
+ # episodes completed so far: 165
832
+ # successes: 163 (98.8%)
833
+
834
+ Task: pick up the black bowl on the cookie box and place it on the plate
835
+ Success: True
836
+ # episodes completed so far: 166
837
+ # successes: 164 (98.8%)
838
+
839
+ Task: pick up the black bowl on the cookie box and place it on the plate
840
+ Success: True
841
+ # episodes completed so far: 167
842
+ # successes: 165 (98.8%)
843
+
844
+ Task: pick up the black bowl on the cookie box and place it on the plate
845
+ Success: True
846
+ # episodes completed so far: 168
847
+ # successes: 166 (98.8%)
848
+
849
+ Task: pick up the black bowl on the cookie box and place it on the plate
850
+ Success: True
851
+ # episodes completed so far: 169
852
+ # successes: 167 (98.8%)
853
+
854
+ Task: pick up the black bowl on the cookie box and place it on the plate
855
+ Success: True
856
+ # episodes completed so far: 170
857
+ # successes: 168 (98.8%)
858
+
859
+ Task: pick up the black bowl on the cookie box and place it on the plate
860
+ Success: True
861
+ # episodes completed so far: 171
862
+ # successes: 169 (98.8%)
863
+
864
+ Task: pick up the black bowl on the cookie box and place it on the plate
865
+ Success: True
866
+ # episodes completed so far: 172
867
+ # successes: 170 (98.8%)
868
+
869
+ Task: pick up the black bowl on the cookie box and place it on the plate
870
+ Success: True
871
+ # episodes completed so far: 173
872
+ # successes: 171 (98.8%)
873
+
874
+ Task: pick up the black bowl on the cookie box and place it on the plate
875
+ Success: True
876
+ # episodes completed so far: 174
877
+ # successes: 172 (98.9%)
878
+
879
+ Task: pick up the black bowl on the cookie box and place it on the plate
880
+ Success: True
881
+ # episodes completed so far: 175
882
+ # successes: 173 (98.9%)
883
+
884
+ Task: pick up the black bowl on the cookie box and place it on the plate
885
+ Success: True
886
+ # episodes completed so far: 176
887
+ # successes: 174 (98.9%)
888
+
889
+ Task: pick up the black bowl on the cookie box and place it on the plate
890
+ Success: True
891
+ # episodes completed so far: 177
892
+ # successes: 175 (98.9%)
893
+
894
+ Task: pick up the black bowl on the cookie box and place it on the plate
895
+ Success: False
896
+ # episodes completed so far: 178
897
+ # successes: 175 (98.3%)
898
+
899
+ Task: pick up the black bowl on the cookie box and place it on the plate
900
+ Success: True
901
+ # episodes completed so far: 179
902
+ # successes: 176 (98.3%)
903
+
904
+ Task: pick up the black bowl on the cookie box and place it on the plate
905
+ Success: True
906
+ # episodes completed so far: 180
907
+ # successes: 177 (98.3%)
908
+
909
+ Task: pick up the black bowl on the cookie box and place it on the plate
910
+ Success: True
911
+ # episodes completed so far: 181
912
+ # successes: 178 (98.3%)
913
+
914
+ Task: pick up the black bowl on the cookie box and place it on the plate
915
+ Success: True
916
+ # episodes completed so far: 182
917
+ # successes: 179 (98.4%)
918
+
919
+ Task: pick up the black bowl on the cookie box and place it on the plate
920
+ Success: True
921
+ # episodes completed so far: 183
922
+ # successes: 180 (98.4%)
923
+
924
+ Task: pick up the black bowl on the cookie box and place it on the plate
925
+ Success: True
926
+ # episodes completed so far: 184
927
+ # successes: 181 (98.4%)
928
+
929
+ Task: pick up the black bowl on the cookie box and place it on the plate
930
+ Success: True
931
+ # episodes completed so far: 185
932
+ # successes: 182 (98.4%)
933
+
934
+ Task: pick up the black bowl on the cookie box and place it on the plate
935
+ Success: True
936
+ # episodes completed so far: 186
937
+ # successes: 183 (98.4%)
938
+
939
+ Task: pick up the black bowl on the cookie box and place it on the plate
940
+ Success: True
941
+ # episodes completed so far: 187
942
+ # successes: 184 (98.4%)
943
+
944
+ Task: pick up the black bowl on the cookie box and place it on the plate
945
+ Success: True
946
+ # episodes completed so far: 188
947
+ # successes: 185 (98.4%)
948
+
949
+ Task: pick up the black bowl on the cookie box and place it on the plate
950
+ Success: False
951
+ # episodes completed so far: 189
952
+ # successes: 185 (97.9%)
953
+
954
+ Task: pick up the black bowl on the cookie box and place it on the plate
955
+ Success: True
956
+ # episodes completed so far: 190
957
+ # successes: 186 (97.9%)
958
+
959
+ Task: pick up the black bowl on the cookie box and place it on the plate
960
+ Success: True
961
+ # episodes completed so far: 191
962
+ # successes: 187 (97.9%)
963
+
964
+ Task: pick up the black bowl on the cookie box and place it on the plate
965
+ Success: True
966
+ # episodes completed so far: 192
967
+ # successes: 188 (97.9%)
968
+
969
+ Task: pick up the black bowl on the cookie box and place it on the plate
970
+ Success: True
971
+ # episodes completed so far: 193
972
+ # successes: 189 (97.9%)
973
+
974
+ Task: pick up the black bowl on the cookie box and place it on the plate
975
+ Success: True
976
+ # episodes completed so far: 194
977
+ # successes: 190 (97.9%)
978
+
979
+ Task: pick up the black bowl on the cookie box and place it on the plate
980
+ Success: True
981
+ # episodes completed so far: 195
982
+ # successes: 191 (97.9%)
983
+
984
+ Task: pick up the black bowl on the cookie box and place it on the plate
985
+ Success: True
986
+ # episodes completed so far: 196
987
+ # successes: 192 (98.0%)
988
+
989
+ Task: pick up the black bowl on the cookie box and place it on the plate
990
+ Success: True
991
+ # episodes completed so far: 197
992
+ # successes: 193 (98.0%)
993
+
994
+ Task: pick up the black bowl on the cookie box and place it on the plate
995
+ Success: True
996
+ # episodes completed so far: 198
997
+ # successes: 194 (98.0%)
998
+
999
+ Task: pick up the black bowl on the cookie box and place it on the plate
1000
+ Success: True
1001
+ # episodes completed so far: 199
1002
+ # successes: 195 (98.0%)
1003
+
1004
+ Task: pick up the black bowl on the cookie box and place it on the plate
1005
+ Success: True
1006
+ # episodes completed so far: 200
1007
+ # successes: 196 (98.0%)
1008
+ Current task success rate: 0.96
1009
+ Current total success rate: 0.98
1010
+
1011
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1012
+ Success: True
1013
+ # episodes completed so far: 201
1014
+ # successes: 197 (98.0%)
1015
+
1016
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1017
+ Success: True
1018
+ # episodes completed so far: 202
1019
+ # successes: 198 (98.0%)
1020
+
1021
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1022
+ Success: True
1023
+ # episodes completed so far: 203
1024
+ # successes: 199 (98.0%)
1025
+
1026
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1027
+ Success: True
1028
+ # episodes completed so far: 204
1029
+ # successes: 200 (98.0%)
1030
+
1031
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1032
+ Success: True
1033
+ # episodes completed so far: 205
1034
+ # successes: 201 (98.0%)
1035
+
1036
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1037
+ Success: True
1038
+ # episodes completed so far: 206
1039
+ # successes: 202 (98.1%)
1040
+
1041
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1042
+ Success: True
1043
+ # episodes completed so far: 207
1044
+ # successes: 203 (98.1%)
1045
+
1046
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1047
+ Success: True
1048
+ # episodes completed so far: 208
1049
+ # successes: 204 (98.1%)
1050
+
1051
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1052
+ Success: True
1053
+ # episodes completed so far: 209
1054
+ # successes: 205 (98.1%)
1055
+
1056
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1057
+ Success: True
1058
+ # episodes completed so far: 210
1059
+ # successes: 206 (98.1%)
1060
+
1061
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1062
+ Success: True
1063
+ # episodes completed so far: 211
1064
+ # successes: 207 (98.1%)
1065
+
1066
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1067
+ Success: True
1068
+ # episodes completed so far: 212
1069
+ # successes: 208 (98.1%)
1070
+
1071
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1072
+ Success: True
1073
+ # episodes completed so far: 213
1074
+ # successes: 209 (98.1%)
1075
+
1076
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1077
+ Success: True
1078
+ # episodes completed so far: 214
1079
+ # successes: 210 (98.1%)
1080
+
1081
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1082
+ Success: True
1083
+ # episodes completed so far: 215
1084
+ # successes: 211 (98.1%)
1085
+
1086
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1087
+ Success: True
1088
+ # episodes completed so far: 216
1089
+ # successes: 212 (98.1%)
1090
+
1091
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1092
+ Success: True
1093
+ # episodes completed so far: 217
1094
+ # successes: 213 (98.2%)
1095
+
1096
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1097
+ Success: True
1098
+ # episodes completed so far: 218
1099
+ # successes: 214 (98.2%)
1100
+
1101
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1102
+ Success: False
1103
+ # episodes completed so far: 219
1104
+ # successes: 214 (97.7%)
1105
+
1106
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1107
+ Success: True
1108
+ # episodes completed so far: 220
1109
+ # successes: 215 (97.7%)
1110
+
1111
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1112
+ Success: True
1113
+ # episodes completed so far: 221
1114
+ # successes: 216 (97.7%)
1115
+
1116
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1117
+ Success: True
1118
+ # episodes completed so far: 222
1119
+ # successes: 217 (97.7%)
1120
+
1121
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1122
+ Success: True
1123
+ # episodes completed so far: 223
1124
+ # successes: 218 (97.8%)
1125
+
1126
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1127
+ Success: True
1128
+ # episodes completed so far: 224
1129
+ # successes: 219 (97.8%)
1130
+
1131
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1132
+ Success: True
1133
+ # episodes completed so far: 225
1134
+ # successes: 220 (97.8%)
1135
+
1136
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1137
+ Success: True
1138
+ # episodes completed so far: 226
1139
+ # successes: 221 (97.8%)
1140
+
1141
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1142
+ Success: True
1143
+ # episodes completed so far: 227
1144
+ # successes: 222 (97.8%)
1145
+
1146
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1147
+ Success: True
1148
+ # episodes completed so far: 228
1149
+ # successes: 223 (97.8%)
1150
+
1151
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1152
+ Success: True
1153
+ # episodes completed so far: 229
1154
+ # successes: 224 (97.8%)
1155
+
1156
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1157
+ Success: True
1158
+ # episodes completed so far: 230
1159
+ # successes: 225 (97.8%)
1160
+
1161
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1162
+ Success: True
1163
+ # episodes completed so far: 231
1164
+ # successes: 226 (97.8%)
1165
+
1166
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1167
+ Success: False
1168
+ # episodes completed so far: 232
1169
+ # successes: 226 (97.4%)
1170
+
1171
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1172
+ Success: True
1173
+ # episodes completed so far: 233
1174
+ # successes: 227 (97.4%)
1175
+
1176
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1177
+ Success: True
1178
+ # episodes completed so far: 234
1179
+ # successes: 228 (97.4%)
1180
+
1181
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1182
+ Success: True
1183
+ # episodes completed so far: 235
1184
+ # successes: 229 (97.4%)
1185
+
1186
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1187
+ Success: True
1188
+ # episodes completed so far: 236
1189
+ # successes: 230 (97.5%)
1190
+
1191
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1192
+ Success: True
1193
+ # episodes completed so far: 237
1194
+ # successes: 231 (97.5%)
1195
+
1196
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1197
+ Success: True
1198
+ # episodes completed so far: 238
1199
+ # successes: 232 (97.5%)
1200
+
1201
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1202
+ Success: True
1203
+ # episodes completed so far: 239
1204
+ # successes: 233 (97.5%)
1205
+
1206
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1207
+ Success: True
1208
+ # episodes completed so far: 240
1209
+ # successes: 234 (97.5%)
1210
+
1211
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1212
+ Success: True
1213
+ # episodes completed so far: 241
1214
+ # successes: 235 (97.5%)
1215
+
1216
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1217
+ Success: True
1218
+ # episodes completed so far: 242
1219
+ # successes: 236 (97.5%)
1220
+
1221
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1222
+ Success: True
1223
+ # episodes completed so far: 243
1224
+ # successes: 237 (97.5%)
1225
+
1226
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1227
+ Success: True
1228
+ # episodes completed so far: 244
1229
+ # successes: 238 (97.5%)
1230
+
1231
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1232
+ Success: True
1233
+ # episodes completed so far: 245
1234
+ # successes: 239 (97.6%)
1235
+
1236
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1237
+ Success: True
1238
+ # episodes completed so far: 246
1239
+ # successes: 240 (97.6%)
1240
+
1241
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1242
+ Success: True
1243
+ # episodes completed so far: 247
1244
+ # successes: 241 (97.6%)
1245
+
1246
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1247
+ Success: True
1248
+ # episodes completed so far: 248
1249
+ # successes: 242 (97.6%)
1250
+
1251
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1252
+ Success: True
1253
+ # episodes completed so far: 249
1254
+ # successes: 243 (97.6%)
1255
+
1256
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1257
+ Success: True
1258
+ # episodes completed so far: 250
1259
+ # successes: 244 (97.6%)
1260
+ Current task success rate: 0.96
1261
+ Current total success rate: 0.976
1262
+
1263
+ Task: pick up the black bowl on the ramekin and place it on the plate
1264
+ Success: True
1265
+ # episodes completed so far: 251
1266
+ # successes: 245 (97.6%)
1267
+
1268
+ Task: pick up the black bowl on the ramekin and place it on the plate
1269
+ Success: True
1270
+ # episodes completed so far: 252
1271
+ # successes: 246 (97.6%)
1272
+
1273
+ Task: pick up the black bowl on the ramekin and place it on the plate
1274
+ Success: True
1275
+ # episodes completed so far: 253
1276
+ # successes: 247 (97.6%)
1277
+
1278
+ Task: pick up the black bowl on the ramekin and place it on the plate
1279
+ Success: True
1280
+ # episodes completed so far: 254
1281
+ # successes: 248 (97.6%)
1282
+
1283
+ Task: pick up the black bowl on the ramekin and place it on the plate
1284
+ Success: True
1285
+ # episodes completed so far: 255
1286
+ # successes: 249 (97.6%)
1287
+
1288
+ Task: pick up the black bowl on the ramekin and place it on the plate
1289
+ Success: True
1290
+ # episodes completed so far: 256
1291
+ # successes: 250 (97.7%)
1292
+
1293
+ Task: pick up the black bowl on the ramekin and place it on the plate
1294
+ Success: True
1295
+ # episodes completed so far: 257
1296
+ # successes: 251 (97.7%)
1297
+
1298
+ Task: pick up the black bowl on the ramekin and place it on the plate
1299
+ Success: True
1300
+ # episodes completed so far: 258
1301
+ # successes: 252 (97.7%)
1302
+
1303
+ Task: pick up the black bowl on the ramekin and place it on the plate
1304
+ Success: True
1305
+ # episodes completed so far: 259
1306
+ # successes: 253 (97.7%)
1307
+
1308
+ Task: pick up the black bowl on the ramekin and place it on the plate
1309
+ Success: True
1310
+ # episodes completed so far: 260
1311
+ # successes: 254 (97.7%)
1312
+
1313
+ Task: pick up the black bowl on the ramekin and place it on the plate
1314
+ Success: True
1315
+ # episodes completed so far: 261
1316
+ # successes: 255 (97.7%)
1317
+
1318
+ Task: pick up the black bowl on the ramekin and place it on the plate
1319
+ Success: True
1320
+ # episodes completed so far: 262
1321
+ # successes: 256 (97.7%)
1322
+
1323
+ Task: pick up the black bowl on the ramekin and place it on the plate
1324
+ Success: True
1325
+ # episodes completed so far: 263
1326
+ # successes: 257 (97.7%)
1327
+
1328
+ Task: pick up the black bowl on the ramekin and place it on the plate
1329
+ Success: True
1330
+ # episodes completed so far: 264
1331
+ # successes: 258 (97.7%)
1332
+
1333
+ Task: pick up the black bowl on the ramekin and place it on the plate
1334
+ Success: True
1335
+ # episodes completed so far: 265
1336
+ # successes: 259 (97.7%)
1337
+
1338
+ Task: pick up the black bowl on the ramekin and place it on the plate
1339
+ Success: True
1340
+ # episodes completed so far: 266
1341
+ # successes: 260 (97.7%)
1342
+
1343
+ Task: pick up the black bowl on the ramekin and place it on the plate
1344
+ Success: True
1345
+ # episodes completed so far: 267
1346
+ # successes: 261 (97.8%)
1347
+
1348
+ Task: pick up the black bowl on the ramekin and place it on the plate
1349
+ Success: True
1350
+ # episodes completed so far: 268
1351
+ # successes: 262 (97.8%)
1352
+
1353
+ Task: pick up the black bowl on the ramekin and place it on the plate
1354
+ Success: True
1355
+ # episodes completed so far: 269
1356
+ # successes: 263 (97.8%)
1357
+
1358
+ Task: pick up the black bowl on the ramekin and place it on the plate
1359
+ Success: True
1360
+ # episodes completed so far: 270
1361
+ # successes: 264 (97.8%)
1362
+
1363
+ Task: pick up the black bowl on the ramekin and place it on the plate
1364
+ Success: True
1365
+ # episodes completed so far: 271
1366
+ # successes: 265 (97.8%)
1367
+
1368
+ Task: pick up the black bowl on the ramekin and place it on the plate
1369
+ Success: True
1370
+ # episodes completed so far: 272
1371
+ # successes: 266 (97.8%)
1372
+
1373
+ Task: pick up the black bowl on the ramekin and place it on the plate
1374
+ Success: True
1375
+ # episodes completed so far: 273
1376
+ # successes: 267 (97.8%)
1377
+
1378
+ Task: pick up the black bowl on the ramekin and place it on the plate
1379
+ Success: True
1380
+ # episodes completed so far: 274
1381
+ # successes: 268 (97.8%)
1382
+
1383
+ Task: pick up the black bowl on the ramekin and place it on the plate
1384
+ Success: True
1385
+ # episodes completed so far: 275
1386
+ # successes: 269 (97.8%)
1387
+
1388
+ Task: pick up the black bowl on the ramekin and place it on the plate
1389
+ Success: True
1390
+ # episodes completed so far: 276
1391
+ # successes: 270 (97.8%)
1392
+
1393
+ Task: pick up the black bowl on the ramekin and place it on the plate
1394
+ Success: True
1395
+ # episodes completed so far: 277
1396
+ # successes: 271 (97.8%)
1397
+
1398
+ Task: pick up the black bowl on the ramekin and place it on the plate
1399
+ Success: True
1400
+ # episodes completed so far: 278
1401
+ # successes: 272 (97.8%)
1402
+
1403
+ Task: pick up the black bowl on the ramekin and place it on the plate
1404
+ Success: True
1405
+ # episodes completed so far: 279
1406
+ # successes: 273 (97.8%)
1407
+
1408
+ Task: pick up the black bowl on the ramekin and place it on the plate
1409
+ Success: False
1410
+ # episodes completed so far: 280
1411
+ # successes: 273 (97.5%)
1412
+
1413
+ Task: pick up the black bowl on the ramekin and place it on the plate
1414
+ Success: True
1415
+ # episodes completed so far: 281
1416
+ # successes: 274 (97.5%)
1417
+
1418
+ Task: pick up the black bowl on the ramekin and place it on the plate
1419
+ Success: True
1420
+ # episodes completed so far: 282
1421
+ # successes: 275 (97.5%)
1422
+
1423
+ Task: pick up the black bowl on the ramekin and place it on the plate
1424
+ Success: True
1425
+ # episodes completed so far: 283
1426
+ # successes: 276 (97.5%)
1427
+
1428
+ Task: pick up the black bowl on the ramekin and place it on the plate
1429
+ Success: True
1430
+ # episodes completed so far: 284
1431
+ # successes: 277 (97.5%)
1432
+
1433
+ Task: pick up the black bowl on the ramekin and place it on the plate
1434
+ Success: True
1435
+ # episodes completed so far: 285
1436
+ # successes: 278 (97.5%)
1437
+
1438
+ Task: pick up the black bowl on the ramekin and place it on the plate
1439
+ Success: True
1440
+ # episodes completed so far: 286
1441
+ # successes: 279 (97.6%)
1442
+
1443
+ Task: pick up the black bowl on the ramekin and place it on the plate
1444
+ Success: True
1445
+ # episodes completed so far: 287
1446
+ # successes: 280 (97.6%)
1447
+
1448
+ Task: pick up the black bowl on the ramekin and place it on the plate
1449
+ Success: True
1450
+ # episodes completed so far: 288
1451
+ # successes: 281 (97.6%)
1452
+
1453
+ Task: pick up the black bowl on the ramekin and place it on the plate
1454
+ Success: True
1455
+ # episodes completed so far: 289
1456
+ # successes: 282 (97.6%)
1457
+
1458
+ Task: pick up the black bowl on the ramekin and place it on the plate
1459
+ Success: True
1460
+ # episodes completed so far: 290
1461
+ # successes: 283 (97.6%)
1462
+
1463
+ Task: pick up the black bowl on the ramekin and place it on the plate
1464
+ Success: True
1465
+ # episodes completed so far: 291
1466
+ # successes: 284 (97.6%)
1467
+
1468
+ Task: pick up the black bowl on the ramekin and place it on the plate
1469
+ Success: True
1470
+ # episodes completed so far: 292
1471
+ # successes: 285 (97.6%)
1472
+
1473
+ Task: pick up the black bowl on the ramekin and place it on the plate
1474
+ Success: True
1475
+ # episodes completed so far: 293
1476
+ # successes: 286 (97.6%)
1477
+
1478
+ Task: pick up the black bowl on the ramekin and place it on the plate
1479
+ Success: True
1480
+ # episodes completed so far: 294
1481
+ # successes: 287 (97.6%)
1482
+
1483
+ Task: pick up the black bowl on the ramekin and place it on the plate
1484
+ Success: True
1485
+ # episodes completed so far: 295
1486
+ # successes: 288 (97.6%)
1487
+
1488
+ Task: pick up the black bowl on the ramekin and place it on the plate
1489
+ Success: True
1490
+ # episodes completed so far: 296
1491
+ # successes: 289 (97.6%)
1492
+
1493
+ Task: pick up the black bowl on the ramekin and place it on the plate
1494
+ Success: True
1495
+ # episodes completed so far: 297
1496
+ # successes: 290 (97.6%)
1497
+
1498
+ Task: pick up the black bowl on the ramekin and place it on the plate
1499
+ Success: True
1500
+ # episodes completed so far: 298
1501
+ # successes: 291 (97.7%)
1502
+
1503
+ Task: pick up the black bowl on the ramekin and place it on the plate
1504
+ Success: True
1505
+ # episodes completed so far: 299
1506
+ # successes: 292 (97.7%)
1507
+
1508
+ Task: pick up the black bowl on the ramekin and place it on the plate
1509
+ Success: True
1510
+ # episodes completed so far: 300
1511
+ # successes: 293 (97.7%)
1512
+ Current task success rate: 0.98
1513
+ Current total success rate: 0.9766666666666667
1514
+
1515
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1516
+ Success: True
1517
+ # episodes completed so far: 301
1518
+ # successes: 294 (97.7%)
1519
+
1520
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1521
+ Success: True
1522
+ # episodes completed so far: 302
1523
+ # successes: 295 (97.7%)
1524
+
1525
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1526
+ Success: True
1527
+ # episodes completed so far: 303
1528
+ # successes: 296 (97.7%)
1529
+
1530
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1531
+ Success: False
1532
+ # episodes completed so far: 304
1533
+ # successes: 296 (97.4%)
1534
+
1535
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1536
+ Success: True
1537
+ # episodes completed so far: 305
1538
+ # successes: 297 (97.4%)
1539
+
1540
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1541
+ Success: True
1542
+ # episodes completed so far: 306
1543
+ # successes: 298 (97.4%)
1544
+
1545
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1546
+ Success: True
1547
+ # episodes completed so far: 307
1548
+ # successes: 299 (97.4%)
1549
+
1550
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1551
+ Success: True
1552
+ # episodes completed so far: 308
1553
+ # successes: 300 (97.4%)
1554
+
1555
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1556
+ Success: True
1557
+ # episodes completed so far: 309
1558
+ # successes: 301 (97.4%)
1559
+
1560
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1561
+ Success: True
1562
+ # episodes completed so far: 310
1563
+ # successes: 302 (97.4%)
1564
+
1565
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1566
+ Success: True
1567
+ # episodes completed so far: 311
1568
+ # successes: 303 (97.4%)
1569
+
1570
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1571
+ Success: True
1572
+ # episodes completed so far: 312
1573
+ # successes: 304 (97.4%)
1574
+
1575
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1576
+ Success: True
1577
+ # episodes completed so far: 313
1578
+ # successes: 305 (97.4%)
1579
+
1580
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1581
+ Success: True
1582
+ # episodes completed so far: 314
1583
+ # successes: 306 (97.5%)
1584
+
1585
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1586
+ Success: True
1587
+ # episodes completed so far: 315
1588
+ # successes: 307 (97.5%)
1589
+
1590
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1591
+ Success: True
1592
+ # episodes completed so far: 316
1593
+ # successes: 308 (97.5%)
1594
+
1595
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1596
+ Success: True
1597
+ # episodes completed so far: 317
1598
+ # successes: 309 (97.5%)
1599
+
1600
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1601
+ Success: True
1602
+ # episodes completed so far: 318
1603
+ # successes: 310 (97.5%)
1604
+
1605
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1606
+ Success: True
1607
+ # episodes completed so far: 319
1608
+ # successes: 311 (97.5%)
1609
+
1610
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1611
+ Success: True
1612
+ # episodes completed so far: 320
1613
+ # successes: 312 (97.5%)
1614
+
1615
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1616
+ Success: True
1617
+ # episodes completed so far: 321
1618
+ # successes: 313 (97.5%)
1619
+
1620
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1621
+ Success: True
1622
+ # episodes completed so far: 322
1623
+ # successes: 314 (97.5%)
1624
+
1625
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1626
+ Success: True
1627
+ # episodes completed so far: 323
1628
+ # successes: 315 (97.5%)
1629
+
1630
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1631
+ Success: True
1632
+ # episodes completed so far: 324
1633
+ # successes: 316 (97.5%)
1634
+
1635
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1636
+ Success: True
1637
+ # episodes completed so far: 325
1638
+ # successes: 317 (97.5%)
1639
+
1640
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1641
+ Success: True
1642
+ # episodes completed so far: 326
1643
+ # successes: 318 (97.5%)
1644
+
1645
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1646
+ Success: True
1647
+ # episodes completed so far: 327
1648
+ # successes: 319 (97.6%)
1649
+
1650
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1651
+ Success: True
1652
+ # episodes completed so far: 328
1653
+ # successes: 320 (97.6%)
1654
+
1655
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1656
+ Success: True
1657
+ # episodes completed so far: 329
1658
+ # successes: 321 (97.6%)
1659
+
1660
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1661
+ Success: True
1662
+ # episodes completed so far: 330
1663
+ # successes: 322 (97.6%)
1664
+
1665
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1666
+ Success: True
1667
+ # episodes completed so far: 331
1668
+ # successes: 323 (97.6%)
1669
+
1670
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1671
+ Success: True
1672
+ # episodes completed so far: 332
1673
+ # successes: 324 (97.6%)
1674
+
1675
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1676
+ Success: True
1677
+ # episodes completed so far: 333
1678
+ # successes: 325 (97.6%)
1679
+
1680
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1681
+ Success: True
1682
+ # episodes completed so far: 334
1683
+ # successes: 326 (97.6%)
1684
+
1685
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1686
+ Success: False
1687
+ # episodes completed so far: 335
1688
+ # successes: 326 (97.3%)
1689
+
1690
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1691
+ Success: True
1692
+ # episodes completed so far: 336
1693
+ # successes: 327 (97.3%)
1694
+
1695
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1696
+ Success: True
1697
+ # episodes completed so far: 337
1698
+ # successes: 328 (97.3%)
1699
+
1700
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1701
+ Success: True
1702
+ # episodes completed so far: 338
1703
+ # successes: 329 (97.3%)
1704
+
1705
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1706
+ Success: True
1707
+ # episodes completed so far: 339
1708
+ # successes: 330 (97.3%)
1709
+
1710
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1711
+ Success: True
1712
+ # episodes completed so far: 340
1713
+ # successes: 331 (97.4%)
1714
+
1715
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1716
+ Success: True
1717
+ # episodes completed so far: 341
1718
+ # successes: 332 (97.4%)
1719
+
1720
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1721
+ Success: True
1722
+ # episodes completed so far: 342
1723
+ # successes: 333 (97.4%)
1724
+
1725
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1726
+ Success: True
1727
+ # episodes completed so far: 343
1728
+ # successes: 334 (97.4%)
1729
+
1730
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1731
+ Success: True
1732
+ # episodes completed so far: 344
1733
+ # successes: 335 (97.4%)
1734
+
1735
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1736
+ Success: True
1737
+ # episodes completed so far: 345
1738
+ # successes: 336 (97.4%)
1739
+
1740
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1741
+ Success: True
1742
+ # episodes completed so far: 346
1743
+ # successes: 337 (97.4%)
1744
+
1745
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1746
+ Success: True
1747
+ # episodes completed so far: 347
1748
+ # successes: 338 (97.4%)
1749
+
1750
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1751
+ Success: True
1752
+ # episodes completed so far: 348
1753
+ # successes: 339 (97.4%)
1754
+
1755
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1756
+ Success: True
1757
+ # episodes completed so far: 349
1758
+ # successes: 340 (97.4%)
1759
+
1760
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1761
+ Success: True
1762
+ # episodes completed so far: 350
1763
+ # successes: 341 (97.4%)
1764
+ Current task success rate: 0.96
1765
+ Current total success rate: 0.9742857142857143
1766
+
1767
+ Task: pick up the black bowl on the stove and place it on the plate
1768
+ Success: True
1769
+ # episodes completed so far: 351
1770
+ # successes: 342 (97.4%)
1771
+
1772
+ Task: pick up the black bowl on the stove and place it on the plate
1773
+ Success: True
1774
+ # episodes completed so far: 352
1775
+ # successes: 343 (97.4%)
1776
+
1777
+ Task: pick up the black bowl on the stove and place it on the plate
1778
+ Success: True
1779
+ # episodes completed so far: 353
1780
+ # successes: 344 (97.5%)
1781
+
1782
+ Task: pick up the black bowl on the stove and place it on the plate
1783
+ Success: True
1784
+ # episodes completed so far: 354
1785
+ # successes: 345 (97.5%)
1786
+
1787
+ Task: pick up the black bowl on the stove and place it on the plate
1788
+ Success: True
1789
+ # episodes completed so far: 355
1790
+ # successes: 346 (97.5%)
1791
+
1792
+ Task: pick up the black bowl on the stove and place it on the plate
1793
+ Success: True
1794
+ # episodes completed so far: 356
1795
+ # successes: 347 (97.5%)
1796
+
1797
+ Task: pick up the black bowl on the stove and place it on the plate
1798
+ Success: True
1799
+ # episodes completed so far: 357
1800
+ # successes: 348 (97.5%)
1801
+
1802
+ Task: pick up the black bowl on the stove and place it on the plate
1803
+ Success: True
1804
+ # episodes completed so far: 358
1805
+ # successes: 349 (97.5%)
1806
+
1807
+ Task: pick up the black bowl on the stove and place it on the plate
1808
+ Success: True
1809
+ # episodes completed so far: 359
1810
+ # successes: 350 (97.5%)
1811
+
1812
+ Task: pick up the black bowl on the stove and place it on the plate
1813
+ Success: True
1814
+ # episodes completed so far: 360
1815
+ # successes: 351 (97.5%)
1816
+
1817
+ Task: pick up the black bowl on the stove and place it on the plate
1818
+ Success: True
1819
+ # episodes completed so far: 361
1820
+ # successes: 352 (97.5%)
1821
+
1822
+ Task: pick up the black bowl on the stove and place it on the plate
1823
+ Success: True
1824
+ # episodes completed so far: 362
1825
+ # successes: 353 (97.5%)
1826
+
1827
+ Task: pick up the black bowl on the stove and place it on the plate
1828
+ Success: True
1829
+ # episodes completed so far: 363
1830
+ # successes: 354 (97.5%)
1831
+
1832
+ Task: pick up the black bowl on the stove and place it on the plate
1833
+ Success: True
1834
+ # episodes completed so far: 364
1835
+ # successes: 355 (97.5%)
1836
+
1837
+ Task: pick up the black bowl on the stove and place it on the plate
1838
+ Success: True
1839
+ # episodes completed so far: 365
1840
+ # successes: 356 (97.5%)
1841
+
1842
+ Task: pick up the black bowl on the stove and place it on the plate
1843
+ Success: True
1844
+ # episodes completed so far: 366
1845
+ # successes: 357 (97.5%)
1846
+
1847
+ Task: pick up the black bowl on the stove and place it on the plate
1848
+ Success: True
1849
+ # episodes completed so far: 367
1850
+ # successes: 358 (97.5%)
1851
+
1852
+ Task: pick up the black bowl on the stove and place it on the plate
1853
+ Success: True
1854
+ # episodes completed so far: 368
1855
+ # successes: 359 (97.6%)
1856
+
1857
+ Task: pick up the black bowl on the stove and place it on the plate
1858
+ Success: True
1859
+ # episodes completed so far: 369
1860
+ # successes: 360 (97.6%)
1861
+
1862
+ Task: pick up the black bowl on the stove and place it on the plate
1863
+ Success: True
1864
+ # episodes completed so far: 370
1865
+ # successes: 361 (97.6%)
1866
+
1867
+ Task: pick up the black bowl on the stove and place it on the plate
1868
+ Success: True
1869
+ # episodes completed so far: 371
1870
+ # successes: 362 (97.6%)
1871
+
1872
+ Task: pick up the black bowl on the stove and place it on the plate
1873
+ Success: True
1874
+ # episodes completed so far: 372
1875
+ # successes: 363 (97.6%)
1876
+
1877
+ Task: pick up the black bowl on the stove and place it on the plate
1878
+ Success: True
1879
+ # episodes completed so far: 373
1880
+ # successes: 364 (97.6%)
1881
+
1882
+ Task: pick up the black bowl on the stove and place it on the plate
1883
+ Success: True
1884
+ # episodes completed so far: 374
1885
+ # successes: 365 (97.6%)
1886
+
1887
+ Task: pick up the black bowl on the stove and place it on the plate
1888
+ Success: True
1889
+ # episodes completed so far: 375
1890
+ # successes: 366 (97.6%)
1891
+
1892
+ Task: pick up the black bowl on the stove and place it on the plate
1893
+ Success: True
1894
+ # episodes completed so far: 376
1895
+ # successes: 367 (97.6%)
1896
+
1897
+ Task: pick up the black bowl on the stove and place it on the plate
1898
+ Success: True
1899
+ # episodes completed so far: 377
1900
+ # successes: 368 (97.6%)
1901
+
1902
+ Task: pick up the black bowl on the stove and place it on the plate
1903
+ Success: True
1904
+ # episodes completed so far: 378
1905
+ # successes: 369 (97.6%)
1906
+
1907
+ Task: pick up the black bowl on the stove and place it on the plate
1908
+ Success: True
1909
+ # episodes completed so far: 379
1910
+ # successes: 370 (97.6%)
1911
+
1912
+ Task: pick up the black bowl on the stove and place it on the plate
1913
+ Success: True
1914
+ # episodes completed so far: 380
1915
+ # successes: 371 (97.6%)
1916
+
1917
+ Task: pick up the black bowl on the stove and place it on the plate
1918
+ Success: True
1919
+ # episodes completed so far: 381
1920
+ # successes: 372 (97.6%)
1921
+
1922
+ Task: pick up the black bowl on the stove and place it on the plate
1923
+ Success: True
1924
+ # episodes completed so far: 382
1925
+ # successes: 373 (97.6%)
1926
+
1927
+ Task: pick up the black bowl on the stove and place it on the plate
1928
+ Success: True
1929
+ # episodes completed so far: 383
1930
+ # successes: 374 (97.7%)
1931
+
1932
+ Task: pick up the black bowl on the stove and place it on the plate
1933
+ Success: True
1934
+ # episodes completed so far: 384
1935
+ # successes: 375 (97.7%)
1936
+
1937
+ Task: pick up the black bowl on the stove and place it on the plate
1938
+ Success: True
1939
+ # episodes completed so far: 385
1940
+ # successes: 376 (97.7%)
1941
+
1942
+ Task: pick up the black bowl on the stove and place it on the plate
1943
+ Success: True
1944
+ # episodes completed so far: 386
1945
+ # successes: 377 (97.7%)
1946
+
1947
+ Task: pick up the black bowl on the stove and place it on the plate
1948
+ Success: True
1949
+ # episodes completed so far: 387
1950
+ # successes: 378 (97.7%)
1951
+
1952
+ Task: pick up the black bowl on the stove and place it on the plate
1953
+ Success: True
1954
+ # episodes completed so far: 388
1955
+ # successes: 379 (97.7%)
1956
+
1957
+ Task: pick up the black bowl on the stove and place it on the plate
1958
+ Success: True
1959
+ # episodes completed so far: 389
1960
+ # successes: 380 (97.7%)
1961
+
1962
+ Task: pick up the black bowl on the stove and place it on the plate
1963
+ Success: True
1964
+ # episodes completed so far: 390
1965
+ # successes: 381 (97.7%)
1966
+
1967
+ Task: pick up the black bowl on the stove and place it on the plate
1968
+ Success: True
1969
+ # episodes completed so far: 391
1970
+ # successes: 382 (97.7%)
1971
+
1972
+ Task: pick up the black bowl on the stove and place it on the plate
1973
+ Success: True
1974
+ # episodes completed so far: 392
1975
+ # successes: 383 (97.7%)
1976
+
1977
+ Task: pick up the black bowl on the stove and place it on the plate
1978
+ Success: True
1979
+ # episodes completed so far: 393
1980
+ # successes: 384 (97.7%)
1981
+
1982
+ Task: pick up the black bowl on the stove and place it on the plate
1983
+ Success: True
1984
+ # episodes completed so far: 394
1985
+ # successes: 385 (97.7%)
1986
+
1987
+ Task: pick up the black bowl on the stove and place it on the plate
1988
+ Success: True
1989
+ # episodes completed so far: 395
1990
+ # successes: 386 (97.7%)
1991
+
1992
+ Task: pick up the black bowl on the stove and place it on the plate
1993
+ Success: True
1994
+ # episodes completed so far: 396
1995
+ # successes: 387 (97.7%)
1996
+
1997
+ Task: pick up the black bowl on the stove and place it on the plate
1998
+ Success: True
1999
+ # episodes completed so far: 397
2000
+ # successes: 388 (97.7%)
2001
+
2002
+ Task: pick up the black bowl on the stove and place it on the plate
2003
+ Success: True
2004
+ # episodes completed so far: 398
2005
+ # successes: 389 (97.7%)
2006
+
2007
+ Task: pick up the black bowl on the stove and place it on the plate
2008
+ Success: True
2009
+ # episodes completed so far: 399
2010
+ # successes: 390 (97.7%)
2011
+
2012
+ Task: pick up the black bowl on the stove and place it on the plate
2013
+ Success: True
2014
+ # episodes completed so far: 400
2015
+ # successes: 391 (97.8%)
2016
+ Current task success rate: 1.0
2017
+ Current total success rate: 0.9775
2018
+
2019
+ Task: pick up the black bowl next to the plate and place it on the plate
2020
+ Success: True
2021
+ # episodes completed so far: 401
2022
+ # successes: 392 (97.8%)
2023
+
2024
+ Task: pick up the black bowl next to the plate and place it on the plate
2025
+ Success: True
2026
+ # episodes completed so far: 402
2027
+ # successes: 393 (97.8%)
2028
+
2029
+ Task: pick up the black bowl next to the plate and place it on the plate
2030
+ Success: True
2031
+ # episodes completed so far: 403
2032
+ # successes: 394 (97.8%)
2033
+
2034
+ Task: pick up the black bowl next to the plate and place it on the plate
2035
+ Success: True
2036
+ # episodes completed so far: 404
2037
+ # successes: 395 (97.8%)
2038
+
2039
+ Task: pick up the black bowl next to the plate and place it on the plate
2040
+ Success: True
2041
+ # episodes completed so far: 405
2042
+ # successes: 396 (97.8%)
2043
+
2044
+ Task: pick up the black bowl next to the plate and place it on the plate
2045
+ Success: True
2046
+ # episodes completed so far: 406
2047
+ # successes: 397 (97.8%)
2048
+
2049
+ Task: pick up the black bowl next to the plate and place it on the plate
2050
+ Success: True
2051
+ # episodes completed so far: 407
2052
+ # successes: 398 (97.8%)
2053
+
2054
+ Task: pick up the black bowl next to the plate and place it on the plate
2055
+ Success: True
2056
+ # episodes completed so far: 408
2057
+ # successes: 399 (97.8%)
2058
+
2059
+ Task: pick up the black bowl next to the plate and place it on the plate
2060
+ Success: True
2061
+ # episodes completed so far: 409
2062
+ # successes: 400 (97.8%)
2063
+
2064
+ Task: pick up the black bowl next to the plate and place it on the plate
2065
+ Success: True
2066
+ # episodes completed so far: 410
2067
+ # successes: 401 (97.8%)
2068
+
2069
+ Task: pick up the black bowl next to the plate and place it on the plate
2070
+ Success: True
2071
+ # episodes completed so far: 411
2072
+ # successes: 402 (97.8%)
2073
+
2074
+ Task: pick up the black bowl next to the plate and place it on the plate
2075
+ Success: True
2076
+ # episodes completed so far: 412
2077
+ # successes: 403 (97.8%)
2078
+
2079
+ Task: pick up the black bowl next to the plate and place it on the plate
2080
+ Success: True
2081
+ # episodes completed so far: 413
2082
+ # successes: 404 (97.8%)
2083
+
2084
+ Task: pick up the black bowl next to the plate and place it on the plate
2085
+ Success: True
2086
+ # episodes completed so far: 414
2087
+ # successes: 405 (97.8%)
2088
+
2089
+ Task: pick up the black bowl next to the plate and place it on the plate
2090
+ Success: True
2091
+ # episodes completed so far: 415
2092
+ # successes: 406 (97.8%)
2093
+
2094
+ Task: pick up the black bowl next to the plate and place it on the plate
2095
+ Success: True
2096
+ # episodes completed so far: 416
2097
+ # successes: 407 (97.8%)
2098
+
2099
+ Task: pick up the black bowl next to the plate and place it on the plate
2100
+ Success: True
2101
+ # episodes completed so far: 417
2102
+ # successes: 408 (97.8%)
2103
+
2104
+ Task: pick up the black bowl next to the plate and place it on the plate
2105
+ Success: True
2106
+ # episodes completed so far: 418
2107
+ # successes: 409 (97.8%)
2108
+
2109
+ Task: pick up the black bowl next to the plate and place it on the plate
2110
+ Success: True
2111
+ # episodes completed so far: 419
2112
+ # successes: 410 (97.9%)
2113
+
2114
+ Task: pick up the black bowl next to the plate and place it on the plate
2115
+ Success: True
2116
+ # episodes completed so far: 420
2117
+ # successes: 411 (97.9%)
2118
+
2119
+ Task: pick up the black bowl next to the plate and place it on the plate
2120
+ Success: True
2121
+ # episodes completed so far: 421
2122
+ # successes: 412 (97.9%)
2123
+
2124
+ Task: pick up the black bowl next to the plate and place it on the plate
2125
+ Success: True
2126
+ # episodes completed so far: 422
2127
+ # successes: 413 (97.9%)
2128
+
2129
+ Task: pick up the black bowl next to the plate and place it on the plate
2130
+ Success: True
2131
+ # episodes completed so far: 423
2132
+ # successes: 414 (97.9%)
2133
+
2134
+ Task: pick up the black bowl next to the plate and place it on the plate
2135
+ Success: True
2136
+ # episodes completed so far: 424
2137
+ # successes: 415 (97.9%)
2138
+
2139
+ Task: pick up the black bowl next to the plate and place it on the plate
2140
+ Success: True
2141
+ # episodes completed so far: 425
2142
+ # successes: 416 (97.9%)
2143
+
2144
+ Task: pick up the black bowl next to the plate and place it on the plate
2145
+ Success: True
2146
+ # episodes completed so far: 426
2147
+ # successes: 417 (97.9%)
2148
+
2149
+ Task: pick up the black bowl next to the plate and place it on the plate
2150
+ Success: True
2151
+ # episodes completed so far: 427
2152
+ # successes: 418 (97.9%)
2153
+
2154
+ Task: pick up the black bowl next to the plate and place it on the plate
2155
+ Success: True
2156
+ # episodes completed so far: 428
2157
+ # successes: 419 (97.9%)
2158
+
2159
+ Task: pick up the black bowl next to the plate and place it on the plate
2160
+ Success: True
2161
+ # episodes completed so far: 429
2162
+ # successes: 420 (97.9%)
2163
+
2164
+ Task: pick up the black bowl next to the plate and place it on the plate
2165
+ Success: True
2166
+ # episodes completed so far: 430
2167
+ # successes: 421 (97.9%)
2168
+
2169
+ Task: pick up the black bowl next to the plate and place it on the plate
2170
+ Success: True
2171
+ # episodes completed so far: 431
2172
+ # successes: 422 (97.9%)
2173
+
2174
+ Task: pick up the black bowl next to the plate and place it on the plate
2175
+ Success: True
2176
+ # episodes completed so far: 432
2177
+ # successes: 423 (97.9%)
2178
+
2179
+ Task: pick up the black bowl next to the plate and place it on the plate
2180
+ Success: True
2181
+ # episodes completed so far: 433
2182
+ # successes: 424 (97.9%)
2183
+
2184
+ Task: pick up the black bowl next to the plate and place it on the plate
2185
+ Success: True
2186
+ # episodes completed so far: 434
2187
+ # successes: 425 (97.9%)
2188
+
2189
+ Task: pick up the black bowl next to the plate and place it on the plate
2190
+ Success: True
2191
+ # episodes completed so far: 435
2192
+ # successes: 426 (97.9%)
2193
+
2194
+ Task: pick up the black bowl next to the plate and place it on the plate
2195
+ Success: True
2196
+ # episodes completed so far: 436
2197
+ # successes: 427 (97.9%)
2198
+
2199
+ Task: pick up the black bowl next to the plate and place it on the plate
2200
+ Success: True
2201
+ # episodes completed so far: 437
2202
+ # successes: 428 (97.9%)
2203
+
2204
+ Task: pick up the black bowl next to the plate and place it on the plate
2205
+ Success: True
2206
+ # episodes completed so far: 438
2207
+ # successes: 429 (97.9%)
2208
+
2209
+ Task: pick up the black bowl next to the plate and place it on the plate
2210
+ Success: True
2211
+ # episodes completed so far: 439
2212
+ # successes: 430 (97.9%)
2213
+
2214
+ Task: pick up the black bowl next to the plate and place it on the plate
2215
+ Success: True
2216
+ # episodes completed so far: 440
2217
+ # successes: 431 (98.0%)
2218
+
2219
+ Task: pick up the black bowl next to the plate and place it on the plate
2220
+ Success: True
2221
+ # episodes completed so far: 441
2222
+ # successes: 432 (98.0%)
2223
+
2224
+ Task: pick up the black bowl next to the plate and place it on the plate
2225
+ Success: True
2226
+ # episodes completed so far: 442
2227
+ # successes: 433 (98.0%)
2228
+
2229
+ Task: pick up the black bowl next to the plate and place it on the plate
2230
+ Success: True
2231
+ # episodes completed so far: 443
2232
+ # successes: 434 (98.0%)
2233
+
2234
+ Task: pick up the black bowl next to the plate and place it on the plate
2235
+ Success: True
2236
+ # episodes completed so far: 444
2237
+ # successes: 435 (98.0%)
2238
+
2239
+ Task: pick up the black bowl next to the plate and place it on the plate
2240
+ Success: True
2241
+ # episodes completed so far: 445
2242
+ # successes: 436 (98.0%)
2243
+
2244
+ Task: pick up the black bowl next to the plate and place it on the plate
2245
+ Success: True
2246
+ # episodes completed so far: 446
2247
+ # successes: 437 (98.0%)
2248
+
2249
+ Task: pick up the black bowl next to the plate and place it on the plate
2250
+ Success: True
2251
+ # episodes completed so far: 447
2252
+ # successes: 438 (98.0%)
2253
+
2254
+ Task: pick up the black bowl next to the plate and place it on the plate
2255
+ Success: True
2256
+ # episodes completed so far: 448
2257
+ # successes: 439 (98.0%)
2258
+
2259
+ Task: pick up the black bowl next to the plate and place it on the plate
2260
+ Success: True
2261
+ # episodes completed so far: 449
2262
+ # successes: 440 (98.0%)
2263
+
2264
+ Task: pick up the black bowl next to the plate and place it on the plate
2265
+ Success: True
2266
+ # episodes completed so far: 450
2267
+ # successes: 441 (98.0%)
2268
+ Current task success rate: 1.0
2269
+ Current total success rate: 0.98
2270
+
2271
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2272
+ Success: True
2273
+ # episodes completed so far: 451
2274
+ # successes: 442 (98.0%)
2275
+
2276
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2277
+ Success: True
2278
+ # episodes completed so far: 452
2279
+ # successes: 443 (98.0%)
2280
+
2281
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2282
+ Success: True
2283
+ # episodes completed so far: 453
2284
+ # successes: 444 (98.0%)
2285
+
2286
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2287
+ Success: True
2288
+ # episodes completed so far: 454
2289
+ # successes: 445 (98.0%)
2290
+
2291
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2292
+ Success: True
2293
+ # episodes completed so far: 455
2294
+ # successes: 446 (98.0%)
2295
+
2296
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2297
+ Success: True
2298
+ # episodes completed so far: 456
2299
+ # successes: 447 (98.0%)
2300
+
2301
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2302
+ Success: True
2303
+ # episodes completed so far: 457
2304
+ # successes: 448 (98.0%)
2305
+
2306
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2307
+ Success: True
2308
+ # episodes completed so far: 458
2309
+ # successes: 449 (98.0%)
2310
+
2311
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2312
+ Success: True
2313
+ # episodes completed so far: 459
2314
+ # successes: 450 (98.0%)
2315
+
2316
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2317
+ Success: True
2318
+ # episodes completed so far: 460
2319
+ # successes: 451 (98.0%)
2320
+
2321
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2322
+ Success: True
2323
+ # episodes completed so far: 461
2324
+ # successes: 452 (98.0%)
2325
+
2326
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2327
+ Success: True
2328
+ # episodes completed so far: 462
2329
+ # successes: 453 (98.1%)
2330
+
2331
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2332
+ Success: True
2333
+ # episodes completed so far: 463
2334
+ # successes: 454 (98.1%)
2335
+
2336
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2337
+ Success: True
2338
+ # episodes completed so far: 464
2339
+ # successes: 455 (98.1%)
2340
+
2341
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2342
+ Success: True
2343
+ # episodes completed so far: 465
2344
+ # successes: 456 (98.1%)
2345
+
2346
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2347
+ Success: True
2348
+ # episodes completed so far: 466
2349
+ # successes: 457 (98.1%)
2350
+
2351
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2352
+ Success: True
2353
+ # episodes completed so far: 467
2354
+ # successes: 458 (98.1%)
2355
+
2356
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2357
+ Success: True
2358
+ # episodes completed so far: 468
2359
+ # successes: 459 (98.1%)
2360
+
2361
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2362
+ Success: True
2363
+ # episodes completed so far: 469
2364
+ # successes: 460 (98.1%)
2365
+
2366
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2367
+ Success: True
2368
+ # episodes completed so far: 470
2369
+ # successes: 461 (98.1%)
2370
+
2371
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2372
+ Success: True
2373
+ # episodes completed so far: 471
2374
+ # successes: 462 (98.1%)
2375
+
2376
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2377
+ Success: True
2378
+ # episodes completed so far: 472
2379
+ # successes: 463 (98.1%)
2380
+
2381
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2382
+ Success: True
2383
+ # episodes completed so far: 473
2384
+ # successes: 464 (98.1%)
2385
+
2386
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2387
+ Success: True
2388
+ # episodes completed so far: 474
2389
+ # successes: 465 (98.1%)
2390
+
2391
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2392
+ Success: True
2393
+ # episodes completed so far: 475
2394
+ # successes: 466 (98.1%)
2395
+
2396
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2397
+ Success: True
2398
+ # episodes completed so far: 476
2399
+ # successes: 467 (98.1%)
2400
+
2401
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2402
+ Success: True
2403
+ # episodes completed so far: 477
2404
+ # successes: 468 (98.1%)
2405
+
2406
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2407
+ Success: True
2408
+ # episodes completed so far: 478
2409
+ # successes: 469 (98.1%)
2410
+
2411
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2412
+ Success: True
2413
+ # episodes completed so far: 479
2414
+ # successes: 470 (98.1%)
2415
+
2416
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2417
+ Success: True
2418
+ # episodes completed so far: 480
2419
+ # successes: 471 (98.1%)
2420
+
2421
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2422
+ Success: True
2423
+ # episodes completed so far: 481
2424
+ # successes: 472 (98.1%)
2425
+
2426
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2427
+ Success: True
2428
+ # episodes completed so far: 482
2429
+ # successes: 473 (98.1%)
2430
+
2431
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2432
+ Success: True
2433
+ # episodes completed so far: 483
2434
+ # successes: 474 (98.1%)
2435
+
2436
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2437
+ Success: True
2438
+ # episodes completed so far: 484
2439
+ # successes: 475 (98.1%)
2440
+
2441
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2442
+ Success: True
2443
+ # episodes completed so far: 485
2444
+ # successes: 476 (98.1%)
2445
+
2446
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2447
+ Success: True
2448
+ # episodes completed so far: 486
2449
+ # successes: 477 (98.1%)
2450
+
2451
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2452
+ Success: True
2453
+ # episodes completed so far: 487
2454
+ # successes: 478 (98.2%)
2455
+
2456
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2457
+ Success: True
2458
+ # episodes completed so far: 488
2459
+ # successes: 479 (98.2%)
2460
+
2461
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2462
+ Success: True
2463
+ # episodes completed so far: 489
2464
+ # successes: 480 (98.2%)
2465
+
2466
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2467
+ Success: True
2468
+ # episodes completed so far: 490
2469
+ # successes: 481 (98.2%)
2470
+
2471
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2472
+ Success: True
2473
+ # episodes completed so far: 491
2474
+ # successes: 482 (98.2%)
2475
+
2476
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2477
+ Success: True
2478
+ # episodes completed so far: 492
2479
+ # successes: 483 (98.2%)
2480
+
2481
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2482
+ Success: True
2483
+ # episodes completed so far: 493
2484
+ # successes: 484 (98.2%)
2485
+
2486
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2487
+ Success: True
2488
+ # episodes completed so far: 494
2489
+ # successes: 485 (98.2%)
2490
+
2491
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2492
+ Success: True
2493
+ # episodes completed so far: 495
2494
+ # successes: 486 (98.2%)
2495
+
2496
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2497
+ Success: True
2498
+ # episodes completed so far: 496
2499
+ # successes: 487 (98.2%)
2500
+
2501
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2502
+ Success: True
2503
+ # episodes completed so far: 497
2504
+ # successes: 488 (98.2%)
2505
+
2506
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2507
+ Success: True
2508
+ # episodes completed so far: 498
2509
+ # successes: 489 (98.2%)
2510
+
2511
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2512
+ Success: True
2513
+ # episodes completed so far: 499
2514
+ # successes: 490 (98.2%)
2515
+
2516
+ Task: pick up the black bowl on the wooden cabinet and place it on the plate
2517
+ Success: True
2518
+ # episodes completed so far: 500
2519
+ # successes: 491 (98.2%)
2520
+ Current task success rate: 1.0
2521
+ Current total success rate: 0.982
libero_spatial_2B/starvla_qwen_dual/libero_spatial.log ADDED
@@ -0,0 +1,300 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Step 100, Loss: {'mse_loss': 1.0798825025558472, 'totoal_loss': 1.0798825025558472, 'data_time': 0.024950260063633323, 'model_time': 0.7858787318691611, 'learning_rate': 2.0000000000000002e-07, 'epoch': 0.24})
2
+ Step 200, Loss: {'mse_loss': 0.9952569007873535, 'totoal_loss': 0.9952569007873535, 'data_time': 0.0278849839232862, 'model_time': 0.7105871620588005, 'learning_rate': 4.0000000000000003e-07, 'epoch': 0.48})
3
+ Step 300, Loss: {'mse_loss': 0.813531219959259, 'totoal_loss': 0.813531219959259, 'data_time': 0.022147722076624632, 'model_time': 0.7346426050644368, 'learning_rate': 6.000000000000001e-07, 'epoch': 0.73})
4
+ Step 400, Loss: {'mse_loss': 0.6137050986289978, 'totoal_loss': 0.6137050986289978, 'data_time': 0.0272909770719707, 'model_time': 0.7890619388781488, 'learning_rate': 8.000000000000001e-07, 'epoch': 0.97})
5
+ Step 500, Loss: {'mse_loss': 0.5011520385742188, 'totoal_loss': 0.5011520385742188, 'data_time': 0.008842090144753456, 'model_time': 0.737831698032096, 'learning_rate': 1.0000000000000002e-06, 'epoch': 1.21})
6
+ Step 600, Loss: {'mse_loss': 0.37622368335723877, 'totoal_loss': 0.37622368335723877, 'data_time': 0.007664639037102461, 'model_time': 0.790328960865736, 'learning_rate': 1.2000000000000002e-06, 'epoch': 1.45})
7
+ Step 700, Loss: {'mse_loss': 0.3033945560455322, 'totoal_loss': 0.3033945560455322, 'data_time': 0.009606814943253994, 'model_time': 0.7083140499889851, 'learning_rate': 1.4000000000000001e-06, 'epoch': 1.69})
8
+ Step 800, Loss: {'mse_loss': 0.2520238161087036, 'totoal_loss': 0.2520238161087036, 'data_time': 0.007373919012024999, 'model_time': 0.7468060138635337, 'learning_rate': 1.6000000000000001e-06, 'epoch': 1.94})
9
+ Step 900, Loss: {'mse_loss': 0.15178897976875305, 'totoal_loss': 0.15178897976875305, 'data_time': 0.00037270295433700085, 'model_time': 0.7876855861395597, 'learning_rate': 1.8000000000000001e-06, 'epoch': 2.18})
10
+ Step 1000, Loss: {'mse_loss': 0.16507473587989807, 'totoal_loss': 0.16507473587989807, 'data_time': 0.0004915890749543905, 'model_time': 0.7286838341969997, 'learning_rate': 2.0000000000000003e-06, 'epoch': 2.42})
11
+ Step 1100, Loss: {'mse_loss': 0.14858883619308472, 'totoal_loss': 0.14858883619308472, 'data_time': 0.00045395991764962673, 'model_time': 0.7263866891153157, 'learning_rate': 2.2e-06, 'epoch': 2.66})
12
+ Step 1200, Loss: {'mse_loss': 0.11849243938922882, 'totoal_loss': 0.11849243938922882, 'data_time': 0.00040246383287012577, 'model_time': 0.7222592320758849, 'learning_rate': 2.4000000000000003e-06, 'epoch': 2.91})
13
+ Step 1300, Loss: {'mse_loss': 0.18201866745948792, 'totoal_loss': 0.18201866745948792, 'data_time': 0.008846318814903498, 'model_time': 0.7667986478190869, 'learning_rate': 2.6e-06, 'epoch': 3.15})
14
+ Step 1400, Loss: {'mse_loss': 0.16055703163146973, 'totoal_loss': 0.16055703163146973, 'data_time': 0.010337379993870854, 'model_time': 0.7401256039738655, 'learning_rate': 2.8000000000000003e-06, 'epoch': 3.39})
15
+ Step 1500, Loss: {'mse_loss': 0.14566564559936523, 'totoal_loss': 0.14566564559936523, 'data_time': 0.009132892126217484, 'model_time': 0.746915991185233, 'learning_rate': 3e-06, 'epoch': 3.63})
16
+ Step 1600, Loss: {'mse_loss': 0.1402033567428589, 'totoal_loss': 0.1402033567428589, 'data_time': 0.00985990115441382, 'model_time': 0.7631145920604467, 'learning_rate': 3.2000000000000003e-06, 'epoch': 3.87})
17
+ Step 1700, Loss: {'mse_loss': 0.1575743854045868, 'totoal_loss': 0.1575743854045868, 'data_time': 0.00860020611435175, 'model_time': 0.7512360899709165, 'learning_rate': 3.4000000000000005e-06, 'epoch': 4.12})
18
+ Step 1800, Loss: {'mse_loss': 0.13803653419017792, 'totoal_loss': 0.13803653419017792, 'data_time': 0.008127095876261592, 'model_time': 0.7170862900093198, 'learning_rate': 3.6000000000000003e-06, 'epoch': 4.36})
19
+ Step 1900, Loss: {'mse_loss': 0.14110597968101501, 'totoal_loss': 0.14110597968101501, 'data_time': 0.007995394989848137, 'model_time': 0.8350306670181453, 'learning_rate': 3.8000000000000005e-06, 'epoch': 4.6})
20
+ Step 2000, Loss: {'mse_loss': 0.135024294257164, 'totoal_loss': 0.135024294257164, 'data_time': 0.00783283612690866, 'model_time': 0.7405869520734996, 'learning_rate': 4.000000000000001e-06, 'epoch': 4.84})
21
+ Step 2100, Loss: {'mse_loss': 0.12349332869052887, 'totoal_loss': 0.12349332869052887, 'data_time': 0.013445165939629078, 'model_time': 0.8304831509012729, 'learning_rate': 4.2000000000000004e-06, 'epoch': 5.08})
22
+ Step 2200, Loss: {'mse_loss': 0.16757307946681976, 'totoal_loss': 0.16757307946681976, 'data_time': 0.009225354064255953, 'model_time': 0.7048848089762032, 'learning_rate': 4.4e-06, 'epoch': 5.33})
23
+ Step 2300, Loss: {'mse_loss': 0.11576617509126663, 'totoal_loss': 0.11576617509126663, 'data_time': 0.009452808881178498, 'model_time': 0.7157463950570673, 'learning_rate': 4.600000000000001e-06, 'epoch': 5.57})
24
+ Step 2400, Loss: {'mse_loss': 0.08393817394971848, 'totoal_loss': 0.08393817394971848, 'data_time': 0.007252431008964777, 'model_time': 0.7007810440845788, 'learning_rate': 4.800000000000001e-06, 'epoch': 5.81})
25
+ Step 2500, Loss: {'mse_loss': 0.09713419526815414, 'totoal_loss': 0.09713419526815414, 'data_time': 0.010047242045402527, 'model_time': 0.7191065710503608, 'learning_rate': 5e-06, 'epoch': 6.05})
26
+ Step 2600, Loss: {'mse_loss': 0.07600060105323792, 'totoal_loss': 0.07600060105323792, 'data_time': 0.008299319073557854, 'model_time': 0.6894519040361047, 'learning_rate': 5.2e-06, 'epoch': 6.3})
27
+ Step 2700, Loss: {'mse_loss': 0.0853329747915268, 'totoal_loss': 0.0853329747915268, 'data_time': 0.008184158010408282, 'model_time': 0.7208350079599768, 'learning_rate': 5.400000000000001e-06, 'epoch': 6.54})
28
+ Step 2800, Loss: {'mse_loss': 0.10459426790475845, 'totoal_loss': 0.10459426790475845, 'data_time': 0.015423225006088614, 'model_time': 0.7409626669250429, 'learning_rate': 5.600000000000001e-06, 'epoch': 6.78})
29
+ Step 2900, Loss: {'mse_loss': 0.07514560222625732, 'totoal_loss': 0.07514560222625732, 'data_time': 0.0005099561531096697, 'model_time': 0.8020900820847601, 'learning_rate': 5.8e-06, 'epoch': 7.02})
30
+ Step 3000, Loss: {'mse_loss': 0.06638308614492416, 'totoal_loss': 0.06638308614492416, 'data_time': 0.00039183185435831547, 'model_time': 0.8076522320043296, 'learning_rate': 6e-06, 'epoch': 7.26})
31
+ Step 3100, Loss: {'mse_loss': 0.06289465725421906, 'totoal_loss': 0.06289465725421906, 'data_time': 0.001163457054644823, 'model_time': 0.7568703119177371, 'learning_rate': 6.200000000000001e-06, 'epoch': 7.51})
32
+ Step 3200, Loss: {'mse_loss': 0.06487814337015152, 'totoal_loss': 0.06487814337015152, 'data_time': 0.0004044370725750923, 'model_time': 0.9965357701294124, 'learning_rate': 6.4000000000000006e-06, 'epoch': 7.75})
33
+ Step 3300, Loss: {'mse_loss': 0.09132813662290573, 'totoal_loss': 0.09132813662290573, 'data_time': 0.0002989519853144884, 'model_time': 0.6987143219448626, 'learning_rate': 6.600000000000001e-06, 'epoch': 7.99})
34
+ Step 3400, Loss: {'mse_loss': 0.09187932312488556, 'totoal_loss': 0.09187932312488556, 'data_time': 0.021316278027370572, 'model_time': 0.7369698181282729, 'learning_rate': 6.800000000000001e-06, 'epoch': 8.23})
35
+ Step 3500, Loss: {'mse_loss': 0.0898408591747284, 'totoal_loss': 0.0898408591747284, 'data_time': 0.023804895114153624, 'model_time': 0.7107553558889776, 'learning_rate': 7e-06, 'epoch': 8.47})
36
+ Step 3600, Loss: {'mse_loss': 0.05564205348491669, 'totoal_loss': 0.05564205348491669, 'data_time': 0.023607997922226787, 'model_time': 0.764825785998255, 'learning_rate': 7.2000000000000005e-06, 'epoch': 8.72})
37
+ Step 3700, Loss: {'mse_loss': 0.07092700898647308, 'totoal_loss': 0.07092700898647308, 'data_time': 0.022151539102196693, 'model_time': 0.7161662650760263, 'learning_rate': 7.4e-06, 'epoch': 8.96})
38
+ Step 3800, Loss: {'mse_loss': 0.08641617000102997, 'totoal_loss': 0.08641617000102997, 'data_time': 0.008374919882044196, 'model_time': 0.7109971870668232, 'learning_rate': 7.600000000000001e-06, 'epoch': 9.2})
39
+ Step 3900, Loss: {'mse_loss': 0.05279911309480667, 'totoal_loss': 0.05279911309480667, 'data_time': 0.008399971993640065, 'model_time': 0.7016008088830858, 'learning_rate': 7.800000000000002e-06, 'epoch': 9.44})
40
+ Step 4000, Loss: {'mse_loss': 0.07412062585353851, 'totoal_loss': 0.07412062585353851, 'data_time': 0.010497495997697115, 'model_time': 0.7096855940762907, 'learning_rate': 8.000000000000001e-06, 'epoch': 9.69})
41
+ Step 4100, Loss: {'mse_loss': 0.06520124524831772, 'totoal_loss': 0.06520124524831772, 'data_time': 0.008470556000247598, 'model_time': 0.7569621070288122, 'learning_rate': 8.2e-06, 'epoch': 9.93})
42
+ Step 4200, Loss: {'mse_loss': 0.06812280416488647, 'totoal_loss': 0.06812280416488647, 'data_time': 0.00037350086495280266, 'model_time': 0.7367294020950794, 'learning_rate': 8.400000000000001e-06, 'epoch': 10.17})
43
+ Step 4300, Loss: {'mse_loss': 0.06618045270442963, 'totoal_loss': 0.06618045270442963, 'data_time': 0.0003826781176030636, 'model_time': 0.7536406740546227, 'learning_rate': 8.6e-06, 'epoch': 10.41})
44
+ Step 4400, Loss: {'mse_loss': 0.057146552950143814, 'totoal_loss': 0.057146552950143814, 'data_time': 0.00047879014164209366, 'model_time': 0.7695195050910115, 'learning_rate': 8.8e-06, 'epoch': 10.65})
45
+ Step 4500, Loss: {'mse_loss': 0.07871178537607193, 'totoal_loss': 0.07871178537607193, 'data_time': 0.00038766302168369293, 'model_time': 0.7787319838535041, 'learning_rate': 9e-06, 'epoch': 10.9})
46
+ Step 4600, Loss: {'mse_loss': 0.06388185918331146, 'totoal_loss': 0.06388185918331146, 'data_time': 0.0003463758621364832, 'model_time': 0.72077557281591, 'learning_rate': 9.200000000000002e-06, 'epoch': 11.14})
47
+ Step 4700, Loss: {'mse_loss': 0.060528464615345, 'totoal_loss': 0.060528464615345, 'data_time': 0.0004233359359204769, 'model_time': 0.7753634329419583, 'learning_rate': 9.4e-06, 'epoch': 11.38})
48
+ Step 4800, Loss: {'mse_loss': 0.07134514302015305, 'totoal_loss': 0.07134514302015305, 'data_time': 0.0004264828749001026, 'model_time': 0.7268040520139039, 'learning_rate': 9.600000000000001e-06, 'epoch': 11.62})
49
+ Step 4900, Loss: {'mse_loss': 0.06158708781003952, 'totoal_loss': 0.06158708781003952, 'data_time': 0.0004219380207359791, 'model_time': 0.7092399201355875, 'learning_rate': 9.800000000000001e-06, 'epoch': 11.86})
50
+ Step 5000, Loss: {'mse_loss': 0.06841382384300232, 'totoal_loss': 0.06841382384300232, 'data_time': 0.016853154869750142, 'model_time': 0.7065724488347769, 'learning_rate': 1e-05, 'epoch': 12.11})
51
+ Step 5100, Loss: {'mse_loss': 0.0494941845536232, 'totoal_loss': 0.0494941845536232, 'data_time': 0.015401007141917944, 'model_time': 0.7799470948521048, 'learning_rate': 9.999615090493604e-06, 'epoch': 12.35})
52
+ Step 5200, Loss: {'mse_loss': 0.05703302472829819, 'totoal_loss': 0.05703302472829819, 'data_time': 0.016987486043944955, 'model_time': 0.7186973157804459, 'learning_rate': 9.998460422756089e-06, 'epoch': 12.59})
53
+ Step 5300, Loss: {'mse_loss': 0.06704345345497131, 'totoal_loss': 0.06704345345497131, 'data_time': 0.013890436151996255, 'model_time': 0.7205514831002802, 'learning_rate': 9.996536179122874e-06, 'epoch': 12.83})
54
+ Step 5400, Loss: {'mse_loss': 0.06412690132856369, 'totoal_loss': 0.06412690132856369, 'data_time': 0.010788741055876017, 'model_time': 0.9754756649490446, 'learning_rate': 9.993842663454337e-06, 'epoch': 13.08})
55
+ Step 5500, Loss: {'mse_loss': 0.0822015032172203, 'totoal_loss': 0.0822015032172203, 'data_time': 0.00962144904769957, 'model_time': 0.80797030008398, 'learning_rate': 9.990380301087824e-06, 'epoch': 13.32})
56
+ Step 5600, Loss: {'mse_loss': 0.04532000795006752, 'totoal_loss': 0.04532000795006752, 'data_time': 0.007896394934505224, 'model_time': 0.7870147610083222, 'learning_rate': 9.986149638770493e-06, 'epoch': 13.56})
57
+ Step 5700, Loss: {'mse_loss': 0.039735160768032074, 'totoal_loss': 0.039735160768032074, 'data_time': 0.012937857070937753, 'model_time': 0.707539662020281, 'learning_rate': 9.981151344572967e-06, 'epoch': 13.8})
58
+ Step 5800, Loss: {'mse_loss': 0.0704265832901001, 'totoal_loss': 0.0704265832901001, 'data_time': 0.00037526991218328476, 'model_time': 0.75979013601318, 'learning_rate': 9.975386207783839e-06, 'epoch': 14.04})
59
+ Step 5900, Loss: {'mse_loss': 0.04709387570619583, 'totoal_loss': 0.04709387570619583, 'data_time': 0.0003710309974849224, 'model_time': 0.7486782160121948, 'learning_rate': 9.968855138785041e-06, 'epoch': 14.29})
60
+ Step 6000, Loss: {'mse_loss': 0.05486233904957771, 'totoal_loss': 0.05486233904957771, 'data_time': 0.0003725169226527214, 'model_time': 0.7138572949916124, 'learning_rate': 9.961559168908081e-06, 'epoch': 14.53})
61
+ Step 6100, Loss: {'mse_loss': 0.0442173033952713, 'totoal_loss': 0.0442173033952713, 'data_time': 0.0004802809562534094, 'model_time': 0.7235884568654001, 'learning_rate': 9.953499450271174e-06, 'epoch': 14.77})
62
+ Step 6200, Loss: {'mse_loss': 0.05561693012714386, 'totoal_loss': 0.05561693012714386, 'data_time': 0.00040855095721781254, 'model_time': 0.7260891210753471, 'learning_rate': 9.944677255597332e-06, 'epoch': 15.01})
63
+ Step 6300, Loss: {'mse_loss': 0.06516332924365997, 'totoal_loss': 0.06516332924365997, 'data_time': 0.00037321983836591244, 'model_time': 0.7633595189545304, 'learning_rate': 9.935093978013357e-06, 'epoch': 15.25})
64
+ Step 6400, Loss: {'mse_loss': 0.0453089140355587, 'totoal_loss': 0.0453089140355587, 'data_time': 0.000528691103681922, 'model_time': 0.7574972661677748, 'learning_rate': 9.924751130829878e-06, 'epoch': 15.5})
65
+ Step 6500, Loss: {'mse_loss': 0.050693441182374954, 'totoal_loss': 0.050693441182374954, 'data_time': 0.0004293250385671854, 'model_time': 0.7355303629301488, 'learning_rate': 9.91365034730236e-06, 'epoch': 15.74})
66
+ Step 6600, Loss: {'mse_loss': 0.05954188480973244, 'totoal_loss': 0.05954188480973244, 'data_time': 0.0004303769674152136, 'model_time': 0.7122858921065927, 'learning_rate': 9.901793380373204e-06, 'epoch': 15.98})
67
+ Step 6700, Loss: {'mse_loss': 0.04010772705078125, 'totoal_loss': 0.04010772705078125, 'data_time': 0.014304239070042968, 'model_time': 0.7003476079553366, 'learning_rate': 9.889182102394944e-06, 'epoch': 16.22})
68
+ Step 6800, Loss: {'mse_loss': 0.06270197778940201, 'totoal_loss': 0.06270197778940201, 'data_time': 0.01712557696737349, 'model_time': 0.7231592969037592, 'learning_rate': 9.875818504834564e-06, 'epoch': 16.46})
69
+ Step 6900, Loss: {'mse_loss': 0.033578503876924515, 'totoal_loss': 0.033578503876924515, 'data_time': 0.015887361951172352, 'model_time': 0.7433024798519909, 'learning_rate': 9.861704697959036e-06, 'epoch': 16.71})
70
+ Step 7000, Loss: {'mse_loss': 0.03205043077468872, 'totoal_loss': 0.03205043077468872, 'data_time': 0.017139818985015154, 'model_time': 0.7292440920136869, 'learning_rate': 9.846842910502077e-06, 'epoch': 16.95})
71
+ Step 7100, Loss: {'mse_loss': 0.028974851593375206, 'totoal_loss': 0.028974851593375206, 'data_time': 0.012608950957655907, 'model_time': 0.7100577470846474, 'learning_rate': 9.831235489312212e-06, 'epoch': 17.19})
72
+ Step 7200, Loss: {'mse_loss': 0.057193852961063385, 'totoal_loss': 0.057193852961063385, 'data_time': 0.01166491606272757, 'model_time': 0.7048951939214021, 'learning_rate': 9.814884898982168e-06, 'epoch': 17.43})
73
+ Step 7300, Loss: {'mse_loss': 0.03006977029144764, 'totoal_loss': 0.03006977029144764, 'data_time': 0.01074268203228712, 'model_time': 0.7028855080716312, 'learning_rate': 9.797793721459709e-06, 'epoch': 17.68})
74
+ Step 7400, Loss: {'mse_loss': 0.03762822598218918, 'totoal_loss': 0.03762822598218918, 'data_time': 0.010771763045340776, 'model_time': 0.7048904460389167, 'learning_rate': 9.779964655639886e-06, 'epoch': 17.92})
75
+ Step 7500, Loss: {'mse_loss': 0.04252038151025772, 'totoal_loss': 0.04252038151025772, 'data_time': 0.0004168921150267124, 'model_time': 0.8216188901569694, 'learning_rate': 9.761400516938874e-06, 'epoch': 18.16})
76
+ Step 7600, Loss: {'mse_loss': 0.057201046496629715, 'totoal_loss': 0.057201046496629715, 'data_time': 0.0004046349786221981, 'model_time': 0.7388688619248569, 'learning_rate': 9.74210423684938e-06, 'epoch': 18.4})
77
+ Step 7700, Loss: {'mse_loss': 0.05061523616313934, 'totoal_loss': 0.05061523616313934, 'data_time': 0.0003967329394072294, 'model_time': 0.7357060459908098, 'learning_rate': 9.722078862477715e-06, 'epoch': 18.64})
78
+ Step 7800, Loss: {'mse_loss': 0.039048176258802414, 'totoal_loss': 0.039048176258802414, 'data_time': 0.00039916601963341236, 'model_time': 0.7798178209923208, 'learning_rate': 9.701327556062637e-06, 'epoch': 18.89})
79
+ Step 7900, Loss: {'mse_loss': 0.05656513571739197, 'totoal_loss': 0.05656513571739197, 'data_time': 0.01091827591881156, 'model_time': 0.7303526648320258, 'learning_rate': 9.679853594475985e-06, 'epoch': 19.13})
80
+ Step 8000, Loss: {'mse_loss': 0.04333614557981491, 'totoal_loss': 0.04333614557981491, 'data_time': 0.008729698834940791, 'model_time': 0.7150611558463424, 'learning_rate': 9.657660368705225e-06, 'epoch': 19.37})
81
+ Step 8100, Loss: {'mse_loss': 0.03962205350399017, 'totoal_loss': 0.03962205350399017, 'data_time': 0.009074426954612136, 'model_time': 0.7317194691859186, 'learning_rate': 9.634751383317983e-06, 'epoch': 19.61})
82
+ Step 8200, Loss: {'mse_loss': 0.0368780680000782, 'totoal_loss': 0.0368780680000782, 'data_time': 0.008326712995767593, 'model_time': 0.7614192739129066, 'learning_rate': 9.611130255908619e-06, 'epoch': 19.85})
83
+ Step 8300, Loss: {'mse_loss': 0.03200468048453331, 'totoal_loss': 0.03200468048453331, 'data_time': 0.026389776961877942, 'model_time': 0.8086171650793403, 'learning_rate': 9.586800716526974e-06, 'epoch': 20.1})
84
+ Step 8400, Loss: {'mse_loss': 0.03816397488117218, 'totoal_loss': 0.03816397488117218, 'data_time': 0.022523568011820316, 'model_time': 0.726299645844847, 'learning_rate': 9.561766607089355e-06, 'epoch': 20.34})
85
+ Step 8500, Loss: {'mse_loss': 0.05998474359512329, 'totoal_loss': 0.05998474359512329, 'data_time': 0.025060927961021662, 'model_time': 0.738354709930718, 'learning_rate': 9.536031880771846e-06, 'epoch': 20.58})
86
+ Step 8600, Loss: {'mse_loss': 0.027105294167995453, 'totoal_loss': 0.027105294167995453, 'data_time': 0.02407708205282688, 'model_time': 0.7349185100756586, 'learning_rate': 9.50960060138606e-06, 'epoch': 20.82})
87
+ Step 8700, Loss: {'mse_loss': 0.02302877977490425, 'totoal_loss': 0.02302877977490425, 'data_time': 0.008900598855689168, 'model_time': 0.7250846708193421, 'learning_rate': 9.482476942737411e-06, 'epoch': 21.07})
88
+ Step 8800, Loss: {'mse_loss': 0.03244295343756676, 'totoal_loss': 0.03244295343756676, 'data_time': 0.010014903964474797, 'model_time': 0.7427104709204286, 'learning_rate': 9.45466518796603e-06, 'epoch': 21.31})
89
+ Step 8900, Loss: {'mse_loss': 0.06646322458982468, 'totoal_loss': 0.06646322458982468, 'data_time': 0.013572047930210829, 'model_time': 0.7655755071900785, 'learning_rate': 9.426169728870399e-06, 'epoch': 21.55})
90
+ Step 9000, Loss: {'mse_loss': 0.04105782136321068, 'totoal_loss': 0.04105782136321068, 'data_time': 0.009157706052064896, 'model_time': 0.7459670389071107, 'learning_rate': 9.396995065213835e-06, 'epoch': 21.79})
91
+ Step 9100, Loss: {'mse_loss': 0.030231699347496033, 'totoal_loss': 0.030231699347496033, 'data_time': 0.008882141206413507, 'model_time': 0.7713424030225724, 'learning_rate': 9.367145804013938e-06, 'epoch': 22.03})
92
+ Step 9200, Loss: {'mse_loss': 0.03556697070598602, 'totoal_loss': 0.03556697070598602, 'data_time': 0.007879680953919888, 'model_time': 0.7610956348944455, 'learning_rate': 9.336626658815071e-06, 'epoch': 22.28})
93
+ Step 9300, Loss: {'mse_loss': 0.033985961228609085, 'totoal_loss': 0.033985961228609085, 'data_time': 0.010952772805467248, 'model_time': 0.8102444631513208, 'learning_rate': 9.305442448944056e-06, 'epoch': 22.52})
94
+ Step 9400, Loss: {'mse_loss': 0.041166484355926514, 'totoal_loss': 0.041166484355926514, 'data_time': 0.007976569002494216, 'model_time': 0.7402329200413078, 'learning_rate': 9.273598098749124e-06, 'epoch': 22.76})
95
+ Step 9500, Loss: {'mse_loss': 0.04422616586089134, 'totoal_loss': 0.04422616586089134, 'data_time': 1.9001261959783733, 'model_time': 1.642698171781376, 'learning_rate': 9.241098636822324e-06, 'epoch': 23.0})
96
+ Step 9600, Loss: {'mse_loss': 0.03045598231256008, 'totoal_loss': 0.03045598231256008, 'data_time': 0.008408254012465477, 'model_time': 0.7112540060188621, 'learning_rate': 9.207949195205442e-06, 'epoch': 23.24})
97
+ Step 9700, Loss: {'mse_loss': 0.02813006564974785, 'totoal_loss': 0.02813006564974785, 'data_time': 0.007755951955914497, 'model_time': 0.7362390048801899, 'learning_rate': 9.174155008579588e-06, 'epoch': 23.49})
98
+ Step 9800, Loss: {'mse_loss': 0.061379704624414444, 'totoal_loss': 0.061379704624414444, 'data_time': 0.008228495949879289, 'model_time': 0.732046928955242, 'learning_rate': 9.139721413438583e-06, 'epoch': 23.73})
99
+ Step 9900, Loss: {'mse_loss': 0.036478281021118164, 'totoal_loss': 0.036478281021118164, 'data_time': 0.007517495891079307, 'model_time': 0.7383268601261079, 'learning_rate': 9.104653847246273e-06, 'epoch': 23.97})
100
+ Step 10000, Loss: {'mse_loss': 0.027237864211201668, 'totoal_loss': 0.027237864211201668, 'data_time': 0.026358064031228423, 'model_time': 0.72316938592121, 'learning_rate': 9.068957847577869e-06, 'epoch': 24.21})
101
+ Step 10100, Loss: {'mse_loss': 0.06561984121799469, 'totoal_loss': 0.06561984121799469, 'data_time': 0.02267910400405526, 'model_time': 0.7406063531525433, 'learning_rate': 9.032639051245524e-06, 'epoch': 24.46})
102
+ Step 10200, Loss: {'mse_loss': 0.019378332421183586, 'totoal_loss': 0.019378332421183586, 'data_time': 0.023579096887260675, 'model_time': 0.7141105569899082, 'learning_rate': 8.995703193408199e-06, 'epoch': 24.7})
103
+ Step 10300, Loss: {'mse_loss': 0.03172560781240463, 'totoal_loss': 0.03172560781240463, 'data_time': 0.02255816711112857, 'model_time': 0.7110088660847396, 'learning_rate': 8.958156106666017e-06, 'epoch': 24.94})
104
+ Step 10400, Loss: {'mse_loss': 0.018024109303951263, 'totoal_loss': 0.018024109303951263, 'data_time': 0.011047228937968612, 'model_time': 0.7538415060844272, 'learning_rate': 8.92000372013924e-06, 'epoch': 25.18})
105
+ Step 10500, Loss: {'mse_loss': 0.03004194237291813, 'totoal_loss': 0.03004194237291813, 'data_time': 0.009538385085761547, 'model_time': 0.6939285148400813, 'learning_rate': 8.881252058531973e-06, 'epoch': 25.42})
106
+ Step 10600, Loss: {'mse_loss': 0.02799084410071373, 'totoal_loss': 0.02799084410071373, 'data_time': 0.01178077096119523, 'model_time': 0.9726061299443245, 'learning_rate': 8.841907241180809e-06, 'epoch': 25.67})
107
+ Step 10700, Loss: {'mse_loss': 0.027131512761116028, 'totoal_loss': 0.027131512761116028, 'data_time': 0.008269547019153833, 'model_time': 0.7126376868691295, 'learning_rate': 8.801975481088507e-06, 'epoch': 25.91})
108
+ Step 10800, Loss: {'mse_loss': 0.02003358118236065, 'totoal_loss': 0.02003358118236065, 'data_time': 0.007788890972733498, 'model_time': 0.714403938036412, 'learning_rate': 8.761463083942889e-06, 'epoch': 26.15})
109
+ Step 10900, Loss: {'mse_loss': 0.030268240720033646, 'totoal_loss': 0.030268240720033646, 'data_time': 0.008315779967233539, 'model_time': 0.7273178428877145, 'learning_rate': 8.720376447121098e-06, 'epoch': 26.39})
110
+ Step 11000, Loss: {'mse_loss': 0.03593386337161064, 'totoal_loss': 0.03593386337161064, 'data_time': 0.0004200839903205633, 'model_time': 0.733374489005655, 'learning_rate': 8.678722058679382e-06, 'epoch': 26.63})
111
+ Step 11100, Loss: {'mse_loss': 0.05337481200695038, 'totoal_loss': 0.05337481200695038, 'data_time': 0.0004776390269398689, 'model_time': 0.7334889119956642, 'learning_rate': 8.636506496328546e-06, 'epoch': 26.88})
112
+ Step 11200, Loss: {'mse_loss': 0.038991086184978485, 'totoal_loss': 0.038991086184978485, 'data_time': 0.0003905659541487694, 'model_time': 0.7322044109459966, 'learning_rate': 8.593736426395268e-06, 'epoch': 27.12})
113
+ Step 11300, Loss: {'mse_loss': 0.027721863240003586, 'totoal_loss': 0.027721863240003586, 'data_time': 0.0003859370481222868, 'model_time': 0.9779598980676383, 'learning_rate': 8.550418602769392e-06, 'epoch': 27.36})
114
+ Step 11400, Loss: {'mse_loss': 0.034640610218048096, 'totoal_loss': 0.034640610218048096, 'data_time': 0.0004192220512777567, 'model_time': 0.7810617538634688, 'learning_rate': 8.506559865837425e-06, 'epoch': 27.6})
115
+ Step 11500, Loss: {'mse_loss': 0.022079192101955414, 'totoal_loss': 0.022079192101955414, 'data_time': 0.0005394029431045055, 'model_time': 0.7488160999491811, 'learning_rate': 8.462167141402359e-06, 'epoch': 27.85})
116
+ Step 11600, Loss: {'mse_loss': 0.02468147501349449, 'totoal_loss': 0.02468147501349449, 'data_time': 0.025385242886841297, 'model_time': 0.7413926469162107, 'learning_rate': 8.417247439589994e-06, 'epoch': 28.09})
117
+ Step 11700, Loss: {'mse_loss': 0.020759670063853264, 'totoal_loss': 0.020759670063853264, 'data_time': 0.023179897805675864, 'model_time': 0.7123263580724597, 'learning_rate': 8.371807853741978e-06, 'epoch': 28.33})
118
+ Step 11800, Loss: {'mse_loss': 0.03421808034181595, 'totoal_loss': 0.03421808034181595, 'data_time': 0.022400134010240436, 'model_time': 0.7120307560544461, 'learning_rate': 8.325855559295663e-06, 'epoch': 28.57})
119
+ Step 11900, Loss: {'mse_loss': 0.02793819271028042, 'totoal_loss': 0.02793819271028042, 'data_time': 0.021619075909256935, 'model_time': 0.7184078199788928, 'learning_rate': 8.279397812651042e-06, 'epoch': 28.81})
120
+ Step 12000, Loss: {'mse_loss': 0.04276081547141075, 'totoal_loss': 0.04276081547141075, 'data_time': 0.009844742948189378, 'model_time': 0.7479716408997774, 'learning_rate': 8.232441950024864e-06, 'epoch': 29.06})
121
+ Step 12100, Loss: {'mse_loss': 0.033978622406721115, 'totoal_loss': 0.033978622406721115, 'data_time': 0.009915623115375638, 'model_time': 0.7264686520211399, 'learning_rate': 8.184995386292166e-06, 'epoch': 29.3})
122
+ Step 12200, Loss: {'mse_loss': 0.02776283212006092, 'totoal_loss': 0.02776283212006092, 'data_time': 0.009616169845685363, 'model_time': 0.7336416591424495, 'learning_rate': 8.137065613815381e-06, 'epoch': 29.54})
123
+ Step 12300, Loss: {'mse_loss': 0.04078703746199608, 'totoal_loss': 0.04078703746199608, 'data_time': 0.009047218831256032, 'model_time': 0.7221462740562856, 'learning_rate': 8.088660201261203e-06, 'epoch': 29.78})
124
+ Step 12400, Loss: {'mse_loss': 0.02424502559006214, 'totoal_loss': 0.02424502559006214, 'data_time': 0.008370331954210997, 'model_time': 0.729526658076793, 'learning_rate': 8.039786792405404e-06, 'epoch': 30.02})
125
+ Step 12500, Loss: {'mse_loss': 0.022198209539055824, 'totoal_loss': 0.022198209539055824, 'data_time': 0.012881775852292776, 'model_time': 0.6941350481938571, 'learning_rate': 7.990453104925807e-06, 'epoch': 30.27})
126
+ Step 12600, Loss: {'mse_loss': 0.02727689780294895, 'totoal_loss': 0.02727689780294895, 'data_time': 0.010592253878712654, 'model_time': 0.7246652508620173, 'learning_rate': 7.940666929183554e-06, 'epoch': 30.51})
127
+ Step 12700, Loss: {'mse_loss': 0.02622203342616558, 'totoal_loss': 0.02622203342616558, 'data_time': 0.009149785852059722, 'model_time': 0.7431851611472666, 'learning_rate': 7.89043612699294e-06, 'epoch': 30.75})
128
+ Step 12800, Loss: {'mse_loss': 0.028120167553424835, 'totoal_loss': 0.028120167553424835, 'data_time': 0.008360752137377858, 'model_time': 0.6899815928190947, 'learning_rate': 7.839768630379917e-06, 'epoch': 30.99})
129
+ Step 12900, Loss: {'mse_loss': 0.024896524846553802, 'totoal_loss': 0.024896524846553802, 'data_time': 0.000502381008118391, 'model_time': 0.7436851460952312, 'learning_rate': 7.788672440329562e-06, 'epoch': 31.23})
130
+ Step 13000, Loss: {'mse_loss': 0.032549865543842316, 'totoal_loss': 0.032549865543842316, 'data_time': 0.0003602041397243738, 'model_time': 0.7169450991787016, 'learning_rate': 7.737155625522608e-06, 'epoch': 31.48})
131
+ Step 13100, Loss: {'mse_loss': 0.04321451857686043, 'totoal_loss': 0.04321451857686043, 'data_time': 0.00042303907684981823, 'model_time': 0.8307858719490469, 'learning_rate': 7.685226321061318e-06, 'epoch': 31.72})
132
+ Step 13200, Loss: {'mse_loss': 0.02401592954993248, 'totoal_loss': 0.02401592954993248, 'data_time': 0.0005578671116381884, 'model_time': 0.7853731799405068, 'learning_rate': 7.632892727184844e-06, 'epoch': 31.96})
133
+ Step 13300, Loss: {'mse_loss': 0.04126683622598648, 'totoal_loss': 0.04126683622598648, 'data_time': 0.016708812909200788, 'model_time': 0.7453156199771911, 'learning_rate': 7.580163107974335e-06, 'epoch': 32.2})
134
+ Step 13400, Loss: {'mse_loss': 0.027664322406053543, 'totoal_loss': 0.027664322406053543, 'data_time': 0.017968277214094996, 'model_time': 0.7274012919515371, 'learning_rate': 7.527045790047922e-06, 'epoch': 32.45})
135
+ Step 13500, Loss: {'mse_loss': 0.028186693787574768, 'totoal_loss': 0.028186693787574768, 'data_time': 0.01579205901362002, 'model_time': 0.7311083781532943, 'learning_rate': 7.473549161245862e-06, 'epoch': 32.69})
136
+ Step 13600, Loss: {'mse_loss': 0.028443681076169014, 'totoal_loss': 0.028443681076169014, 'data_time': 0.01702698413282633, 'model_time': 0.9577306548599154, 'learning_rate': 7.419681669305998e-06, 'epoch': 32.93})
137
+ Step 13700, Loss: {'mse_loss': 0.026431990787386894, 'totoal_loss': 0.026431990787386894, 'data_time': 0.010505066951736808, 'model_time': 0.6976930738892406, 'learning_rate': 7.365451820529756e-06, 'epoch': 33.17})
138
+ Step 13800, Loss: {'mse_loss': 0.018428349867463112, 'totoal_loss': 0.018428349867463112, 'data_time': 0.008415465941652656, 'model_time': 0.7080973009578884, 'learning_rate': 7.310868178438909e-06, 'epoch': 33.41})
139
+ Step 13900, Loss: {'mse_loss': 0.019173456355929375, 'totoal_loss': 0.019173456355929375, 'data_time': 0.011846414068713784, 'model_time': 0.723732935031876, 'learning_rate': 7.2559393624232985e-06, 'epoch': 33.66})
140
+ Step 14000, Loss: {'mse_loss': 0.025245917961001396, 'totoal_loss': 0.025245917961001396, 'data_time': 0.009193910984322429, 'model_time': 0.7239627570379525, 'learning_rate': 7.2006740463797296e-06, 'epoch': 33.9})
141
+ Step 14100, Loss: {'mse_loss': 0.03217463567852974, 'totoal_loss': 0.03217463567852974, 'data_time': 0.010138544952496886, 'model_time': 0.7154519958421588, 'learning_rate': 7.145080957342262e-06, 'epoch': 34.14})
142
+ Step 14200, Loss: {'mse_loss': 0.030681870877742767, 'totoal_loss': 0.030681870877742767, 'data_time': 0.010546660050749779, 'model_time': 0.7182323241140693, 'learning_rate': 7.0891688741041065e-06, 'epoch': 34.38})
143
+ Step 14300, Loss: {'mse_loss': 0.03492050617933273, 'totoal_loss': 0.03492050617933273, 'data_time': 0.007900068070739508, 'model_time': 0.7191719450056553, 'learning_rate': 7.032946625831363e-06, 'epoch': 34.62})
144
+ Step 14400, Loss: {'mse_loss': 0.022596020251512527, 'totoal_loss': 0.022596020251512527, 'data_time': 0.009442318929359317, 'model_time': 0.715216307900846, 'learning_rate': 6.976423090668781e-06, 'epoch': 34.87})
145
+ Step 14500, Loss: {'mse_loss': 0.02657078020274639, 'totoal_loss': 0.02657078020274639, 'data_time': 0.0004818171728402376, 'model_time': 0.746415451169014, 'learning_rate': 6.919607194337806e-06, 'epoch': 35.11})
146
+ Step 14600, Loss: {'mse_loss': 0.018257584422826767, 'totoal_loss': 0.018257584422826767, 'data_time': 0.00037382496520876884, 'model_time': 0.9711230241227895, 'learning_rate': 6.8625079087270976e-06, 'epoch': 35.35})
147
+ Step 14700, Loss: {'mse_loss': 0.015641052275896072, 'totoal_loss': 0.015641052275896072, 'data_time': 0.000560432905331254, 'model_time': 0.7229100530967116, 'learning_rate': 6.8051342504757714e-06, 'epoch': 35.59})
148
+ Step 14800, Loss: {'mse_loss': 0.02824597992002964, 'totoal_loss': 0.02824597992002964, 'data_time': 0.00039968988858163357, 'model_time': 0.7122956719249487, 'learning_rate': 6.747495279549561e-06, 'epoch': 35.84})
149
+ Step 14900, Loss: {'mse_loss': 0.03130047768354416, 'totoal_loss': 0.03130047768354416, 'data_time': 0.020080892834812403, 'model_time': 0.7331944659817964, 'learning_rate': 6.6896000978101465e-06, 'epoch': 36.08})
150
+ Step 15000, Loss: {'mse_loss': 0.02022668719291687, 'totoal_loss': 0.02022668719291687, 'data_time': 0.01532902684994042, 'model_time': 0.7161577539518476, 'learning_rate': 6.631457847577869e-06, 'epoch': 36.32})
151
+ Step 15100, Loss: {'mse_loss': 0.012311581522226334, 'totoal_loss': 0.012311581522226334, 'data_time': 0.016701728804036975, 'model_time': 0.7346411938779056, 'learning_rate': 6.573077710188046e-06, 'epoch': 36.56})
152
+ Step 15200, Loss: {'mse_loss': 0.018413420766592026, 'totoal_loss': 0.018413420766592026, 'data_time': 0.015184021089226007, 'model_time': 0.7608556170016527, 'learning_rate': 6.5144689045411345e-06, 'epoch': 36.8})
153
+ Step 15300, Loss: {'mse_loss': 0.04307427629828453, 'totoal_loss': 0.04307427629828453, 'data_time': 0.010011987993493676, 'model_time': 0.7040013980586082, 'learning_rate': 6.455640685646961e-06, 'epoch': 37.05})
154
+ Step 15400, Loss: {'mse_loss': 0.021746547892689705, 'totoal_loss': 0.021746547892689705, 'data_time': 0.010433771181851625, 'model_time': 0.704255759017542, 'learning_rate': 6.396602343163248e-06, 'epoch': 37.29})
155
+ Step 15500, Loss: {'mse_loss': 0.021126968786120415, 'totoal_loss': 0.021126968786120415, 'data_time': 0.009393329033628106, 'model_time': 0.7279828488826752, 'learning_rate': 6.337363199928669e-06, 'epoch': 37.53})
156
+ Step 15600, Loss: {'mse_loss': 0.017551632598042488, 'totoal_loss': 0.017551632598042488, 'data_time': 0.01239349297247827, 'model_time': 0.7425719269085675, 'learning_rate': 6.277932610490659e-06, 'epoch': 37.77})
157
+ Step 15700, Loss: {'mse_loss': 0.019863609224557877, 'totoal_loss': 0.019863609224557877, 'data_time': 0.0005064168944954872, 'model_time': 0.7172175478190184, 'learning_rate': 6.218319959628234e-06, 'epoch': 38.01})
158
+ Step 15800, Loss: {'mse_loss': 0.02527172677218914, 'totoal_loss': 0.02527172677218914, 'data_time': 0.0004532500170171261, 'model_time': 0.7559166920837015, 'learning_rate': 6.158534660870018e-06, 'epoch': 38.26})
159
+ Step 15900, Loss: {'mse_loss': 0.035741664469242096, 'totoal_loss': 0.035741664469242096, 'data_time': 0.00044400314800441265, 'model_time': 0.7421014758292586, 'learning_rate': 6.0985861550077345e-06, 'epoch': 38.5})
160
+ Step 16000, Loss: {'mse_loss': 0.0347810760140419, 'totoal_loss': 0.0347810760140419, 'data_time': 0.0003840851131826639, 'model_time': 0.7020517019554973, 'learning_rate': 6.0384839086054095e-06, 'epoch': 38.74})
161
+ Step 16100, Loss: {'mse_loss': 0.020743753761053085, 'totoal_loss': 0.020743753761053085, 'data_time': 0.00028930604457855225, 'model_time': 0.6801519938744605, 'learning_rate': 5.978237412504472e-06, 'epoch': 38.98})
162
+ Step 16200, Loss: {'mse_loss': 0.021299393847584724, 'totoal_loss': 0.021299393847584724, 'data_time': 0.008987664012238383, 'model_time': 0.6976846579927951, 'learning_rate': 5.917856180325059e-06, 'epoch': 39.23})
163
+ Step 16300, Loss: {'mse_loss': 0.013897104188799858, 'totoal_loss': 0.013897104188799858, 'data_time': 0.00857269112020731, 'model_time': 0.7279499950818717, 'learning_rate': 5.857349746963692e-06, 'epoch': 39.47})
164
+ Step 16400, Loss: {'mse_loss': 0.028004072606563568, 'totoal_loss': 0.028004072606563568, 'data_time': 0.00926077296026051, 'model_time': 0.7241319660097361, 'learning_rate': 5.796727667087611e-06, 'epoch': 39.71})
165
+ Step 16500, Loss: {'mse_loss': 0.01982526294887066, 'totoal_loss': 0.01982526294887066, 'data_time': 0.010077937971800566, 'model_time': 0.7010032958351076, 'learning_rate': 5.735999513625984e-06, 'epoch': 39.95})
166
+ Step 16600, Loss: {'mse_loss': 0.014686585403978825, 'totoal_loss': 0.014686585403978825, 'data_time': 0.022282866993919015, 'model_time': 0.7352648780215532, 'learning_rate': 5.675174876258223e-06, 'epoch': 40.19})
167
+ Step 16700, Loss: {'mse_loss': 0.021899733692407608, 'totoal_loss': 0.021899733692407608, 'data_time': 0.023081542924046516, 'model_time': 0.7174250171519816, 'learning_rate': 5.614263359899673e-06, 'epoch': 40.44})
168
+ Step 16800, Loss: {'mse_loss': 0.017934123054146767, 'totoal_loss': 0.017934123054146767, 'data_time': 0.026851081987842917, 'model_time': 0.7469006760511547, 'learning_rate': 5.553274583184875e-06, 'epoch': 40.68})
169
+ Step 16900, Loss: {'mse_loss': 0.040331970900297165, 'totoal_loss': 0.040331970900297165, 'data_time': 0.023676448967307806, 'model_time': 0.8079723180271685, 'learning_rate': 5.492218176948673e-06, 'epoch': 40.92})
170
+ Step 17000, Loss: {'mse_loss': 0.023515455424785614, 'totoal_loss': 0.023515455424785614, 'data_time': 0.008863572031259537, 'model_time': 1.0402069359552115, 'learning_rate': 5.431103782705404e-06, 'epoch': 41.16})
171
+ Step 17100, Loss: {'mse_loss': 0.02487102709710598, 'totoal_loss': 0.02487102709710598, 'data_time': 0.008348592091351748, 'model_time': 0.7953265169635415, 'learning_rate': 5.369941051126377e-06, 'epoch': 41.4})
172
+ Step 17200, Loss: {'mse_loss': 0.01964014582335949, 'totoal_loss': 0.01964014582335949, 'data_time': 0.009383101016283035, 'model_time': 0.7248079099226743, 'learning_rate': 5.308739640515932e-06, 'epoch': 41.65})
173
+ Step 17300, Loss: {'mse_loss': 0.013887966051697731, 'totoal_loss': 0.013887966051697731, 'data_time': 0.007591614034026861, 'model_time': 0.7381265021394938, 'learning_rate': 5.24750921528627e-06, 'epoch': 41.89})
174
+ Step 17400, Loss: {'mse_loss': 0.03092304803431034, 'totoal_loss': 0.03092304803431034, 'data_time': 0.0004222029820084572, 'model_time': 0.7991182811092585, 'learning_rate': 5.186259444431344e-06, 'epoch': 42.13})
175
+ Step 17500, Loss: {'mse_loss': 0.025006044656038284, 'totoal_loss': 0.025006044656038284, 'data_time': 0.00040533277206122875, 'model_time': 0.718195595080033, 'learning_rate': 5.125e-06, 'epoch': 42.37})
176
+ Step 17600, Loss: {'mse_loss': 0.025272022932767868, 'totoal_loss': 0.025272022932767868, 'data_time': 0.000447642058134079, 'model_time': 0.7178880660794675, 'learning_rate': 5.063740555568656e-06, 'epoch': 42.62})
177
+ Step 17700, Loss: {'mse_loss': 0.013919326476752758, 'totoal_loss': 0.013919326476752758, 'data_time': 0.00039953901432454586, 'model_time': 0.7268411600962281, 'learning_rate': 5.002490784713731e-06, 'epoch': 42.86})
178
+ Step 17800, Loss: {'mse_loss': 0.014528901316225529, 'totoal_loss': 0.014528901316225529, 'data_time': 0.0003878478892147541, 'model_time': 0.7827218770980835, 'learning_rate': 4.9412603594840695e-06, 'epoch': 43.1})
179
+ Step 17900, Loss: {'mse_loss': 0.03000064194202423, 'totoal_loss': 0.03000064194202423, 'data_time': 0.00039607402868568897, 'model_time': 0.7337519179563969, 'learning_rate': 4.8800589488736245e-06, 'epoch': 43.34})
180
+ Step 18000, Loss: {'mse_loss': 0.028359288349747658, 'totoal_loss': 0.028359288349747658, 'data_time': 0.00039816717617213726, 'model_time': 0.7190980548039079, 'learning_rate': 4.818896217294598e-06, 'epoch': 43.58})
181
+ Step 18100, Loss: {'mse_loss': 0.025780808180570602, 'totoal_loss': 0.025780808180570602, 'data_time': 0.0005160628352314234, 'model_time': 0.7192819751799107, 'learning_rate': 4.757781823051329e-06, 'epoch': 43.83})
182
+ Step 18200, Loss: {'mse_loss': 0.010335352271795273, 'totoal_loss': 0.010335352271795273, 'data_time': 0.02389258681796491, 'model_time': 0.7454235590994358, 'learning_rate': 4.696725416815128e-06, 'epoch': 44.07})
183
+ Step 18300, Loss: {'mse_loss': 0.014639207161962986, 'totoal_loss': 0.014639207161962986, 'data_time': 0.022972970036789775, 'model_time': 0.7252535899169743, 'learning_rate': 4.635736640100327e-06, 'epoch': 44.31})
184
+ Step 18400, Loss: {'mse_loss': 0.0219290591776371, 'totoal_loss': 0.0219290591776371, 'data_time': 0.022745921975001693, 'model_time': 0.7287842051591724, 'learning_rate': 4.574825123741778e-06, 'epoch': 44.55})
185
+ Step 18500, Loss: {'mse_loss': 0.01141809206455946, 'totoal_loss': 0.01141809206455946, 'data_time': 0.022854060865938663, 'model_time': 0.8054822341073304, 'learning_rate': 4.5140004863740165e-06, 'epoch': 44.79})
186
+ Step 18600, Loss: {'mse_loss': 0.025711458176374435, 'totoal_loss': 0.025711458176374435, 'data_time': 0.008913706056773663, 'model_time': 0.7797683100216091, 'learning_rate': 4.45327233291239e-06, 'epoch': 45.04})
187
+ Step 18700, Loss: {'mse_loss': 0.02320913039147854, 'totoal_loss': 0.02320913039147854, 'data_time': 0.010293650906533003, 'model_time': 0.7309806488920003, 'learning_rate': 4.39265025303631e-06, 'epoch': 45.28})
188
+ Step 18800, Loss: {'mse_loss': 0.023785186931490898, 'totoal_loss': 0.023785186931490898, 'data_time': 0.008007210912182927, 'model_time': 0.7022445101756603, 'learning_rate': 4.332143819674943e-06, 'epoch': 45.52})
189
+ Step 18900, Loss: {'mse_loss': 0.017085541039705276, 'totoal_loss': 0.017085541039705276, 'data_time': 0.01115274615585804, 'model_time': 0.7566004069522023, 'learning_rate': 4.271762587495529e-06, 'epoch': 45.76})
190
+ Step 19000, Loss: {'mse_loss': 0.03195910155773163, 'totoal_loss': 0.03195910155773163, 'data_time': 0.0005892568733543158, 'model_time': 0.8385179140605032, 'learning_rate': 4.2115160913945914e-06, 'epoch': 46.0})
191
+ Step 19100, Loss: {'mse_loss': 0.016800500452518463, 'totoal_loss': 0.016800500452518463, 'data_time': 0.0003572970163077116, 'model_time': 0.7553209089674056, 'learning_rate': 4.151413844992267e-06, 'epoch': 46.25})
192
+ Step 19200, Loss: {'mse_loss': 0.012057713232934475, 'totoal_loss': 0.012057713232934475, 'data_time': 0.0003767118323594332, 'model_time': 0.9802401917986572, 'learning_rate': 4.091465339129985e-06, 'epoch': 46.49})
193
+ Step 19300, Loss: {'mse_loss': 0.014829318039119244, 'totoal_loss': 0.014829318039119244, 'data_time': 0.0003935801796615124, 'model_time': 0.7138536809943616, 'learning_rate': 4.031680040371768e-06, 'epoch': 46.73})
194
+ Step 19400, Loss: {'mse_loss': 0.011827850714325905, 'totoal_loss': 0.011827850714325905, 'data_time': 0.0005168139468878508, 'model_time': 0.8009628269355744, 'learning_rate': 3.972067389509344e-06, 'epoch': 46.97})
195
+ Step 19500, Loss: {'mse_loss': 0.017640165984630585, 'totoal_loss': 0.017640165984630585, 'data_time': 0.01678660698235035, 'model_time': 0.7732208129018545, 'learning_rate': 3.912636800071335e-06, 'epoch': 47.22})
196
+ Step 19600, Loss: {'mse_loss': 0.023143071681261063, 'totoal_loss': 0.023143071681261063, 'data_time': 0.017114700051024556, 'model_time': 0.9516717898659408, 'learning_rate': 3.853397656836754e-06, 'epoch': 47.46})
197
+ Step 19700, Loss: {'mse_loss': 0.026131125167012215, 'totoal_loss': 0.026131125167012215, 'data_time': 0.015459917020052671, 'model_time': 0.7127381209284067, 'learning_rate': 3.7943593143530404e-06, 'epoch': 47.7})
198
+ Step 19800, Loss: {'mse_loss': 0.016358086839318275, 'totoal_loss': 0.016358086839318275, 'data_time': 0.01989925606176257, 'model_time': 0.7120419791899621, 'learning_rate': 3.735531095458867e-06, 'epoch': 47.94})
199
+ Step 19900, Loss: {'mse_loss': 0.010414749383926392, 'totoal_loss': 0.010414749383926392, 'data_time': 0.015166419092565775, 'model_time': 0.7268361928872764, 'learning_rate': 3.6769222898119562e-06, 'epoch': 48.18})
200
+ Step 20000, Loss: {'mse_loss': 0.015699801966547966, 'totoal_loss': 0.015699801966547966, 'data_time': 0.015402141027152538, 'model_time': 0.7024160930886865, 'learning_rate': 3.618542152422132e-06, 'epoch': 48.43})
201
+ Step 20100, Loss: {'mse_loss': 0.019741181284189224, 'totoal_loss': 0.019741181284189224, 'data_time': 0.01770779094658792, 'model_time': 0.7181472410447896, 'learning_rate': 3.560399902189855e-06, 'epoch': 48.67})
202
+ Step 20200, Loss: {'mse_loss': 0.010985502041876316, 'totoal_loss': 0.010985502041876316, 'data_time': 0.015484069008380175, 'model_time': 0.7133320102002472, 'learning_rate': 3.502504720450441e-06, 'epoch': 48.91})
203
+ Step 20300, Loss: {'mse_loss': 0.010178339667618275, 'totoal_loss': 0.010178339667618275, 'data_time': 0.010778388939797878, 'model_time': 0.7316887450870126, 'learning_rate': 3.4448657495242304e-06, 'epoch': 49.15})
204
+ Step 20400, Loss: {'mse_loss': 0.02035374753177166, 'totoal_loss': 0.02035374753177166, 'data_time': 0.0093305220361799, 'model_time': 0.7575097151566297, 'learning_rate': 3.387492091272904e-06, 'epoch': 49.39})
205
+ Step 20500, Loss: {'mse_loss': 0.008343452587723732, 'totoal_loss': 0.008343452587723732, 'data_time': 0.015078689903020859, 'model_time': 0.7030219670850784, 'learning_rate': 3.3303928056621955e-06, 'epoch': 49.64})
206
+ Step 20600, Loss: {'mse_loss': 0.008834611624479294, 'totoal_loss': 0.008834611624479294, 'data_time': 0.01737896096892655, 'model_time': 0.7409156430512667, 'learning_rate': 3.2735769093312202e-06, 'epoch': 49.88})
207
+ Step 20700, Loss: {'mse_loss': 0.01163314376026392, 'totoal_loss': 0.01163314376026392, 'data_time': 0.008100730134174228, 'model_time': 0.7433252008631825, 'learning_rate': 3.217053374168639e-06, 'epoch': 50.12})
208
+ Step 20800, Loss: {'mse_loss': 0.009292221628129482, 'totoal_loss': 0.009292221628129482, 'data_time': 0.008300145855173469, 'model_time': 0.7339044408872724, 'learning_rate': 3.1608311258958953e-06, 'epoch': 50.36})
209
+ Step 20900, Loss: {'mse_loss': 0.02105686627328396, 'totoal_loss': 0.02105686627328396, 'data_time': 0.008868068922311068, 'model_time': 0.727627748856321, 'learning_rate': 3.10491904265774e-06, 'epoch': 50.61})
210
+ Step 21000, Loss: {'mse_loss': 0.025284418836236, 'totoal_loss': 0.025284418836236, 'data_time': 0.008354109013453126, 'model_time': 0.7403595519717783, 'learning_rate': 3.0493259536202714e-06, 'epoch': 50.85})
211
+ Step 21100, Loss: {'mse_loss': 0.025187494233250618, 'totoal_loss': 0.025187494233250618, 'data_time': 0.00039313104934990406, 'model_time': 0.7387189199216664, 'learning_rate': 2.9940606375767038e-06, 'epoch': 51.09})
212
+ Step 21200, Loss: {'mse_loss': 0.017841387540102005, 'totoal_loss': 0.017841387540102005, 'data_time': 0.00041084992699325085, 'model_time': 0.7437248730566353, 'learning_rate': 2.939131821561094e-06, 'epoch': 51.33})
213
+ Step 21300, Loss: {'mse_loss': 0.011263093911111355, 'totoal_loss': 0.011263093911111355, 'data_time': 0.0003941331524401903, 'model_time': 0.736381886061281, 'learning_rate': 2.8845481794702473e-06, 'epoch': 51.57})
214
+ Step 21400, Loss: {'mse_loss': 0.016022194176912308, 'totoal_loss': 0.016022194176912308, 'data_time': 0.00040870788507163525, 'model_time': 0.7424937079194933, 'learning_rate': 2.830318330694004e-06, 'epoch': 51.82})
215
+ Step 21500, Loss: {'mse_loss': 0.012619665823876858, 'totoal_loss': 0.012619665823876858, 'data_time': 0.024135198909789324, 'model_time': 0.8230437890160829, 'learning_rate': 2.7764508387541378e-06, 'epoch': 52.06})
216
+ Step 21600, Loss: {'mse_loss': 0.020320365205407143, 'totoal_loss': 0.020320365205407143, 'data_time': 0.024298893054947257, 'model_time': 0.7425240310840309, 'learning_rate': 2.7229542099520797e-06, 'epoch': 52.3})
217
+ Step 21700, Loss: {'mse_loss': 0.012488552369177341, 'totoal_loss': 0.012488552369177341, 'data_time': 0.026312970090657473, 'model_time': 0.7414565379731357, 'learning_rate': 2.669836892025666e-06, 'epoch': 52.54})
218
+ Step 21800, Loss: {'mse_loss': 0.015680614858865738, 'totoal_loss': 0.015680614858865738, 'data_time': 0.024053015047684312, 'model_time': 0.7081038081087172, 'learning_rate': 2.6171072728151557e-06, 'epoch': 52.78})
219
+ Step 21900, Loss: {'mse_loss': 0.011468223296105862, 'totoal_loss': 0.011468223296105862, 'data_time': 0.011846245033666492, 'model_time': 0.7542375868652016, 'learning_rate': 2.5647736789386828e-06, 'epoch': 53.03})
220
+ Step 22000, Loss: {'mse_loss': 0.018829012289643288, 'totoal_loss': 0.018829012289643288, 'data_time': 0.008382169995456934, 'model_time': 0.7174051529727876, 'learning_rate': 2.5128443744773904e-06, 'epoch': 53.27})
221
+ Step 22100, Loss: {'mse_loss': 0.0098724951967597, 'totoal_loss': 0.0098724951967597, 'data_time': 0.00947466492652893, 'model_time': 0.7072667609900236, 'learning_rate': 2.4613275596704386e-06, 'epoch': 53.51})
222
+ Step 22200, Loss: {'mse_loss': 0.021604035049676895, 'totoal_loss': 0.021604035049676895, 'data_time': 0.011287399102002382, 'model_time': 0.8033340198453516, 'learning_rate': 2.4102313696200853e-06, 'epoch': 53.75})
223
+ Step 22300, Loss: {'mse_loss': 0.01689523458480835, 'totoal_loss': 0.01689523458480835, 'data_time': 0.008345948997884989, 'model_time': 0.6778802201151848, 'learning_rate': 2.359563873007063e-06, 'epoch': 54.0})
224
+ Step 22400, Loss: {'mse_loss': 0.017139485105872154, 'totoal_loss': 0.017139485105872154, 'data_time': 0.0003695818595588207, 'model_time': 0.7328300999943167, 'learning_rate': 2.3093330708164465e-06, 'epoch': 54.24})
225
+ Step 22500, Loss: {'mse_loss': 0.025274375453591347, 'totoal_loss': 0.025274375453591347, 'data_time': 0.0005188460927456617, 'model_time': 0.7080730760935694, 'learning_rate': 2.2595468950741943e-06, 'epoch': 54.48})
226
+ Step 22600, Loss: {'mse_loss': 0.012662089429795742, 'totoal_loss': 0.012662089429795742, 'data_time': 0.00039196014404296875, 'model_time': 0.7422749469988048, 'learning_rate': 2.2102132075945974e-06, 'epoch': 54.72})
227
+ Step 22700, Loss: {'mse_loss': 0.013957062736153603, 'totoal_loss': 0.013957062736153603, 'data_time': 0.0005022748373448849, 'model_time': 0.7112660917919129, 'learning_rate': 2.1613397987388e-06, 'epoch': 54.96})
228
+ Step 22800, Loss: {'mse_loss': 0.013107110746204853, 'totoal_loss': 0.013107110746204853, 'data_time': 0.00036615016870200634, 'model_time': 0.7341818138957024, 'learning_rate': 2.1129343861846207e-06, 'epoch': 55.21})
229
+ Step 22900, Loss: {'mse_loss': 0.009253126569092274, 'totoal_loss': 0.009253126569092274, 'data_time': 0.0004071970470249653, 'model_time': 0.7106101620011032, 'learning_rate': 2.065004613707836e-06, 'epoch': 55.45})
230
+ Step 23000, Loss: {'mse_loss': 0.014197615906596184, 'totoal_loss': 0.014197615906596184, 'data_time': 0.0004990638699382544, 'model_time': 0.7286005967762321, 'learning_rate': 2.0175580499751375e-06, 'epoch': 55.69})
231
+ Step 23100, Loss: {'mse_loss': 0.02550864778459072, 'totoal_loss': 0.02550864778459072, 'data_time': 0.00036967010237276554, 'model_time': 0.7583418169524521, 'learning_rate': 1.9706021873489604e-06, 'epoch': 55.93})
232
+ Step 23200, Loss: {'mse_loss': 0.011897592805325985, 'totoal_loss': 0.011897592805325985, 'data_time': 0.023760051000863314, 'model_time': 0.7069653440266848, 'learning_rate': 1.924144440704338e-06, 'epoch': 56.17})
233
+ Step 23300, Loss: {'mse_loss': 0.012884397059679031, 'totoal_loss': 0.012884397059679031, 'data_time': 0.022059855982661247, 'model_time': 0.7817510270979255, 'learning_rate': 1.8781921462580238e-06, 'epoch': 56.42})
234
+ Step 23400, Loss: {'mse_loss': 0.016759587451815605, 'totoal_loss': 0.016759587451815605, 'data_time': 0.02130428608506918, 'model_time': 0.7476782610174268, 'learning_rate': 1.8327525604100058e-06, 'epoch': 56.66})
235
+ Step 23500, Loss: {'mse_loss': 0.008302697911858559, 'totoal_loss': 0.008302697911858559, 'data_time': 0.021382714854553342, 'model_time': 0.6973283819388598, 'learning_rate': 1.7878328585976426e-06, 'epoch': 56.9})
236
+ Step 23600, Loss: {'mse_loss': 0.015102379955351353, 'totoal_loss': 0.015102379955351353, 'data_time': 0.009475436992943287, 'model_time': 0.7152368559036404, 'learning_rate': 1.7434401341625765e-06, 'epoch': 57.14})
237
+ Step 23700, Loss: {'mse_loss': 0.012567861936986446, 'totoal_loss': 0.012567861936986446, 'data_time': 0.011553743854165077, 'model_time': 0.7027621280867606, 'learning_rate': 1.6995813972306108e-06, 'epoch': 57.38})
238
+ Step 23800, Loss: {'mse_loss': 0.014853935688734055, 'totoal_loss': 0.014853935688734055, 'data_time': 0.008253330131992698, 'model_time': 0.7178377099335194, 'learning_rate': 1.656263573604734e-06, 'epoch': 57.63})
239
+ Step 23900, Loss: {'mse_loss': 0.017158759757876396, 'totoal_loss': 0.017158759757876396, 'data_time': 0.009716166881844401, 'model_time': 0.7440289109945297, 'learning_rate': 1.613493503671454e-06, 'epoch': 57.87})
240
+ Step 24000, Loss: {'mse_loss': 0.028588291257619858, 'totoal_loss': 0.028588291257619858, 'data_time': 0.0004254549276083708, 'model_time': 0.8082610389683396, 'learning_rate': 1.5712779413206198e-06, 'epoch': 58.11})
241
+ Step 24100, Loss: {'mse_loss': 0.03414962440729141, 'totoal_loss': 0.03414962440729141, 'data_time': 0.00035465206019580364, 'model_time': 0.7466340218670666, 'learning_rate': 1.5296235528789028e-06, 'epoch': 58.35})
242
+ Step 24200, Loss: {'mse_loss': 0.014848914928734303, 'totoal_loss': 0.014848914928734303, 'data_time': 0.0003987019881606102, 'model_time': 0.7302956990897655, 'learning_rate': 1.4885369160571124e-06, 'epoch': 58.6})
243
+ Step 24300, Loss: {'mse_loss': 0.019800841808319092, 'totoal_loss': 0.019800841808319092, 'data_time': 0.0003961238544434309, 'model_time': 0.7307826511096209, 'learning_rate': 1.4480245189114938e-06, 'epoch': 58.84})
244
+ Step 24400, Loss: {'mse_loss': 0.02631475403904915, 'totoal_loss': 0.02631475403904915, 'data_time': 0.0003895699046552181, 'model_time': 0.7509790828917176, 'learning_rate': 1.408092758819191e-06, 'epoch': 59.08})
245
+ Step 24500, Loss: {'mse_loss': 0.011394699104130268, 'totoal_loss': 0.011394699104130268, 'data_time': 0.0003946500364691019, 'model_time': 0.976195259951055, 'learning_rate': 1.368747941468028e-06, 'epoch': 59.32})
246
+ Step 24600, Loss: {'mse_loss': 0.013401931151747704, 'totoal_loss': 0.013401931151747704, 'data_time': 0.00037136091850697994, 'model_time': 0.7260622249450535, 'learning_rate': 1.3299962798607614e-06, 'epoch': 59.56})
247
+ Step 24700, Loss: {'mse_loss': 0.026513125747442245, 'totoal_loss': 0.026513125747442245, 'data_time': 0.00042951316572725773, 'model_time': 0.732257722876966, 'learning_rate': 1.2918438933339827e-06, 'epoch': 59.81})
248
+ Step 24800, Loss: {'mse_loss': 0.011464502662420273, 'totoal_loss': 0.011464502662420273, 'data_time': 0.026032655965536833, 'model_time': 0.7544295152183622, 'learning_rate': 1.2542968065918027e-06, 'epoch': 60.05})
249
+ Step 24900, Loss: {'mse_loss': 0.009646003134548664, 'totoal_loss': 0.009646003134548664, 'data_time': 0.022540654055774212, 'model_time': 0.7104945820756257, 'learning_rate': 1.217360948754476e-06, 'epoch': 60.29})
250
+ Step 25000, Loss: {'mse_loss': 0.007943193428218365, 'totoal_loss': 0.007943193428218365, 'data_time': 0.02431707107461989, 'model_time': 0.7020508348941803, 'learning_rate': 1.1810421524221318e-06, 'epoch': 60.53})
251
+ Step 25100, Loss: {'mse_loss': 0.01683739945292473, 'totoal_loss': 0.01683739945292473, 'data_time': 0.025682157836854458, 'model_time': 0.9737385548651218, 'learning_rate': 1.1453461527537284e-06, 'epoch': 60.77})
252
+ Step 25200, Loss: {'mse_loss': 0.009138054214417934, 'totoal_loss': 0.009138054214417934, 'data_time': 0.008171785157173872, 'model_time': 0.7378185361158103, 'learning_rate': 1.1102785865614162e-06, 'epoch': 61.02})
253
+ Step 25300, Loss: {'mse_loss': 0.01428248267620802, 'totoal_loss': 0.01428248267620802, 'data_time': 0.010587643831968307, 'model_time': 0.734953111037612, 'learning_rate': 1.0758449914204127e-06, 'epoch': 61.26})
254
+ Step 25400, Loss: {'mse_loss': 0.011447998695075512, 'totoal_loss': 0.011447998695075512, 'data_time': 0.008599018910899758, 'model_time': 0.720223578857258, 'learning_rate': 1.0420508047945595e-06, 'epoch': 61.5})
255
+ Step 25500, Loss: {'mse_loss': 0.022800946608185768, 'totoal_loss': 0.022800946608185768, 'data_time': 0.009454509941861033, 'model_time': 0.7857271658722311, 'learning_rate': 1.0089013631776776e-06, 'epoch': 61.74})
256
+ Step 25600, Loss: {'mse_loss': 0.010541277937591076, 'totoal_loss': 0.010541277937591076, 'data_time': 0.008501203963533044, 'model_time': 0.888153726933524, 'learning_rate': 9.76401901250878e-07, 'epoch': 61.99})
257
+ Step 25700, Loss: {'mse_loss': 0.013880206272006035, 'totoal_loss': 0.013880206272006035, 'data_time': 0.0004036668688058853, 'model_time': 0.7169374600052834, 'learning_rate': 9.44557551055946e-07, 'epoch': 62.23})
258
+ Step 25800, Loss: {'mse_loss': 0.010967929847538471, 'totoal_loss': 0.010967929847538471, 'data_time': 0.0005800488870590925, 'model_time': 0.771328313043341, 'learning_rate': 9.13373341184928e-07, 'epoch': 62.47})
259
+ Step 25900, Loss: {'mse_loss': 0.01477731391787529, 'totoal_loss': 0.01477731391787529, 'data_time': 0.00037323893047869205, 'model_time': 0.7888369769789279, 'learning_rate': 8.828541959860623e-07, 'epoch': 62.71})
260
+ Step 26000, Loss: {'mse_loss': 0.010473271831870079, 'totoal_loss': 0.010473271831870079, 'data_time': 0.00040326081216335297, 'model_time': 0.7642531890887767, 'learning_rate': 8.530049347861661e-07, 'epoch': 62.95})
261
+ Step 26100, Loss: {'mse_loss': 0.010894578881561756, 'totoal_loss': 0.010894578881561756, 'data_time': 0.000417797127738595, 'model_time': 0.80235785106197, 'learning_rate': 8.238302711296034e-07, 'epoch': 63.2})
262
+ Step 26200, Loss: {'mse_loss': 0.016324717551469803, 'totoal_loss': 0.016324717551469803, 'data_time': 0.0005058890674263239, 'model_time': 0.7348306679632515, 'learning_rate': 7.953348120339707e-07, 'epoch': 63.44})
263
+ Step 26300, Loss: {'mse_loss': 0.01728465035557747, 'totoal_loss': 0.01728465035557747, 'data_time': 0.00037860102020204067, 'model_time': 0.7324970802292228, 'learning_rate': 7.675230572625892e-07, 'epoch': 63.68})
264
+ Step 26400, Loss: {'mse_loss': 0.017453905194997787, 'totoal_loss': 0.017453905194997787, 'data_time': 0.0005846400745213032, 'model_time': 0.7182557189371437, 'learning_rate': 7.40399398613941e-07, 'epoch': 63.92})
265
+ Step 26500, Loss: {'mse_loss': 0.008896952494978905, 'totoal_loss': 0.008896952494978905, 'data_time': 0.02626358694396913, 'model_time': 0.7121937470510602, 'learning_rate': 7.139681192281557e-07, 'epoch': 64.16})
266
+ Step 26600, Loss: {'mse_loss': 0.01304866187274456, 'totoal_loss': 0.01304866187274456, 'data_time': 0.024109095800668, 'model_time': 0.7638022489845753, 'learning_rate': 6.882333929106462e-07, 'epoch': 64.41})
267
+ Step 26700, Loss: {'mse_loss': 0.010555270127952099, 'totoal_loss': 0.010555270127952099, 'data_time': 0.025893294950947165, 'model_time': 0.7368699628859758, 'learning_rate': 6.63199283473027e-07, 'epoch': 64.65})
268
+ Step 26800, Loss: {'mse_loss': 0.014119073748588562, 'totoal_loss': 0.014119073748588562, 'data_time': 0.0279440360609442, 'model_time': 0.7234051120467484, 'learning_rate': 6.388697440913819e-07, 'epoch': 64.89})
269
+ Step 26900, Loss: {'mse_loss': 0.021636968478560448, 'totoal_loss': 0.021636968478560448, 'data_time': 0.00036742701195180416, 'model_time': 0.7607498920988292, 'learning_rate': 6.152486166820176e-07, 'epoch': 65.13})
270
+ Step 27000, Loss: {'mse_loss': 0.011672441847622395, 'totoal_loss': 0.011672441847622395, 'data_time': 0.00040648900903761387, 'model_time': 0.7227046717889607, 'learning_rate': 5.923396312947748e-07, 'epoch': 65.38})
271
+ Step 27100, Loss: {'mse_loss': 0.012219221331179142, 'totoal_loss': 0.012219221331179142, 'data_time': 0.00037192995660007, 'model_time': 0.7228187611326575, 'learning_rate': 5.701464055240163e-07, 'epoch': 65.62})
272
+ Step 27200, Loss: {'mse_loss': 0.013234016485512257, 'totoal_loss': 0.013234016485512257, 'data_time': 0.0004448089748620987, 'model_time': 0.9769112600479275, 'learning_rate': 5.48672443937364e-07, 'epoch': 65.86})
273
+ Step 27300, Loss: {'mse_loss': 0.012481671757996082, 'totoal_loss': 0.012481671757996082, 'data_time': 0.00036252313293516636, 'model_time': 0.6987640620209277, 'learning_rate': 5.279211375222855e-07, 'epoch': 66.1})
274
+ Step 27400, Loss: {'mse_loss': 0.011389253661036491, 'totoal_loss': 0.011389253661036491, 'data_time': 0.00036302185617387295, 'model_time': 0.695012615993619, 'learning_rate': 5.07895763150622e-07, 'epoch': 66.34})
275
+ Step 27500, Loss: {'mse_loss': 0.009725856594741344, 'totoal_loss': 0.009725856594741344, 'data_time': 0.00046029710210859776, 'model_time': 0.717577762901783, 'learning_rate': 4.885994830611266e-07, 'epoch': 66.59})
276
+ Step 27600, Loss: {'mse_loss': 0.01450520008802414, 'totoal_loss': 0.01450520008802414, 'data_time': 0.00040822988376021385, 'model_time': 0.7511043611448258, 'learning_rate': 4.700353443601156e-07, 'epoch': 66.83})
277
+ Step 27700, Loss: {'mse_loss': 0.010610035620629787, 'totoal_loss': 0.010610035620629787, 'data_time': 0.007930386113002896, 'model_time': 0.7387336499523371, 'learning_rate': 4.5220627854029224e-07, 'epoch': 67.07})
278
+ Step 27800, Loss: {'mse_loss': 0.011752363294363022, 'totoal_loss': 0.011752363294363022, 'data_time': 0.009248533984646201, 'model_time': 0.7499835998751223, 'learning_rate': 4.351151010178311e-07, 'epoch': 67.31})
279
+ Step 27900, Loss: {'mse_loss': 0.014080428518354893, 'totoal_loss': 0.014080428518354893, 'data_time': 0.007425375049933791, 'model_time': 0.7276880329009145, 'learning_rate': 4.1876451068778983e-07, 'epoch': 67.55})
280
+ Step 28000, Loss: {'mse_loss': 0.019484251737594604, 'totoal_loss': 0.019484251737594604, 'data_time': 0.008177056908607483, 'model_time': 0.7738355700857937, 'learning_rate': 4.031570894979235e-07, 'epoch': 67.8})
281
+ Step 28100, Loss: {'mse_loss': 0.011325434781610966, 'totoal_loss': 0.011325434781610966, 'data_time': 0.02866745600476861, 'model_time': 0.8037236039526761, 'learning_rate': 3.882953020409644e-07, 'epoch': 68.04})
282
+ Step 28200, Loss: {'mse_loss': 0.017839651554822922, 'totoal_loss': 0.017839651554822922, 'data_time': 0.02246520691551268, 'model_time': 0.7983072618953884, 'learning_rate': 3.74181495165436e-07, 'epoch': 68.28})
283
+ Step 28300, Loss: {'mse_loss': 0.008159819059073925, 'totoal_loss': 0.008159819059073925, 'data_time': 0.02459429996088147, 'model_time': 0.7042759619653225, 'learning_rate': 3.608178976050568e-07, 'epoch': 68.52})
284
+ Step 28400, Loss: {'mse_loss': 0.016224585473537445, 'totoal_loss': 0.016224585473537445, 'data_time': 0.02426714007742703, 'model_time': 0.7266379450447857, 'learning_rate': 3.482066196267966e-07, 'epoch': 68.77})
285
+ Step 28500, Loss: {'mse_loss': 0.007734662853181362, 'totoal_loss': 0.007734662853181362, 'data_time': 0.012765681138262153, 'model_time': 0.7964260911103338, 'learning_rate': 3.36349652697643e-07, 'epoch': 69.01})
286
+ Step 28600, Loss: {'mse_loss': 0.013717956840991974, 'totoal_loss': 0.013717956840991974, 'data_time': 0.009050328051671386, 'model_time': 0.7019437649287283, 'learning_rate': 3.2524886917012403e-07, 'epoch': 69.25})
287
+ Step 28700, Loss: {'mse_loss': 0.009886784479022026, 'totoal_loss': 0.009886784479022026, 'data_time': 0.010728599969297647, 'model_time': 0.70308250002563, 'learning_rate': 3.149060219866433e-07, 'epoch': 69.49})
288
+ Step 28800, Loss: {'mse_loss': 0.017095401883125305, 'totoal_loss': 0.017095401883125305, 'data_time': 0.011170062003657222, 'model_time': 0.7771934950724244, 'learning_rate': 3.053227444026695e-07, 'epoch': 69.73})
289
+ Step 28900, Loss: {'mse_loss': 0.0085061676800251, 'totoal_loss': 0.0085061676800251, 'data_time': 0.011060809949412942, 'model_time': 0.7851232900284231, 'learning_rate': 2.9650054972882544e-07, 'epoch': 69.98})
290
+ Step 29000, Loss: {'mse_loss': 0.012354692444205284, 'totoal_loss': 0.012354692444205284, 'data_time': 0.00040825107134878635, 'model_time': 0.7224996590521187, 'learning_rate': 2.884408310919209e-07, 'epoch': 70.22})
291
+ Step 29100, Loss: {'mse_loss': 0.010839357040822506, 'totoal_loss': 0.010839357040822506, 'data_time': 0.00039854017086327076, 'model_time': 0.7281085338909179, 'learning_rate': 2.8114486121495906e-07, 'epoch': 70.46})
292
+ Step 29200, Loss: {'mse_loss': 0.013248427771031857, 'totoal_loss': 0.013248427771031857, 'data_time': 0.0003883340395987034, 'model_time': 0.7255327121820301, 'learning_rate': 2.746137922161617e-07, 'epoch': 70.7})
293
+ Step 29300, Loss: {'mse_loss': 0.02518133446574211, 'totoal_loss': 0.02518133446574211, 'data_time': 0.000382615951821208, 'model_time': 0.7295717028900981, 'learning_rate': 2.68848655427034e-07, 'epoch': 70.94})
294
+ Step 29400, Loss: {'mse_loss': 0.011165739968419075, 'totoal_loss': 0.011165739968419075, 'data_time': 0.0005165319889783859, 'model_time': 0.7280390309169888, 'learning_rate': 2.638503612295071e-07, 'epoch': 71.19})
295
+ Step 29500, Loss: {'mse_loss': 0.015441495925188065, 'totoal_loss': 0.015441495925188065, 'data_time': 0.0006934860721230507, 'model_time': 0.7610964230261743, 'learning_rate': 2.5961969891217614e-07, 'epoch': 71.43})
296
+ Step 29600, Loss: {'mse_loss': 0.015465529635548592, 'totoal_loss': 0.015465529635548592, 'data_time': 0.00046236999332904816, 'model_time': 0.7731860929634422, 'learning_rate': 2.5615733654566483e-07, 'epoch': 71.67})
297
+ Step 29700, Loss: {'mse_loss': 0.01343566458672285, 'totoal_loss': 0.01343566458672285, 'data_time': 0.00041845208033919334, 'model_time': 0.743671105010435, 'learning_rate': 2.5346382087712764e-07, 'epoch': 71.91})
298
+ Step 29800, Loss: {'mse_loss': 0.014270680956542492, 'totoal_loss': 0.014270680956542492, 'data_time': 0.02392684482038021, 'model_time': 0.7833657369483262, 'learning_rate': 2.515395772439128e-07, 'epoch': 72.15})
299
+ Step 29900, Loss: {'mse_loss': 0.007339980453252792, 'totoal_loss': 0.007339980453252792, 'data_time': 0.02074342593550682, 'model_time': 0.7360035860911012, 'learning_rate': 2.5038490950639644e-07, 'epoch': 72.4})
300
+ Step 30000, Loss: {'mse_loss': 0.012905476614832878, 'totoal_loss': 0.012905476614832878, 'mse_score': 0.001967176395867552, 'data_time': 0.025250377831980586, 'model_time': 0.7172793280333281, 'learning_rate': 2.5e-07, 'epoch': 72.64})