Cognition2ActionLab commited on
Commit
c3e00a5
·
verified ·
1 Parent(s): 7b77f97

Upload folder using huggingface_hub

Browse files
libero_10_2B/starvla_qwen_pi/config.json ADDED
@@ -0,0 +1,129 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "run_id": "starvla_qwen_pi",
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": "QwenPI",
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_pi"
129
+ }
libero_10_2B/starvla_qwen_pi/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_pi/final_model/pytorch_model.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:691ccd82d77b0b2375e2c1324e29fd558353675c534cd9e68ffde57e55605810
3
+ size 6825856850
libero_10_2B/starvla_qwen_pi/libero_10.log ADDED
@@ -0,0 +1,300 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Step 100, Loss: {'mse_loss': 4084.5107421875, 'totoal_loss': 4084.5107421875, 'data_time': 0.018340409733355045, 'model_time': 0.7795461020432413, 'learning_rate': 2.0000000000000002e-07, 'epoch': 0.13})
2
+ Step 200, Loss: {'mse_loss': 1341.1195068359375, 'totoal_loss': 1341.1195068359375, 'data_time': 0.020688495133072138, 'model_time': 0.7271715397946537, 'learning_rate': 4.0000000000000003e-07, 'epoch': 0.25})
3
+ Step 300, Loss: {'mse_loss': 35.06199264526367, 'totoal_loss': 35.06199264526367, 'data_time': 0.015502848196774721, 'model_time': 0.9934968519955873, 'learning_rate': 6.000000000000001e-07, 'epoch': 0.38})
4
+ Step 400, Loss: {'mse_loss': 1.0202207565307617, 'totoal_loss': 1.0202207565307617, 'data_time': 0.0187489939853549, 'model_time': 0.767169885803014, 'learning_rate': 8.000000000000001e-07, 'epoch': 0.51})
5
+ Step 500, Loss: {'mse_loss': 1.0153199434280396, 'totoal_loss': 1.0153199434280396, 'data_time': 0.02119062189012766, 'model_time': 0.7654290460050106, 'learning_rate': 1.0000000000000002e-06, 'epoch': 0.63})
6
+ Step 600, Loss: {'mse_loss': 0.8278139233589172, 'totoal_loss': 0.8278139233589172, 'data_time': 0.018310127314180136, 'model_time': 0.7338726436719298, 'learning_rate': 1.2000000000000002e-06, 'epoch': 0.76})
7
+ Step 700, Loss: {'mse_loss': 0.7540043592453003, 'totoal_loss': 0.7540043592453003, 'data_time': 0.018594170920550823, 'model_time': 0.7997405021451414, 'learning_rate': 1.4000000000000001e-06, 'epoch': 0.89})
8
+ Step 800, Loss: {'mse_loss': 0.5825781226158142, 'totoal_loss': 0.5825781226158142, 'data_time': 0.01617052499204874, 'model_time': 0.7854680451564491, 'learning_rate': 1.6000000000000001e-06, 'epoch': 1.02})
9
+ Step 900, Loss: {'mse_loss': 0.579362690448761, 'totoal_loss': 0.579362690448761, 'data_time': 0.01583691220730543, 'model_time': 0.8372957231476903, 'learning_rate': 1.8000000000000001e-06, 'epoch': 1.14})
10
+ Step 1000, Loss: {'mse_loss': 0.2892080843448639, 'totoal_loss': 0.2892080843448639, 'data_time': 0.015004930086433887, 'model_time': 0.7503183959051967, 'learning_rate': 2.0000000000000003e-06, 'epoch': 1.27})
11
+ Step 1100, Loss: {'mse_loss': 0.23629233241081238, 'totoal_loss': 0.23629233241081238, 'data_time': 0.01372607797384262, 'model_time': 0.7534105400554836, 'learning_rate': 2.2e-06, 'epoch': 1.4})
12
+ Step 1200, Loss: {'mse_loss': 0.21110613644123077, 'totoal_loss': 0.21110613644123077, 'data_time': 0.016434710938483477, 'model_time': 0.82835380313918, 'learning_rate': 2.4000000000000003e-06, 'epoch': 1.52})
13
+ Step 1300, Loss: {'mse_loss': 0.16746599972248077, 'totoal_loss': 0.16746599972248077, 'data_time': 0.016684102825820446, 'model_time': 0.7836561067961156, 'learning_rate': 2.6e-06, 'epoch': 1.65})
14
+ Step 1400, Loss: {'mse_loss': 0.21875901520252228, 'totoal_loss': 0.21875901520252228, 'data_time': 0.014811974950134754, 'model_time': 0.7401742259971797, 'learning_rate': 2.8000000000000003e-06, 'epoch': 1.78})
15
+ Step 1500, Loss: {'mse_loss': 0.2620372772216797, 'totoal_loss': 0.2620372772216797, 'data_time': 0.009790332987904549, 'model_time': 0.7220056969672441, 'learning_rate': 3e-06, 'epoch': 1.9})
16
+ Step 1600, Loss: {'mse_loss': 0.23946981132030487, 'totoal_loss': 0.23946981132030487, 'data_time': 0.016269749961793423, 'model_time': 0.7658803979866207, 'learning_rate': 3.2000000000000003e-06, 'epoch': 2.03})
17
+ Step 1700, Loss: {'mse_loss': 0.1927461326122284, 'totoal_loss': 0.1927461326122284, 'data_time': 0.017898984719067812, 'model_time': 0.7529126890003681, 'learning_rate': 3.4000000000000005e-06, 'epoch': 2.16})
18
+ Step 1800, Loss: {'mse_loss': 0.08986274898052216, 'totoal_loss': 0.08986274898052216, 'data_time': 0.017183771822601557, 'model_time': 0.7526300819590688, 'learning_rate': 3.6000000000000003e-06, 'epoch': 2.28})
19
+ Step 1900, Loss: {'mse_loss': 0.15878096222877502, 'totoal_loss': 0.15878096222877502, 'data_time': 0.015328389126807451, 'model_time': 0.7484267079271376, 'learning_rate': 3.8000000000000005e-06, 'epoch': 2.41})
20
+ Step 2000, Loss: {'mse_loss': 0.12364695966243744, 'totoal_loss': 0.12364695966243744, 'data_time': 0.013490844052284956, 'model_time': 0.7382278200238943, 'learning_rate': 4.000000000000001e-06, 'epoch': 2.54})
21
+ Step 2100, Loss: {'mse_loss': 0.15741689503192902, 'totoal_loss': 0.15741689503192902, 'data_time': 0.0155909713357687, 'model_time': 0.7258138880133629, 'learning_rate': 4.2000000000000004e-06, 'epoch': 2.66})
22
+ Step 2200, Loss: {'mse_loss': 0.09929327666759491, 'totoal_loss': 0.09929327666759491, 'data_time': 0.014328546822071075, 'model_time': 0.834568316116929, 'learning_rate': 4.4e-06, 'epoch': 2.79})
23
+ Step 2300, Loss: {'mse_loss': 0.1580769121646881, 'totoal_loss': 0.1580769121646881, 'data_time': 0.027192341163754463, 'model_time': 0.7248490918427706, 'learning_rate': 4.600000000000001e-06, 'epoch': 2.92})
24
+ Step 2400, Loss: {'mse_loss': 0.17037375271320343, 'totoal_loss': 0.17037375271320343, 'data_time': 0.009597462136298418, 'model_time': 0.7570551796816289, 'learning_rate': 4.800000000000001e-06, 'epoch': 3.05})
25
+ Step 2500, Loss: {'mse_loss': 0.16214317083358765, 'totoal_loss': 0.16214317083358765, 'data_time': 0.009747655130922794, 'model_time': 0.7733749207109213, 'learning_rate': 5e-06, 'epoch': 3.17})
26
+ Step 2600, Loss: {'mse_loss': 0.12484731525182724, 'totoal_loss': 0.12484731525182724, 'data_time': 0.011350765358656645, 'model_time': 0.7432483653537929, 'learning_rate': 5.2e-06, 'epoch': 3.3})
27
+ Step 2700, Loss: {'mse_loss': 0.13633295893669128, 'totoal_loss': 0.13633295893669128, 'data_time': 0.01023395685479045, 'model_time': 1.0705626970157027, 'learning_rate': 5.400000000000001e-06, 'epoch': 3.43})
28
+ Step 2800, Loss: {'mse_loss': 0.10111906379461288, 'totoal_loss': 0.10111906379461288, 'data_time': 0.009831846691668034, 'model_time': 0.7449092618189752, 'learning_rate': 5.600000000000001e-06, 'epoch': 3.55})
29
+ Step 2900, Loss: {'mse_loss': 0.0907476395368576, 'totoal_loss': 0.0907476395368576, 'data_time': 0.014561851043254137, 'model_time': 0.7744587152265012, 'learning_rate': 5.8e-06, 'epoch': 3.68})
30
+ Step 3000, Loss: {'mse_loss': 0.21074657142162323, 'totoal_loss': 0.21074657142162323, 'data_time': 0.009545382112264633, 'model_time': 0.7964987535960972, 'learning_rate': 6e-06, 'epoch': 3.81})
31
+ Step 3100, Loss: {'mse_loss': 0.09521438181400299, 'totoal_loss': 0.09521438181400299, 'data_time': 0.008977666031569242, 'model_time': 0.7668130449019372, 'learning_rate': 6.200000000000001e-06, 'epoch': 3.93})
32
+ Step 3200, Loss: {'mse_loss': 0.19754205644130707, 'totoal_loss': 0.19754205644130707, 'data_time': 0.0244752150028944, 'model_time': 0.7749899607151747, 'learning_rate': 6.4000000000000006e-06, 'epoch': 4.06})
33
+ Step 3300, Loss: {'mse_loss': 0.16106407344341278, 'totoal_loss': 0.16106407344341278, 'data_time': 0.025698610115796328, 'model_time': 0.7431431356817484, 'learning_rate': 6.600000000000001e-06, 'epoch': 4.19})
34
+ Step 3400, Loss: {'mse_loss': 0.12087151408195496, 'totoal_loss': 0.12087151408195496, 'data_time': 0.02236542059108615, 'model_time': 0.7473325859755278, 'learning_rate': 6.800000000000001e-06, 'epoch': 4.31})
35
+ Step 3500, Loss: {'mse_loss': 0.11029071360826492, 'totoal_loss': 0.11029071360826492, 'data_time': 0.02319052116945386, 'model_time': 0.7267172317951918, 'learning_rate': 7e-06, 'epoch': 4.44})
36
+ Step 3600, Loss: {'mse_loss': 0.11575547605752945, 'totoal_loss': 0.11575547605752945, 'data_time': 0.03410137118771672, 'model_time': 0.8196418308652937, 'learning_rate': 7.2000000000000005e-06, 'epoch': 4.57})
37
+ Step 3700, Loss: {'mse_loss': 0.1662180870771408, 'totoal_loss': 0.1662180870771408, 'data_time': 0.02936156466603279, 'model_time': 0.7460642280057073, 'learning_rate': 7.4e-06, 'epoch': 4.7})
38
+ Step 3800, Loss: {'mse_loss': 0.1185622587800026, 'totoal_loss': 0.1185622587800026, 'data_time': 0.025364276953041553, 'model_time': 0.7291862419806421, 'learning_rate': 7.600000000000001e-06, 'epoch': 4.82})
39
+ Step 3900, Loss: {'mse_loss': 0.09371541440486908, 'totoal_loss': 0.09371541440486908, 'data_time': 0.025391587987542152, 'model_time': 0.7389724999666214, 'learning_rate': 7.800000000000002e-06, 'epoch': 4.95})
40
+ Step 4000, Loss: {'mse_loss': 0.12319795042276382, 'totoal_loss': 0.12319795042276382, 'data_time': 0.01902013272047043, 'model_time': 0.8369483901187778, 'learning_rate': 8.000000000000001e-06, 'epoch': 5.08})
41
+ Step 4100, Loss: {'mse_loss': 0.11404947936534882, 'totoal_loss': 0.11404947936534882, 'data_time': 0.018049770034849644, 'model_time': 0.7828021226450801, 'learning_rate': 8.2e-06, 'epoch': 5.2})
42
+ Step 4200, Loss: {'mse_loss': 0.1110425814986229, 'totoal_loss': 0.1110425814986229, 'data_time': 0.0159757100045681, 'model_time': 0.8336609331890941, 'learning_rate': 8.400000000000001e-06, 'epoch': 5.33})
43
+ Step 4300, Loss: {'mse_loss': 0.11248639971017838, 'totoal_loss': 0.11248639971017838, 'data_time': 0.018169126007705927, 'model_time': 0.7657390721142292, 'learning_rate': 8.6e-06, 'epoch': 5.46})
44
+ Step 4400, Loss: {'mse_loss': 0.19285795092582703, 'totoal_loss': 0.19285795092582703, 'data_time': 0.016414958983659744, 'model_time': 0.7369585689157248, 'learning_rate': 8.8e-06, 'epoch': 5.58})
45
+ Step 4500, Loss: {'mse_loss': 0.08137202262878418, 'totoal_loss': 0.08137202262878418, 'data_time': 0.015866965986788273, 'model_time': 0.7630861052311957, 'learning_rate': 9e-06, 'epoch': 5.71})
46
+ Step 4600, Loss: {'mse_loss': 0.1358776092529297, 'totoal_loss': 0.1358776092529297, 'data_time': 0.00894372584298253, 'model_time': 0.7414673450402915, 'learning_rate': 9.200000000000002e-06, 'epoch': 5.84})
47
+ Step 4700, Loss: {'mse_loss': 0.1277284175157547, 'totoal_loss': 0.1277284175157547, 'data_time': 0.016631336882710457, 'model_time': 0.7583730169571936, 'learning_rate': 9.4e-06, 'epoch': 5.96})
48
+ Step 4800, Loss: {'mse_loss': 0.12439332902431488, 'totoal_loss': 0.12439332902431488, 'data_time': 0.017469827085733414, 'model_time': 0.7347076120786369, 'learning_rate': 9.600000000000001e-06, 'epoch': 6.09})
49
+ Step 4900, Loss: {'mse_loss': 0.06776024401187897, 'totoal_loss': 0.06776024401187897, 'data_time': 0.015035773161798716, 'model_time': 0.7218696200288832, 'learning_rate': 9.800000000000001e-06, 'epoch': 6.22})
50
+ Step 5000, Loss: {'mse_loss': 0.15458481013774872, 'totoal_loss': 0.15458481013774872, 'data_time': 0.015093048568814993, 'model_time': 0.7320089368149638, 'learning_rate': 1e-05, 'epoch': 6.35})
51
+ Step 5100, Loss: {'mse_loss': 0.0994928628206253, 'totoal_loss': 0.0994928628206253, 'data_time': 0.01663264585658908, 'model_time': 0.7654334274120629, 'learning_rate': 9.999615090493604e-06, 'epoch': 6.47})
52
+ Step 5200, Loss: {'mse_loss': 0.15730398893356323, 'totoal_loss': 0.15730398893356323, 'data_time': 0.015531073790043592, 'model_time': 0.7831890089437366, 'learning_rate': 9.998460422756089e-06, 'epoch': 6.6})
53
+ Step 5300, Loss: {'mse_loss': 0.08874562382698059, 'totoal_loss': 0.08874562382698059, 'data_time': 0.016653239261358976, 'model_time': 0.9720573099330068, 'learning_rate': 9.996536179122874e-06, 'epoch': 6.73})
54
+ Step 5400, Loss: {'mse_loss': 0.07695244252681732, 'totoal_loss': 0.07695244252681732, 'data_time': 0.015733540058135986, 'model_time': 0.7367277587763965, 'learning_rate': 9.993842663454337e-06, 'epoch': 6.85})
55
+ Step 5500, Loss: {'mse_loss': 0.06693663448095322, 'totoal_loss': 0.06693663448095322, 'data_time': 0.014571698382496834, 'model_time': 0.7305727931670845, 'learning_rate': 9.990380301087824e-06, 'epoch': 6.98})
56
+ Step 5600, Loss: {'mse_loss': 0.15460722148418427, 'totoal_loss': 0.15460722148418427, 'data_time': 0.022854431066662073, 'model_time': 0.7508455091156065, 'learning_rate': 9.986149638770493e-06, 'epoch': 7.11})
57
+ Step 5700, Loss: {'mse_loss': 0.05605066567659378, 'totoal_loss': 0.05605066567659378, 'data_time': 0.023200951050966978, 'model_time': 0.805789983831346, 'learning_rate': 9.981151344572967e-06, 'epoch': 7.23})
58
+ Step 5800, Loss: {'mse_loss': 0.0770120844244957, 'totoal_loss': 0.0770120844244957, 'data_time': 0.026078850030899048, 'model_time': 0.7392798759974539, 'learning_rate': 9.975386207783839e-06, 'epoch': 7.36})
59
+ Step 5900, Loss: {'mse_loss': 0.05276618152856827, 'totoal_loss': 0.05276618152856827, 'data_time': 0.02569778962060809, 'model_time': 0.7476164591498673, 'learning_rate': 9.968855138785041e-06, 'epoch': 7.49})
60
+ Step 6000, Loss: {'mse_loss': 0.08414631336927414, 'totoal_loss': 0.08414631336927414, 'data_time': 0.024126163683831692, 'model_time': 0.7824595076963305, 'learning_rate': 9.961559168908081e-06, 'epoch': 7.61})
61
+ Step 6100, Loss: {'mse_loss': 0.11867716163396835, 'totoal_loss': 0.11867716163396835, 'data_time': 0.03071065293624997, 'model_time': 0.7578357881866395, 'learning_rate': 9.953499450271174e-06, 'epoch': 7.74})
62
+ Step 6200, Loss: {'mse_loss': 0.07785877585411072, 'totoal_loss': 0.07785877585411072, 'data_time': 0.024496927857398987, 'model_time': 0.9530467409640551, 'learning_rate': 9.944677255597332e-06, 'epoch': 7.87})
63
+ Step 6300, Loss: {'mse_loss': 0.09241192787885666, 'totoal_loss': 0.09241192787885666, 'data_time': 0.022054677363485098, 'model_time': 0.7059646998532116, 'learning_rate': 9.935093978013357e-06, 'epoch': 7.99})
64
+ Step 6400, Loss: {'mse_loss': 0.0810936689376831, 'totoal_loss': 0.0810936689376831, 'data_time': 0.009328124113380909, 'model_time': 0.7433861140161753, 'learning_rate': 9.924751130829878e-06, 'epoch': 8.12})
65
+ Step 6500, Loss: {'mse_loss': 0.08165843784809113, 'totoal_loss': 0.08165843784809113, 'data_time': 0.009405883029103279, 'model_time': 0.7640599617734551, 'learning_rate': 9.91365034730236e-06, 'epoch': 8.25})
66
+ Step 6600, Loss: {'mse_loss': 0.09128487855195999, 'totoal_loss': 0.09128487855195999, 'data_time': 0.009974812157452106, 'model_time': 0.7241516588255763, 'learning_rate': 9.901793380373204e-06, 'epoch': 8.38})
67
+ Step 6700, Loss: {'mse_loss': 0.08205197751522064, 'totoal_loss': 0.08205197751522064, 'data_time': 0.008057836908847094, 'model_time': 0.7925655329599977, 'learning_rate': 9.889182102394944e-06, 'epoch': 8.5})
68
+ Step 6800, Loss: {'mse_loss': 0.11988318711519241, 'totoal_loss': 0.11988318711519241, 'data_time': 0.00811516959220171, 'model_time': 0.7346371179446578, 'learning_rate': 9.875818504834564e-06, 'epoch': 8.63})
69
+ Step 6900, Loss: {'mse_loss': 0.07715649902820587, 'totoal_loss': 0.07715649902820587, 'data_time': 0.007867537904530764, 'model_time': 0.8134943060576916, 'learning_rate': 9.861704697959036e-06, 'epoch': 8.76})
70
+ Step 7000, Loss: {'mse_loss': 0.10622767359018326, 'totoal_loss': 0.10622767359018326, 'data_time': 0.014380124863237143, 'model_time': 0.7330741412006319, 'learning_rate': 9.846842910502077e-06, 'epoch': 8.88})
71
+ Step 7100, Loss: {'mse_loss': 0.06144655868411064, 'totoal_loss': 0.06144655868411064, 'data_time': 0.008170960005372763, 'model_time': 0.7865135739557445, 'learning_rate': 9.831235489312212e-06, 'epoch': 9.01})
72
+ Step 7200, Loss: {'mse_loss': 0.06409521400928497, 'totoal_loss': 0.06409521400928497, 'data_time': 0.00726478174328804, 'model_time': 0.783663755748421, 'learning_rate': 9.814884898982168e-06, 'epoch': 9.14})
73
+ Step 7300, Loss: {'mse_loss': 0.10851515829563141, 'totoal_loss': 0.10851515829563141, 'data_time': 0.013058023992925882, 'model_time': 0.7270851512439549, 'learning_rate': 9.797793721459709e-06, 'epoch': 9.26})
74
+ Step 7400, Loss: {'mse_loss': 0.03925890848040581, 'totoal_loss': 0.03925890848040581, 'data_time': 0.013571765273809433, 'model_time': 0.8424705080688, 'learning_rate': 9.779964655639886e-06, 'epoch': 9.39})
75
+ Step 7500, Loss: {'mse_loss': 0.04284988343715668, 'totoal_loss': 0.04284988343715668, 'data_time': 0.008240330033004284, 'model_time': 0.8415325121022761, 'learning_rate': 9.761400516938874e-06, 'epoch': 9.52})
76
+ Step 7600, Loss: {'mse_loss': 0.0535852387547493, 'totoal_loss': 0.0535852387547493, 'data_time': 0.009512457996606827, 'model_time': 0.7922786423005164, 'learning_rate': 9.74210423684938e-06, 'epoch': 9.64})
77
+ Step 7700, Loss: {'mse_loss': 0.09136828780174255, 'totoal_loss': 0.09136828780174255, 'data_time': 0.009468929842114449, 'model_time': 0.768640395719558, 'learning_rate': 9.722078862477715e-06, 'epoch': 9.77})
78
+ Step 7800, Loss: {'mse_loss': 0.046690985560417175, 'totoal_loss': 0.046690985560417175, 'data_time': 0.010254062712192535, 'model_time': 0.7335716271772981, 'learning_rate': 9.701327556062637e-06, 'epoch': 9.9})
79
+ Step 7900, Loss: {'mse_loss': 0.04780199006199837, 'totoal_loss': 0.04780199006199837, 'data_time': 0.009250594768673182, 'model_time': 0.7732899677939713, 'learning_rate': 9.679853594475985e-06, 'epoch': 10.03})
80
+ Step 8000, Loss: {'mse_loss': 0.03617454692721367, 'totoal_loss': 0.03617454692721367, 'data_time': 0.01069760974496603, 'model_time': 0.9965582732111216, 'learning_rate': 9.657660368705225e-06, 'epoch': 10.15})
81
+ Step 8100, Loss: {'mse_loss': 0.031282857060432434, 'totoal_loss': 0.031282857060432434, 'data_time': 0.007998690009117126, 'model_time': 0.7917103748768568, 'learning_rate': 9.634751383317983e-06, 'epoch': 10.28})
82
+ Step 8200, Loss: {'mse_loss': 0.04072992503643036, 'totoal_loss': 0.04072992503643036, 'data_time': 0.009731750935316086, 'model_time': 0.7299374579451978, 'learning_rate': 9.611130255908619e-06, 'epoch': 10.41})
83
+ Step 8300, Loss: {'mse_loss': 0.028569061309099197, 'totoal_loss': 0.028569061309099197, 'data_time': 0.01049775630235672, 'model_time': 0.7778177722357213, 'learning_rate': 9.586800716526974e-06, 'epoch': 10.53})
84
+ Step 8400, Loss: {'mse_loss': 0.049879007041454315, 'totoal_loss': 0.049879007041454315, 'data_time': 0.010852776002138853, 'model_time': 0.8053885563276708, 'learning_rate': 9.561766607089355e-06, 'epoch': 10.66})
85
+ Step 8500, Loss: {'mse_loss': 0.11407889425754547, 'totoal_loss': 0.11407889425754547, 'data_time': 0.009254509583115578, 'model_time': 0.7649242817424238, 'learning_rate': 9.536031880771846e-06, 'epoch': 10.79})
86
+ Step 8600, Loss: {'mse_loss': 0.05838330090045929, 'totoal_loss': 0.05838330090045929, 'data_time': 0.008609983138740063, 'model_time': 0.8891206649132073, 'learning_rate': 9.50960060138606e-06, 'epoch': 10.91})
87
+ Step 8700, Loss: {'mse_loss': 0.0711112767457962, 'totoal_loss': 0.0711112767457962, 'data_time': 0.015254042111337185, 'model_time': 0.7297738920897245, 'learning_rate': 9.482476942737411e-06, 'epoch': 11.04})
88
+ Step 8800, Loss: {'mse_loss': 0.06453604996204376, 'totoal_loss': 0.06453604996204376, 'data_time': 0.017234832048416138, 'model_time': 0.7441357360221446, 'learning_rate': 9.45466518796603e-06, 'epoch': 11.17})
89
+ Step 8900, Loss: {'mse_loss': 0.08376137912273407, 'totoal_loss': 0.08376137912273407, 'data_time': 0.015932894311845303, 'model_time': 0.7747832210734487, 'learning_rate': 9.426169728870399e-06, 'epoch': 11.29})
90
+ Step 9000, Loss: {'mse_loss': 0.062104109674692154, 'totoal_loss': 0.062104109674692154, 'data_time': 0.015577560290694237, 'model_time': 0.7349460972473025, 'learning_rate': 9.396995065213835e-06, 'epoch': 11.42})
91
+ Step 9100, Loss: {'mse_loss': 0.03587133809924126, 'totoal_loss': 0.03587133809924126, 'data_time': 0.014899152796715498, 'model_time': 0.7395176780410111, 'learning_rate': 9.367145804013938e-06, 'epoch': 11.55})
92
+ Step 9200, Loss: {'mse_loss': 0.05240808054804802, 'totoal_loss': 0.05240808054804802, 'data_time': 0.017789734061807394, 'model_time': 0.7570117227733135, 'learning_rate': 9.336626658815071e-06, 'epoch': 11.68})
93
+ Step 9300, Loss: {'mse_loss': 0.05968637391924858, 'totoal_loss': 0.05968637391924858, 'data_time': 0.01739036664366722, 'model_time': 0.7714529181830585, 'learning_rate': 9.305442448944056e-06, 'epoch': 11.8})
94
+ Step 9400, Loss: {'mse_loss': 0.048654474318027496, 'totoal_loss': 0.048654474318027496, 'data_time': 0.016702371183782816, 'model_time': 0.789449327159673, 'learning_rate': 9.273598098749124e-06, 'epoch': 11.93})
95
+ Step 9500, Loss: {'mse_loss': 0.11795701086521149, 'totoal_loss': 0.11795701086521149, 'data_time': 0.007700970862060785, 'model_time': 0.7642626469023526, 'learning_rate': 9.241098636822324e-06, 'epoch': 12.06})
96
+ Step 9600, Loss: {'mse_loss': 0.06266099959611893, 'totoal_loss': 0.06266099959611893, 'data_time': 0.008504260331392288, 'model_time': 0.7776151625439525, 'learning_rate': 9.207949195205442e-06, 'epoch': 12.18})
97
+ Step 9700, Loss: {'mse_loss': 0.03476308286190033, 'totoal_loss': 0.03476308286190033, 'data_time': 0.008460930082947016, 'model_time': 0.7872980637475848, 'learning_rate': 9.174155008579588e-06, 'epoch': 12.31})
98
+ Step 9800, Loss: {'mse_loss': 0.04550958797335625, 'totoal_loss': 0.04550958797335625, 'data_time': 0.011401410214602947, 'model_time': 0.7667171829380095, 'learning_rate': 9.139721413438583e-06, 'epoch': 12.44})
99
+ Step 9900, Loss: {'mse_loss': 0.07214970886707306, 'totoal_loss': 0.07214970886707306, 'data_time': 0.008187336847186089, 'model_time': 0.7915225327014923, 'learning_rate': 9.104653847246273e-06, 'epoch': 12.56})
100
+ Step 10000, Loss: {'mse_loss': 0.07320892810821533, 'totoal_loss': 0.07320892810821533, 'data_time': 0.008361983112990856, 'model_time': 0.7247937670908868, 'learning_rate': 9.068957847577869e-06, 'epoch': 12.69})
101
+ Step 10100, Loss: {'mse_loss': 0.051298510283231735, 'totoal_loss': 0.051298510283231735, 'data_time': 0.010434537194669247, 'model_time': 0.7780150189064443, 'learning_rate': 9.032639051245524e-06, 'epoch': 12.82})
102
+ Step 10200, Loss: {'mse_loss': 0.01695893704891205, 'totoal_loss': 0.01695893704891205, 'data_time': 0.008230515755712986, 'model_time': 0.8424476743675768, 'learning_rate': 8.995703193408199e-06, 'epoch': 12.94})
103
+ Step 10300, Loss: {'mse_loss': 0.0378781333565712, 'totoal_loss': 0.0378781333565712, 'data_time': 0.024513511918485165, 'model_time': 0.8311026599258184, 'learning_rate': 8.958156106666017e-06, 'epoch': 13.07})
104
+ Step 10400, Loss: {'mse_loss': 0.0319986417889595, 'totoal_loss': 0.0319986417889595, 'data_time': 0.02256831480190158, 'model_time': 0.7365965321660042, 'learning_rate': 8.92000372013924e-06, 'epoch': 13.2})
105
+ Step 10500, Loss: {'mse_loss': 0.02667149528861046, 'totoal_loss': 0.02667149528861046, 'data_time': 0.024225509725511074, 'model_time': 0.7542753238230944, 'learning_rate': 8.881252058531973e-06, 'epoch': 13.32})
106
+ Step 10600, Loss: {'mse_loss': 0.04411934316158295, 'totoal_loss': 0.04411934316158295, 'data_time': 0.022793537005782127, 'model_time': 0.7514526699669659, 'learning_rate': 8.841907241180809e-06, 'epoch': 13.45})
107
+ Step 10700, Loss: {'mse_loss': 0.048936981707811356, 'totoal_loss': 0.048936981707811356, 'data_time': 0.025745405815541744, 'model_time': 0.7092067152261734, 'learning_rate': 8.801975481088507e-06, 'epoch': 13.58})
108
+ Step 10800, Loss: {'mse_loss': 0.0730791836977005, 'totoal_loss': 0.0730791836977005, 'data_time': 0.022243953309953213, 'model_time': 0.7321582539007068, 'learning_rate': 8.761463083942889e-06, 'epoch': 13.71})
109
+ Step 10900, Loss: {'mse_loss': 0.048997364938259125, 'totoal_loss': 0.048997364938259125, 'data_time': 0.02530029695481062, 'model_time': 0.7795447711832821, 'learning_rate': 8.720376447121098e-06, 'epoch': 13.83})
110
+ Step 11000, Loss: {'mse_loss': 0.03378389775753021, 'totoal_loss': 0.03378389775753021, 'data_time': 0.023184253368526697, 'model_time': 0.7471874905750155, 'learning_rate': 8.678722058679382e-06, 'epoch': 13.96})
111
+ Step 11100, Loss: {'mse_loss': 0.06856508553028107, 'totoal_loss': 0.06856508553028107, 'data_time': 0.009747914038598537, 'model_time': 0.7731305938214064, 'learning_rate': 8.636506496328546e-06, 'epoch': 14.09})
112
+ Step 11200, Loss: {'mse_loss': 0.03644552081823349, 'totoal_loss': 0.03644552081823349, 'data_time': 0.007274373900145292, 'model_time': 0.8453740123659372, 'learning_rate': 8.593736426395268e-06, 'epoch': 14.21})
113
+ Step 11300, Loss: {'mse_loss': 0.04671734198927879, 'totoal_loss': 0.04671734198927879, 'data_time': 0.009983416646718979, 'model_time': 1.014041201211512, 'learning_rate': 8.550418602769392e-06, 'epoch': 14.34})
114
+ Step 11400, Loss: {'mse_loss': 0.06632492691278458, 'totoal_loss': 0.06632492691278458, 'data_time': 0.008539238944649696, 'model_time': 0.7822092231363058, 'learning_rate': 8.506559865837425e-06, 'epoch': 14.47})
115
+ Step 11500, Loss: {'mse_loss': 0.06272982805967331, 'totoal_loss': 0.06272982805967331, 'data_time': 0.010354700963944197, 'model_time': 0.772625498007983, 'learning_rate': 8.462167141402359e-06, 'epoch': 14.59})
116
+ Step 11600, Loss: {'mse_loss': 0.04006122797727585, 'totoal_loss': 0.04006122797727585, 'data_time': 0.008710832800716162, 'model_time': 0.7680102717131376, 'learning_rate': 8.417247439589994e-06, 'epoch': 14.72})
117
+ Step 11700, Loss: {'mse_loss': 0.1081642135977745, 'totoal_loss': 0.1081642135977745, 'data_time': 0.009279041085392237, 'model_time': 0.8264247211627662, 'learning_rate': 8.371807853741978e-06, 'epoch': 14.85})
118
+ Step 11800, Loss: {'mse_loss': 0.02240980602800846, 'totoal_loss': 0.02240980602800846, 'data_time': 0.008143061771988869, 'model_time': 0.7493035029619932, 'learning_rate': 8.325855559295663e-06, 'epoch': 14.97})
119
+ Step 11900, Loss: {'mse_loss': 0.07136370241641998, 'totoal_loss': 0.07136370241641998, 'data_time': 0.009795189835131168, 'model_time': 0.7670497139915824, 'learning_rate': 8.279397812651042e-06, 'epoch': 15.1})
120
+ Step 12000, Loss: {'mse_loss': 0.026557136327028275, 'totoal_loss': 0.026557136327028275, 'data_time': 0.009835476987063885, 'model_time': 0.7494979929178953, 'learning_rate': 8.232441950024864e-06, 'epoch': 15.23})
121
+ Step 12100, Loss: {'mse_loss': 0.05431332439184189, 'totoal_loss': 0.05431332439184189, 'data_time': 0.008384974207729101, 'model_time': 0.828038805630058, 'learning_rate': 8.184995386292166e-06, 'epoch': 15.36})
122
+ Step 12200, Loss: {'mse_loss': 0.03227468580007553, 'totoal_loss': 0.03227468580007553, 'data_time': 0.008605090901255608, 'model_time': 0.791831165086478, 'learning_rate': 8.137065613815381e-06, 'epoch': 15.48})
123
+ Step 12300, Loss: {'mse_loss': 0.02775513008236885, 'totoal_loss': 0.02775513008236885, 'data_time': 0.000506899319589138, 'model_time': 0.7523649446666241, 'learning_rate': 8.088660201261203e-06, 'epoch': 15.61})
124
+ Step 12400, Loss: {'mse_loss': 0.05211569741368294, 'totoal_loss': 0.05211569741368294, 'data_time': 0.00037787389010190964, 'model_time': 0.8185549592599273, 'learning_rate': 8.039786792405404e-06, 'epoch': 15.74})
125
+ Step 12500, Loss: {'mse_loss': 0.05637776106595993, 'totoal_loss': 0.05637776106595993, 'data_time': 0.0003445446491241455, 'model_time': 0.8336382331326604, 'learning_rate': 7.990453104925807e-06, 'epoch': 15.86})
126
+ Step 12600, Loss: {'mse_loss': 0.04886741191148758, 'totoal_loss': 0.04886741191148758, 'data_time': 0.0004656710661947727, 'model_time': 0.7583390837535262, 'learning_rate': 7.940666929183554e-06, 'epoch': 15.99})
127
+ Step 12700, Loss: {'mse_loss': 0.05853917449712753, 'totoal_loss': 0.05853917449712753, 'data_time': 0.015836885664612055, 'model_time': 0.7571614729240537, 'learning_rate': 7.89043612699294e-06, 'epoch': 16.12})
128
+ Step 12800, Loss: {'mse_loss': 0.03540212661027908, 'totoal_loss': 0.03540212661027908, 'data_time': 0.015624318271875381, 'model_time': 0.7239974248223007, 'learning_rate': 7.839768630379917e-06, 'epoch': 16.24})
129
+ Step 12900, Loss: {'mse_loss': 0.025893617421388626, 'totoal_loss': 0.025893617421388626, 'data_time': 0.0174351017922163, 'model_time': 0.7800273299217224, 'learning_rate': 7.788672440329562e-06, 'epoch': 16.37})
130
+ Step 13000, Loss: {'mse_loss': 0.04365288466215134, 'totoal_loss': 0.04365288466215134, 'data_time': 0.012093709781765938, 'model_time': 0.7990098809823394, 'learning_rate': 7.737155625522608e-06, 'epoch': 16.5})
131
+ Step 13100, Loss: {'mse_loss': 0.05387548357248306, 'totoal_loss': 0.05387548357248306, 'data_time': 0.011161211878061295, 'model_time': 0.7361771394498646, 'learning_rate': 7.685226321061318e-06, 'epoch': 16.62})
132
+ Step 13200, Loss: {'mse_loss': 0.02579922415316105, 'totoal_loss': 0.02579922415316105, 'data_time': 0.007771503180265427, 'model_time': 0.7679491410963237, 'learning_rate': 7.632892727184844e-06, 'epoch': 16.75})
133
+ Step 13300, Loss: {'mse_loss': 0.04569493979215622, 'totoal_loss': 0.04569493979215622, 'data_time': 0.011373712215572596, 'model_time': 0.8299534060060978, 'learning_rate': 7.580163107974335e-06, 'epoch': 16.88})
134
+ Step 13400, Loss: {'mse_loss': 0.02600446529686451, 'totoal_loss': 0.02600446529686451, 'data_time': 0.02053620433434844, 'model_time': 0.8251949092373252, 'learning_rate': 7.527045790047922e-06, 'epoch': 17.01})
135
+ Step 13500, Loss: {'mse_loss': 0.039323773235082626, 'totoal_loss': 0.039323773235082626, 'data_time': 0.00045350799337029457, 'model_time': 0.7637320561334491, 'learning_rate': 7.473549161245862e-06, 'epoch': 17.13})
136
+ Step 13600, Loss: {'mse_loss': 0.019490042701363564, 'totoal_loss': 0.019490042701363564, 'data_time': 0.0005287909880280495, 'model_time': 0.7739832159131765, 'learning_rate': 7.419681669305998e-06, 'epoch': 17.26})
137
+ Step 13700, Loss: {'mse_loss': 0.02689739502966404, 'totoal_loss': 0.02689739502966404, 'data_time': 0.00038362713530659676, 'model_time': 0.7714043809100986, 'learning_rate': 7.365451820529756e-06, 'epoch': 17.39})
138
+ Step 13800, Loss: {'mse_loss': 0.08068873733282089, 'totoal_loss': 0.08068873733282089, 'data_time': 0.0003847740590572357, 'model_time': 0.7729943431913853, 'learning_rate': 7.310868178438909e-06, 'epoch': 17.51})
139
+ Step 13900, Loss: {'mse_loss': 0.06496807187795639, 'totoal_loss': 0.06496807187795639, 'data_time': 0.00041263503953814507, 'model_time': 0.8341999468393624, 'learning_rate': 7.2559393624232985e-06, 'epoch': 17.64})
140
+ Step 14000, Loss: {'mse_loss': 0.01927408203482628, 'totoal_loss': 0.01927408203482628, 'data_time': 0.0006135283038020134, 'model_time': 0.7672582301311195, 'learning_rate': 7.2006740463797296e-06, 'epoch': 17.77})
141
+ Step 14100, Loss: {'mse_loss': 0.0772613137960434, 'totoal_loss': 0.0772613137960434, 'data_time': 0.00040899310261011124, 'model_time': 0.7916250959970057, 'learning_rate': 7.145080957342262e-06, 'epoch': 17.89})
142
+ Step 14200, Loss: {'mse_loss': 0.05731545388698578, 'totoal_loss': 0.05731545388698578, 'data_time': 0.015750038903206587, 'model_time': 0.7572832740843296, 'learning_rate': 7.0891688741041065e-06, 'epoch': 18.02})
143
+ Step 14300, Loss: {'mse_loss': 0.02492966502904892, 'totoal_loss': 0.02492966502904892, 'data_time': 0.015360495075583458, 'model_time': 0.7445568782277405, 'learning_rate': 7.032946625831363e-06, 'epoch': 18.15})
144
+ Step 14400, Loss: {'mse_loss': 0.027083637192845345, 'totoal_loss': 0.027083637192845345, 'data_time': 0.015726578887552023, 'model_time': 0.7790642008185387, 'learning_rate': 6.976423090668781e-06, 'epoch': 18.27})
145
+ Step 14500, Loss: {'mse_loss': 0.03844459727406502, 'totoal_loss': 0.03844459727406502, 'data_time': 0.01797384489327669, 'model_time': 0.7171405591070652, 'learning_rate': 6.919607194337806e-06, 'epoch': 18.4})
146
+ Step 14600, Loss: {'mse_loss': 0.016108417883515358, 'totoal_loss': 0.016108417883515358, 'data_time': 0.01731900731101632, 'model_time': 0.7588826757855713, 'learning_rate': 6.8625079087270976e-06, 'epoch': 18.53})
147
+ Step 14700, Loss: {'mse_loss': 0.02764224074780941, 'totoal_loss': 0.02764224074780941, 'data_time': 0.017759301234036684, 'model_time': 0.8126569422893226, 'learning_rate': 6.8051342504757714e-06, 'epoch': 18.65})
148
+ Step 14800, Loss: {'mse_loss': 0.025114314630627632, 'totoal_loss': 0.025114314630627632, 'data_time': 0.015225007198750973, 'model_time': 0.7531802677549422, 'learning_rate': 6.747495279549561e-06, 'epoch': 18.78})
149
+ Step 14900, Loss: {'mse_loss': 0.03275168687105179, 'totoal_loss': 0.03275168687105179, 'data_time': 0.017594764940440655, 'model_time': 0.7517180289141834, 'learning_rate': 6.6896000978101465e-06, 'epoch': 18.91})
150
+ Step 15000, Loss: {'mse_loss': 0.040069833397865295, 'totoal_loss': 0.040069833397865295, 'data_time': 0.01722449017688632, 'model_time': 0.7453289912082255, 'learning_rate': 6.631457847577869e-06, 'epoch': 19.04})
151
+ Step 15100, Loss: {'mse_loss': 0.039235085248947144, 'totoal_loss': 0.039235085248947144, 'data_time': 0.014291047118604183, 'model_time': 0.7675925139337778, 'learning_rate': 6.573077710188046e-06, 'epoch': 19.16})
152
+ Step 15200, Loss: {'mse_loss': 0.05039181932806969, 'totoal_loss': 0.05039181932806969, 'data_time': 0.016243125777691603, 'model_time': 0.7346944799646735, 'learning_rate': 6.5144689045411345e-06, 'epoch': 19.29})
153
+ Step 15300, Loss: {'mse_loss': 0.035284895449876785, 'totoal_loss': 0.035284895449876785, 'data_time': 0.015105856116861105, 'model_time': 0.809424411971122, 'learning_rate': 6.455640685646961e-06, 'epoch': 19.42})
154
+ Step 15400, Loss: {'mse_loss': 0.08202254772186279, 'totoal_loss': 0.08202254772186279, 'data_time': 0.014988320879638195, 'model_time': 0.7601998597383499, 'learning_rate': 6.396602343163248e-06, 'epoch': 19.54})
155
+ Step 15500, Loss: {'mse_loss': 0.053310830146074295, 'totoal_loss': 0.053310830146074295, 'data_time': 0.015309567097574472, 'model_time': 0.7290026298724115, 'learning_rate': 6.337363199928669e-06, 'epoch': 19.67})
156
+ Step 15600, Loss: {'mse_loss': 0.01694897934794426, 'totoal_loss': 0.01694897934794426, 'data_time': 0.015433360356837511, 'model_time': 0.7586588538251817, 'learning_rate': 6.277932610490659e-06, 'epoch': 19.8})
157
+ Step 15700, Loss: {'mse_loss': 0.0489339604973793, 'totoal_loss': 0.0489339604973793, 'data_time': 0.015459859743714333, 'model_time': 0.7815309166908264, 'learning_rate': 6.218319959628234e-06, 'epoch': 19.92})
158
+ Step 15800, Loss: {'mse_loss': 0.06115783378481865, 'totoal_loss': 0.06115783378481865, 'data_time': 0.008936162106692791, 'model_time': 0.7669623191468418, 'learning_rate': 6.158534660870018e-06, 'epoch': 20.05})
159
+ Step 15900, Loss: {'mse_loss': 0.0328025296330452, 'totoal_loss': 0.0328025296330452, 'data_time': 0.009912176057696342, 'model_time': 0.7497503650374711, 'learning_rate': 6.0985861550077345e-06, 'epoch': 20.18})
160
+ Step 16000, Loss: {'mse_loss': 0.02323273755609989, 'totoal_loss': 0.02323273755609989, 'data_time': 0.008578170090913773, 'model_time': 0.7561214799061418, 'learning_rate': 6.0384839086054095e-06, 'epoch': 20.3})
161
+ Step 16100, Loss: {'mse_loss': 0.018107300624251366, 'totoal_loss': 0.018107300624251366, 'data_time': 0.0072607542388141155, 'model_time': 0.7635089131072164, 'learning_rate': 5.978237412504472e-06, 'epoch': 20.43})
162
+ Step 16200, Loss: {'mse_loss': 0.029225990176200867, 'totoal_loss': 0.029225990176200867, 'data_time': 0.008168946951627731, 'model_time': 0.7972128703258932, 'learning_rate': 5.917856180325059e-06, 'epoch': 20.56})
163
+ Step 16300, Loss: {'mse_loss': 0.052090950310230255, 'totoal_loss': 0.052090950310230255, 'data_time': 0.008909310214221478, 'model_time': 0.7323768730275333, 'learning_rate': 5.857349746963692e-06, 'epoch': 20.69})
164
+ Step 16400, Loss: {'mse_loss': 0.016972264274954796, 'totoal_loss': 0.016972264274954796, 'data_time': 0.011031926143914461, 'model_time': 0.777611886151135, 'learning_rate': 5.796727667087611e-06, 'epoch': 20.81})
165
+ Step 16500, Loss: {'mse_loss': 0.04058176279067993, 'totoal_loss': 0.04058176279067993, 'data_time': 0.011006600223481655, 'model_time': 0.8462121081538498, 'learning_rate': 5.735999513625984e-06, 'epoch': 20.94})
166
+ Step 16600, Loss: {'mse_loss': 0.032770659774541855, 'totoal_loss': 0.032770659774541855, 'data_time': 0.014616210013628006, 'model_time': 0.7852478227578104, 'learning_rate': 5.675174876258223e-06, 'epoch': 21.07})
167
+ Step 16700, Loss: {'mse_loss': 0.08408059179782867, 'totoal_loss': 0.08408059179782867, 'data_time': 0.014988366048783064, 'model_time': 0.7494991971179843, 'learning_rate': 5.614263359899673e-06, 'epoch': 21.19})
168
+ Step 16800, Loss: {'mse_loss': 0.027875326573848724, 'totoal_loss': 0.027875326573848724, 'data_time': 0.014548693783581257, 'model_time': 0.7735193930566311, 'learning_rate': 5.553274583184875e-06, 'epoch': 21.32})
169
+ Step 16900, Loss: {'mse_loss': 0.044482018798589706, 'totoal_loss': 0.044482018798589706, 'data_time': 0.015466915909200907, 'model_time': 0.731514083687216, 'learning_rate': 5.492218176948673e-06, 'epoch': 21.45})
170
+ Step 17000, Loss: {'mse_loss': 0.06904694437980652, 'totoal_loss': 0.06904694437980652, 'data_time': 0.017156539019197226, 'model_time': 0.820197279099375, 'learning_rate': 5.431103782705404e-06, 'epoch': 21.57})
171
+ Step 17100, Loss: {'mse_loss': 0.014749614521861076, 'totoal_loss': 0.014749614521861076, 'data_time': 0.014422607142478228, 'model_time': 0.8264291826635599, 'learning_rate': 5.369941051126377e-06, 'epoch': 21.7})
172
+ Step 17200, Loss: {'mse_loss': 0.03297842666506767, 'totoal_loss': 0.03297842666506767, 'data_time': 0.014596838969737291, 'model_time': 0.7794377850368619, 'learning_rate': 5.308739640515932e-06, 'epoch': 21.83})
173
+ Step 17300, Loss: {'mse_loss': 0.027540626004338264, 'totoal_loss': 0.027540626004338264, 'data_time': 0.016102824825793505, 'model_time': 0.7544224350713193, 'learning_rate': 5.24750921528627e-06, 'epoch': 21.95})
174
+ Step 17400, Loss: {'mse_loss': 0.02447432465851307, 'totoal_loss': 0.02447432465851307, 'data_time': 0.009479687083512545, 'model_time': 0.7665174342691898, 'learning_rate': 5.186259444431344e-06, 'epoch': 22.08})
175
+ Step 17500, Loss: {'mse_loss': 0.027436917647719383, 'totoal_loss': 0.027436917647719383, 'data_time': 0.011137922294437885, 'model_time': 0.7457697321660817, 'learning_rate': 5.125e-06, 'epoch': 22.21})
176
+ Step 17600, Loss: {'mse_loss': 0.025701651349663734, 'totoal_loss': 0.025701651349663734, 'data_time': 0.008045635186135769, 'model_time': 0.7356606251560152, 'learning_rate': 5.063740555568656e-06, 'epoch': 22.34})
177
+ Step 17700, Loss: {'mse_loss': 0.029602453112602234, 'totoal_loss': 0.029602453112602234, 'data_time': 0.008708326146006584, 'model_time': 0.7809965559281409, 'learning_rate': 5.002490784713731e-06, 'epoch': 22.46})
178
+ Step 17800, Loss: {'mse_loss': 0.015967844054102898, 'totoal_loss': 0.015967844054102898, 'data_time': 0.009123546071350574, 'model_time': 0.7992711779661477, 'learning_rate': 4.9412603594840695e-06, 'epoch': 22.59})
179
+ Step 17900, Loss: {'mse_loss': 0.02132662944495678, 'totoal_loss': 0.02132662944495678, 'data_time': 0.008359044790267944, 'model_time': 0.7691788580268621, 'learning_rate': 4.8800589488736245e-06, 'epoch': 22.72})
180
+ Step 18000, Loss: {'mse_loss': 0.049503687769174576, 'totoal_loss': 0.049503687769174576, 'data_time': 0.008771723136305809, 'model_time': 0.8206444163806736, 'learning_rate': 4.818896217294598e-06, 'epoch': 22.84})
181
+ Step 18100, Loss: {'mse_loss': 0.02339758351445198, 'totoal_loss': 0.02339758351445198, 'data_time': 0.009497929364442825, 'model_time': 0.7390979351475835, 'learning_rate': 4.757781823051329e-06, 'epoch': 22.97})
182
+ Step 18200, Loss: {'mse_loss': 0.01980835199356079, 'totoal_loss': 0.01980835199356079, 'data_time': 0.016627825796604156, 'model_time': 0.7495496957562864, 'learning_rate': 4.696725416815128e-06, 'epoch': 23.1})
183
+ Step 18300, Loss: {'mse_loss': 0.06468608230352402, 'totoal_loss': 0.06468608230352402, 'data_time': 0.016765394248068333, 'model_time': 0.8510865080170333, 'learning_rate': 4.635736640100327e-06, 'epoch': 23.22})
184
+ Step 18400, Loss: {'mse_loss': 0.015837691724300385, 'totoal_loss': 0.015837691724300385, 'data_time': 0.01743156835436821, 'model_time': 0.7811591210775077, 'learning_rate': 4.574825123741778e-06, 'epoch': 23.35})
185
+ Step 18500, Loss: {'mse_loss': 0.024515148252248764, 'totoal_loss': 0.024515148252248764, 'data_time': 0.017291461117565632, 'model_time': 0.8183726901188493, 'learning_rate': 4.5140004863740165e-06, 'epoch': 23.48})
186
+ Step 18600, Loss: {'mse_loss': 0.05203885957598686, 'totoal_loss': 0.05203885957598686, 'data_time': 0.017422663047909737, 'model_time': 0.7433624230325222, 'learning_rate': 4.45327233291239e-06, 'epoch': 23.6})
187
+ Step 18700, Loss: {'mse_loss': 0.02557130716741085, 'totoal_loss': 0.02557130716741085, 'data_time': 0.01886606914922595, 'model_time': 0.7440478983335197, 'learning_rate': 4.39265025303631e-06, 'epoch': 23.73})
188
+ Step 18800, Loss: {'mse_loss': 0.03255730867385864, 'totoal_loss': 0.03255730867385864, 'data_time': 0.016595125198364258, 'model_time': 0.7644880739971995, 'learning_rate': 4.332143819674943e-06, 'epoch': 23.86})
189
+ Step 18900, Loss: {'mse_loss': 0.01578630320727825, 'totoal_loss': 0.01578630320727825, 'data_time': 0.01491283904761076, 'model_time': 0.7636307859793305, 'learning_rate': 4.271762587495529e-06, 'epoch': 23.98})
190
+ Step 19000, Loss: {'mse_loss': 0.023069972172379494, 'totoal_loss': 0.023069972172379494, 'data_time': 0.02340392069891095, 'model_time': 0.7566694929264486, 'learning_rate': 4.2115160913945914e-06, 'epoch': 24.11})
191
+ Step 19100, Loss: {'mse_loss': 0.060198381543159485, 'totoal_loss': 0.060198381543159485, 'data_time': 0.02363934274762869, 'model_time': 0.7255875873379409, 'learning_rate': 4.151413844992267e-06, 'epoch': 24.24})
192
+ Step 19200, Loss: {'mse_loss': 0.024800928309559822, 'totoal_loss': 0.024800928309559822, 'data_time': 0.0245091593824327, 'model_time': 0.7461005849763751, 'learning_rate': 4.091465339129985e-06, 'epoch': 24.37})
193
+ Step 19300, Loss: {'mse_loss': 0.01560334675014019, 'totoal_loss': 0.01560334675014019, 'data_time': 0.025510326959192753, 'model_time': 0.7606744379736483, 'learning_rate': 4.031680040371768e-06, 'epoch': 24.49})
194
+ Step 19400, Loss: {'mse_loss': 0.011166260577738285, 'totoal_loss': 0.011166260577738285, 'data_time': 0.02266567014157772, 'model_time': 0.7136264690198004, 'learning_rate': 3.972067389509344e-06, 'epoch': 24.62})
195
+ Step 19500, Loss: {'mse_loss': 0.04594065621495247, 'totoal_loss': 0.04594065621495247, 'data_time': 0.025407331995666027, 'model_time': 0.7506036008708179, 'learning_rate': 3.912636800071335e-06, 'epoch': 24.75})
196
+ Step 19600, Loss: {'mse_loss': 0.013871864415705204, 'totoal_loss': 0.013871864415705204, 'data_time': 0.03012346290051937, 'model_time': 0.7373063759878278, 'learning_rate': 3.853397656836754e-06, 'epoch': 24.87})
197
+ Step 19700, Loss: {'mse_loss': 0.07733973860740662, 'totoal_loss': 0.07733973860740662, 'data_time': 1.535412868950516, 'model_time': 0.7759799398481846, 'learning_rate': 3.7943593143530404e-06, 'epoch': 25.0})
198
+ Step 19800, Loss: {'mse_loss': 0.02915571630001068, 'totoal_loss': 0.02915571630001068, 'data_time': 0.020919122733175755, 'model_time': 0.7367320600897074, 'learning_rate': 3.735531095458867e-06, 'epoch': 25.13})
199
+ Step 19900, Loss: {'mse_loss': 0.023684145882725716, 'totoal_loss': 0.023684145882725716, 'data_time': 0.021394452080130577, 'model_time': 0.7540517388843, 'learning_rate': 3.6769222898119562e-06, 'epoch': 25.25})
200
+ Step 20000, Loss: {'mse_loss': 0.012145203538239002, 'totoal_loss': 0.012145203538239002, 'data_time': 0.02215716801583767, 'model_time': 0.7507941308431327, 'learning_rate': 3.618542152422132e-06, 'epoch': 25.38})
201
+ Step 20100, Loss: {'mse_loss': 0.013492057099938393, 'totoal_loss': 0.013492057099938393, 'data_time': 0.021714783273637295, 'model_time': 0.7289023119956255, 'learning_rate': 3.560399902189855e-06, 'epoch': 25.51})
202
+ Step 20200, Loss: {'mse_loss': 0.009940792806446552, 'totoal_loss': 0.009940792806446552, 'data_time': 0.022368924226611853, 'model_time': 0.7527616950683296, 'learning_rate': 3.502504720450441e-06, 'epoch': 25.63})
203
+ Step 20300, Loss: {'mse_loss': 0.01747497171163559, 'totoal_loss': 0.01747497171163559, 'data_time': 0.014978242106735706, 'model_time': 0.7733405688777566, 'learning_rate': 3.4448657495242304e-06, 'epoch': 25.76})
204
+ Step 20400, Loss: {'mse_loss': 0.03299151360988617, 'totoal_loss': 0.03299151360988617, 'data_time': 0.016063372138887644, 'model_time': 0.7944330852478743, 'learning_rate': 3.387492091272904e-06, 'epoch': 25.89})
205
+ Step 20500, Loss: {'mse_loss': 0.019465936347842216, 'totoal_loss': 0.019465936347842216, 'data_time': 0.021230280864983797, 'model_time': 0.726529966108501, 'learning_rate': 3.3303928056621955e-06, 'epoch': 26.02})
206
+ Step 20600, Loss: {'mse_loss': 0.04801729694008827, 'totoal_loss': 0.04801729694008827, 'data_time': 0.02177868178114295, 'model_time': 0.73876349395141, 'learning_rate': 3.2735769093312202e-06, 'epoch': 26.14})
207
+ Step 20700, Loss: {'mse_loss': 0.03261314332485199, 'totoal_loss': 0.03261314332485199, 'data_time': 0.023888139985501766, 'model_time': 0.7370286248624325, 'learning_rate': 3.217053374168639e-06, 'epoch': 26.27})
208
+ Step 20800, Loss: {'mse_loss': 0.016347242519259453, 'totoal_loss': 0.016347242519259453, 'data_time': 0.020850373897701502, 'model_time': 0.8331037987954915, 'learning_rate': 3.1608311258958953e-06, 'epoch': 26.4})
209
+ Step 20900, Loss: {'mse_loss': 0.015014465898275375, 'totoal_loss': 0.015014465898275375, 'data_time': 0.023593413177877665, 'model_time': 0.7410415336489677, 'learning_rate': 3.10491904265774e-06, 'epoch': 26.52})
210
+ Step 21000, Loss: {'mse_loss': 0.042750392109155655, 'totoal_loss': 0.042750392109155655, 'data_time': 0.023817978333681822, 'model_time': 0.748957937117666, 'learning_rate': 3.0493259536202714e-06, 'epoch': 26.65})
211
+ Step 21100, Loss: {'mse_loss': 0.0412050262093544, 'totoal_loss': 0.0412050262093544, 'data_time': 0.025462293066084385, 'model_time': 0.750264385715127, 'learning_rate': 2.9940606375767038e-06, 'epoch': 26.78})
212
+ Step 21200, Loss: {'mse_loss': 0.03506849333643913, 'totoal_loss': 0.03506849333643913, 'data_time': 0.02387206768617034, 'model_time': 0.791303925216198, 'learning_rate': 2.939131821561094e-06, 'epoch': 26.9})
213
+ Step 21300, Loss: {'mse_loss': 0.01345975324511528, 'totoal_loss': 0.01345975324511528, 'data_time': 0.022180134896188974, 'model_time': 0.8124392554163933, 'learning_rate': 2.8845481794702473e-06, 'epoch': 27.03})
214
+ Step 21400, Loss: {'mse_loss': 0.008520884439349174, 'totoal_loss': 0.008520884439349174, 'data_time': 0.021646955981850624, 'model_time': 0.7849385519511998, 'learning_rate': 2.830318330694004e-06, 'epoch': 27.16})
215
+ Step 21500, Loss: {'mse_loss': 0.052216317504644394, 'totoal_loss': 0.052216317504644394, 'data_time': 0.023225042037665844, 'model_time': 0.7382374042645097, 'learning_rate': 2.7764508387541378e-06, 'epoch': 27.28})
216
+ Step 21600, Loss: {'mse_loss': 0.010072730481624603, 'totoal_loss': 0.010072730481624603, 'data_time': 0.023918941151350737, 'model_time': 0.7815237557515502, 'learning_rate': 2.7229542099520797e-06, 'epoch': 27.41})
217
+ Step 21700, Loss: {'mse_loss': 0.013000777922570705, 'totoal_loss': 0.013000777922570705, 'data_time': 0.026802391279488802, 'model_time': 0.7529833531007171, 'learning_rate': 2.669836892025666e-06, 'epoch': 27.54})
218
+ Step 21800, Loss: {'mse_loss': 0.028381595388054848, 'totoal_loss': 0.028381595388054848, 'data_time': 0.02583756810054183, 'model_time': 0.8455877141095698, 'learning_rate': 2.6171072728151557e-06, 'epoch': 27.66})
219
+ Step 21900, Loss: {'mse_loss': 0.017644627019762993, 'totoal_loss': 0.017644627019762993, 'data_time': 0.023908813949674368, 'model_time': 0.7653920040465891, 'learning_rate': 2.5647736789386828e-06, 'epoch': 27.79})
220
+ Step 22000, Loss: {'mse_loss': 0.014767738990485668, 'totoal_loss': 0.014767738990485668, 'data_time': 0.022711544297635555, 'model_time': 0.7784835859201849, 'learning_rate': 2.5128443744773904e-06, 'epoch': 27.92})
221
+ Step 22100, Loss: {'mse_loss': 0.019149748608469963, 'totoal_loss': 0.019149748608469963, 'data_time': 0.009744314011186361, 'model_time': 0.7797632906585932, 'learning_rate': 2.4613275596704386e-06, 'epoch': 28.05})
222
+ Step 22200, Loss: {'mse_loss': 0.009967891499400139, 'totoal_loss': 0.009967891499400139, 'data_time': 0.007396827917546034, 'model_time': 0.774544324260205, 'learning_rate': 2.4102313696200853e-06, 'epoch': 28.17})
223
+ Step 22300, Loss: {'mse_loss': 0.0166047103703022, 'totoal_loss': 0.0166047103703022, 'data_time': 0.007727932184934616, 'model_time': 0.783472103998065, 'learning_rate': 2.359563873007063e-06, 'epoch': 28.3})
224
+ Step 22400, Loss: {'mse_loss': 0.021508725360035896, 'totoal_loss': 0.021508725360035896, 'data_time': 0.008068807888776064, 'model_time': 0.7690591793507338, 'learning_rate': 2.3093330708164465e-06, 'epoch': 28.43})
225
+ Step 22500, Loss: {'mse_loss': 0.013833055272698402, 'totoal_loss': 0.013833055272698402, 'data_time': 0.01236074697226286, 'model_time': 0.7791488361544907, 'learning_rate': 2.2595468950741943e-06, 'epoch': 28.55})
226
+ Step 22600, Loss: {'mse_loss': 0.009173223748803139, 'totoal_loss': 0.009173223748803139, 'data_time': 0.009319190867245197, 'model_time': 0.7623447910882533, 'learning_rate': 2.2102132075945974e-06, 'epoch': 28.68})
227
+ Step 22700, Loss: {'mse_loss': 0.015653686597943306, 'totoal_loss': 0.015653686597943306, 'data_time': 0.008450470864772797, 'model_time': 0.759261840954423, 'learning_rate': 2.1613397987388e-06, 'epoch': 28.81})
228
+ Step 22800, Loss: {'mse_loss': 0.016635894775390625, 'totoal_loss': 0.016635894775390625, 'data_time': 0.008886304683983326, 'model_time': 0.7680472689680755, 'learning_rate': 2.1129343861846207e-06, 'epoch': 28.93})
229
+ Step 22900, Loss: {'mse_loss': 0.021533405408263206, 'totoal_loss': 0.021533405408263206, 'data_time': 0.02243625931441784, 'model_time': 0.7958113462664187, 'learning_rate': 2.065004613707836e-06, 'epoch': 29.06})
230
+ Step 23000, Loss: {'mse_loss': 0.014857281930744648, 'totoal_loss': 0.014857281930744648, 'data_time': 0.023541314993053675, 'model_time': 0.7676877602934837, 'learning_rate': 2.0175580499751375e-06, 'epoch': 29.19})
231
+ Step 23100, Loss: {'mse_loss': 0.023121725767850876, 'totoal_loss': 0.023121725767850876, 'data_time': 0.02451816014945507, 'model_time': 0.7313433256931603, 'learning_rate': 1.9706021873489604e-06, 'epoch': 29.31})
232
+ Step 23200, Loss: {'mse_loss': 0.022081075236201286, 'totoal_loss': 0.022081075236201286, 'data_time': 0.03066857298836112, 'model_time': 0.7779112150892615, 'learning_rate': 1.924144440704338e-06, 'epoch': 29.44})
233
+ Step 23300, Loss: {'mse_loss': 0.0242560226470232, 'totoal_loss': 0.0242560226470232, 'data_time': 0.02419666387140751, 'model_time': 0.7383301081135869, 'learning_rate': 1.8781921462580238e-06, 'epoch': 29.57})
234
+ Step 23400, Loss: {'mse_loss': 0.010575384832918644, 'totoal_loss': 0.010575384832918644, 'data_time': 0.02352250600233674, 'model_time': 0.7434530560858548, 'learning_rate': 1.8327525604100058e-06, 'epoch': 29.7})
235
+ Step 23500, Loss: {'mse_loss': 0.010388599708676338, 'totoal_loss': 0.010388599708676338, 'data_time': 0.02300756797194481, 'model_time': 0.7323608179576695, 'learning_rate': 1.7878328585976426e-06, 'epoch': 29.82})
236
+ Step 23600, Loss: {'mse_loss': 0.020598310977220535, 'totoal_loss': 0.020598310977220535, 'data_time': 0.02410590508952737, 'model_time': 0.7731736991554499, 'learning_rate': 1.7434401341625765e-06, 'epoch': 29.95})
237
+ Step 23700, Loss: {'mse_loss': 0.01590290106832981, 'totoal_loss': 0.01590290106832981, 'data_time': 0.025947168935090303, 'model_time': 0.7445874637924135, 'learning_rate': 1.6995813972306108e-06, 'epoch': 30.08})
238
+ Step 23800, Loss: {'mse_loss': 0.01979011669754982, 'totoal_loss': 0.01979011669754982, 'data_time': 0.025374898687005043, 'model_time': 0.7662778035737574, 'learning_rate': 1.656263573604734e-06, 'epoch': 30.2})
239
+ Step 23900, Loss: {'mse_loss': 0.01327869575470686, 'totoal_loss': 0.01327869575470686, 'data_time': 0.023668662644922733, 'model_time': 0.7819542642682791, 'learning_rate': 1.613493503671454e-06, 'epoch': 30.33})
240
+ Step 24000, Loss: {'mse_loss': 0.019582349807024002, 'totoal_loss': 0.019582349807024002, 'data_time': 0.022207714151591063, 'model_time': 0.764291986823082, 'learning_rate': 1.5712779413206198e-06, 'epoch': 30.46})
241
+ Step 24100, Loss: {'mse_loss': 0.009075228124856949, 'totoal_loss': 0.009075228124856949, 'data_time': 0.020579475443810225, 'model_time': 0.7779893600381911, 'learning_rate': 1.5296235528789028e-06, 'epoch': 30.58})
242
+ Step 24200, Loss: {'mse_loss': 0.010408821515738964, 'totoal_loss': 0.010408821515738964, 'data_time': 0.02729398710653186, 'model_time': 0.7331294221803546, 'learning_rate': 1.4885369160571124e-06, 'epoch': 30.71})
243
+ Step 24300, Loss: {'mse_loss': 0.0252275001257658, 'totoal_loss': 0.0252275001257658, 'data_time': 0.02628859505057335, 'model_time': 0.7359957932494581, 'learning_rate': 1.4480245189114938e-06, 'epoch': 30.84})
244
+ Step 24400, Loss: {'mse_loss': 0.0045212688855826855, 'totoal_loss': 0.0045212688855826855, 'data_time': 0.024337402544915676, 'model_time': 0.7445311159826815, 'learning_rate': 1.408092758819191e-06, 'epoch': 30.96})
245
+ Step 24500, Loss: {'mse_loss': 0.008061680942773819, 'totoal_loss': 0.008061680942773819, 'data_time': 0.019794435240328312, 'model_time': 0.7484242809005082, 'learning_rate': 1.368747941468028e-06, 'epoch': 31.09})
246
+ Step 24600, Loss: {'mse_loss': 0.0053502595983445644, 'totoal_loss': 0.0053502595983445644, 'data_time': 0.01607978018000722, 'model_time': 0.745147273875773, 'learning_rate': 1.3299962798607614e-06, 'epoch': 31.22})
247
+ Step 24700, Loss: {'mse_loss': 0.011721218936145306, 'totoal_loss': 0.011721218936145306, 'data_time': 0.015945292077958584, 'model_time': 0.7669801767915487, 'learning_rate': 1.2918438933339827e-06, 'epoch': 31.35})
248
+ Step 24800, Loss: {'mse_loss': 0.011303488165140152, 'totoal_loss': 0.011303488165140152, 'data_time': 0.01918315375223756, 'model_time': 0.7816366371698678, 'learning_rate': 1.2542968065918027e-06, 'epoch': 31.47})
249
+ Step 24900, Loss: {'mse_loss': 0.01017623022198677, 'totoal_loss': 0.01017623022198677, 'data_time': 0.022048772778362036, 'model_time': 0.814206828828901, 'learning_rate': 1.217360948754476e-06, 'epoch': 31.6})
250
+ Step 25000, Loss: {'mse_loss': 0.01568283513188362, 'totoal_loss': 0.01568283513188362, 'data_time': 0.015562140848487616, 'model_time': 0.7865446680225432, 'learning_rate': 1.1810421524221318e-06, 'epoch': 31.73})
251
+ Step 25100, Loss: {'mse_loss': 0.012733771465718746, 'totoal_loss': 0.012733771465718746, 'data_time': 0.020136467181146145, 'model_time': 0.7895707972347736, 'learning_rate': 1.1453461527537284e-06, 'epoch': 31.85})
252
+ Step 25200, Loss: {'mse_loss': 0.03173811361193657, 'totoal_loss': 0.03173811361193657, 'data_time': 0.017411221750080585, 'model_time': 0.7372834319248796, 'learning_rate': 1.1102785865614162e-06, 'epoch': 31.98})
253
+ Step 25300, Loss: {'mse_loss': 0.019867949187755585, 'totoal_loss': 0.019867949187755585, 'data_time': 0.02229131991043687, 'model_time': 0.7568607800640166, 'learning_rate': 1.0758449914204127e-06, 'epoch': 32.11})
254
+ Step 25400, Loss: {'mse_loss': 0.00783400610089302, 'totoal_loss': 0.00783400610089302, 'data_time': 0.024291598703712225, 'model_time': 0.7474814159795642, 'learning_rate': 1.0420508047945595e-06, 'epoch': 32.23})
255
+ Step 25500, Loss: {'mse_loss': 0.014184659346938133, 'totoal_loss': 0.014184659346938133, 'data_time': 0.024570424109697342, 'model_time': 0.8603165629319847, 'learning_rate': 1.0089013631776776e-06, 'epoch': 32.36})
256
+ Step 25600, Loss: {'mse_loss': 0.011376460082828999, 'totoal_loss': 0.011376460082828999, 'data_time': 0.025723349768668413, 'model_time': 0.86279017617926, 'learning_rate': 9.76401901250878e-07, 'epoch': 32.49})
257
+ Step 25700, Loss: {'mse_loss': 0.04661296308040619, 'totoal_loss': 0.04661296308040619, 'data_time': 0.02080264687538147, 'model_time': 0.7349216039292514, 'learning_rate': 9.44557551055946e-07, 'epoch': 32.61})
258
+ Step 25800, Loss: {'mse_loss': 0.012548602186143398, 'totoal_loss': 0.012548602186143398, 'data_time': 0.021582931745797396, 'model_time': 0.7638870449736714, 'learning_rate': 9.13373341184928e-07, 'epoch': 32.74})
259
+ Step 25900, Loss: {'mse_loss': 0.02742299810051918, 'totoal_loss': 0.02742299810051918, 'data_time': 0.025863399729132652, 'model_time': 0.716839820612222, 'learning_rate': 8.828541959860623e-07, 'epoch': 32.87})
260
+ Step 26000, Loss: {'mse_loss': 0.024813508614897728, 'totoal_loss': 0.024813508614897728, 'data_time': 0.02067994326353073, 'model_time': 0.7097129989415407, 'learning_rate': 8.530049347861661e-07, 'epoch': 32.99})
261
+ Step 26100, Loss: {'mse_loss': 0.0318153016269207, 'totoal_loss': 0.0318153016269207, 'data_time': 0.026138090062886477, 'model_time': 0.76653135381639, 'learning_rate': 8.238302711296034e-07, 'epoch': 33.12})
262
+ Step 26200, Loss: {'mse_loss': 0.030499430373311043, 'totoal_loss': 0.030499430373311043, 'data_time': 0.02295650402083993, 'model_time': 0.7891717348247766, 'learning_rate': 7.953348120339707e-07, 'epoch': 33.25})
263
+ Step 26300, Loss: {'mse_loss': 0.015835583209991455, 'totoal_loss': 0.015835583209991455, 'data_time': 0.02454798575490713, 'model_time': 0.73874058900401, 'learning_rate': 7.675230572625892e-07, 'epoch': 33.38})
264
+ Step 26400, Loss: {'mse_loss': 0.007836163975298405, 'totoal_loss': 0.007836163975298405, 'data_time': 0.02529831975698471, 'model_time': 0.7367556970566511, 'learning_rate': 7.40399398613941e-07, 'epoch': 33.5})
265
+ Step 26500, Loss: {'mse_loss': 0.006383831612765789, 'totoal_loss': 0.006383831612765789, 'data_time': 0.024552369955927134, 'model_time': 0.7522346959449351, 'learning_rate': 7.139681192281557e-07, 'epoch': 33.63})
266
+ Step 26600, Loss: {'mse_loss': 0.0053853909485042095, 'totoal_loss': 0.0053853909485042095, 'data_time': 0.023236497305333614, 'model_time': 0.7447747490368783, 'learning_rate': 6.882333929106462e-07, 'epoch': 33.76})
267
+ Step 26700, Loss: {'mse_loss': 0.018670959398150444, 'totoal_loss': 0.018670959398150444, 'data_time': 0.023996731266379356, 'model_time': 0.7514162342995405, 'learning_rate': 6.63199283473027e-07, 'epoch': 33.88})
268
+ Step 26800, Loss: {'mse_loss': 0.020607629790902138, 'totoal_loss': 0.020607629790902138, 'data_time': 0.020644767209887505, 'model_time': 0.7531540202908218, 'learning_rate': 6.388697440913819e-07, 'epoch': 34.01})
269
+ Step 26900, Loss: {'mse_loss': 0.01478798408061266, 'totoal_loss': 0.01478798408061266, 'data_time': 0.027071297634392977, 'model_time': 0.990352010820061, 'learning_rate': 6.152486166820176e-07, 'epoch': 34.14})
270
+ Step 27000, Loss: {'mse_loss': 0.014808137901127338, 'totoal_loss': 0.014808137901127338, 'data_time': 0.024046146776527166, 'model_time': 0.7684714309871197, 'learning_rate': 5.923396312947748e-07, 'epoch': 34.26})
271
+ Step 27100, Loss: {'mse_loss': 0.003446460235863924, 'totoal_loss': 0.003446460235863924, 'data_time': 0.023034595884382725, 'model_time': 0.8201281484216452, 'learning_rate': 5.701464055240163e-07, 'epoch': 34.39})
272
+ Step 27200, Loss: {'mse_loss': 0.014807746745646, 'totoal_loss': 0.014807746745646, 'data_time': 0.02133514080196619, 'model_time': 0.7693524826318026, 'learning_rate': 5.48672443937364e-07, 'epoch': 34.52})
273
+ Step 27300, Loss: {'mse_loss': 0.011672858148813248, 'totoal_loss': 0.011672858148813248, 'data_time': 0.02241942984983325, 'model_time': 0.7583585428074002, 'learning_rate': 5.279211375222855e-07, 'epoch': 34.64})
274
+ Step 27400, Loss: {'mse_loss': 0.008028486743569374, 'totoal_loss': 0.008028486743569374, 'data_time': 0.02571176178753376, 'model_time': 0.7381468773819506, 'learning_rate': 5.07895763150622e-07, 'epoch': 34.77})
275
+ Step 27500, Loss: {'mse_loss': 0.029715334996581078, 'totoal_loss': 0.029715334996581078, 'data_time': 0.023102235980331898, 'model_time': 0.730282275006175, 'learning_rate': 4.885994830611266e-07, 'epoch': 34.9})
276
+ Step 27600, Loss: {'mse_loss': 0.01796845532953739, 'totoal_loss': 0.01796845532953739, 'data_time': 0.011959929019212723, 'model_time': 0.7250757990404963, 'learning_rate': 4.700353443601156e-07, 'epoch': 35.03})
277
+ Step 27700, Loss: {'mse_loss': 0.011405515484511852, 'totoal_loss': 0.011405515484511852, 'data_time': 0.012671122793108225, 'model_time': 0.7339976741932333, 'learning_rate': 4.5220627854029224e-07, 'epoch': 35.15})
278
+ Step 27800, Loss: {'mse_loss': 0.006900988984853029, 'totoal_loss': 0.006900988984853029, 'data_time': 0.007721554022282362, 'model_time': 0.7657590336166322, 'learning_rate': 4.351151010178311e-07, 'epoch': 35.28})
279
+ Step 27900, Loss: {'mse_loss': 0.010151038877665997, 'totoal_loss': 0.010151038877665997, 'data_time': 0.007928488776087761, 'model_time': 0.7421732810325921, 'learning_rate': 4.1876451068778983e-07, 'epoch': 35.41})
280
+ Step 28000, Loss: {'mse_loss': 0.018612852320075035, 'totoal_loss': 0.018612852320075035, 'data_time': 0.009896176867187023, 'model_time': 0.7511231987737119, 'learning_rate': 4.031570894979235e-07, 'epoch': 35.53})
281
+ Step 28100, Loss: {'mse_loss': 0.024582121521234512, 'totoal_loss': 0.024582121521234512, 'data_time': 0.009666142985224724, 'model_time': 0.736803017091006, 'learning_rate': 3.882953020409644e-07, 'epoch': 35.66})
282
+ Step 28200, Loss: {'mse_loss': 0.017239822074770927, 'totoal_loss': 0.017239822074770927, 'data_time': 0.0004788697697222233, 'model_time': 0.7767786998301744, 'learning_rate': 3.74181495165436e-07, 'epoch': 35.79})
283
+ Step 28300, Loss: {'mse_loss': 0.016234492883086205, 'totoal_loss': 0.016234492883086205, 'data_time': 0.0004472876898944378, 'model_time': 0.7620163969695568, 'learning_rate': 3.608178976050568e-07, 'epoch': 35.91})
284
+ Step 28400, Loss: {'mse_loss': 0.017911553382873535, 'totoal_loss': 0.017911553382873535, 'data_time': 0.018574487883597612, 'model_time': 0.7322198888286948, 'learning_rate': 3.482066196267966e-07, 'epoch': 36.04})
285
+ Step 28500, Loss: {'mse_loss': 0.01580001227557659, 'totoal_loss': 0.01580001227557659, 'data_time': 0.01684256363660097, 'model_time': 0.7340293112210929, 'learning_rate': 3.36349652697643e-07, 'epoch': 36.17})
286
+ Step 28600, Loss: {'mse_loss': 0.004110920708626509, 'totoal_loss': 0.004110920708626509, 'data_time': 0.01717201480641961, 'model_time': 0.7643295242451131, 'learning_rate': 3.2524886917012403e-07, 'epoch': 36.29})
287
+ Step 28700, Loss: {'mse_loss': 0.013102809898555279, 'totoal_loss': 0.013102809898555279, 'data_time': 0.014308844693005085, 'model_time': 0.8161862129345536, 'learning_rate': 3.149060219866433e-07, 'epoch': 36.42})
288
+ Step 28800, Loss: {'mse_loss': 0.010136148892343044, 'totoal_loss': 0.010136148892343044, 'data_time': 0.016186542809009552, 'model_time': 0.7498616417869925, 'learning_rate': 3.053227444026695e-07, 'epoch': 36.55})
289
+ Step 28900, Loss: {'mse_loss': 0.00796540267765522, 'totoal_loss': 0.00796540267765522, 'data_time': 0.017402068246155977, 'model_time': 0.8355230037122965, 'learning_rate': 2.9650054972882544e-07, 'epoch': 36.68})
290
+ Step 29000, Loss: {'mse_loss': 0.011633164249360561, 'totoal_loss': 0.011633164249360561, 'data_time': 0.014687507878988981, 'model_time': 0.745209373999387, 'learning_rate': 2.884408310919209e-07, 'epoch': 36.8})
291
+ Step 29100, Loss: {'mse_loss': 0.009484630078077316, 'totoal_loss': 0.009484630078077316, 'data_time': 0.015165808144956827, 'model_time': 0.821868559345603, 'learning_rate': 2.8114486121495906e-07, 'epoch': 36.93})
292
+ Step 29200, Loss: {'mse_loss': 0.0038788598030805588, 'totoal_loss': 0.0038788598030805588, 'data_time': 0.01570770237594843, 'model_time': 0.7346317181363702, 'learning_rate': 2.746137922161617e-07, 'epoch': 37.06})
293
+ Step 29300, Loss: {'mse_loss': 0.01024983637034893, 'totoal_loss': 0.01024983637034893, 'data_time': 0.014884913340210915, 'model_time': 0.7708192141726613, 'learning_rate': 2.68848655427034e-07, 'epoch': 37.18})
294
+ Step 29400, Loss: {'mse_loss': 0.014825118705630302, 'totoal_loss': 0.014825118705630302, 'data_time': 0.017705109901726246, 'model_time': 0.7548313839361072, 'learning_rate': 2.638503612295071e-07, 'epoch': 37.31})
295
+ Step 29500, Loss: {'mse_loss': 0.013066071085631847, 'totoal_loss': 0.013066071085631847, 'data_time': 0.018179214093834162, 'model_time': 0.7377170869149268, 'learning_rate': 2.5961969891217614e-07, 'epoch': 37.44})
296
+ Step 29600, Loss: {'mse_loss': 0.011307214386761189, 'totoal_loss': 0.011307214386761189, 'data_time': 0.018070524092763662, 'model_time': 0.7500284709967673, 'learning_rate': 2.5615733654566483e-07, 'epoch': 37.56})
297
+ Step 29700, Loss: {'mse_loss': 0.0071637132205069065, 'totoal_loss': 0.0071637132205069065, 'data_time': 0.016419419087469578, 'model_time': 0.7643612422980368, 'learning_rate': 2.5346382087712764e-07, 'epoch': 37.69})
298
+ Step 29800, Loss: {'mse_loss': 0.015479196794331074, 'totoal_loss': 0.015479196794331074, 'data_time': 0.015293370932340622, 'model_time': 0.7414186550304294, 'learning_rate': 2.515395772439128e-07, 'epoch': 37.82})
299
+ Step 29900, Loss: {'mse_loss': 0.011683176271617413, 'totoal_loss': 0.011683176271617413, 'data_time': 0.028071977198123932, 'model_time': 0.741732673253864, 'learning_rate': 2.5038490950639644e-07, 'epoch': 37.94})
300
+ Step 30000, Loss: {'mse_loss': 0.013048053719103336, 'totoal_loss': 0.013048053719103336, 'mse_score': 0.0010522522165306977, 'data_time': 0.015741227194666862, 'model_time': 0.8000133810564876, 'learning_rate': 2.5e-07, 'epoch': 38.07})
libero_10_2B/starvla_qwen_pi/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: True
10
+ # episodes completed so far: 2
11
+ # successes: 2 (100.0%)
12
+
13
+ Task: put both the alphabet soup and the tomato sauce in the basket
14
+ Success: True
15
+ # episodes completed so far: 3
16
+ # successes: 3 (100.0%)
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: 4 (100.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: 5 (100.0%)
27
+
28
+ Task: put both the alphabet soup and the tomato sauce in the basket
29
+ Success: True
30
+ # episodes completed so far: 6
31
+ # successes: 6 (100.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: 7 (100.0%)
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: 8 (100.0%)
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: 9 (100.0%)
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: 10 (100.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: 11 (100.0%)
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: 12 (100.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: 13 (100.0%)
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: 14 (100.0%)
72
+
73
+ Task: put both the alphabet soup and the tomato sauce in the basket
74
+ Success: False
75
+ # episodes completed so far: 15
76
+ # successes: 14 (93.3%)
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: 15 (93.8%)
82
+
83
+ Task: put both the alphabet soup and the tomato sauce in the basket
84
+ Success: True
85
+ # episodes completed so far: 17
86
+ # successes: 16 (94.1%)
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: 17 (94.4%)
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: 17 (89.5%)
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: 18 (90.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: 19 (90.5%)
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: 20 (90.9%)
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: 21 (91.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: 22 (91.7%)
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: 23 (92.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: 24 (92.3%)
132
+
133
+ Task: put both the alphabet soup and the tomato sauce in the basket
134
+ Success: True
135
+ # episodes completed so far: 27
136
+ # successes: 25 (92.6%)
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: 26 (92.9%)
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: 27 (93.1%)
147
+
148
+ Task: put both the alphabet soup and the tomato sauce in the basket
149
+ Success: False
150
+ # episodes completed so far: 30
151
+ # successes: 27 (90.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: 28 (90.3%)
157
+
158
+ Task: put both the alphabet soup and the tomato sauce in the basket
159
+ Success: True
160
+ # episodes completed so far: 32
161
+ # successes: 29 (90.6%)
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: 30 (90.9%)
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: 31 (91.2%)
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: 32 (91.4%)
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: 33 (91.7%)
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: 34 (91.9%)
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: 35 (92.1%)
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: 36 (92.3%)
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: 37 (92.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: 38 (92.7%)
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: 39 (92.9%)
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: 40 (93.0%)
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: 41 (93.2%)
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: 42 (93.3%)
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: 43 (93.5%)
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: 44 (93.6%)
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: 45 (93.8%)
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: 46 (93.9%)
247
+
248
+ Task: put both the alphabet soup and the tomato sauce in the basket
249
+ Success: False
250
+ # episodes completed so far: 50
251
+ # successes: 46 (92.0%)
252
+ Current task success rate: 0.92
253
+ Current total success rate: 0.92
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: 47 (92.2%)
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: 48 (92.3%)
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: 49 (92.5%)
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: 50 (92.6%)
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: 51 (92.7%)
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: 52 (92.9%)
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: 53 (93.0%)
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: 54 (93.1%)
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: 55 (93.2%)
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: 56 (93.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: 57 (93.4%)
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: 58 (93.5%)
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: 59 (93.7%)
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: 60 (93.8%)
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: 61 (93.8%)
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: 62 (93.9%)
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: 63 (94.0%)
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: 64 (94.1%)
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: 65 (94.2%)
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: 66 (94.3%)
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: 67 (94.4%)
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: 68 (94.4%)
364
+
365
+ Task: put both the cream cheese box and the butter in the basket
366
+ Success: True
367
+ # episodes completed so far: 73
368
+ # successes: 69 (94.5%)
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: 70 (94.6%)
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: 71 (94.7%)
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: 72 (94.7%)
384
+
385
+ Task: put both the cream cheese box and the butter in the basket
386
+ Success: True
387
+ # episodes completed so far: 77
388
+ # successes: 73 (94.8%)
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: 74 (94.9%)
394
+
395
+ Task: put both the cream cheese box and the butter in the basket
396
+ Success: False
397
+ # episodes completed so far: 79
398
+ # successes: 74 (93.7%)
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: 75 (93.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: 76 (93.8%)
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: 77 (93.9%)
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: 78 (94.0%)
419
+
420
+ Task: put both the cream cheese box and the butter in the basket
421
+ Success: True
422
+ # episodes completed so far: 84
423
+ # successes: 79 (94.0%)
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: 80 (94.1%)
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: 81 (94.2%)
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: 82 (94.3%)
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: 83 (94.3%)
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: 84 (94.4%)
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: 85 (94.4%)
454
+
455
+ Task: put both the cream cheese box and the butter in the basket
456
+ Success: True
457
+ # episodes completed so far: 91
458
+ # successes: 86 (94.5%)
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: 87 (94.6%)
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: 88 (94.6%)
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: 89 (94.7%)
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: 90 (94.7%)
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: 91 (94.8%)
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: 92 (94.8%)
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: 93 (94.9%)
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: 94 (94.9%)
499
+
500
+ Task: put both the cream cheese box and the butter in the basket
501
+ Success: True
502
+ # episodes completed so far: 100
503
+ # successes: 95 (95.0%)
504
+ Current task success rate: 0.98
505
+ Current total success rate: 0.95
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: 96 (95.0%)
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: 97 (95.1%)
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: 98 (95.1%)
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: 99 (95.2%)
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: 100 (95.2%)
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: 101 (95.3%)
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: 102 (95.3%)
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: 103 (95.4%)
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: 104 (95.4%)
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: 105 (95.5%)
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: 106 (95.5%)
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: 107 (95.5%)
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: 108 (95.6%)
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: 109 (95.6%)
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: 110 (95.7%)
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: 111 (95.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: 112 (95.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: 113 (95.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: 114 (95.8%)
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: 115 (95.8%)
606
+
607
+ Task: turn on the stove and put the moka pot on it
608
+ Success: True
609
+ # episodes completed so far: 121
610
+ # successes: 116 (95.9%)
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: 117 (95.9%)
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: 118 (95.9%)
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: 119 (96.0%)
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: 120 (96.0%)
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: 121 (96.0%)
636
+
637
+ Task: turn on the stove and put the moka pot on it
638
+ Success: True
639
+ # episodes completed so far: 127
640
+ # successes: 122 (96.1%)
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: 123 (96.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: 124 (96.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: 125 (96.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: 126 (96.2%)
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: 127 (96.2%)
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: 128 (96.2%)
671
+
672
+ Task: turn on the stove and put the moka pot on it
673
+ Success: True
674
+ # episodes completed so far: 134
675
+ # successes: 129 (96.3%)
676
+
677
+ Task: turn on the stove and put the moka pot on it
678
+ Success: True
679
+ # episodes completed so far: 135
680
+ # successes: 130 (96.3%)
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: 131 (96.3%)
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: 132 (96.4%)
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: 133 (96.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: 134 (96.4%)
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: 135 (96.4%)
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: 136 (96.5%)
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: 137 (96.5%)
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: 138 (96.5%)
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: 139 (96.5%)
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: 140 (96.6%)
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: 141 (96.6%)
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: 142 (96.6%)
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: 143 (96.6%)
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: 144 (96.6%)
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: 145 (96.7%)
756
+ Current task success rate: 1.0
757
+ Current total success rate: 0.9666666666666667
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: 146 (96.7%)
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: 147 (96.7%)
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: 148 (96.7%)
773
+
774
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
775
+ Success: True
776
+ # episodes completed so far: 154
777
+ # successes: 149 (96.8%)
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: 150 (96.8%)
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: 151 (96.8%)
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: 152 (96.8%)
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: 153 (96.8%)
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: 154 (96.9%)
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: 155 (96.9%)
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: 156 (96.9%)
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: 157 (96.9%)
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: 158 (96.9%)
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: 159 (97.0%)
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: 160 (97.0%)
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: 161 (97.0%)
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: 162 (97.0%)
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: 163 (97.0%)
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: 164 (97.0%)
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: 165 (97.1%)
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: 166 (97.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: 167 (97.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: 168 (97.1%)
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: 169 (97.1%)
878
+
879
+ Task: put the black bowl in the bottom drawer of the cabinet and close it
880
+ Success: False
881
+ # episodes completed so far: 175
882
+ # successes: 169 (96.6%)
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: 170 (96.6%)
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: 171 (96.6%)
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: 172 (96.6%)
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: 173 (96.6%)
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: 174 (96.7%)
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: 175 (96.7%)
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: 176 (96.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: 177 (96.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: 178 (96.7%)
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: 179 (96.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: 180 (96.8%)
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: 181 (96.8%)
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: 182 (96.8%)
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: 183 (96.8%)
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: 184 (96.8%)
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: 185 (96.9%)
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: 186 (96.9%)
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: 187 (96.9%)
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: 188 (96.9%)
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: 189 (96.9%)
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: 190 (96.9%)
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: 191 (97.0%)
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: 192 (97.0%)
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: 193 (97.0%)
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: 194 (97.0%)
1008
+ Current task success rate: 0.98
1009
+ Current total success rate: 0.97
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: 195 (97.0%)
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: 196 (97.0%)
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: 197 (97.0%)
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: 198 (97.1%)
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: 199 (97.1%)
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: 200 (97.1%)
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: 201 (97.1%)
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: 202 (97.1%)
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: 203 (97.1%)
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: 204 (97.1%)
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: 205 (97.2%)
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: 206 (97.2%)
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: 207 (97.2%)
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: 208 (97.2%)
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: 209 (97.2%)
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: 210 (97.2%)
1090
+
1091
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1092
+ Success: True
1093
+ # episodes completed so far: 217
1094
+ # successes: 211 (97.2%)
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: 212 (97.2%)
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: 213 (97.3%)
1105
+
1106
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1107
+ Success: True
1108
+ # episodes completed so far: 220
1109
+ # successes: 214 (97.3%)
1110
+
1111
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1112
+ Success: True
1113
+ # episodes completed so far: 221
1114
+ # successes: 215 (97.3%)
1115
+
1116
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1117
+ Success: True
1118
+ # episodes completed so far: 222
1119
+ # successes: 216 (97.3%)
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: 217 (97.3%)
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: 218 (97.3%)
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: 219 (97.3%)
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: 220 (97.3%)
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: 221 (97.4%)
1145
+
1146
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1147
+ Success: False
1148
+ # episodes completed so far: 228
1149
+ # successes: 221 (96.9%)
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: 222 (96.9%)
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: 223 (97.0%)
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: 224 (97.0%)
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: 225 (97.0%)
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: 226 (97.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: 227 (97.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: 228 (97.0%)
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: 229 (97.0%)
1190
+
1191
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1192
+ Success: True
1193
+ # episodes completed so far: 237
1194
+ # successes: 230 (97.0%)
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: 230 (96.6%)
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: 231 (96.7%)
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: 232 (96.7%)
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: 233 (96.7%)
1215
+
1216
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1217
+ Success: False
1218
+ # episodes completed so far: 242
1219
+ # successes: 233 (96.3%)
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: 234 (96.3%)
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: 235 (96.3%)
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: 236 (96.3%)
1235
+
1236
+ Task: put the white mug on the left plate and put the yellow and white mug on the right plate
1237
+ Success: True
1238
+ # episodes completed so far: 246
1239
+ # successes: 237 (96.3%)
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: 238 (96.4%)
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: 239 (96.4%)
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: 240 (96.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: 241 (96.4%)
1260
+ Current task success rate: 0.94
1261
+ Current total success rate: 0.964
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: 242 (96.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: 243 (96.4%)
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: 244 (96.4%)
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: 245 (96.5%)
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: 246 (96.5%)
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: 247 (96.5%)
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: 248 (96.5%)
1297
+
1298
+ Task: pick up the book and place it in the back compartment of the caddy
1299
+ Success: False
1300
+ # episodes completed so far: 258
1301
+ # successes: 248 (96.1%)
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: 249 (96.1%)
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: 250 (96.2%)
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: 251 (96.2%)
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: 252 (96.2%)
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: 253 (96.2%)
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: 254 (96.2%)
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: 255 (96.2%)
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: 256 (96.2%)
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: 257 (96.3%)
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: 258 (96.3%)
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: 259 (96.3%)
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: 260 (96.3%)
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: 261 (96.3%)
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: 262 (96.3%)
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: 263 (96.3%)
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: 264 (96.4%)
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: 265 (96.4%)
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: 266 (96.4%)
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: 267 (96.4%)
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: 268 (96.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: 269 (96.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: 270 (96.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: 271 (96.4%)
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: 272 (96.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: 273 (96.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: 274 (96.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: 275 (96.5%)
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: 276 (96.5%)
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: 277 (96.5%)
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: 278 (96.5%)
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: 279 (96.5%)
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: 280 (96.6%)
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: 281 (96.6%)
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: 282 (96.6%)
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: 283 (96.6%)
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: 284 (96.6%)
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: 285 (96.6%)
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: 286 (96.6%)
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: 287 (96.6%)
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: 288 (96.6%)
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: 289 (96.7%)
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: 290 (96.7%)
1512
+ Current task success rate: 0.98
1513
+ Current total success rate: 0.9666666666666667
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: 291 (96.7%)
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: 292 (96.7%)
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: 293 (96.7%)
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: 294 (96.7%)
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: 295 (96.7%)
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: 296 (96.7%)
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: 297 (96.7%)
1549
+
1550
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1551
+ Success: False
1552
+ # episodes completed so far: 308
1553
+ # successes: 297 (96.4%)
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: 298 (96.4%)
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: 299 (96.5%)
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: 300 (96.5%)
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: 301 (96.5%)
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: 302 (96.5%)
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: 303 (96.5%)
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: 303 (96.2%)
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: 304 (96.2%)
1594
+
1595
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1596
+ Success: True
1597
+ # episodes completed so far: 317
1598
+ # successes: 305 (96.2%)
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: 306 (96.2%)
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: 307 (96.2%)
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: 308 (96.2%)
1614
+
1615
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1616
+ Success: False
1617
+ # episodes completed so far: 321
1618
+ # successes: 308 (96.0%)
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: 308 (95.7%)
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: 309 (95.7%)
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: 309 (95.4%)
1634
+
1635
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1636
+ Success: False
1637
+ # episodes completed so far: 325
1638
+ # successes: 309 (95.1%)
1639
+
1640
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1641
+ Success: True
1642
+ # episodes completed so far: 326
1643
+ # successes: 310 (95.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: 311 (95.1%)
1649
+
1650
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1651
+ Success: True
1652
+ # episodes completed so far: 328
1653
+ # successes: 312 (95.1%)
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: 313 (95.1%)
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: 313 (94.8%)
1664
+
1665
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1666
+ Success: False
1667
+ # episodes completed so far: 331
1668
+ # successes: 313 (94.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: 314 (94.6%)
1674
+
1675
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1676
+ Success: False
1677
+ # episodes completed so far: 333
1678
+ # successes: 314 (94.3%)
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: 315 (94.3%)
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: 316 (94.3%)
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: 317 (94.3%)
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: 318 (94.4%)
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: 319 (94.4%)
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: 320 (94.4%)
1709
+
1710
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1711
+ Success: True
1712
+ # episodes completed so far: 340
1713
+ # successes: 321 (94.4%)
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: 322 (94.4%)
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: 323 (94.4%)
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: 324 (94.5%)
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: 325 (94.5%)
1734
+
1735
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1736
+ Success: False
1737
+ # episodes completed so far: 345
1738
+ # successes: 325 (94.2%)
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: 326 (94.2%)
1744
+
1745
+ Task: put the white mug on the plate and put the chocolate pudding to the right of the plate
1746
+ Success: False
1747
+ # episodes completed so far: 347
1748
+ # successes: 326 (93.9%)
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: 327 (94.0%)
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: 328 (94.0%)
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: 329 (94.0%)
1764
+ Current task success rate: 0.78
1765
+ Current total success rate: 0.94
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: 330 (94.0%)
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: 331 (94.0%)
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: 332 (94.1%)
1781
+
1782
+ Task: put both the alphabet soup and the cream cheese box in the basket
1783
+ Success: False
1784
+ # episodes completed so far: 354
1785
+ # successes: 332 (93.8%)
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: 333 (93.8%)
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: 334 (93.8%)
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: 335 (93.8%)
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: 336 (93.9%)
1806
+
1807
+ Task: put both the alphabet soup and the cream cheese box in the basket
1808
+ Success: False
1809
+ # episodes completed so far: 359
1810
+ # successes: 336 (93.6%)
1811
+
1812
+ Task: put both the alphabet soup and the cream cheese box in the basket
1813
+ Success: True
1814
+ # episodes completed so far: 360
1815
+ # successes: 337 (93.6%)
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: 338 (93.6%)
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: 339 (93.6%)
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: 340 (93.7%)
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: 341 (93.7%)
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: 342 (93.7%)
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: 343 (93.7%)
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: 344 (93.7%)
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: 345 (93.8%)
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: 346 (93.8%)
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: 347 (93.8%)
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: 348 (93.8%)
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: 349 (93.8%)
1876
+
1877
+ Task: put both the alphabet soup and the cream cheese box in the basket
1878
+ Success: True
1879
+ # episodes completed so far: 373
1880
+ # successes: 350 (93.8%)
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: 351 (93.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: 352 (93.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: 353 (93.9%)
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: 354 (93.9%)
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: 355 (93.9%)
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: 356 (93.9%)
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: 357 (93.9%)
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: 358 (94.0%)
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: 359 (94.0%)
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: 360 (94.0%)
1931
+
1932
+ Task: put both the alphabet soup and the cream cheese box in the basket
1933
+ Success: False
1934
+ # episodes completed so far: 384
1935
+ # successes: 360 (93.8%)
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: 361 (93.8%)
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: 362 (93.8%)
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: 363 (93.8%)
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: 364 (93.8%)
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: 365 (93.8%)
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: 366 (93.8%)
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: 367 (93.9%)
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: 368 (93.9%)
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: 369 (93.9%)
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: 370 (93.9%)
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: 371 (93.9%)
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: 372 (93.9%)
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: 373 (94.0%)
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: 374 (94.0%)
2006
+
2007
+ Task: put both the alphabet soup and the cream cheese box in the basket
2008
+ Success: True
2009
+ # episodes completed so far: 399
2010
+ # successes: 375 (94.0%)
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: 376 (94.0%)
2016
+ Current task success rate: 0.94
2017
+ Current total success rate: 0.94
2018
+
2019
+ Task: put both moka pots on the stove
2020
+ Success: True
2021
+ # episodes completed so far: 401
2022
+ # successes: 377 (94.0%)
2023
+
2024
+ Task: put both moka pots on the stove
2025
+ Success: True
2026
+ # episodes completed so far: 402
2027
+ # successes: 378 (94.0%)
2028
+
2029
+ Task: put both moka pots on the stove
2030
+ Success: True
2031
+ # episodes completed so far: 403
2032
+ # successes: 379 (94.0%)
2033
+
2034
+ Task: put both moka pots on the stove
2035
+ Success: False
2036
+ # episodes completed so far: 404
2037
+ # successes: 379 (93.8%)
2038
+
2039
+ Task: put both moka pots on the stove
2040
+ Success: False
2041
+ # episodes completed so far: 405
2042
+ # successes: 379 (93.6%)
2043
+
2044
+ Task: put both moka pots on the stove
2045
+ Success: True
2046
+ # episodes completed so far: 406
2047
+ # successes: 380 (93.6%)
2048
+
2049
+ Task: put both moka pots on the stove
2050
+ Success: True
2051
+ # episodes completed so far: 407
2052
+ # successes: 381 (93.6%)
2053
+
2054
+ Task: put both moka pots on the stove
2055
+ Success: True
2056
+ # episodes completed so far: 408
2057
+ # successes: 382 (93.6%)
2058
+
2059
+ Task: put both moka pots on the stove
2060
+ Success: True
2061
+ # episodes completed so far: 409
2062
+ # successes: 383 (93.6%)
2063
+
2064
+ Task: put both moka pots on the stove
2065
+ Success: False
2066
+ # episodes completed so far: 410
2067
+ # successes: 383 (93.4%)
2068
+
2069
+ Task: put both moka pots on the stove
2070
+ Success: True
2071
+ # episodes completed so far: 411
2072
+ # successes: 384 (93.4%)
2073
+
2074
+ Task: put both moka pots on the stove
2075
+ Success: False
2076
+ # episodes completed so far: 412
2077
+ # successes: 384 (93.2%)
2078
+
2079
+ Task: put both moka pots on the stove
2080
+ Success: True
2081
+ # episodes completed so far: 413
2082
+ # successes: 385 (93.2%)
2083
+
2084
+ Task: put both moka pots on the stove
2085
+ Success: True
2086
+ # episodes completed so far: 414
2087
+ # successes: 386 (93.2%)
2088
+
2089
+ Task: put both moka pots on the stove
2090
+ Success: True
2091
+ # episodes completed so far: 415
2092
+ # successes: 387 (93.3%)
2093
+
2094
+ Task: put both moka pots on the stove
2095
+ Success: True
2096
+ # episodes completed so far: 416
2097
+ # successes: 388 (93.3%)
2098
+
2099
+ Task: put both moka pots on the stove
2100
+ Success: True
2101
+ # episodes completed so far: 417
2102
+ # successes: 389 (93.3%)
2103
+
2104
+ Task: put both moka pots on the stove
2105
+ Success: False
2106
+ # episodes completed so far: 418
2107
+ # successes: 389 (93.1%)
2108
+
2109
+ Task: put both moka pots on the stove
2110
+ Success: True
2111
+ # episodes completed so far: 419
2112
+ # successes: 390 (93.1%)
2113
+
2114
+ Task: put both moka pots on the stove
2115
+ Success: True
2116
+ # episodes completed so far: 420
2117
+ # successes: 391 (93.1%)
2118
+
2119
+ Task: put both moka pots on the stove
2120
+ Success: True
2121
+ # episodes completed so far: 421
2122
+ # successes: 392 (93.1%)
2123
+
2124
+ Task: put both moka pots on the stove
2125
+ Success: True
2126
+ # episodes completed so far: 422
2127
+ # successes: 393 (93.1%)
2128
+
2129
+ Task: put both moka pots on the stove
2130
+ Success: False
2131
+ # episodes completed so far: 423
2132
+ # successes: 393 (92.9%)
2133
+
2134
+ Task: put both moka pots on the stove
2135
+ Success: True
2136
+ # episodes completed so far: 424
2137
+ # successes: 394 (92.9%)
2138
+
2139
+ Task: put both moka pots on the stove
2140
+ Success: True
2141
+ # episodes completed so far: 425
2142
+ # successes: 395 (92.9%)
2143
+
2144
+ Task: put both moka pots on the stove
2145
+ Success: True
2146
+ # episodes completed so far: 426
2147
+ # successes: 396 (93.0%)
2148
+
2149
+ Task: put both moka pots on the stove
2150
+ Success: True
2151
+ # episodes completed so far: 427
2152
+ # successes: 397 (93.0%)
2153
+
2154
+ Task: put both moka pots on the stove
2155
+ Success: True
2156
+ # episodes completed so far: 428
2157
+ # successes: 398 (93.0%)
2158
+
2159
+ Task: put both moka pots on the stove
2160
+ Success: True
2161
+ # episodes completed so far: 429
2162
+ # successes: 399 (93.0%)
2163
+
2164
+ Task: put both moka pots on the stove
2165
+ Success: True
2166
+ # episodes completed so far: 430
2167
+ # successes: 400 (93.0%)
2168
+
2169
+ Task: put both moka pots on the stove
2170
+ Success: True
2171
+ # episodes completed so far: 431
2172
+ # successes: 401 (93.0%)
2173
+
2174
+ Task: put both moka pots on the stove
2175
+ Success: False
2176
+ # episodes completed so far: 432
2177
+ # successes: 401 (92.8%)
2178
+
2179
+ Task: put both moka pots on the stove
2180
+ Success: True
2181
+ # episodes completed so far: 433
2182
+ # successes: 402 (92.8%)
2183
+
2184
+ Task: put both moka pots on the stove
2185
+ Success: True
2186
+ # episodes completed so far: 434
2187
+ # successes: 403 (92.9%)
2188
+
2189
+ Task: put both moka pots on the stove
2190
+ Success: True
2191
+ # episodes completed so far: 435
2192
+ # successes: 404 (92.9%)
2193
+
2194
+ Task: put both moka pots on the stove
2195
+ Success: True
2196
+ # episodes completed so far: 436
2197
+ # successes: 405 (92.9%)
2198
+
2199
+ Task: put both moka pots on the stove
2200
+ Success: True
2201
+ # episodes completed so far: 437
2202
+ # successes: 406 (92.9%)
2203
+
2204
+ Task: put both moka pots on the stove
2205
+ Success: True
2206
+ # episodes completed so far: 438
2207
+ # successes: 407 (92.9%)
2208
+
2209
+ Task: put both moka pots on the stove
2210
+ Success: True
2211
+ # episodes completed so far: 439
2212
+ # successes: 408 (92.9%)
2213
+
2214
+ Task: put both moka pots on the stove
2215
+ Success: False
2216
+ # episodes completed so far: 440
2217
+ # successes: 408 (92.7%)
2218
+
2219
+ Task: put both moka pots on the stove
2220
+ Success: True
2221
+ # episodes completed so far: 441
2222
+ # successes: 409 (92.7%)
2223
+
2224
+ Task: put both moka pots on the stove
2225
+ Success: False
2226
+ # episodes completed so far: 442
2227
+ # successes: 409 (92.5%)
2228
+
2229
+ Task: put both moka pots on the stove
2230
+ Success: False
2231
+ # episodes completed so far: 443
2232
+ # successes: 409 (92.3%)
2233
+
2234
+ Task: put both moka pots on the stove
2235
+ Success: True
2236
+ # episodes completed so far: 444
2237
+ # successes: 410 (92.3%)
2238
+
2239
+ Task: put both moka pots on the stove
2240
+ Success: False
2241
+ # episodes completed so far: 445
2242
+ # successes: 410 (92.1%)
2243
+
2244
+ Task: put both moka pots on the stove
2245
+ Success: False
2246
+ # episodes completed so far: 446
2247
+ # successes: 410 (91.9%)
2248
+
2249
+ Task: put both moka pots on the stove
2250
+ Success: True
2251
+ # episodes completed so far: 447
2252
+ # successes: 411 (91.9%)
2253
+
2254
+ Task: put both moka pots on the stove
2255
+ Success: True
2256
+ # episodes completed so far: 448
2257
+ # successes: 412 (92.0%)
2258
+
2259
+ Task: put both moka pots on the stove
2260
+ Success: True
2261
+ # episodes completed so far: 449
2262
+ # successes: 413 (92.0%)
2263
+
2264
+ Task: put both moka pots on the stove
2265
+ Success: True
2266
+ # episodes completed so far: 450
2267
+ # successes: 414 (92.0%)
2268
+ Current task success rate: 0.76
2269
+ Current total success rate: 0.92
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: 415 (92.0%)
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: 416 (92.0%)
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: 417 (92.1%)
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: 418 (92.1%)
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: 419 (92.1%)
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: 420 (92.1%)
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: 421 (92.1%)
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: 422 (92.1%)
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: 423 (92.2%)
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: 424 (92.2%)
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: 425 (92.2%)
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: 426 (92.2%)
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: 427 (92.2%)
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: 428 (92.2%)
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: 429 (92.3%)
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: 430 (92.3%)
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: 431 (92.3%)
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: 432 (92.3%)
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: 433 (92.3%)
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: 434 (92.3%)
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: 435 (92.4%)
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: 436 (92.4%)
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: 437 (92.4%)
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: 438 (92.4%)
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: 439 (92.4%)
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: 440 (92.4%)
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: 441 (92.5%)
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: 442 (92.5%)
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: 443 (92.5%)
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: 444 (92.5%)
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: 445 (92.5%)
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: 446 (92.5%)
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: 447 (92.5%)
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: 448 (92.6%)
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: 449 (92.6%)
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: 450 (92.6%)
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: 451 (92.6%)
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: 452 (92.6%)
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: 453 (92.6%)
2465
+
2466
+ Task: put the yellow and white mug in the microwave and close it
2467
+ Success: True
2468
+ # episodes completed so far: 490
2469
+ # successes: 454 (92.7%)
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: 455 (92.7%)
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: 456 (92.7%)
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: 457 (92.7%)
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: 458 (92.7%)
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: 459 (92.7%)
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: 460 (92.7%)
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: 461 (92.8%)
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: 462 (92.8%)
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: 463 (92.8%)
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: 464 (92.8%)
2520
+ Current task success rate: 1.0
2521
+ Current total success rate: 0.928
libero_goal_2B/starvla_qwen_pi/config.json ADDED
@@ -0,0 +1,129 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "run_id": "starvla_qwen_pi",
3
+ "run_root_dir": "/share/project/baishuanghao/code/starVLA/pretrained_models_3/libero_goal_2B_mee0e-2",
4
+ "seed": 42,
5
+ "trackers": [
6
+ "jsonl",
7
+ "wandb"
8
+ ],
9
+ "wandb_project": "starVLA",
10
+ "is_debug": false,
11
+ "enable_mee": true,
12
+ "mee_weight": 0.0,
13
+ "framework": {
14
+ "name": "QwenPI",
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": 60000,
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_3/libero_goal_2B_mee0e-2/starvla_qwen_pi"
129
+ }
libero_goal_2B/starvla_qwen_pi/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_pi/final_model/pytorch_model.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:87d5cf0fb0725df7e212df20684299071e6cf69cef8a6bd8a6ebc2c42662148c
3
+ size 6825856850
libero_goal_2B/starvla_qwen_pi/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: True
297
+ # episodes completed so far: 59
298
+ # successes: 59 (100.0%)
299
+
300
+ Task: put the bowl on the stove
301
+ Success: False
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: False
579
+ # episodes completed so far: 115
580
+ # successes: 111 (96.5%)
581
+
582
+ Task: put the wine bottle on top of the cabinet
583
+ Success: True
584
+ # episodes completed so far: 116
585
+ # successes: 112 (96.6%)
586
+
587
+ Task: put the wine bottle on top of the cabinet
588
+ Success: True
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: False
639
+ # episodes completed so far: 127
640
+ # successes: 122 (96.1%)
641
+
642
+ Task: put the wine bottle on top of the cabinet
643
+ Success: True
644
+ # episodes completed so far: 128
645
+ # successes: 123 (96.1%)
646
+
647
+ Task: put the wine bottle on top of the cabinet
648
+ Success: True
649
+ # episodes completed so far: 129
650
+ # successes: 124 (96.1%)
651
+
652
+ Task: put the wine bottle on top of the cabinet
653
+ Success: True
654
+ # episodes completed so far: 130
655
+ # successes: 125 (96.2%)
656
+
657
+ Task: put the wine bottle on top of the cabinet
658
+ Success: True
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: True
714
+ # episodes completed so far: 142
715
+ # successes: 137 (96.5%)
716
+
717
+ Task: put the wine bottle on top of the cabinet
718
+ Success: True
719
+ # episodes completed so far: 143
720
+ # successes: 138 (96.5%)
721
+
722
+ Task: put the wine bottle on top of the cabinet
723
+ Success: True
724
+ # episodes completed so far: 144
725
+ # successes: 139 (96.5%)
726
+
727
+ Task: put the wine bottle on top of the cabinet
728
+ Success: True
729
+ # episodes completed so far: 145
730
+ # successes: 140 (96.6%)
731
+
732
+ Task: put the wine bottle on top of the cabinet
733
+ Success: True
734
+ # episodes completed so far: 146
735
+ # successes: 141 (96.6%)
736
+
737
+ Task: put the wine bottle on top of the cabinet
738
+ Success: True
739
+ # episodes completed so far: 147
740
+ # successes: 142 (96.6%)
741
+
742
+ Task: put the wine bottle on top of the cabinet
743
+ Success: True
744
+ # episodes completed so far: 148
745
+ # successes: 143 (96.6%)
746
+
747
+ Task: put the wine bottle on top of the cabinet
748
+ Success: True
749
+ # episodes completed so far: 149
750
+ # successes: 144 (96.6%)
751
+
752
+ Task: put the wine bottle on top of the cabinet
753
+ Success: True
754
+ # episodes completed so far: 150
755
+ # successes: 145 (96.7%)
756
+ Current task success rate: 0.94
757
+ Current total success rate: 0.9666666666666667
758
+
759
+ Task: open the top drawer and put the bowl inside
760
+ Success: True
761
+ # episodes completed so far: 151
762
+ # successes: 146 (96.7%)
763
+
764
+ Task: open the top drawer and put the bowl inside
765
+ Success: True
766
+ # episodes completed so far: 152
767
+ # successes: 147 (96.7%)
768
+
769
+ Task: open the top drawer and put the bowl inside
770
+ Success: True
771
+ # episodes completed so far: 153
772
+ # successes: 148 (96.7%)
773
+
774
+ Task: open the top drawer and put the bowl inside
775
+ Success: True
776
+ # episodes completed so far: 154
777
+ # successes: 149 (96.8%)
778
+
779
+ Task: open the top drawer and put the bowl inside
780
+ Success: True
781
+ # episodes completed so far: 155
782
+ # successes: 150 (96.8%)
783
+
784
+ Task: open the top drawer and put the bowl inside
785
+ Success: True
786
+ # episodes completed so far: 156
787
+ # successes: 151 (96.8%)
788
+
789
+ Task: open the top drawer and put the bowl inside
790
+ Success: True
791
+ # episodes completed so far: 157
792
+ # successes: 152 (96.8%)
793
+
794
+ Task: open the top drawer and put the bowl inside
795
+ Success: True
796
+ # episodes completed so far: 158
797
+ # successes: 153 (96.8%)
798
+
799
+ Task: open the top drawer and put the bowl inside
800
+ Success: True
801
+ # episodes completed so far: 159
802
+ # successes: 154 (96.9%)
803
+
804
+ Task: open the top drawer and put the bowl inside
805
+ Success: True
806
+ # episodes completed so far: 160
807
+ # successes: 155 (96.9%)
808
+
809
+ Task: open the top drawer and put the bowl inside
810
+ Success: True
811
+ # episodes completed so far: 161
812
+ # successes: 156 (96.9%)
813
+
814
+ Task: open the top drawer and put the bowl inside
815
+ Success: True
816
+ # episodes completed so far: 162
817
+ # successes: 157 (96.9%)
818
+
819
+ Task: open the top drawer and put the bowl inside
820
+ Success: True
821
+ # episodes completed so far: 163
822
+ # successes: 158 (96.9%)
823
+
824
+ Task: open the top drawer and put the bowl inside
825
+ Success: True
826
+ # episodes completed so far: 164
827
+ # successes: 159 (97.0%)
828
+
829
+ Task: open the top drawer and put the bowl inside
830
+ Success: True
831
+ # episodes completed so far: 165
832
+ # successes: 160 (97.0%)
833
+
834
+ Task: open the top drawer and put the bowl inside
835
+ Success: True
836
+ # episodes completed so far: 166
837
+ # successes: 161 (97.0%)
838
+
839
+ Task: open the top drawer and put the bowl inside
840
+ Success: True
841
+ # episodes completed so far: 167
842
+ # successes: 162 (97.0%)
843
+
844
+ Task: open the top drawer and put the bowl inside
845
+ Success: True
846
+ # episodes completed so far: 168
847
+ # successes: 163 (97.0%)
848
+
849
+ Task: open the top drawer and put the bowl inside
850
+ Success: True
851
+ # episodes completed so far: 169
852
+ # successes: 164 (97.0%)
853
+
854
+ Task: open the top drawer and put the bowl inside
855
+ Success: True
856
+ # episodes completed so far: 170
857
+ # successes: 165 (97.1%)
858
+
859
+ Task: open the top drawer and put the bowl inside
860
+ Success: True
861
+ # episodes completed so far: 171
862
+ # successes: 166 (97.1%)
863
+
864
+ Task: open the top drawer and put the bowl inside
865
+ Success: True
866
+ # episodes completed so far: 172
867
+ # successes: 167 (97.1%)
868
+
869
+ Task: open the top drawer and put the bowl inside
870
+ Success: True
871
+ # episodes completed so far: 173
872
+ # successes: 168 (97.1%)
873
+
874
+ Task: open the top drawer and put the bowl inside
875
+ Success: True
876
+ # episodes completed so far: 174
877
+ # successes: 169 (97.1%)
878
+
879
+ Task: open the top drawer and put the bowl inside
880
+ Success: True
881
+ # episodes completed so far: 175
882
+ # successes: 170 (97.1%)
883
+
884
+ Task: open the top drawer and put the bowl inside
885
+ Success: True
886
+ # episodes completed so far: 176
887
+ # successes: 171 (97.2%)
888
+
889
+ Task: open the top drawer and put the bowl inside
890
+ Success: True
891
+ # episodes completed so far: 177
892
+ # successes: 172 (97.2%)
893
+
894
+ Task: open the top drawer and put the bowl inside
895
+ Success: True
896
+ # episodes completed so far: 178
897
+ # successes: 173 (97.2%)
898
+
899
+ Task: open the top drawer and put the bowl inside
900
+ Success: False
901
+ # episodes completed so far: 179
902
+ # successes: 173 (96.6%)
903
+
904
+ Task: open the top drawer and put the bowl inside
905
+ Success: True
906
+ # episodes completed so far: 180
907
+ # successes: 174 (96.7%)
908
+
909
+ Task: open the top drawer and put the bowl inside
910
+ Success: True
911
+ # episodes completed so far: 181
912
+ # successes: 175 (96.7%)
913
+
914
+ Task: open the top drawer and put the bowl inside
915
+ Success: True
916
+ # episodes completed so far: 182
917
+ # successes: 176 (96.7%)
918
+
919
+ Task: open the top drawer and put the bowl inside
920
+ Success: True
921
+ # episodes completed so far: 183
922
+ # successes: 177 (96.7%)
923
+
924
+ Task: open the top drawer and put the bowl inside
925
+ Success: True
926
+ # episodes completed so far: 184
927
+ # successes: 178 (96.7%)
928
+
929
+ Task: open the top drawer and put the bowl inside
930
+ Success: True
931
+ # episodes completed so far: 185
932
+ # successes: 179 (96.8%)
933
+
934
+ Task: open the top drawer and put the bowl inside
935
+ Success: True
936
+ # episodes completed so far: 186
937
+ # successes: 180 (96.8%)
938
+
939
+ Task: open the top drawer and put the bowl inside
940
+ Success: True
941
+ # episodes completed so far: 187
942
+ # successes: 181 (96.8%)
943
+
944
+ Task: open the top drawer and put the bowl inside
945
+ Success: True
946
+ # episodes completed so far: 188
947
+ # successes: 182 (96.8%)
948
+
949
+ Task: open the top drawer and put the bowl inside
950
+ Success: True
951
+ # episodes completed so far: 189
952
+ # successes: 183 (96.8%)
953
+
954
+ Task: open the top drawer and put the bowl inside
955
+ Success: True
956
+ # episodes completed so far: 190
957
+ # successes: 184 (96.8%)
958
+
959
+ Task: open the top drawer and put the bowl inside
960
+ Success: False
961
+ # episodes completed so far: 191
962
+ # successes: 184 (96.3%)
963
+
964
+ Task: open the top drawer and put the bowl inside
965
+ Success: True
966
+ # episodes completed so far: 192
967
+ # successes: 185 (96.4%)
968
+
969
+ Task: open the top drawer and put the bowl inside
970
+ Success: True
971
+ # episodes completed so far: 193
972
+ # successes: 186 (96.4%)
973
+
974
+ Task: open the top drawer and put the bowl inside
975
+ Success: True
976
+ # episodes completed so far: 194
977
+ # successes: 187 (96.4%)
978
+
979
+ Task: open the top drawer and put the bowl inside
980
+ Success: True
981
+ # episodes completed so far: 195
982
+ # successes: 188 (96.4%)
983
+
984
+ Task: open the top drawer and put the bowl inside
985
+ Success: True
986
+ # episodes completed so far: 196
987
+ # successes: 189 (96.4%)
988
+
989
+ Task: open the top drawer and put the bowl inside
990
+ Success: True
991
+ # episodes completed so far: 197
992
+ # successes: 190 (96.4%)
993
+
994
+ Task: open the top drawer and put the bowl inside
995
+ Success: True
996
+ # episodes completed so far: 198
997
+ # successes: 191 (96.5%)
998
+
999
+ Task: open the top drawer and put the bowl inside
1000
+ Success: True
1001
+ # episodes completed so far: 199
1002
+ # successes: 192 (96.5%)
1003
+
1004
+ Task: open the top drawer and put the bowl inside
1005
+ Success: True
1006
+ # episodes completed so far: 200
1007
+ # successes: 193 (96.5%)
1008
+ Current task success rate: 0.96
1009
+ Current total success rate: 0.965
1010
+
1011
+ Task: put the bowl on top of the cabinet
1012
+ Success: True
1013
+ # episodes completed so far: 201
1014
+ # successes: 194 (96.5%)
1015
+
1016
+ Task: put the bowl on top of the cabinet
1017
+ Success: True
1018
+ # episodes completed so far: 202
1019
+ # successes: 195 (96.5%)
1020
+
1021
+ Task: put the bowl on top of the cabinet
1022
+ Success: True
1023
+ # episodes completed so far: 203
1024
+ # successes: 196 (96.6%)
1025
+
1026
+ Task: put the bowl on top of the cabinet
1027
+ Success: True
1028
+ # episodes completed so far: 204
1029
+ # successes: 197 (96.6%)
1030
+
1031
+ Task: put the bowl on top of the cabinet
1032
+ Success: True
1033
+ # episodes completed so far: 205
1034
+ # successes: 198 (96.6%)
1035
+
1036
+ Task: put the bowl on top of the cabinet
1037
+ Success: True
1038
+ # episodes completed so far: 206
1039
+ # successes: 199 (96.6%)
1040
+
1041
+ Task: put the bowl on top of the cabinet
1042
+ Success: True
1043
+ # episodes completed so far: 207
1044
+ # successes: 200 (96.6%)
1045
+
1046
+ Task: put the bowl on top of the cabinet
1047
+ Success: True
1048
+ # episodes completed so far: 208
1049
+ # successes: 201 (96.6%)
1050
+
1051
+ Task: put the bowl on top of the cabinet
1052
+ Success: True
1053
+ # episodes completed so far: 209
1054
+ # successes: 202 (96.7%)
1055
+
1056
+ Task: put the bowl on top of the cabinet
1057
+ Success: True
1058
+ # episodes completed so far: 210
1059
+ # successes: 203 (96.7%)
1060
+
1061
+ Task: put the bowl on top of the cabinet
1062
+ Success: True
1063
+ # episodes completed so far: 211
1064
+ # successes: 204 (96.7%)
1065
+
1066
+ Task: put the bowl on top of the cabinet
1067
+ Success: True
1068
+ # episodes completed so far: 212
1069
+ # successes: 205 (96.7%)
1070
+
1071
+ Task: put the bowl on top of the cabinet
1072
+ Success: True
1073
+ # episodes completed so far: 213
1074
+ # successes: 206 (96.7%)
1075
+
1076
+ Task: put the bowl on top of the cabinet
1077
+ Success: True
1078
+ # episodes completed so far: 214
1079
+ # successes: 207 (96.7%)
1080
+
1081
+ Task: put the bowl on top of the cabinet
1082
+ Success: False
1083
+ # episodes completed so far: 215
1084
+ # successes: 207 (96.3%)
1085
+
1086
+ Task: put the bowl on top of the cabinet
1087
+ Success: True
1088
+ # episodes completed so far: 216
1089
+ # successes: 208 (96.3%)
1090
+
1091
+ Task: put the bowl on top of the cabinet
1092
+ Success: True
1093
+ # episodes completed so far: 217
1094
+ # successes: 209 (96.3%)
1095
+
1096
+ Task: put the bowl on top of the cabinet
1097
+ Success: True
1098
+ # episodes completed so far: 218
1099
+ # successes: 210 (96.3%)
1100
+
1101
+ Task: put the bowl on top of the cabinet
1102
+ Success: True
1103
+ # episodes completed so far: 219
1104
+ # successes: 211 (96.3%)
1105
+
1106
+ Task: put the bowl on top of the cabinet
1107
+ Success: True
1108
+ # episodes completed so far: 220
1109
+ # successes: 212 (96.4%)
1110
+
1111
+ Task: put the bowl on top of the cabinet
1112
+ Success: True
1113
+ # episodes completed so far: 221
1114
+ # successes: 213 (96.4%)
1115
+
1116
+ Task: put the bowl on top of the cabinet
1117
+ Success: True
1118
+ # episodes completed so far: 222
1119
+ # successes: 214 (96.4%)
1120
+
1121
+ Task: put the bowl on top of the cabinet
1122
+ Success: True
1123
+ # episodes completed so far: 223
1124
+ # successes: 215 (96.4%)
1125
+
1126
+ Task: put the bowl on top of the cabinet
1127
+ Success: True
1128
+ # episodes completed so far: 224
1129
+ # successes: 216 (96.4%)
1130
+
1131
+ Task: put the bowl on top of the cabinet
1132
+ Success: True
1133
+ # episodes completed so far: 225
1134
+ # successes: 217 (96.4%)
1135
+
1136
+ Task: put the bowl on top of the cabinet
1137
+ Success: True
1138
+ # episodes completed so far: 226
1139
+ # successes: 218 (96.5%)
1140
+
1141
+ Task: put the bowl on top of the cabinet
1142
+ Success: True
1143
+ # episodes completed so far: 227
1144
+ # successes: 219 (96.5%)
1145
+
1146
+ Task: put the bowl on top of the cabinet
1147
+ Success: True
1148
+ # episodes completed so far: 228
1149
+ # successes: 220 (96.5%)
1150
+
1151
+ Task: put the bowl on top of the cabinet
1152
+ Success: True
1153
+ # episodes completed so far: 229
1154
+ # successes: 221 (96.5%)
1155
+
1156
+ Task: put the bowl on top of the cabinet
1157
+ Success: True
1158
+ # episodes completed so far: 230
1159
+ # successes: 222 (96.5%)
1160
+
1161
+ Task: put the bowl on top of the cabinet
1162
+ Success: True
1163
+ # episodes completed so far: 231
1164
+ # successes: 223 (96.5%)
1165
+
1166
+ Task: put the bowl on top of the cabinet
1167
+ Success: True
1168
+ # episodes completed so far: 232
1169
+ # successes: 224 (96.6%)
1170
+
1171
+ Task: put the bowl on top of the cabinet
1172
+ Success: True
1173
+ # episodes completed so far: 233
1174
+ # successes: 225 (96.6%)
1175
+
1176
+ Task: put the bowl on top of the cabinet
1177
+ Success: True
1178
+ # episodes completed so far: 234
1179
+ # successes: 226 (96.6%)
1180
+
1181
+ Task: put the bowl on top of the cabinet
1182
+ Success: True
1183
+ # episodes completed so far: 235
1184
+ # successes: 227 (96.6%)
1185
+
1186
+ Task: put the bowl on top of the cabinet
1187
+ Success: True
1188
+ # episodes completed so far: 236
1189
+ # successes: 228 (96.6%)
1190
+
1191
+ Task: put the bowl on top of the cabinet
1192
+ Success: True
1193
+ # episodes completed so far: 237
1194
+ # successes: 229 (96.6%)
1195
+
1196
+ Task: put the bowl on top of the cabinet
1197
+ Success: True
1198
+ # episodes completed so far: 238
1199
+ # successes: 230 (96.6%)
1200
+
1201
+ Task: put the bowl on top of the cabinet
1202
+ Success: True
1203
+ # episodes completed so far: 239
1204
+ # successes: 231 (96.7%)
1205
+
1206
+ Task: put the bowl on top of the cabinet
1207
+ Success: True
1208
+ # episodes completed so far: 240
1209
+ # successes: 232 (96.7%)
1210
+
1211
+ Task: put the bowl on top of the cabinet
1212
+ Success: True
1213
+ # episodes completed so far: 241
1214
+ # successes: 233 (96.7%)
1215
+
1216
+ Task: put the bowl on top of the cabinet
1217
+ Success: True
1218
+ # episodes completed so far: 242
1219
+ # successes: 234 (96.7%)
1220
+
1221
+ Task: put the bowl on top of the cabinet
1222
+ Success: True
1223
+ # episodes completed so far: 243
1224
+ # successes: 235 (96.7%)
1225
+
1226
+ Task: put the bowl on top of the cabinet
1227
+ Success: True
1228
+ # episodes completed so far: 244
1229
+ # successes: 236 (96.7%)
1230
+
1231
+ Task: put the bowl on top of the cabinet
1232
+ Success: True
1233
+ # episodes completed so far: 245
1234
+ # successes: 237 (96.7%)
1235
+
1236
+ Task: put the bowl on top of the cabinet
1237
+ Success: True
1238
+ # episodes completed so far: 246
1239
+ # successes: 238 (96.7%)
1240
+
1241
+ Task: put the bowl on top of the cabinet
1242
+ Success: True
1243
+ # episodes completed so far: 247
1244
+ # successes: 239 (96.8%)
1245
+
1246
+ Task: put the bowl on top of the cabinet
1247
+ Success: True
1248
+ # episodes completed so far: 248
1249
+ # successes: 240 (96.8%)
1250
+
1251
+ Task: put the bowl on top of the cabinet
1252
+ Success: True
1253
+ # episodes completed so far: 249
1254
+ # successes: 241 (96.8%)
1255
+
1256
+ Task: put the bowl on top of the cabinet
1257
+ Success: True
1258
+ # episodes completed so far: 250
1259
+ # successes: 242 (96.8%)
1260
+ Current task success rate: 0.98
1261
+ Current total success rate: 0.968
1262
+
1263
+ Task: push the plate to the front of the stove
1264
+ Success: True
1265
+ # episodes completed so far: 251
1266
+ # successes: 243 (96.8%)
1267
+
1268
+ Task: push the plate to the front of the stove
1269
+ Success: True
1270
+ # episodes completed so far: 252
1271
+ # successes: 244 (96.8%)
1272
+
1273
+ Task: push the plate to the front of the stove
1274
+ Success: True
1275
+ # episodes completed so far: 253
1276
+ # successes: 245 (96.8%)
1277
+
1278
+ Task: push the plate to the front of the stove
1279
+ Success: True
1280
+ # episodes completed so far: 254
1281
+ # successes: 246 (96.9%)
1282
+
1283
+ Task: push the plate to the front of the stove
1284
+ Success: True
1285
+ # episodes completed so far: 255
1286
+ # successes: 247 (96.9%)
1287
+
1288
+ Task: push the plate to the front of the stove
1289
+ Success: True
1290
+ # episodes completed so far: 256
1291
+ # successes: 248 (96.9%)
1292
+
1293
+ Task: push the plate to the front of the stove
1294
+ Success: True
1295
+ # episodes completed so far: 257
1296
+ # successes: 249 (96.9%)
1297
+
1298
+ Task: push the plate to the front of the stove
1299
+ Success: True
1300
+ # episodes completed so far: 258
1301
+ # successes: 250 (96.9%)
1302
+
1303
+ Task: push the plate to the front of the stove
1304
+ Success: True
1305
+ # episodes completed so far: 259
1306
+ # successes: 251 (96.9%)
1307
+
1308
+ Task: push the plate to the front of the stove
1309
+ Success: True
1310
+ # episodes completed so far: 260
1311
+ # successes: 252 (96.9%)
1312
+
1313
+ Task: push the plate to the front of the stove
1314
+ Success: True
1315
+ # episodes completed so far: 261
1316
+ # successes: 253 (96.9%)
1317
+
1318
+ Task: push the plate to the front of the stove
1319
+ Success: True
1320
+ # episodes completed so far: 262
1321
+ # successes: 254 (96.9%)
1322
+
1323
+ Task: push the plate to the front of the stove
1324
+ Success: True
1325
+ # episodes completed so far: 263
1326
+ # successes: 255 (97.0%)
1327
+
1328
+ Task: push the plate to the front of the stove
1329
+ Success: True
1330
+ # episodes completed so far: 264
1331
+ # successes: 256 (97.0%)
1332
+
1333
+ Task: push the plate to the front of the stove
1334
+ Success: True
1335
+ # episodes completed so far: 265
1336
+ # successes: 257 (97.0%)
1337
+
1338
+ Task: push the plate to the front of the stove
1339
+ Success: True
1340
+ # episodes completed so far: 266
1341
+ # successes: 258 (97.0%)
1342
+
1343
+ Task: push the plate to the front of the stove
1344
+ Success: True
1345
+ # episodes completed so far: 267
1346
+ # successes: 259 (97.0%)
1347
+
1348
+ Task: push the plate to the front of the stove
1349
+ Success: True
1350
+ # episodes completed so far: 268
1351
+ # successes: 260 (97.0%)
1352
+
1353
+ Task: push the plate to the front of the stove
1354
+ Success: True
1355
+ # episodes completed so far: 269
1356
+ # successes: 261 (97.0%)
1357
+
1358
+ Task: push the plate to the front of the stove
1359
+ Success: True
1360
+ # episodes completed so far: 270
1361
+ # successes: 262 (97.0%)
1362
+
1363
+ Task: push the plate to the front of the stove
1364
+ Success: True
1365
+ # episodes completed so far: 271
1366
+ # successes: 263 (97.0%)
1367
+
1368
+ Task: push the plate to the front of the stove
1369
+ Success: True
1370
+ # episodes completed so far: 272
1371
+ # successes: 264 (97.1%)
1372
+
1373
+ Task: push the plate to the front of the stove
1374
+ Success: True
1375
+ # episodes completed so far: 273
1376
+ # successes: 265 (97.1%)
1377
+
1378
+ Task: push the plate to the front of the stove
1379
+ Success: True
1380
+ # episodes completed so far: 274
1381
+ # successes: 266 (97.1%)
1382
+
1383
+ Task: push the plate to the front of the stove
1384
+ Success: True
1385
+ # episodes completed so far: 275
1386
+ # successes: 267 (97.1%)
1387
+
1388
+ Task: push the plate to the front of the stove
1389
+ Success: True
1390
+ # episodes completed so far: 276
1391
+ # successes: 268 (97.1%)
1392
+
1393
+ Task: push the plate to the front of the stove
1394
+ Success: True
1395
+ # episodes completed so far: 277
1396
+ # successes: 269 (97.1%)
1397
+
1398
+ Task: push the plate to the front of the stove
1399
+ Success: True
1400
+ # episodes completed so far: 278
1401
+ # successes: 270 (97.1%)
1402
+
1403
+ Task: push the plate to the front of the stove
1404
+ Success: True
1405
+ # episodes completed so far: 279
1406
+ # successes: 271 (97.1%)
1407
+
1408
+ Task: push the plate to the front of the stove
1409
+ Success: True
1410
+ # episodes completed so far: 280
1411
+ # successes: 272 (97.1%)
1412
+
1413
+ Task: push the plate to the front of the stove
1414
+ Success: True
1415
+ # episodes completed so far: 281
1416
+ # successes: 273 (97.2%)
1417
+
1418
+ Task: push the plate to the front of the stove
1419
+ Success: True
1420
+ # episodes completed so far: 282
1421
+ # successes: 274 (97.2%)
1422
+
1423
+ Task: push the plate to the front of the stove
1424
+ Success: True
1425
+ # episodes completed so far: 283
1426
+ # successes: 275 (97.2%)
1427
+
1428
+ Task: push the plate to the front of the stove
1429
+ Success: True
1430
+ # episodes completed so far: 284
1431
+ # successes: 276 (97.2%)
1432
+
1433
+ Task: push the plate to the front of the stove
1434
+ Success: True
1435
+ # episodes completed so far: 285
1436
+ # successes: 277 (97.2%)
1437
+
1438
+ Task: push the plate to the front of the stove
1439
+ Success: False
1440
+ # episodes completed so far: 286
1441
+ # successes: 277 (96.9%)
1442
+
1443
+ Task: push the plate to the front of the stove
1444
+ Success: True
1445
+ # episodes completed so far: 287
1446
+ # successes: 278 (96.9%)
1447
+
1448
+ Task: push the plate to the front of the stove
1449
+ Success: True
1450
+ # episodes completed so far: 288
1451
+ # successes: 279 (96.9%)
1452
+
1453
+ Task: push the plate to the front of the stove
1454
+ Success: True
1455
+ # episodes completed so far: 289
1456
+ # successes: 280 (96.9%)
1457
+
1458
+ Task: push the plate to the front of the stove
1459
+ Success: True
1460
+ # episodes completed so far: 290
1461
+ # successes: 281 (96.9%)
1462
+
1463
+ Task: push the plate to the front of the stove
1464
+ Success: True
1465
+ # episodes completed so far: 291
1466
+ # successes: 282 (96.9%)
1467
+
1468
+ Task: push the plate to the front of the stove
1469
+ Success: True
1470
+ # episodes completed so far: 292
1471
+ # successes: 283 (96.9%)
1472
+
1473
+ Task: push the plate to the front of the stove
1474
+ Success: True
1475
+ # episodes completed so far: 293
1476
+ # successes: 284 (96.9%)
1477
+
1478
+ Task: push the plate to the front of the stove
1479
+ Success: True
1480
+ # episodes completed so far: 294
1481
+ # successes: 285 (96.9%)
1482
+
1483
+ Task: push the plate to the front of the stove
1484
+ Success: True
1485
+ # episodes completed so far: 295
1486
+ # successes: 286 (96.9%)
1487
+
1488
+ Task: push the plate to the front of the stove
1489
+ Success: True
1490
+ # episodes completed so far: 296
1491
+ # successes: 287 (97.0%)
1492
+
1493
+ Task: push the plate to the front of the stove
1494
+ Success: True
1495
+ # episodes completed so far: 297
1496
+ # successes: 288 (97.0%)
1497
+
1498
+ Task: push the plate to the front of the stove
1499
+ Success: True
1500
+ # episodes completed so far: 298
1501
+ # successes: 289 (97.0%)
1502
+
1503
+ Task: push the plate to the front of the stove
1504
+ Success: True
1505
+ # episodes completed so far: 299
1506
+ # successes: 290 (97.0%)
1507
+
1508
+ Task: push the plate to the front of the stove
1509
+ Success: True
1510
+ # episodes completed so far: 300
1511
+ # successes: 291 (97.0%)
1512
+ Current task success rate: 0.98
1513
+ Current total success rate: 0.97
1514
+
1515
+ Task: put the cream cheese in the bowl
1516
+ Success: True
1517
+ # episodes completed so far: 301
1518
+ # successes: 292 (97.0%)
1519
+
1520
+ Task: put the cream cheese in the bowl
1521
+ Success: True
1522
+ # episodes completed so far: 302
1523
+ # successes: 293 (97.0%)
1524
+
1525
+ Task: put the cream cheese in the bowl
1526
+ Success: True
1527
+ # episodes completed so far: 303
1528
+ # successes: 294 (97.0%)
1529
+
1530
+ Task: put the cream cheese in the bowl
1531
+ Success: True
1532
+ # episodes completed so far: 304
1533
+ # successes: 295 (97.0%)
1534
+
1535
+ Task: put the cream cheese in the bowl
1536
+ Success: True
1537
+ # episodes completed so far: 305
1538
+ # successes: 296 (97.0%)
1539
+
1540
+ Task: put the cream cheese in the bowl
1541
+ Success: True
1542
+ # episodes completed so far: 306
1543
+ # successes: 297 (97.1%)
1544
+
1545
+ Task: put the cream cheese in the bowl
1546
+ Success: True
1547
+ # episodes completed so far: 307
1548
+ # successes: 298 (97.1%)
1549
+
1550
+ Task: put the cream cheese in the bowl
1551
+ Success: True
1552
+ # episodes completed so far: 308
1553
+ # successes: 299 (97.1%)
1554
+
1555
+ Task: put the cream cheese in the bowl
1556
+ Success: True
1557
+ # episodes completed so far: 309
1558
+ # successes: 300 (97.1%)
1559
+
1560
+ Task: put the cream cheese in the bowl
1561
+ Success: True
1562
+ # episodes completed so far: 310
1563
+ # successes: 301 (97.1%)
1564
+
1565
+ Task: put the cream cheese in the bowl
1566
+ Success: True
1567
+ # episodes completed so far: 311
1568
+ # successes: 302 (97.1%)
1569
+
1570
+ Task: put the cream cheese in the bowl
1571
+ Success: True
1572
+ # episodes completed so far: 312
1573
+ # successes: 303 (97.1%)
1574
+
1575
+ Task: put the cream cheese in the bowl
1576
+ Success: True
1577
+ # episodes completed so far: 313
1578
+ # successes: 304 (97.1%)
1579
+
1580
+ Task: put the cream cheese in the bowl
1581
+ Success: True
1582
+ # episodes completed so far: 314
1583
+ # successes: 305 (97.1%)
1584
+
1585
+ Task: put the cream cheese in the bowl
1586
+ Success: True
1587
+ # episodes completed so far: 315
1588
+ # successes: 306 (97.1%)
1589
+
1590
+ Task: put the cream cheese in the bowl
1591
+ Success: True
1592
+ # episodes completed so far: 316
1593
+ # successes: 307 (97.2%)
1594
+
1595
+ Task: put the cream cheese in the bowl
1596
+ Success: True
1597
+ # episodes completed so far: 317
1598
+ # successes: 308 (97.2%)
1599
+
1600
+ Task: put the cream cheese in the bowl
1601
+ Success: True
1602
+ # episodes completed so far: 318
1603
+ # successes: 309 (97.2%)
1604
+
1605
+ Task: put the cream cheese in the bowl
1606
+ Success: True
1607
+ # episodes completed so far: 319
1608
+ # successes: 310 (97.2%)
1609
+
1610
+ Task: put the cream cheese in the bowl
1611
+ Success: True
1612
+ # episodes completed so far: 320
1613
+ # successes: 311 (97.2%)
1614
+
1615
+ Task: put the cream cheese in the bowl
1616
+ Success: True
1617
+ # episodes completed so far: 321
1618
+ # successes: 312 (97.2%)
1619
+
1620
+ Task: put the cream cheese in the bowl
1621
+ Success: True
1622
+ # episodes completed so far: 322
1623
+ # successes: 313 (97.2%)
1624
+
1625
+ Task: put the cream cheese in the bowl
1626
+ Success: True
1627
+ # episodes completed so far: 323
1628
+ # successes: 314 (97.2%)
1629
+
1630
+ Task: put the cream cheese in the bowl
1631
+ Success: True
1632
+ # episodes completed so far: 324
1633
+ # successes: 315 (97.2%)
1634
+
1635
+ Task: put the cream cheese in the bowl
1636
+ Success: True
1637
+ # episodes completed so far: 325
1638
+ # successes: 316 (97.2%)
1639
+
1640
+ Task: put the cream cheese in the bowl
1641
+ Success: True
1642
+ # episodes completed so far: 326
1643
+ # successes: 317 (97.2%)
1644
+
1645
+ Task: put the cream cheese in the bowl
1646
+ Success: True
1647
+ # episodes completed so far: 327
1648
+ # successes: 318 (97.2%)
1649
+
1650
+ Task: put the cream cheese in the bowl
1651
+ Success: True
1652
+ # episodes completed so far: 328
1653
+ # successes: 319 (97.3%)
1654
+
1655
+ Task: put the cream cheese in the bowl
1656
+ Success: True
1657
+ # episodes completed so far: 329
1658
+ # successes: 320 (97.3%)
1659
+
1660
+ Task: put the cream cheese in the bowl
1661
+ Success: True
1662
+ # episodes completed so far: 330
1663
+ # successes: 321 (97.3%)
1664
+
1665
+ Task: put the cream cheese in the bowl
1666
+ Success: True
1667
+ # episodes completed so far: 331
1668
+ # successes: 322 (97.3%)
1669
+
1670
+ Task: put the cream cheese in the bowl
1671
+ Success: True
1672
+ # episodes completed so far: 332
1673
+ # successes: 323 (97.3%)
1674
+
1675
+ Task: put the cream cheese in the bowl
1676
+ Success: True
1677
+ # episodes completed so far: 333
1678
+ # successes: 324 (97.3%)
1679
+
1680
+ Task: put the cream cheese in the bowl
1681
+ Success: True
1682
+ # episodes completed so far: 334
1683
+ # successes: 325 (97.3%)
1684
+
1685
+ Task: put the cream cheese in the bowl
1686
+ Success: True
1687
+ # episodes completed so far: 335
1688
+ # successes: 326 (97.3%)
1689
+
1690
+ Task: put the cream cheese in the bowl
1691
+ Success: True
1692
+ # episodes completed so far: 336
1693
+ # successes: 327 (97.3%)
1694
+
1695
+ Task: put the cream cheese in the bowl
1696
+ Success: True
1697
+ # episodes completed so far: 337
1698
+ # successes: 328 (97.3%)
1699
+
1700
+ Task: put the cream cheese in the bowl
1701
+ Success: True
1702
+ # episodes completed so far: 338
1703
+ # successes: 329 (97.3%)
1704
+
1705
+ Task: put the cream cheese in the bowl
1706
+ Success: True
1707
+ # episodes completed so far: 339
1708
+ # successes: 330 (97.3%)
1709
+
1710
+ Task: put the cream cheese in the bowl
1711
+ Success: True
1712
+ # episodes completed so far: 340
1713
+ # successes: 331 (97.4%)
1714
+
1715
+ Task: put the cream cheese in the bowl
1716
+ Success: False
1717
+ # episodes completed so far: 341
1718
+ # successes: 331 (97.1%)
1719
+
1720
+ Task: put the cream cheese in the bowl
1721
+ Success: True
1722
+ # episodes completed so far: 342
1723
+ # successes: 332 (97.1%)
1724
+
1725
+ Task: put the cream cheese in the bowl
1726
+ Success: True
1727
+ # episodes completed so far: 343
1728
+ # successes: 333 (97.1%)
1729
+
1730
+ Task: put the cream cheese in the bowl
1731
+ Success: False
1732
+ # episodes completed so far: 344
1733
+ # successes: 333 (96.8%)
1734
+
1735
+ Task: put the cream cheese in the bowl
1736
+ Success: True
1737
+ # episodes completed so far: 345
1738
+ # successes: 334 (96.8%)
1739
+
1740
+ Task: put the cream cheese in the bowl
1741
+ Success: False
1742
+ # episodes completed so far: 346
1743
+ # successes: 334 (96.5%)
1744
+
1745
+ Task: put the cream cheese in the bowl
1746
+ Success: True
1747
+ # episodes completed so far: 347
1748
+ # successes: 335 (96.5%)
1749
+
1750
+ Task: put the cream cheese in the bowl
1751
+ Success: True
1752
+ # episodes completed so far: 348
1753
+ # successes: 336 (96.6%)
1754
+
1755
+ Task: put the cream cheese in the bowl
1756
+ Success: True
1757
+ # episodes completed so far: 349
1758
+ # successes: 337 (96.6%)
1759
+
1760
+ Task: put the cream cheese in the bowl
1761
+ Success: False
1762
+ # episodes completed so far: 350
1763
+ # successes: 337 (96.3%)
1764
+ Current task success rate: 0.92
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: False
2081
+ # episodes completed so far: 413
2082
+ # successes: 399 (96.6%)
2083
+
2084
+ Task: put the bowl on the plate
2085
+ Success: True
2086
+ # episodes completed so far: 414
2087
+ # successes: 400 (96.6%)
2088
+
2089
+ Task: put the bowl on the plate
2090
+ Success: True
2091
+ # episodes completed so far: 415
2092
+ # successes: 401 (96.6%)
2093
+
2094
+ Task: put the bowl on the plate
2095
+ Success: True
2096
+ # episodes completed so far: 416
2097
+ # successes: 402 (96.6%)
2098
+
2099
+ Task: put the bowl on the plate
2100
+ Success: True
2101
+ # episodes completed so far: 417
2102
+ # successes: 403 (96.6%)
2103
+
2104
+ Task: put the bowl on the plate
2105
+ Success: True
2106
+ # episodes completed so far: 418
2107
+ # successes: 404 (96.7%)
2108
+
2109
+ Task: put the bowl on the plate
2110
+ Success: True
2111
+ # episodes completed so far: 419
2112
+ # successes: 405 (96.7%)
2113
+
2114
+ Task: put the bowl on the plate
2115
+ Success: True
2116
+ # episodes completed so far: 420
2117
+ # successes: 406 (96.7%)
2118
+
2119
+ Task: put the bowl on the plate
2120
+ Success: True
2121
+ # episodes completed so far: 421
2122
+ # successes: 407 (96.7%)
2123
+
2124
+ Task: put the bowl on the plate
2125
+ Success: True
2126
+ # episodes completed so far: 422
2127
+ # successes: 408 (96.7%)
2128
+
2129
+ Task: put the bowl on the plate
2130
+ Success: True
2131
+ # episodes completed so far: 423
2132
+ # successes: 409 (96.7%)
2133
+
2134
+ Task: put the bowl on the plate
2135
+ Success: True
2136
+ # episodes completed so far: 424
2137
+ # successes: 410 (96.7%)
2138
+
2139
+ Task: put the bowl on the plate
2140
+ Success: True
2141
+ # episodes completed so far: 425
2142
+ # successes: 411 (96.7%)
2143
+
2144
+ Task: put the bowl on the plate
2145
+ Success: False
2146
+ # episodes completed so far: 426
2147
+ # successes: 411 (96.5%)
2148
+
2149
+ Task: put the bowl on the plate
2150
+ Success: True
2151
+ # episodes completed so far: 427
2152
+ # successes: 412 (96.5%)
2153
+
2154
+ Task: put the bowl on the plate
2155
+ Success: True
2156
+ # episodes completed so far: 428
2157
+ # successes: 413 (96.5%)
2158
+
2159
+ Task: put the bowl on the plate
2160
+ Success: True
2161
+ # episodes completed so far: 429
2162
+ # successes: 414 (96.5%)
2163
+
2164
+ Task: put the bowl on the plate
2165
+ Success: True
2166
+ # episodes completed so far: 430
2167
+ # successes: 415 (96.5%)
2168
+
2169
+ Task: put the bowl on the plate
2170
+ Success: True
2171
+ # episodes completed so far: 431
2172
+ # successes: 416 (96.5%)
2173
+
2174
+ Task: put the bowl on the plate
2175
+ Success: False
2176
+ # episodes completed so far: 432
2177
+ # successes: 416 (96.3%)
2178
+
2179
+ Task: put the bowl on the plate
2180
+ Success: True
2181
+ # episodes completed so far: 433
2182
+ # successes: 417 (96.3%)
2183
+
2184
+ Task: put the bowl on the plate
2185
+ Success: True
2186
+ # episodes completed so far: 434
2187
+ # successes: 418 (96.3%)
2188
+
2189
+ Task: put the bowl on the plate
2190
+ Success: True
2191
+ # episodes completed so far: 435
2192
+ # successes: 419 (96.3%)
2193
+
2194
+ Task: put the bowl on the plate
2195
+ Success: True
2196
+ # episodes completed so far: 436
2197
+ # successes: 420 (96.3%)
2198
+
2199
+ Task: put the bowl on the plate
2200
+ Success: True
2201
+ # episodes completed so far: 437
2202
+ # successes: 421 (96.3%)
2203
+
2204
+ Task: put the bowl on the plate
2205
+ Success: True
2206
+ # episodes completed so far: 438
2207
+ # successes: 422 (96.3%)
2208
+
2209
+ Task: put the bowl on the plate
2210
+ Success: True
2211
+ # episodes completed so far: 439
2212
+ # successes: 423 (96.4%)
2213
+
2214
+ Task: put the bowl on the plate
2215
+ Success: True
2216
+ # episodes completed so far: 440
2217
+ # successes: 424 (96.4%)
2218
+
2219
+ Task: put the bowl on the plate
2220
+ Success: True
2221
+ # episodes completed so far: 441
2222
+ # successes: 425 (96.4%)
2223
+
2224
+ Task: put the bowl on the plate
2225
+ Success: True
2226
+ # episodes completed so far: 442
2227
+ # successes: 426 (96.4%)
2228
+
2229
+ Task: put the bowl on the plate
2230
+ Success: True
2231
+ # episodes completed so far: 443
2232
+ # successes: 427 (96.4%)
2233
+
2234
+ Task: put the bowl on the plate
2235
+ Success: True
2236
+ # episodes completed so far: 444
2237
+ # successes: 428 (96.4%)
2238
+
2239
+ Task: put the bowl on the plate
2240
+ Success: True
2241
+ # episodes completed so far: 445
2242
+ # successes: 429 (96.4%)
2243
+
2244
+ Task: put the bowl on the plate
2245
+ Success: True
2246
+ # episodes completed so far: 446
2247
+ # successes: 430 (96.4%)
2248
+
2249
+ Task: put the bowl on the plate
2250
+ Success: True
2251
+ # episodes completed so far: 447
2252
+ # successes: 431 (96.4%)
2253
+
2254
+ Task: put the bowl on the plate
2255
+ Success: True
2256
+ # episodes completed so far: 448
2257
+ # successes: 432 (96.4%)
2258
+
2259
+ Task: put the bowl on the plate
2260
+ Success: True
2261
+ # episodes completed so far: 449
2262
+ # successes: 433 (96.4%)
2263
+
2264
+ Task: put the bowl on the plate
2265
+ Success: True
2266
+ # episodes completed so far: 450
2267
+ # successes: 434 (96.4%)
2268
+ Current task success rate: 0.94
2269
+ Current total success rate: 0.9644444444444444
2270
+
2271
+ Task: put the wine bottle on the rack
2272
+ Success: True
2273
+ # episodes completed so far: 451
2274
+ # successes: 435 (96.5%)
2275
+
2276
+ Task: put the wine bottle on the rack
2277
+ Success: True
2278
+ # episodes completed so far: 452
2279
+ # successes: 436 (96.5%)
2280
+
2281
+ Task: put the wine bottle on the rack
2282
+ Success: True
2283
+ # episodes completed so far: 453
2284
+ # successes: 437 (96.5%)
2285
+
2286
+ Task: put the wine bottle on the rack
2287
+ Success: True
2288
+ # episodes completed so far: 454
2289
+ # successes: 438 (96.5%)
2290
+
2291
+ Task: put the wine bottle on the rack
2292
+ Success: True
2293
+ # episodes completed so far: 455
2294
+ # successes: 439 (96.5%)
2295
+
2296
+ Task: put the wine bottle on the rack
2297
+ Success: True
2298
+ # episodes completed so far: 456
2299
+ # successes: 440 (96.5%)
2300
+
2301
+ Task: put the wine bottle on the rack
2302
+ Success: True
2303
+ # episodes completed so far: 457
2304
+ # successes: 441 (96.5%)
2305
+
2306
+ Task: put the wine bottle on the rack
2307
+ Success: True
2308
+ # episodes completed so far: 458
2309
+ # successes: 442 (96.5%)
2310
+
2311
+ Task: put the wine bottle on the rack
2312
+ Success: True
2313
+ # episodes completed so far: 459
2314
+ # successes: 443 (96.5%)
2315
+
2316
+ Task: put the wine bottle on the rack
2317
+ Success: False
2318
+ # episodes completed so far: 460
2319
+ # successes: 443 (96.3%)
2320
+
2321
+ Task: put the wine bottle on the rack
2322
+ Success: True
2323
+ # episodes completed so far: 461
2324
+ # successes: 444 (96.3%)
2325
+
2326
+ Task: put the wine bottle on the rack
2327
+ Success: True
2328
+ # episodes completed so far: 462
2329
+ # successes: 445 (96.3%)
2330
+
2331
+ Task: put the wine bottle on the rack
2332
+ Success: True
2333
+ # episodes completed so far: 463
2334
+ # successes: 446 (96.3%)
2335
+
2336
+ Task: put the wine bottle on the rack
2337
+ Success: True
2338
+ # episodes completed so far: 464
2339
+ # successes: 447 (96.3%)
2340
+
2341
+ Task: put the wine bottle on the rack
2342
+ Success: True
2343
+ # episodes completed so far: 465
2344
+ # successes: 448 (96.3%)
2345
+
2346
+ Task: put the wine bottle on the rack
2347
+ Success: True
2348
+ # episodes completed so far: 466
2349
+ # successes: 449 (96.4%)
2350
+
2351
+ Task: put the wine bottle on the rack
2352
+ Success: True
2353
+ # episodes completed so far: 467
2354
+ # successes: 450 (96.4%)
2355
+
2356
+ Task: put the wine bottle on the rack
2357
+ Success: True
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: True
2448
+ # episodes completed so far: 486
2449
+ # successes: 469 (96.5%)
2450
+
2451
+ Task: put the wine bottle on the rack
2452
+ Success: True
2453
+ # episodes completed so far: 487
2454
+ # successes: 470 (96.5%)
2455
+
2456
+ Task: put the wine bottle on the rack
2457
+ Success: True
2458
+ # episodes completed so far: 488
2459
+ # successes: 471 (96.5%)
2460
+
2461
+ Task: put the wine bottle on the rack
2462
+ Success: True
2463
+ # episodes completed so far: 489
2464
+ # successes: 472 (96.5%)
2465
+
2466
+ Task: put the wine bottle on the rack
2467
+ Success: True
2468
+ # episodes completed so far: 490
2469
+ # successes: 473 (96.5%)
2470
+
2471
+ Task: put the wine bottle on the rack
2472
+ Success: True
2473
+ # episodes completed so far: 491
2474
+ # successes: 474 (96.5%)
2475
+
2476
+ Task: put the wine bottle on the rack
2477
+ Success: True
2478
+ # episodes completed so far: 492
2479
+ # successes: 475 (96.5%)
2480
+
2481
+ Task: put the wine bottle on the rack
2482
+ Success: True
2483
+ # episodes completed so far: 493
2484
+ # successes: 476 (96.6%)
2485
+
2486
+ Task: put the wine bottle on the rack
2487
+ Success: True
2488
+ # episodes completed so far: 494
2489
+ # successes: 477 (96.6%)
2490
+
2491
+ Task: put the wine bottle on the rack
2492
+ Success: True
2493
+ # episodes completed so far: 495
2494
+ # successes: 478 (96.6%)
2495
+
2496
+ Task: put the wine bottle on the rack
2497
+ Success: False
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.96
2521
+ Current total success rate: 0.964
libero_goal_2B/starvla_qwen_pi/libero_goal.log ADDED
@@ -0,0 +1,300 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Step 100, Loss: {'mse_loss': 3990.541015625, 'mee_loss': 5.545175075531006, 'totoal_loss': 3990.541015625, 'data_time': 0.021054801996797323, 'model_time': 0.7243882571347058, 'learning_rate': 2.0000000000000002e-07, 'epoch': 0.25})
2
+ Step 200, Loss: {'mse_loss': 1139.66259765625, 'mee_loss': 5.545175075531006, 'totoal_loss': 1139.66259765625, 'data_time': 0.017374943010509014, 'model_time': 0.7457906338386238, 'learning_rate': 4.0000000000000003e-07, 'epoch': 0.49})
3
+ Step 300, Loss: {'mse_loss': 1.4014493227005005, 'mee_loss': 5.474062919616699, 'totoal_loss': 1.4014493227005005, 'data_time': 0.017681393306702375, 'model_time': 0.731398593634367, 'learning_rate': 6.000000000000001e-07, 'epoch': 0.74})
4
+ Step 400, Loss: {'mse_loss': 0.9798861742019653, 'mee_loss': 5.397450923919678, 'totoal_loss': 0.9798861742019653, 'data_time': 0.014565281104296446, 'model_time': 0.7436092738062143, 'learning_rate': 8.000000000000001e-07, 'epoch': 0.99})
5
+ Step 500, Loss: {'mse_loss': 0.7584036588668823, 'mee_loss': 5.187081813812256, 'totoal_loss': 0.7584036588668823, 'data_time': 0.009112514089792967, 'model_time': 0.7648255466483533, 'learning_rate': 1.0000000000000002e-06, 'epoch': 1.23})
6
+ Step 600, Loss: {'mse_loss': 0.6193280220031738, 'mee_loss': 4.8962554931640625, 'totoal_loss': 0.6193280220031738, 'data_time': 0.013369448017328978, 'model_time': 0.7147792889736593, 'learning_rate': 1.2000000000000002e-06, 'epoch': 1.48})
7
+ Step 700, Loss: {'mse_loss': 0.5538202524185181, 'mee_loss': 4.3941426277160645, 'totoal_loss': 0.5538202524185181, 'data_time': 0.008021290879696608, 'model_time': 0.7140780361369252, 'learning_rate': 1.4000000000000001e-06, 'epoch': 1.72})
8
+ Step 800, Loss: {'mse_loss': 0.41575586795806885, 'mee_loss': 3.9623844623565674, 'totoal_loss': 0.41575586795806885, 'data_time': 0.013683856930583715, 'model_time': 0.7398267616517842, 'learning_rate': 1.6000000000000001e-06, 'epoch': 1.97})
9
+ Step 900, Loss: {'mse_loss': 0.3192206621170044, 'mee_loss': 2.9715616703033447, 'totoal_loss': 0.3192206621170044, 'data_time': 0.024808531161397696, 'model_time': 0.8300199378281832, 'learning_rate': 1.8000000000000001e-06, 'epoch': 2.22})
10
+ Step 1000, Loss: {'mse_loss': 0.24766623973846436, 'mee_loss': 2.4126579761505127, 'totoal_loss': 0.24766623973846436, 'data_time': 0.0241480297408998, 'model_time': 0.7442477219738066, 'learning_rate': 2.0000000000000003e-06, 'epoch': 2.46})
11
+ Step 1100, Loss: {'mse_loss': 0.1497509479522705, 'mee_loss': 1.8460499048233032, 'totoal_loss': 0.1497509479522705, 'data_time': 0.022035029251128435, 'model_time': 0.7333609438501298, 'learning_rate': 2.2e-06, 'epoch': 2.71})
12
+ Step 1200, Loss: {'mse_loss': 0.20154115557670593, 'mee_loss': 2.10908842086792, 'totoal_loss': 0.20154115557670593, 'data_time': 0.023050757125020027, 'model_time': 0.7134847892448306, 'learning_rate': 2.4000000000000003e-06, 'epoch': 2.96})
13
+ Step 1300, Loss: {'mse_loss': 0.17352887988090515, 'mee_loss': 2.043856143951416, 'totoal_loss': 0.17352887988090515, 'data_time': 0.008560704067349434, 'model_time': 0.7424727990292013, 'learning_rate': 2.6e-06, 'epoch': 3.2})
14
+ Step 1400, Loss: {'mse_loss': 0.2395610213279724, 'mee_loss': 2.0066702365875244, 'totoal_loss': 0.2395610213279724, 'data_time': 0.007865217048674822, 'model_time': 0.7187297008931637, 'learning_rate': 2.8000000000000003e-06, 'epoch': 3.45})
15
+ Step 1500, Loss: {'mse_loss': 0.3142419755458832, 'mee_loss': 2.0509185791015625, 'totoal_loss': 0.3142419755458832, 'data_time': 0.008620243053883314, 'model_time': 0.7608408429659903, 'learning_rate': 3e-06, 'epoch': 3.69})
16
+ Step 1600, Loss: {'mse_loss': 0.2194521129131317, 'mee_loss': 1.8351619243621826, 'totoal_loss': 0.2194521129131317, 'data_time': 0.007904136087745428, 'model_time': 0.7948107239790261, 'learning_rate': 3.2000000000000003e-06, 'epoch': 3.94})
17
+ Step 1700, Loss: {'mse_loss': 0.21092920005321503, 'mee_loss': 1.8663140535354614, 'totoal_loss': 0.21092920005321503, 'data_time': 0.00852662930265069, 'model_time': 0.7363459528423846, 'learning_rate': 3.4000000000000005e-06, 'epoch': 4.19})
18
+ Step 1800, Loss: {'mse_loss': 0.07487012445926666, 'mee_loss': 1.363986849784851, 'totoal_loss': 0.07487012445926666, 'data_time': 0.008981955703347921, 'model_time': 0.7703578416258097, 'learning_rate': 3.6000000000000003e-06, 'epoch': 4.43})
19
+ Step 1900, Loss: {'mse_loss': 0.1985255926847458, 'mee_loss': 1.8912720680236816, 'totoal_loss': 0.1985255926847458, 'data_time': 0.011369241401553154, 'model_time': 0.7453987551853061, 'learning_rate': 3.8000000000000005e-06, 'epoch': 4.68})
20
+ Step 2000, Loss: {'mse_loss': 0.11268928647041321, 'mee_loss': 1.51338529586792, 'totoal_loss': 0.11268928647041321, 'data_time': 0.008786388207226992, 'model_time': 0.7623406019993126, 'learning_rate': 4.000000000000001e-06, 'epoch': 4.93})
21
+ Step 2100, Loss: {'mse_loss': 0.11870723962783813, 'mee_loss': 1.4753739833831787, 'totoal_loss': 0.11870723962783813, 'data_time': 0.00032708095386624336, 'model_time': 0.8561276267282665, 'learning_rate': 4.2000000000000004e-06, 'epoch': 5.17})
22
+ Step 2200, Loss: {'mse_loss': 0.09191426634788513, 'mee_loss': 1.280185580253601, 'totoal_loss': 0.09191426634788513, 'data_time': 0.0004890621639788151, 'model_time': 0.811174139380455, 'learning_rate': 4.4e-06, 'epoch': 5.42})
23
+ Step 2300, Loss: {'mse_loss': 0.14317333698272705, 'mee_loss': 1.5930641889572144, 'totoal_loss': 0.14317333698272705, 'data_time': 0.0003887396305799484, 'model_time': 0.7682437999173999, 'learning_rate': 4.600000000000001e-06, 'epoch': 5.67})
24
+ Step 2400, Loss: {'mse_loss': 0.19394658505916595, 'mee_loss': 1.843616247177124, 'totoal_loss': 0.19394658505916595, 'data_time': 0.00038842204958200455, 'model_time': 0.7572923889383674, 'learning_rate': 4.800000000000001e-06, 'epoch': 5.91})
25
+ Step 2500, Loss: {'mse_loss': 0.13904061913490295, 'mee_loss': 1.2926745414733887, 'totoal_loss': 0.13904061913490295, 'data_time': 0.014903211034834385, 'model_time': 0.7893329737707973, 'learning_rate': 5e-06, 'epoch': 6.16})
26
+ Step 2600, Loss: {'mse_loss': 0.16609366238117218, 'mee_loss': 1.7987258434295654, 'totoal_loss': 0.16609366238117218, 'data_time': 0.016579071059823036, 'model_time': 0.7164269741624594, 'learning_rate': 5.2e-06, 'epoch': 6.4})
27
+ Step 2700, Loss: {'mse_loss': 0.13945768773555756, 'mee_loss': 1.7188701629638672, 'totoal_loss': 0.13945768773555756, 'data_time': 0.017756585031747818, 'model_time': 0.8170354221947491, 'learning_rate': 5.400000000000001e-06, 'epoch': 6.65})
28
+ Step 2800, Loss: {'mse_loss': 0.10792955756187439, 'mee_loss': 1.3125696182250977, 'totoal_loss': 0.10792955756187439, 'data_time': 0.016866866033524275, 'model_time': 0.7455455269664526, 'learning_rate': 5.600000000000001e-06, 'epoch': 6.9})
29
+ Step 2900, Loss: {'mse_loss': 0.08316008001565933, 'mee_loss': 1.1671677827835083, 'totoal_loss': 0.08316008001565933, 'data_time': 0.000372045673429966, 'model_time': 0.7689330680295825, 'learning_rate': 5.8e-06, 'epoch': 7.14})
30
+ Step 3000, Loss: {'mse_loss': 0.1447703242301941, 'mee_loss': 1.7276808023452759, 'totoal_loss': 0.1447703242301941, 'data_time': 0.00035650376230478287, 'model_time': 0.7643675850704312, 'learning_rate': 6e-06, 'epoch': 7.39})
31
+ Step 3100, Loss: {'mse_loss': 0.13367238640785217, 'mee_loss': 1.3684662580490112, 'totoal_loss': 0.13367238640785217, 'data_time': 0.0003869510255753994, 'model_time': 0.7723564021289349, 'learning_rate': 6.200000000000001e-06, 'epoch': 7.64})
32
+ Step 3200, Loss: {'mse_loss': 0.14769935607910156, 'mee_loss': 1.520264744758606, 'totoal_loss': 0.14769935607910156, 'data_time': 0.00041394494473934174, 'model_time': 0.8209889940917492, 'learning_rate': 6.4000000000000006e-06, 'epoch': 7.88})
33
+ Step 3300, Loss: {'mse_loss': 0.1317029744386673, 'mee_loss': 1.4307739734649658, 'totoal_loss': 0.1317029744386673, 'data_time': 0.017351032700389624, 'model_time': 0.7196842418052256, 'learning_rate': 6.600000000000001e-06, 'epoch': 8.13})
34
+ Step 3400, Loss: {'mse_loss': 0.1319637894630432, 'mee_loss': 1.4343267679214478, 'totoal_loss': 0.1319637894630432, 'data_time': 0.01958006015047431, 'model_time': 0.7177344500087202, 'learning_rate': 6.800000000000001e-06, 'epoch': 8.37})
35
+ Step 3500, Loss: {'mse_loss': 0.12561410665512085, 'mee_loss': 1.4496855735778809, 'totoal_loss': 0.12561410665512085, 'data_time': 0.016413703095167875, 'model_time': 0.7578951669856906, 'learning_rate': 7e-06, 'epoch': 8.62})
36
+ Step 3600, Loss: {'mse_loss': 0.0925801545381546, 'mee_loss': 1.184812068939209, 'totoal_loss': 0.0925801545381546, 'data_time': 0.018611461855471134, 'model_time': 0.7228366890922189, 'learning_rate': 7.2000000000000005e-06, 'epoch': 8.87})
37
+ Step 3700, Loss: {'mse_loss': 0.14313310384750366, 'mee_loss': 1.3848623037338257, 'totoal_loss': 0.14313310384750366, 'data_time': 0.0005093300715088844, 'model_time': 0.7170651792548597, 'learning_rate': 7.4e-06, 'epoch': 9.11})
38
+ Step 3800, Loss: {'mse_loss': 0.09230794757604599, 'mee_loss': 1.281951665878296, 'totoal_loss': 0.09230794757604599, 'data_time': 0.00043110689148306847, 'model_time': 0.7615909948945045, 'learning_rate': 7.600000000000001e-06, 'epoch': 9.36})
39
+ Step 3900, Loss: {'mse_loss': 0.10670918971300125, 'mee_loss': 1.5026741027832031, 'totoal_loss': 0.10670918971300125, 'data_time': 0.00037204986438155174, 'model_time': 0.7670911988243461, 'learning_rate': 7.800000000000002e-06, 'epoch': 9.61})
40
+ Step 4000, Loss: {'mse_loss': 0.12340332567691803, 'mee_loss': 1.1956347227096558, 'totoal_loss': 0.12340332567691803, 'data_time': 0.00036130892112851143, 'model_time': 0.8132055862806737, 'learning_rate': 8.000000000000001e-06, 'epoch': 9.85})
41
+ Step 4100, Loss: {'mse_loss': 0.12650330364704132, 'mee_loss': 1.2789138555526733, 'totoal_loss': 0.12650330364704132, 'data_time': 0.023285991977900267, 'model_time': 0.7341761789284647, 'learning_rate': 8.2e-06, 'epoch': 10.1})
42
+ Step 4200, Loss: {'mse_loss': 0.07695094496011734, 'mee_loss': 1.0908827781677246, 'totoal_loss': 0.07695094496011734, 'data_time': 0.02282718103379011, 'model_time': 0.7523046121932566, 'learning_rate': 8.400000000000001e-06, 'epoch': 10.34})
43
+ Step 4300, Loss: {'mse_loss': 0.0941103920340538, 'mee_loss': 1.097862720489502, 'totoal_loss': 0.0941103920340538, 'data_time': 0.02609681524336338, 'model_time': 0.7560358042828739, 'learning_rate': 8.6e-06, 'epoch': 10.59})
44
+ Step 4400, Loss: {'mse_loss': 0.14969594776630402, 'mee_loss': 1.391910433769226, 'totoal_loss': 0.14969594776630402, 'data_time': 0.023250923957675695, 'model_time': 0.8195376247167587, 'learning_rate': 8.8e-06, 'epoch': 10.84})
45
+ Step 4500, Loss: {'mse_loss': 0.11512335389852524, 'mee_loss': 1.1586503982543945, 'totoal_loss': 0.11512335389852524, 'data_time': 0.00040020886808633804, 'model_time': 0.97508884081617, 'learning_rate': 9e-06, 'epoch': 11.08})
46
+ Step 4600, Loss: {'mse_loss': 0.10917346179485321, 'mee_loss': 0.9494284391403198, 'totoal_loss': 0.10917346179485321, 'data_time': 0.00037228595465421677, 'model_time': 0.7589545683003962, 'learning_rate': 9.200000000000002e-06, 'epoch': 11.33})
47
+ Step 4700, Loss: {'mse_loss': 0.11204680055379868, 'mee_loss': 1.2205677032470703, 'totoal_loss': 0.11204680055379868, 'data_time': 0.00047211209312081337, 'model_time': 0.7647760161198676, 'learning_rate': 9.4e-06, 'epoch': 11.58})
48
+ Step 4800, Loss: {'mse_loss': 0.09740069508552551, 'mee_loss': 0.8856489062309265, 'totoal_loss': 0.09740069508552551, 'data_time': 0.0004231599159538746, 'model_time': 0.779023848939687, 'learning_rate': 9.600000000000001e-06, 'epoch': 11.82})
49
+ Step 4900, Loss: {'mse_loss': 0.0950835645198822, 'mee_loss': 1.1025739908218384, 'totoal_loss': 0.0950835645198822, 'data_time': 0.01117740385234356, 'model_time': 0.7702527660876513, 'learning_rate': 9.800000000000001e-06, 'epoch': 12.07})
50
+ Step 5000, Loss: {'mse_loss': 0.11702832579612732, 'mee_loss': 1.2762682437896729, 'totoal_loss': 0.11702832579612732, 'data_time': 0.008692402392625809, 'model_time': 0.717869361396879, 'learning_rate': 1e-05, 'epoch': 12.32})
51
+ Step 5100, Loss: {'mse_loss': 0.07844249904155731, 'mee_loss': 0.9117282032966614, 'totoal_loss': 0.07844249904155731, 'data_time': 0.013891437090933323, 'model_time': 0.7461332161910832, 'learning_rate': 9.999615090493604e-06, 'epoch': 12.56})
52
+ Step 5200, Loss: {'mse_loss': 0.11146125197410583, 'mee_loss': 1.1703290939331055, 'totoal_loss': 0.11146125197410583, 'data_time': 0.007999764755368233, 'model_time': 0.7317233132198453, 'learning_rate': 9.998460422756089e-06, 'epoch': 12.81})
53
+ Step 5300, Loss: {'mse_loss': 0.08228754252195358, 'mee_loss': 1.1692644357681274, 'totoal_loss': 0.08228754252195358, 'data_time': 0.00038558337837457657, 'model_time': 0.7196323648095131, 'learning_rate': 9.996536179122874e-06, 'epoch': 13.05})
54
+ Step 5400, Loss: {'mse_loss': 0.061537474393844604, 'mee_loss': 0.783054530620575, 'totoal_loss': 0.061537474393844604, 'data_time': 0.0003877091221511364, 'model_time': 0.7872618832625449, 'learning_rate': 9.993842663454337e-06, 'epoch': 13.3})
55
+ Step 5500, Loss: {'mse_loss': 0.055159732699394226, 'mee_loss': 0.8988844156265259, 'totoal_loss': 0.055159732699394226, 'data_time': 0.00037187617272138596, 'model_time': 0.7271529748104513, 'learning_rate': 9.990380301087824e-06, 'epoch': 13.55})
56
+ Step 5600, Loss: {'mse_loss': 0.11769565939903259, 'mee_loss': 1.0332235097885132, 'totoal_loss': 0.11769565939903259, 'data_time': 0.000619509257376194, 'model_time': 0.8459550440311432, 'learning_rate': 9.986149638770493e-06, 'epoch': 13.79})
57
+ Step 5700, Loss: {'mse_loss': 0.05347374826669693, 'mee_loss': 0.8349730968475342, 'totoal_loss': 0.05347374826669693, 'data_time': 0.008327431976795197, 'model_time': 0.76058150222525, 'learning_rate': 9.981151344572967e-06, 'epoch': 14.04})
58
+ Step 5800, Loss: {'mse_loss': 0.06223416328430176, 'mee_loss': 0.9854298830032349, 'totoal_loss': 0.06223416328430176, 'data_time': 0.008718650788068771, 'model_time': 0.8665916020981967, 'learning_rate': 9.975386207783839e-06, 'epoch': 14.29})
59
+ Step 5900, Loss: {'mse_loss': 0.062492772936820984, 'mee_loss': 1.067734718322754, 'totoal_loss': 0.062492772936820984, 'data_time': 0.013527480885386467, 'model_time': 0.7477671932429075, 'learning_rate': 9.968855138785041e-06, 'epoch': 14.53})
60
+ Step 6000, Loss: {'mse_loss': 0.07631595432758331, 'mee_loss': 0.9990372657775879, 'totoal_loss': 0.07631595432758331, 'data_time': 0.008919855114072561, 'model_time': 0.738417707849294, 'learning_rate': 9.961559168908081e-06, 'epoch': 14.78})
61
+ Step 6100, Loss: {'mse_loss': 0.12686090171337128, 'mee_loss': 1.0084099769592285, 'totoal_loss': 0.12686090171337128, 'data_time': 0.007829551119357347, 'model_time': 0.7873391481116414, 'learning_rate': 9.953499450271174e-06, 'epoch': 15.02})
62
+ Step 6200, Loss: {'mse_loss': 0.05567707121372223, 'mee_loss': 0.8066627979278564, 'totoal_loss': 0.05567707121372223, 'data_time': 0.011959332041442394, 'model_time': 0.7279145331121981, 'learning_rate': 9.944677255597332e-06, 'epoch': 15.27})
63
+ Step 6300, Loss: {'mse_loss': 0.06302015483379364, 'mee_loss': 0.6916469931602478, 'totoal_loss': 0.06302015483379364, 'data_time': 0.007968521676957607, 'model_time': 0.7078206418082118, 'learning_rate': 9.935093978013357e-06, 'epoch': 15.52})
64
+ Step 6400, Loss: {'mse_loss': 0.06435629725456238, 'mee_loss': 0.8293612003326416, 'totoal_loss': 0.06435629725456238, 'data_time': 0.009563506115227938, 'model_time': 0.7484005708247423, 'learning_rate': 9.924751130829878e-06, 'epoch': 15.76})
65
+ Step 6500, Loss: {'mse_loss': 0.10590974986553192, 'mee_loss': 1.2234184741973877, 'totoal_loss': 0.10590974986553192, 'data_time': 0.008959982078522444, 'model_time': 0.7751097190193832, 'learning_rate': 9.91365034730236e-06, 'epoch': 16.01})
66
+ Step 6600, Loss: {'mse_loss': 0.04406460002064705, 'mee_loss': 0.8351747989654541, 'totoal_loss': 0.04406460002064705, 'data_time': 0.01007481710985303, 'model_time': 0.7392771341837943, 'learning_rate': 9.901793380373204e-06, 'epoch': 16.26})
67
+ Step 6700, Loss: {'mse_loss': 0.08334551006555557, 'mee_loss': 1.0591685771942139, 'totoal_loss': 0.08334551006555557, 'data_time': 0.009264381136745214, 'model_time': 0.7614879771135747, 'learning_rate': 9.889182102394944e-06, 'epoch': 16.5})
68
+ Step 6800, Loss: {'mse_loss': 0.09191996604204178, 'mee_loss': 0.858412504196167, 'totoal_loss': 0.09191996604204178, 'data_time': 0.013030332047492266, 'model_time': 0.8677806248888373, 'learning_rate': 9.875818504834564e-06, 'epoch': 16.75})
69
+ Step 6900, Loss: {'mse_loss': 0.06792332231998444, 'mee_loss': 0.8513107895851135, 'totoal_loss': 0.06792332231998444, 'data_time': 0.009328457992523909, 'model_time': 0.700964645948261, 'learning_rate': 9.861704697959036e-06, 'epoch': 17.0})
70
+ Step 7000, Loss: {'mse_loss': 0.0705408826470375, 'mee_loss': 0.8832454085350037, 'totoal_loss': 0.0705408826470375, 'data_time': 0.010366206057369709, 'model_time': 0.7245940077118576, 'learning_rate': 9.846842910502077e-06, 'epoch': 17.24})
71
+ Step 7100, Loss: {'mse_loss': 0.04780721291899681, 'mee_loss': 0.7196438312530518, 'totoal_loss': 0.04780721291899681, 'data_time': 0.008342328015714884, 'model_time': 0.7316655949689448, 'learning_rate': 9.831235489312212e-06, 'epoch': 17.49})
72
+ Step 7200, Loss: {'mse_loss': 0.03861703723669052, 'mee_loss': 0.7691447138786316, 'totoal_loss': 0.03861703723669052, 'data_time': 0.009317366871982813, 'model_time': 0.7587567348964512, 'learning_rate': 9.814884898982168e-06, 'epoch': 17.73})
73
+ Step 7300, Loss: {'mse_loss': 0.05598030984401703, 'mee_loss': 0.8954119682312012, 'totoal_loss': 0.05598030984401703, 'data_time': 0.007611686829477549, 'model_time': 0.7110989959910512, 'learning_rate': 9.797793721459709e-06, 'epoch': 17.98})
74
+ Step 7400, Loss: {'mse_loss': 0.04000537842512131, 'mee_loss': 0.743074357509613, 'totoal_loss': 0.04000537842512131, 'data_time': 0.008251563180238008, 'model_time': 0.7900377390906215, 'learning_rate': 9.779964655639886e-06, 'epoch': 18.23})
75
+ Step 7500, Loss: {'mse_loss': 0.06712207943201065, 'mee_loss': 0.9124855995178223, 'totoal_loss': 0.06712207943201065, 'data_time': 0.008397161029279232, 'model_time': 0.7659823000431061, 'learning_rate': 9.761400516938874e-06, 'epoch': 18.47})
76
+ Step 7600, Loss: {'mse_loss': 0.02959423139691353, 'mee_loss': 0.5387281179428101, 'totoal_loss': 0.02959423139691353, 'data_time': 0.007915248163044453, 'model_time': 0.7387830489315093, 'learning_rate': 9.74210423684938e-06, 'epoch': 18.72})
77
+ Step 7700, Loss: {'mse_loss': 0.035736508667469025, 'mee_loss': 0.6249088644981384, 'totoal_loss': 0.035736508667469025, 'data_time': 0.009453727863729, 'model_time': 0.7349269660189748, 'learning_rate': 9.722078862477715e-06, 'epoch': 18.97})
78
+ Step 7800, Loss: {'mse_loss': 0.04731949418783188, 'mee_loss': 0.5678698420524597, 'totoal_loss': 0.04731949418783188, 'data_time': 0.00037440424785017967, 'model_time': 0.7459587282501161, 'learning_rate': 9.701327556062637e-06, 'epoch': 19.21})
79
+ Step 7900, Loss: {'mse_loss': 0.03359263762831688, 'mee_loss': 0.5534812211990356, 'totoal_loss': 0.03359263762831688, 'data_time': 0.00036098435521125793, 'model_time': 0.7728775939904153, 'learning_rate': 9.679853594475985e-06, 'epoch': 19.46})
80
+ Step 8000, Loss: {'mse_loss': 0.0734376609325409, 'mee_loss': 0.6675444841384888, 'totoal_loss': 0.0734376609325409, 'data_time': 0.00038236193358898163, 'model_time': 0.7559360479936004, 'learning_rate': 9.657660368705225e-06, 'epoch': 19.7})
81
+ Step 8100, Loss: {'mse_loss': 0.09670601785182953, 'mee_loss': 0.8612980842590332, 'totoal_loss': 0.09670601785182953, 'data_time': 0.00038013095036149025, 'model_time': 0.7649196740239859, 'learning_rate': 9.634751383317983e-06, 'epoch': 19.95})
82
+ Step 8200, Loss: {'mse_loss': 0.06797708570957184, 'mee_loss': 0.8402132987976074, 'totoal_loss': 0.06797708570957184, 'data_time': 0.01545801106840372, 'model_time': 0.7442079363390803, 'learning_rate': 9.611130255908619e-06, 'epoch': 20.2})
83
+ Step 8300, Loss: {'mse_loss': 0.03606618568301201, 'mee_loss': 0.6623637080192566, 'totoal_loss': 0.03606618568301201, 'data_time': 0.01673768786713481, 'model_time': 0.7280872324481606, 'learning_rate': 9.586800716526974e-06, 'epoch': 20.44})
84
+ Step 8400, Loss: {'mse_loss': 0.04677469655871391, 'mee_loss': 0.6640007495880127, 'totoal_loss': 0.04677469655871391, 'data_time': 0.015243738889694214, 'model_time': 0.7742102961055934, 'learning_rate': 9.561766607089355e-06, 'epoch': 20.69})
85
+ Step 8500, Loss: {'mse_loss': 0.0803779661655426, 'mee_loss': 0.7535341382026672, 'totoal_loss': 0.0803779661655426, 'data_time': 0.015261854976415634, 'model_time': 0.7366530718281865, 'learning_rate': 9.536031880771846e-06, 'epoch': 20.94})
86
+ Step 8600, Loss: {'mse_loss': 0.06778137385845184, 'mee_loss': 0.8874073028564453, 'totoal_loss': 0.06778137385845184, 'data_time': 0.00043927039951086044, 'model_time': 0.8422820731066167, 'learning_rate': 9.50960060138606e-06, 'epoch': 21.18})
87
+ Step 8700, Loss: {'mse_loss': 0.03532693535089493, 'mee_loss': 0.6364644169807434, 'totoal_loss': 0.03532693535089493, 'data_time': 0.00039623724296689034, 'model_time': 0.7691717161796987, 'learning_rate': 9.482476942737411e-06, 'epoch': 21.43})
88
+ Step 8800, Loss: {'mse_loss': 0.058216337114572525, 'mee_loss': 0.7632749676704407, 'totoal_loss': 0.058216337114572525, 'data_time': 0.0003684661351144314, 'model_time': 0.7293363390490413, 'learning_rate': 9.45466518796603e-06, 'epoch': 21.67})
89
+ Step 8900, Loss: {'mse_loss': 0.06255997717380524, 'mee_loss': 0.7261735796928406, 'totoal_loss': 0.06255997717380524, 'data_time': 0.0003681532107293606, 'model_time': 0.8268083319999278, 'learning_rate': 9.426169728870399e-06, 'epoch': 21.92})
90
+ Step 9000, Loss: {'mse_loss': 0.036802805960178375, 'mee_loss': 0.6331181526184082, 'totoal_loss': 0.036802805960178375, 'data_time': 0.022009190637618303, 'model_time': 0.7660566307604313, 'learning_rate': 9.396995065213835e-06, 'epoch': 22.17})
91
+ Step 9100, Loss: {'mse_loss': 0.0319163016974926, 'mee_loss': 0.6081520915031433, 'totoal_loss': 0.0319163016974926, 'data_time': 0.02400196809321642, 'model_time': 0.7308344161137938, 'learning_rate': 9.367145804013938e-06, 'epoch': 22.41})
92
+ Step 9200, Loss: {'mse_loss': 0.024221880361437798, 'mee_loss': 0.49112218618392944, 'totoal_loss': 0.024221880361437798, 'data_time': 0.020908173173666, 'model_time': 0.8075142079032958, 'learning_rate': 9.336626658815071e-06, 'epoch': 22.66})
93
+ Step 9300, Loss: {'mse_loss': 0.06287283450365067, 'mee_loss': 0.7803188562393188, 'totoal_loss': 0.06287283450365067, 'data_time': 0.021867932751774788, 'model_time': 0.7342309122905135, 'learning_rate': 9.305442448944056e-06, 'epoch': 22.91})
94
+ Step 9400, Loss: {'mse_loss': 0.039539746940135956, 'mee_loss': 0.6105629205703735, 'totoal_loss': 0.039539746940135956, 'data_time': 0.00038320617750287056, 'model_time': 0.7570914891548455, 'learning_rate': 9.273598098749124e-06, 'epoch': 23.15})
95
+ Step 9500, Loss: {'mse_loss': 0.08713845163583755, 'mee_loss': 0.9021264910697937, 'totoal_loss': 0.08713845163583755, 'data_time': 0.0006443141028285027, 'model_time': 0.8185534658841789, 'learning_rate': 9.241098636822324e-06, 'epoch': 23.4})
96
+ Step 9600, Loss: {'mse_loss': 0.060028500854969025, 'mee_loss': 0.7574154734611511, 'totoal_loss': 0.060028500854969025, 'data_time': 0.0003632679581642151, 'model_time': 0.7562896460294724, 'learning_rate': 9.207949195205442e-06, 'epoch': 23.65})
97
+ Step 9700, Loss: {'mse_loss': 0.052864961326122284, 'mee_loss': 0.6281425952911377, 'totoal_loss': 0.052864961326122284, 'data_time': 0.0003731483593583107, 'model_time': 0.7569163870066404, 'learning_rate': 9.174155008579588e-06, 'epoch': 23.89})
98
+ Step 9800, Loss: {'mse_loss': 0.049720071256160736, 'mee_loss': 0.7174209952354431, 'totoal_loss': 0.049720071256160736, 'data_time': 0.024018554016947746, 'model_time': 0.8121503959409893, 'learning_rate': 9.139721413438583e-06, 'epoch': 24.14})
99
+ Step 9900, Loss: {'mse_loss': 0.060554467141628265, 'mee_loss': 0.5528486371040344, 'totoal_loss': 0.060554467141628265, 'data_time': 0.01624252088367939, 'model_time': 0.7314266809262335, 'learning_rate': 9.104653847246273e-06, 'epoch': 24.38})
100
+ Step 10000, Loss: {'mse_loss': 0.05930650606751442, 'mee_loss': 0.6159167289733887, 'totoal_loss': 0.05930650606751442, 'data_time': 0.016975678969174623, 'model_time': 0.7123498399741948, 'learning_rate': 9.068957847577869e-06, 'epoch': 24.63})
101
+ Step 10100, Loss: {'mse_loss': 0.046618424355983734, 'mee_loss': 0.6191558241844177, 'totoal_loss': 0.046618424355983734, 'data_time': 0.014644168317317963, 'model_time': 0.7365795089863241, 'learning_rate': 9.032639051245524e-06, 'epoch': 24.88})
102
+ Step 10200, Loss: {'mse_loss': 0.03572608157992363, 'mee_loss': 0.6242576241493225, 'totoal_loss': 0.03572608157992363, 'data_time': 0.000415128655731678, 'model_time': 0.8342789369635284, 'learning_rate': 8.995703193408199e-06, 'epoch': 25.12})
103
+ Step 10300, Loss: {'mse_loss': 0.03575782850384712, 'mee_loss': 0.5609291195869446, 'totoal_loss': 0.03575782850384712, 'data_time': 0.0008081248961389065, 'model_time': 0.7521239458583295, 'learning_rate': 8.958156106666017e-06, 'epoch': 25.37})
104
+ Step 10400, Loss: {'mse_loss': 0.020128943026065826, 'mee_loss': 0.4409961402416229, 'totoal_loss': 0.020128943026065826, 'data_time': 0.0004638596437871456, 'model_time': 0.7443670029751956, 'learning_rate': 8.92000372013924e-06, 'epoch': 25.62})
105
+ Step 10500, Loss: {'mse_loss': 0.0172366201877594, 'mee_loss': 0.39765608310699463, 'totoal_loss': 0.0172366201877594, 'data_time': 0.00043877633288502693, 'model_time': 0.7251528091728687, 'learning_rate': 8.881252058531973e-06, 'epoch': 25.86})
106
+ Step 10600, Loss: {'mse_loss': 0.04124261066317558, 'mee_loss': 0.5872702598571777, 'totoal_loss': 0.04124261066317558, 'data_time': 0.00945206731557846, 'model_time': 0.731684744823724, 'learning_rate': 8.841907241180809e-06, 'epoch': 26.11})
107
+ Step 10700, Loss: {'mse_loss': 0.03319878131151199, 'mee_loss': 0.5526993870735168, 'totoal_loss': 0.03319878131151199, 'data_time': 0.009742747992277145, 'model_time': 0.7858786191791296, 'learning_rate': 8.801975481088507e-06, 'epoch': 26.35})
108
+ Step 10800, Loss: {'mse_loss': 0.09045042097568512, 'mee_loss': 0.8054406642913818, 'totoal_loss': 0.09045042097568512, 'data_time': 0.008341696579009295, 'model_time': 0.7591699049808085, 'learning_rate': 8.761463083942889e-06, 'epoch': 26.6})
109
+ Step 10900, Loss: {'mse_loss': 0.07418791204690933, 'mee_loss': 0.7437273263931274, 'totoal_loss': 0.07418791204690933, 'data_time': 0.008276245091110468, 'model_time': 0.7276310999877751, 'learning_rate': 8.720376447121098e-06, 'epoch': 26.85})
110
+ Step 11000, Loss: {'mse_loss': 0.02769135683774948, 'mee_loss': 0.5204174518585205, 'totoal_loss': 0.02769135683774948, 'data_time': 0.010157601907849312, 'model_time': 0.8198127010837197, 'learning_rate': 8.678722058679382e-06, 'epoch': 27.09})
111
+ Step 11100, Loss: {'mse_loss': 0.07917356491088867, 'mee_loss': 0.7951310873031616, 'totoal_loss': 0.07917356491088867, 'data_time': 0.008391018956899643, 'model_time': 0.7955843438394368, 'learning_rate': 8.636506496328546e-06, 'epoch': 27.34})
112
+ Step 11200, Loss: {'mse_loss': 0.03393346071243286, 'mee_loss': 0.4709758758544922, 'totoal_loss': 0.03393346071243286, 'data_time': 0.01182903815060854, 'model_time': 0.7268964978866279, 'learning_rate': 8.593736426395268e-06, 'epoch': 27.59})
113
+ Step 11300, Loss: {'mse_loss': 0.04223677143454552, 'mee_loss': 0.6476697325706482, 'totoal_loss': 0.04223677143454552, 'data_time': 0.012393838725984097, 'model_time': 0.7416286179795861, 'learning_rate': 8.550418602769392e-06, 'epoch': 27.83})
114
+ Step 11400, Loss: {'mse_loss': 0.03941725566983223, 'mee_loss': 0.5794456005096436, 'totoal_loss': 0.03941725566983223, 'data_time': 0.009631045162677765, 'model_time': 0.7280369778163731, 'learning_rate': 8.506559865837425e-06, 'epoch': 28.08})
115
+ Step 11500, Loss: {'mse_loss': 0.06817018240690231, 'mee_loss': 0.6890828013420105, 'totoal_loss': 0.06817018240690231, 'data_time': 0.008440421894192696, 'model_time': 0.7258102539926767, 'learning_rate': 8.462167141402359e-06, 'epoch': 28.33})
116
+ Step 11600, Loss: {'mse_loss': 0.034014925360679626, 'mee_loss': 0.43239670991897583, 'totoal_loss': 0.034014925360679626, 'data_time': 0.008360461797565222, 'model_time': 0.7388883428648114, 'learning_rate': 8.417247439589994e-06, 'epoch': 28.57})
117
+ Step 11700, Loss: {'mse_loss': 0.05878295376896858, 'mee_loss': 0.6612282991409302, 'totoal_loss': 0.05878295376896858, 'data_time': 0.00797033216804266, 'model_time': 0.7758619720116258, 'learning_rate': 8.371807853741978e-06, 'epoch': 28.82})
118
+ Step 11800, Loss: {'mse_loss': 0.01901334524154663, 'mee_loss': 0.4214521050453186, 'totoal_loss': 0.01901334524154663, 'data_time': 0.00040730182081460953, 'model_time': 0.7726665013469756, 'learning_rate': 8.325855559295663e-06, 'epoch': 29.06})
119
+ Step 11900, Loss: {'mse_loss': 0.020262790843844414, 'mee_loss': 0.3694252073764801, 'totoal_loss': 0.020262790843844414, 'data_time': 0.0004838351160287857, 'model_time': 0.7902686828747392, 'learning_rate': 8.279397812651042e-06, 'epoch': 29.31})
120
+ Step 12000, Loss: {'mse_loss': 0.028195234015583992, 'mee_loss': 0.432868629693985, 'totoal_loss': 0.028195234015583992, 'data_time': 0.00045439600944519043, 'model_time': 0.7234259210526943, 'learning_rate': 8.232441950024864e-06, 'epoch': 29.56})
121
+ Step 12100, Loss: {'mse_loss': 0.03688318282365799, 'mee_loss': 0.5291038751602173, 'totoal_loss': 0.03688318282365799, 'data_time': 0.00037002190947532654, 'model_time': 0.7417366877198219, 'learning_rate': 8.184995386292166e-06, 'epoch': 29.8})
122
+ Step 12200, Loss: {'mse_loss': 0.02284722775220871, 'mee_loss': 0.45064157247543335, 'totoal_loss': 0.02284722775220871, 'data_time': 0.010084252804517746, 'model_time': 0.8014648286625743, 'learning_rate': 8.137065613815381e-06, 'epoch': 30.05})
123
+ Step 12300, Loss: {'mse_loss': 0.028151091188192368, 'mee_loss': 0.5193166732788086, 'totoal_loss': 0.028151091188192368, 'data_time': 0.01000192016363144, 'model_time': 0.7124808691442013, 'learning_rate': 8.088660201261203e-06, 'epoch': 30.3})
124
+ Step 12400, Loss: {'mse_loss': 0.0432371161878109, 'mee_loss': 0.5757777094841003, 'totoal_loss': 0.0432371161878109, 'data_time': 0.007524147629737854, 'model_time': 0.9943365519866347, 'learning_rate': 8.039786792405404e-06, 'epoch': 30.54})
125
+ Step 12500, Loss: {'mse_loss': 0.04741540923714638, 'mee_loss': 0.5068731904029846, 'totoal_loss': 0.04741540923714638, 'data_time': 0.00829507689923048, 'model_time': 0.7461397098377347, 'learning_rate': 7.990453104925807e-06, 'epoch': 30.79})
126
+ Step 12600, Loss: {'mse_loss': 0.06059958413243294, 'mee_loss': 0.6699774265289307, 'totoal_loss': 0.06059958413243294, 'data_time': 0.010282051749527454, 'model_time': 0.7303419909439981, 'learning_rate': 7.940666929183554e-06, 'epoch': 31.03})
127
+ Step 12700, Loss: {'mse_loss': 0.07865778356790543, 'mee_loss': 0.7207387685775757, 'totoal_loss': 0.07865778356790543, 'data_time': 0.010873179882764816, 'model_time': 0.7426045308820903, 'learning_rate': 7.89043612699294e-06, 'epoch': 31.28})
128
+ Step 12800, Loss: {'mse_loss': 0.060386329889297485, 'mee_loss': 0.7184646129608154, 'totoal_loss': 0.060386329889297485, 'data_time': 0.008762740064412355, 'model_time': 0.7593029029667377, 'learning_rate': 7.839768630379917e-06, 'epoch': 31.53})
129
+ Step 12900, Loss: {'mse_loss': 0.01863710954785347, 'mee_loss': 0.3567749261856079, 'totoal_loss': 0.01863710954785347, 'data_time': 0.010987381916493177, 'model_time': 0.7231158460490406, 'learning_rate': 7.788672440329562e-06, 'epoch': 31.77})
130
+ Step 13000, Loss: {'mse_loss': 0.0794743075966835, 'mee_loss': 0.7243584394454956, 'totoal_loss': 0.0794743075966835, 'data_time': 0.009941161144524813, 'model_time': 0.7582129216752946, 'learning_rate': 7.737155625522608e-06, 'epoch': 32.02})
131
+ Step 13100, Loss: {'mse_loss': 0.055415503680706024, 'mee_loss': 0.6472172737121582, 'totoal_loss': 0.055415503680706024, 'data_time': 0.009324317332357168, 'model_time': 0.8319231886416674, 'learning_rate': 7.685226321061318e-06, 'epoch': 32.27})
132
+ Step 13200, Loss: {'mse_loss': 0.02754201740026474, 'mee_loss': 0.5028005242347717, 'totoal_loss': 0.02754201740026474, 'data_time': 0.007921461015939713, 'model_time': 0.7511952109634876, 'learning_rate': 7.632892727184844e-06, 'epoch': 32.51})
133
+ Step 13300, Loss: {'mse_loss': 0.05027110502123833, 'mee_loss': 0.63360595703125, 'totoal_loss': 0.05027110502123833, 'data_time': 0.007773927878588438, 'model_time': 0.8364258198998868, 'learning_rate': 7.580163107974335e-06, 'epoch': 32.76})
134
+ Step 13400, Loss: {'mse_loss': 0.022511525079607964, 'mee_loss': 0.3923230767250061, 'totoal_loss': 0.022511525079607964, 'data_time': 0.0004453454166650772, 'model_time': 0.8064125091768801, 'learning_rate': 7.527045790047922e-06, 'epoch': 33.0})
135
+ Step 13500, Loss: {'mse_loss': 0.02416541613638401, 'mee_loss': 0.40261927247047424, 'totoal_loss': 0.02416541613638401, 'data_time': 0.00043404707685112953, 'model_time': 0.7988655958324671, 'learning_rate': 7.473549161245862e-06, 'epoch': 33.25})
136
+ Step 13600, Loss: {'mse_loss': 0.02479945681989193, 'mee_loss': 0.45940130949020386, 'totoal_loss': 0.02479945681989193, 'data_time': 0.00046893488615751266, 'model_time': 0.7447730959393084, 'learning_rate': 7.419681669305998e-06, 'epoch': 33.5})
137
+ Step 13700, Loss: {'mse_loss': 0.03090757131576538, 'mee_loss': 0.5229989290237427, 'totoal_loss': 0.03090757131576538, 'data_time': 0.01771583780646324, 'model_time': 0.7412886992096901, 'learning_rate': 7.365451820529756e-06, 'epoch': 33.74})
138
+ Step 13800, Loss: {'mse_loss': 0.08415606617927551, 'mee_loss': 0.596097469329834, 'totoal_loss': 0.08415606617927551, 'data_time': 0.015630553010851145, 'model_time': 0.6898359009064734, 'learning_rate': 7.310868178438909e-06, 'epoch': 33.99})
139
+ Step 13900, Loss: {'mse_loss': 0.05804436653852463, 'mee_loss': 0.5537797808647156, 'totoal_loss': 0.05804436653852463, 'data_time': 0.024049709551036358, 'model_time': 0.8007066491991282, 'learning_rate': 7.2559393624232985e-06, 'epoch': 34.24})
140
+ Step 14000, Loss: {'mse_loss': 0.0340735949575901, 'mee_loss': 0.4191690683364868, 'totoal_loss': 0.0340735949575901, 'data_time': 0.020308214239776134, 'model_time': 0.7299914178438485, 'learning_rate': 7.2006740463797296e-06, 'epoch': 34.48})
141
+ Step 14100, Loss: {'mse_loss': 0.07330935448408127, 'mee_loss': 0.5559322237968445, 'totoal_loss': 0.07330935448408127, 'data_time': 0.02450037095695734, 'model_time': 0.7316818688996136, 'learning_rate': 7.145080957342262e-06, 'epoch': 34.73})
142
+ Step 14200, Loss: {'mse_loss': 0.06048879772424698, 'mee_loss': 0.49628007411956787, 'totoal_loss': 0.06048879772424698, 'data_time': 0.022998493164777756, 'model_time': 0.7439308511093259, 'learning_rate': 7.0891688741041065e-06, 'epoch': 34.98})
143
+ Step 14300, Loss: {'mse_loss': 0.023116329684853554, 'mee_loss': 0.41025614738464355, 'totoal_loss': 0.023116329684853554, 'data_time': 0.0003881719894707203, 'model_time': 0.7143253316171467, 'learning_rate': 7.032946625831363e-06, 'epoch': 35.22})
144
+ Step 14400, Loss: {'mse_loss': 0.03873969241976738, 'mee_loss': 0.40070709586143494, 'totoal_loss': 0.03873969241976738, 'data_time': 0.0005151447840034962, 'model_time': 0.7739004828035831, 'learning_rate': 6.976423090668781e-06, 'epoch': 35.47})
145
+ Step 14500, Loss: {'mse_loss': 0.037871625274419785, 'mee_loss': 0.5240146517753601, 'totoal_loss': 0.037871625274419785, 'data_time': 0.0005249851383268833, 'model_time': 0.7666120338253677, 'learning_rate': 6.919607194337806e-06, 'epoch': 35.71})
146
+ Step 14600, Loss: {'mse_loss': 0.03824213892221451, 'mee_loss': 0.5064021944999695, 'totoal_loss': 0.03824213892221451, 'data_time': 0.00043047405779361725, 'model_time': 0.7610614155419171, 'learning_rate': 6.8625079087270976e-06, 'epoch': 35.96})
147
+ Step 14700, Loss: {'mse_loss': 0.0421794094145298, 'mee_loss': 0.5537125468254089, 'totoal_loss': 0.0421794094145298, 'data_time': 0.014380402863025665, 'model_time': 0.8224830678664148, 'learning_rate': 6.8051342504757714e-06, 'epoch': 36.21})
148
+ Step 14800, Loss: {'mse_loss': 0.017645645886659622, 'mee_loss': 0.3077235519886017, 'totoal_loss': 0.017645645886659622, 'data_time': 0.01606879010796547, 'model_time': 0.8219012971967459, 'learning_rate': 6.747495279549561e-06, 'epoch': 36.45})
149
+ Step 14900, Loss: {'mse_loss': 0.021079594269394875, 'mee_loss': 0.35802575945854187, 'totoal_loss': 0.021079594269394875, 'data_time': 0.014627174008637667, 'model_time': 0.7689260812476277, 'learning_rate': 6.6896000978101465e-06, 'epoch': 36.7})
150
+ Step 15000, Loss: {'mse_loss': 0.033066779375076294, 'mee_loss': 0.5177405476570129, 'totoal_loss': 0.033066779375076294, 'data_time': 0.013843746855854988, 'model_time': 0.7721695271320641, 'learning_rate': 6.631457847577869e-06, 'epoch': 36.95})
151
+ Step 15100, Loss: {'mse_loss': 0.056355495005846024, 'mee_loss': 0.6470372676849365, 'totoal_loss': 0.056355495005846024, 'data_time': 0.007750538177788258, 'model_time': 0.7592616509646177, 'learning_rate': 6.573077710188046e-06, 'epoch': 37.19})
152
+ Step 15200, Loss: {'mse_loss': 0.019816424697637558, 'mee_loss': 0.36484384536743164, 'totoal_loss': 0.019816424697637558, 'data_time': 0.014825556892901659, 'model_time': 0.7698154719546437, 'learning_rate': 6.5144689045411345e-06, 'epoch': 37.44})
153
+ Step 15300, Loss: {'mse_loss': 0.03569335862994194, 'mee_loss': 0.5097846388816833, 'totoal_loss': 0.03569335862994194, 'data_time': 0.008536811918020248, 'model_time': 0.7139554796740413, 'learning_rate': 6.455640685646961e-06, 'epoch': 37.68})
154
+ Step 15400, Loss: {'mse_loss': 0.051858771592378616, 'mee_loss': 0.6060563325881958, 'totoal_loss': 0.051858771592378616, 'data_time': 0.007893233094364405, 'model_time': 0.7311129490844905, 'learning_rate': 6.396602343163248e-06, 'epoch': 37.93})
155
+ Step 15500, Loss: {'mse_loss': 0.02105846256017685, 'mee_loss': 0.4300532937049866, 'totoal_loss': 0.02105846256017685, 'data_time': 0.021922768093645573, 'model_time': 0.7945694448426366, 'learning_rate': 6.337363199928669e-06, 'epoch': 38.18})
156
+ Step 15600, Loss: {'mse_loss': 0.03181522339582443, 'mee_loss': 0.45790404081344604, 'totoal_loss': 0.03181522339582443, 'data_time': 0.025616168975830078, 'model_time': 0.7935379352420568, 'learning_rate': 6.277932610490659e-06, 'epoch': 38.42})
157
+ Step 15700, Loss: {'mse_loss': 0.043894268572330475, 'mee_loss': 0.49156486988067627, 'totoal_loss': 0.043894268572330475, 'data_time': 0.02259517600759864, 'model_time': 0.743538195732981, 'learning_rate': 6.218319959628234e-06, 'epoch': 38.67})
158
+ Step 15800, Loss: {'mse_loss': 0.03604649379849434, 'mee_loss': 0.3768983483314514, 'totoal_loss': 0.03604649379849434, 'data_time': 0.023205505218356848, 'model_time': 0.8155151829123497, 'learning_rate': 6.158534660870018e-06, 'epoch': 38.92})
159
+ Step 15900, Loss: {'mse_loss': 0.03711364418268204, 'mee_loss': 0.44958871603012085, 'totoal_loss': 0.03711364418268204, 'data_time': 0.01030550617724657, 'model_time': 0.7541118059307337, 'learning_rate': 6.0985861550077345e-06, 'epoch': 39.16})
160
+ Step 16000, Loss: {'mse_loss': 0.028500813990831375, 'mee_loss': 0.40678083896636963, 'totoal_loss': 0.028500813990831375, 'data_time': 0.007478110957890749, 'model_time': 0.7163414834067225, 'learning_rate': 6.0384839086054095e-06, 'epoch': 39.41})
161
+ Step 16100, Loss: {'mse_loss': 0.022332943975925446, 'mee_loss': 0.41576993465423584, 'totoal_loss': 0.022332943975925446, 'data_time': 0.009445892181247473, 'model_time': 0.7830651700496674, 'learning_rate': 5.978237412504472e-06, 'epoch': 39.66})
162
+ Step 16200, Loss: {'mse_loss': 0.033785924315452576, 'mee_loss': 0.42534130811691284, 'totoal_loss': 0.033785924315452576, 'data_time': 0.007267952896654606, 'model_time': 0.7329818229191005, 'learning_rate': 5.917856180325059e-06, 'epoch': 39.9})
163
+ Step 16300, Loss: {'mse_loss': 0.020813578739762306, 'mee_loss': 0.32656511664390564, 'totoal_loss': 0.020813578739762306, 'data_time': 0.022744440007954836, 'model_time': 0.760139771271497, 'learning_rate': 5.857349746963692e-06, 'epoch': 40.15})
164
+ Step 16400, Loss: {'mse_loss': 0.03626970946788788, 'mee_loss': 0.3383682370185852, 'totoal_loss': 0.03626970946788788, 'data_time': 0.02646799013018608, 'model_time': 0.7766889398917556, 'learning_rate': 5.796727667087611e-06, 'epoch': 40.39})
165
+ Step 16500, Loss: {'mse_loss': 0.0371861532330513, 'mee_loss': 0.39984193444252014, 'totoal_loss': 0.0371861532330513, 'data_time': 0.023722023703157902, 'model_time': 0.7780426749959588, 'learning_rate': 5.735999513625984e-06, 'epoch': 40.64})
166
+ Step 16600, Loss: {'mse_loss': 0.01071623619645834, 'mee_loss': 0.26017558574676514, 'totoal_loss': 0.01071623619645834, 'data_time': 0.024066347628831863, 'model_time': 0.7392740012146533, 'learning_rate': 5.675174876258223e-06, 'epoch': 40.89})
167
+ Step 16700, Loss: {'mse_loss': 0.04936986416578293, 'mee_loss': 0.49125784635543823, 'totoal_loss': 0.04936986416578293, 'data_time': 0.0005022529512643814, 'model_time': 0.8380264020524919, 'learning_rate': 5.614263359899673e-06, 'epoch': 41.13})
168
+ Step 16800, Loss: {'mse_loss': 0.039454903453588486, 'mee_loss': 0.3772435188293457, 'totoal_loss': 0.039454903453588486, 'data_time': 0.00033691106364130974, 'model_time': 0.7295124600641429, 'learning_rate': 5.553274583184875e-06, 'epoch': 41.38})
169
+ Step 16900, Loss: {'mse_loss': 0.035756126046180725, 'mee_loss': 0.3939059376716614, 'totoal_loss': 0.035756126046180725, 'data_time': 0.0003718249499797821, 'model_time': 0.7664077449589968, 'learning_rate': 5.492218176948673e-06, 'epoch': 41.63})
170
+ Step 17000, Loss: {'mse_loss': 0.04170091822743416, 'mee_loss': 0.4349372088909149, 'totoal_loss': 0.04170091822743416, 'data_time': 0.00036660395562648773, 'model_time': 0.8236108208075166, 'learning_rate': 5.431103782705404e-06, 'epoch': 41.87})
171
+ Step 17100, Loss: {'mse_loss': 0.02216293290257454, 'mee_loss': 0.38722965121269226, 'totoal_loss': 0.02216293290257454, 'data_time': 0.016204447019845247, 'model_time': 0.7958501977846026, 'learning_rate': 5.369941051126377e-06, 'epoch': 42.12})
172
+ Step 17200, Loss: {'mse_loss': 0.044001054018735886, 'mee_loss': 0.3899576961994171, 'totoal_loss': 0.044001054018735886, 'data_time': 0.014592773746699095, 'model_time': 0.739103274885565, 'learning_rate': 5.308739640515932e-06, 'epoch': 42.36})
173
+ Step 17300, Loss: {'mse_loss': 0.02850702404975891, 'mee_loss': 0.41351234912872314, 'totoal_loss': 0.02850702404975891, 'data_time': 0.015693738125264645, 'model_time': 0.7409196831285954, 'learning_rate': 5.24750921528627e-06, 'epoch': 42.61})
174
+ Step 17400, Loss: {'mse_loss': 0.03445722162723541, 'mee_loss': 0.4784342646598816, 'totoal_loss': 0.03445722162723541, 'data_time': 0.015002488158643246, 'model_time': 0.7525843419134617, 'learning_rate': 5.186259444431344e-06, 'epoch': 42.86})
175
+ Step 17500, Loss: {'mse_loss': 0.01593991182744503, 'mee_loss': 0.3139263689517975, 'totoal_loss': 0.01593991182744503, 'data_time': 0.0004989588633179665, 'model_time': 0.7971111806109548, 'learning_rate': 5.125e-06, 'epoch': 43.1})
176
+ Step 17600, Loss: {'mse_loss': 0.022524842992424965, 'mee_loss': 0.4316689670085907, 'totoal_loss': 0.022524842992424965, 'data_time': 0.00037299608811736107, 'model_time': 0.7281897510401905, 'learning_rate': 5.063740555568656e-06, 'epoch': 43.35})
177
+ Step 17700, Loss: {'mse_loss': 0.02316790446639061, 'mee_loss': 0.37020376324653625, 'totoal_loss': 0.02316790446639061, 'data_time': 0.00037558097392320633, 'model_time': 0.7543117552995682, 'learning_rate': 5.002490784713731e-06, 'epoch': 43.6})
178
+ Step 17800, Loss: {'mse_loss': 0.04516025260090828, 'mee_loss': 0.4120321571826935, 'totoal_loss': 0.04516025260090828, 'data_time': 0.0003404580056667328, 'model_time': 0.7691729017533362, 'learning_rate': 4.9412603594840695e-06, 'epoch': 43.84})
179
+ Step 17900, Loss: {'mse_loss': 0.028376951813697815, 'mee_loss': 0.38164767622947693, 'totoal_loss': 0.028376951813697815, 'data_time': 0.019677592907100916, 'model_time': 0.7582350461743772, 'learning_rate': 4.8800589488736245e-06, 'epoch': 44.09})
180
+ Step 18000, Loss: {'mse_loss': 0.03258206695318222, 'mee_loss': 0.49964845180511475, 'totoal_loss': 0.03258206695318222, 'data_time': 0.014819690957665443, 'model_time': 0.8307328391820192, 'learning_rate': 4.818896217294598e-06, 'epoch': 44.33})
181
+ Step 18100, Loss: {'mse_loss': 0.03731434419751167, 'mee_loss': 0.3667421042919159, 'totoal_loss': 0.03731434419751167, 'data_time': 0.01841471903026104, 'model_time': 0.72354790661484, 'learning_rate': 4.757781823051329e-06, 'epoch': 44.58})
182
+ Step 18200, Loss: {'mse_loss': 0.014267760328948498, 'mee_loss': 0.22774657607078552, 'totoal_loss': 0.014267760328948498, 'data_time': 0.017173360101878643, 'model_time': 0.7066851579584181, 'learning_rate': 4.696725416815128e-06, 'epoch': 44.83})
183
+ Step 18300, Loss: {'mse_loss': 0.019271187484264374, 'mee_loss': 0.3667270541191101, 'totoal_loss': 0.019271187484264374, 'data_time': 0.00038952287286520004, 'model_time': 0.8114607129245996, 'learning_rate': 4.635736640100327e-06, 'epoch': 45.07})
184
+ Step 18400, Loss: {'mse_loss': 0.046960994601249695, 'mee_loss': 0.3689613342285156, 'totoal_loss': 0.046960994601249695, 'data_time': 0.000393423717468977, 'model_time': 0.7539962022565305, 'learning_rate': 4.574825123741778e-06, 'epoch': 45.32})
185
+ Step 18500, Loss: {'mse_loss': 0.023013081401586533, 'mee_loss': 0.40140220522880554, 'totoal_loss': 0.023013081401586533, 'data_time': 0.0003632800653576851, 'model_time': 0.7689139149151742, 'learning_rate': 4.5140004863740165e-06, 'epoch': 45.57})
186
+ Step 18600, Loss: {'mse_loss': 0.050324294716119766, 'mee_loss': 0.4061448872089386, 'totoal_loss': 0.050324294716119766, 'data_time': 0.0003909510560333729, 'model_time': 0.7374269138090312, 'learning_rate': 4.45327233291239e-06, 'epoch': 45.81})
187
+ Step 18700, Loss: {'mse_loss': 0.05166851729154587, 'mee_loss': 0.3279969394207001, 'totoal_loss': 0.05166851729154587, 'data_time': 0.02322786720469594, 'model_time': 0.73169499123469, 'learning_rate': 4.39265025303631e-06, 'epoch': 46.06})
188
+ Step 18800, Loss: {'mse_loss': 0.03537939488887787, 'mee_loss': 0.4037928581237793, 'totoal_loss': 0.03537939488887787, 'data_time': 0.02181865181773901, 'model_time': 0.8069839118979871, 'learning_rate': 4.332143819674943e-06, 'epoch': 46.31})
189
+ Step 18900, Loss: {'mse_loss': 0.010719765909016132, 'mee_loss': 0.21851857006549835, 'totoal_loss': 0.010719765909016132, 'data_time': 0.02157074213027954, 'model_time': 0.7610530578531325, 'learning_rate': 4.271762587495529e-06, 'epoch': 46.55})
190
+ Step 19000, Loss: {'mse_loss': 0.05681162327528, 'mee_loss': 0.5508592128753662, 'totoal_loss': 0.05681162327528, 'data_time': 0.022871528286486864, 'model_time': 0.8090887777507305, 'learning_rate': 4.2115160913945914e-06, 'epoch': 46.8})
191
+ Step 19100, Loss: {'mse_loss': 0.014573902823030949, 'mee_loss': 0.2704039514064789, 'totoal_loss': 0.014573902823030949, 'data_time': 0.0004678652621805668, 'model_time': 0.7974012028425932, 'learning_rate': 4.151413844992267e-06, 'epoch': 47.04})
192
+ Step 19200, Loss: {'mse_loss': 0.012038818560540676, 'mee_loss': 0.2347930520772934, 'totoal_loss': 0.012038818560540676, 'data_time': 0.00037937238812446594, 'model_time': 0.7300907978788018, 'learning_rate': 4.091465339129985e-06, 'epoch': 47.29})
193
+ Step 19300, Loss: {'mse_loss': 0.012999624945223331, 'mee_loss': 0.20987911522388458, 'totoal_loss': 0.012999624945223331, 'data_time': 0.00037765782326459885, 'model_time': 0.7341570206917822, 'learning_rate': 4.031680040371768e-06, 'epoch': 47.54})
194
+ Step 19400, Loss: {'mse_loss': 0.01833033189177513, 'mee_loss': 0.2747043967247009, 'totoal_loss': 0.01833033189177513, 'data_time': 0.0003752917982637882, 'model_time': 0.7301269983872771, 'learning_rate': 3.972067389509344e-06, 'epoch': 47.78})
195
+ Step 19500, Loss: {'mse_loss': 0.00740313995629549, 'mee_loss': 0.16398997604846954, 'totoal_loss': 0.00740313995629549, 'data_time': 0.009463764727115631, 'model_time': 0.8208905821666121, 'learning_rate': 3.912636800071335e-06, 'epoch': 48.03})
196
+ Step 19600, Loss: {'mse_loss': 0.018469754606485367, 'mee_loss': 0.341354638338089, 'totoal_loss': 0.018469754606485367, 'data_time': 0.009384640958160162, 'model_time': 0.7375692687928677, 'learning_rate': 3.853397656836754e-06, 'epoch': 48.28})
197
+ Step 19700, Loss: {'mse_loss': 0.027485355734825134, 'mee_loss': 0.34284207224845886, 'totoal_loss': 0.027485355734825134, 'data_time': 0.009478658437728882, 'model_time': 0.7816382870078087, 'learning_rate': 3.7943593143530404e-06, 'epoch': 48.52})
198
+ Step 19800, Loss: {'mse_loss': 0.04758777841925621, 'mee_loss': 0.47230637073516846, 'totoal_loss': 0.04758777841925621, 'data_time': 0.009546274319291115, 'model_time': 0.777144833933562, 'learning_rate': 3.735531095458867e-06, 'epoch': 48.77})
199
+ Step 19900, Loss: {'mse_loss': 0.019461356103420258, 'mee_loss': 0.31708818674087524, 'totoal_loss': 0.019461356103420258, 'data_time': 0.0004858449101448059, 'model_time': 0.7299508629366755, 'learning_rate': 3.6769222898119562e-06, 'epoch': 49.01})
200
+ Step 20000, Loss: {'mse_loss': 0.03189761936664581, 'mee_loss': 0.3423677086830139, 'totoal_loss': 0.03189761936664581, 'data_time': 0.00036523956805467606, 'model_time': 0.7779855192638934, 'learning_rate': 3.618542152422132e-06, 'epoch': 49.26})
201
+ Step 20100, Loss: {'mse_loss': 0.03074047341942787, 'mee_loss': 0.29192736744880676, 'totoal_loss': 0.03074047341942787, 'data_time': 0.0003604120574891567, 'model_time': 0.745065807364881, 'learning_rate': 3.560399902189855e-06, 'epoch': 49.51})
202
+ Step 20200, Loss: {'mse_loss': 0.025043588131666183, 'mee_loss': 0.3095436990261078, 'totoal_loss': 0.025043588131666183, 'data_time': 0.0003533577546477318, 'model_time': 0.7543658250942826, 'learning_rate': 3.502504720450441e-06, 'epoch': 49.75})
203
+ Step 20300, Loss: {'mse_loss': 0.01579408161342144, 'mee_loss': 0.2945341169834137, 'totoal_loss': 0.01579408161342144, 'data_time': 0.9579500551335514, 'model_time': 0.7426056279800832, 'learning_rate': 3.4448657495242304e-06, 'epoch': 50.0})
204
+ Step 20400, Loss: {'mse_loss': 0.007791206706315279, 'mee_loss': 0.1788759082555771, 'totoal_loss': 0.007791206706315279, 'data_time': 0.008320695720613003, 'model_time': 0.7287675058469176, 'learning_rate': 3.387492091272904e-06, 'epoch': 50.25})
205
+ Step 20500, Loss: {'mse_loss': 0.007288147229701281, 'mee_loss': 0.17297373712062836, 'totoal_loss': 0.007288147229701281, 'data_time': 0.00772871682420373, 'model_time': 0.8073023669421673, 'learning_rate': 3.3303928056621955e-06, 'epoch': 50.49})
206
+ Step 20600, Loss: {'mse_loss': 0.014896986074745655, 'mee_loss': 0.2949560582637787, 'totoal_loss': 0.014896986074745655, 'data_time': 0.012402600143104792, 'model_time': 0.7271375330165029, 'learning_rate': 3.2735769093312202e-06, 'epoch': 50.74})
207
+ Step 20700, Loss: {'mse_loss': 0.012427103705704212, 'mee_loss': 0.22420580685138702, 'totoal_loss': 0.012427103705704212, 'data_time': 0.008615009021013975, 'model_time': 0.8778776219114661, 'learning_rate': 3.217053374168639e-06, 'epoch': 50.99})
208
+ Step 20800, Loss: {'mse_loss': 0.010419396683573723, 'mee_loss': 0.20798523724079132, 'totoal_loss': 0.010419396683573723, 'data_time': 0.007638845127075911, 'model_time': 0.7539432132616639, 'learning_rate': 3.1608311258958953e-06, 'epoch': 51.23})
209
+ Step 20900, Loss: {'mse_loss': 0.007675718981772661, 'mee_loss': 0.18113845586776733, 'totoal_loss': 0.007675718981772661, 'data_time': 0.011677621863782406, 'model_time': 0.7397385430522263, 'learning_rate': 3.10491904265774e-06, 'epoch': 51.48})
210
+ Step 21000, Loss: {'mse_loss': 0.01847507432103157, 'mee_loss': 0.2659268081188202, 'totoal_loss': 0.01847507432103157, 'data_time': 0.009199067018926144, 'model_time': 0.7348649548366666, 'learning_rate': 3.0493259536202714e-06, 'epoch': 51.72})
211
+ Step 21100, Loss: {'mse_loss': 0.03442392870783806, 'mee_loss': 0.36854463815689087, 'totoal_loss': 0.03442392870783806, 'data_time': 0.007702651433646679, 'model_time': 0.7184974891133606, 'learning_rate': 2.9940606375767038e-06, 'epoch': 51.97})
212
+ Step 21200, Loss: {'mse_loss': 0.01340336911380291, 'mee_loss': 0.27552852034568787, 'totoal_loss': 0.01340336911380291, 'data_time': 0.02623895974829793, 'model_time': 0.7320747510530055, 'learning_rate': 2.939131821561094e-06, 'epoch': 52.22})
213
+ Step 21300, Loss: {'mse_loss': 0.01548565924167633, 'mee_loss': 0.22554416954517365, 'totoal_loss': 0.01548565924167633, 'data_time': 0.02428677212446928, 'model_time': 0.7998303798958659, 'learning_rate': 2.8845481794702473e-06, 'epoch': 52.46})
214
+ Step 21400, Loss: {'mse_loss': 0.010189327411353588, 'mee_loss': 0.20398591458797455, 'totoal_loss': 0.010189327411353588, 'data_time': 0.023277831729501486, 'model_time': 0.7422134336084127, 'learning_rate': 2.830318330694004e-06, 'epoch': 52.71})
215
+ Step 21500, Loss: {'mse_loss': 0.011981245130300522, 'mee_loss': 0.22402817010879517, 'totoal_loss': 0.011981245130300522, 'data_time': 0.024457845836877823, 'model_time': 0.7618478736840189, 'learning_rate': 2.7764508387541378e-06, 'epoch': 52.96})
216
+ Step 21600, Loss: {'mse_loss': 0.024119876325130463, 'mee_loss': 0.3182201683521271, 'totoal_loss': 0.024119876325130463, 'data_time': 0.007721962872892618, 'model_time': 0.764640165027231, 'learning_rate': 2.7229542099520797e-06, 'epoch': 53.2})
217
+ Step 21700, Loss: {'mse_loss': 0.03298773244023323, 'mee_loss': 0.5186470150947571, 'totoal_loss': 0.03298773244023323, 'data_time': 0.00871574878692627, 'model_time': 0.7926275879144669, 'learning_rate': 2.669836892025666e-06, 'epoch': 53.45})
218
+ Step 21800, Loss: {'mse_loss': 0.007753040641546249, 'mee_loss': 0.1810615211725235, 'totoal_loss': 0.007753040641546249, 'data_time': 0.008837959729135036, 'model_time': 0.734243025071919, 'learning_rate': 2.6171072728151557e-06, 'epoch': 53.69})
219
+ Step 21900, Loss: {'mse_loss': 0.014147622510790825, 'mee_loss': 0.25273123383522034, 'totoal_loss': 0.014147622510790825, 'data_time': 0.007395975757390261, 'model_time': 0.7731834617443383, 'learning_rate': 2.5647736789386828e-06, 'epoch': 53.94})
220
+ Step 22000, Loss: {'mse_loss': 0.012243610806763172, 'mee_loss': 0.24161112308502197, 'totoal_loss': 0.012243610806763172, 'data_time': 0.016274436842650175, 'model_time': 0.7143356958404183, 'learning_rate': 2.5128443744773904e-06, 'epoch': 54.19})
221
+ Step 22100, Loss: {'mse_loss': 0.03103271685540676, 'mee_loss': 0.33547836542129517, 'totoal_loss': 0.03103271685540676, 'data_time': 0.015065338928252459, 'model_time': 0.7323429910466075, 'learning_rate': 2.4613275596704386e-06, 'epoch': 54.43})
222
+ Step 22200, Loss: {'mse_loss': 0.006716152653098106, 'mee_loss': 0.16229930520057678, 'totoal_loss': 0.006716152653098106, 'data_time': 0.017263393849134445, 'model_time': 0.7436672057956457, 'learning_rate': 2.4102313696200853e-06, 'epoch': 54.68})
223
+ Step 22300, Loss: {'mse_loss': 0.02528984472155571, 'mee_loss': 0.3598990738391876, 'totoal_loss': 0.02528984472155571, 'data_time': 0.015333252027630806, 'model_time': 0.7676684050820768, 'learning_rate': 2.359563873007063e-06, 'epoch': 54.93})
224
+ Step 22400, Loss: {'mse_loss': 0.014543630182743073, 'mee_loss': 0.21168097853660583, 'totoal_loss': 0.014543630182743073, 'data_time': 0.008433487731963396, 'model_time': 0.8496640007942915, 'learning_rate': 2.3093330708164465e-06, 'epoch': 55.17})
225
+ Step 22500, Loss: {'mse_loss': 0.009085778146982193, 'mee_loss': 0.2110821157693863, 'totoal_loss': 0.009085778146982193, 'data_time': 0.00932616787031293, 'model_time': 0.7345731980167329, 'learning_rate': 2.2595468950741943e-06, 'epoch': 55.42})
226
+ Step 22600, Loss: {'mse_loss': 0.012811989523470402, 'mee_loss': 0.24233373999595642, 'totoal_loss': 0.012811989523470402, 'data_time': 0.007737722247838974, 'model_time': 0.755481147672981, 'learning_rate': 2.2102132075945974e-06, 'epoch': 55.67})
227
+ Step 22700, Loss: {'mse_loss': 0.038416601717472076, 'mee_loss': 0.4112197458744049, 'totoal_loss': 0.038416601717472076, 'data_time': 0.008659230079501867, 'model_time': 0.7455138158984482, 'learning_rate': 2.1613397987388e-06, 'epoch': 55.91})
228
+ Step 22800, Loss: {'mse_loss': 0.03008570708334446, 'mee_loss': 0.292241632938385, 'totoal_loss': 0.03008570708334446, 'data_time': 0.016381483990699053, 'model_time': 0.7288722679950297, 'learning_rate': 2.1129343861846207e-06, 'epoch': 56.16})
229
+ Step 22900, Loss: {'mse_loss': 0.016225093975663185, 'mee_loss': 0.2161070704460144, 'totoal_loss': 0.016225093975663185, 'data_time': 0.010000124108046293, 'model_time': 0.8252146719023585, 'learning_rate': 2.065004613707836e-06, 'epoch': 56.4})
230
+ Step 23000, Loss: {'mse_loss': 0.03002196177840233, 'mee_loss': 0.2745165526866913, 'totoal_loss': 0.03002196177840233, 'data_time': 0.010972222313284874, 'model_time': 0.828567358199507, 'learning_rate': 2.0175580499751375e-06, 'epoch': 56.65})
231
+ Step 23100, Loss: {'mse_loss': 0.014776414260268211, 'mee_loss': 0.265605628490448, 'totoal_loss': 0.014776414260268211, 'data_time': 0.01370189432054758, 'model_time': 0.760248672682792, 'learning_rate': 1.9706021873489604e-06, 'epoch': 56.9})
232
+ Step 23200, Loss: {'mse_loss': 0.0073155006393790245, 'mee_loss': 0.17415368556976318, 'totoal_loss': 0.0073155006393790245, 'data_time': 0.007825678214430809, 'model_time': 0.7211778629571199, 'learning_rate': 1.924144440704338e-06, 'epoch': 57.14})
233
+ Step 23300, Loss: {'mse_loss': 0.009835860691964626, 'mee_loss': 0.17784254252910614, 'totoal_loss': 0.009835860691964626, 'data_time': 0.008694485295563936, 'model_time': 0.7600964102894068, 'learning_rate': 1.8781921462580238e-06, 'epoch': 57.39})
234
+ Step 23400, Loss: {'mse_loss': 0.03000774048268795, 'mee_loss': 0.4094448983669281, 'totoal_loss': 0.03000774048268795, 'data_time': 0.007126139011234045, 'model_time': 0.7210276750847697, 'learning_rate': 1.8327525604100058e-06, 'epoch': 57.64})
235
+ Step 23500, Loss: {'mse_loss': 0.00880596973001957, 'mee_loss': 0.16561274230480194, 'totoal_loss': 0.00880596973001957, 'data_time': 0.01312545221298933, 'model_time': 0.7205032943747938, 'learning_rate': 1.7878328585976426e-06, 'epoch': 57.88})
236
+ Step 23600, Loss: {'mse_loss': 0.008285289630293846, 'mee_loss': 0.15021619200706482, 'totoal_loss': 0.008285289630293846, 'data_time': 0.009400622919201851, 'model_time': 0.7457790696062148, 'learning_rate': 1.7434401341625765e-06, 'epoch': 58.13})
237
+ Step 23700, Loss: {'mse_loss': 0.010449299588799477, 'mee_loss': 0.20304954051971436, 'totoal_loss': 0.010449299588799477, 'data_time': 0.009751915000379086, 'model_time': 0.7415113970637321, 'learning_rate': 1.6995813972306108e-06, 'epoch': 58.37})
238
+ Step 23800, Loss: {'mse_loss': 0.01091008260846138, 'mee_loss': 0.17052096128463745, 'totoal_loss': 0.01091008260846138, 'data_time': 0.008982882834970951, 'model_time': 0.7399577810429037, 'learning_rate': 1.656263573604734e-06, 'epoch': 58.62})
239
+ Step 23900, Loss: {'mse_loss': 0.01634112372994423, 'mee_loss': 0.22871319949626923, 'totoal_loss': 0.01634112372994423, 'data_time': 0.007637525908648968, 'model_time': 0.7451618611812592, 'learning_rate': 1.613493503671454e-06, 'epoch': 58.87})
240
+ Step 24000, Loss: {'mse_loss': 0.02898697927594185, 'mee_loss': 0.33691099286079407, 'totoal_loss': 0.02898697927594185, 'data_time': 0.00036671198904514313, 'model_time': 0.7427481110207736, 'learning_rate': 1.5712779413206198e-06, 'epoch': 59.11})
241
+ Step 24100, Loss: {'mse_loss': 0.037864234298467636, 'mee_loss': 0.30358850955963135, 'totoal_loss': 0.037864234298467636, 'data_time': 0.00037815701216459274, 'model_time': 0.7576883789151907, 'learning_rate': 1.5296235528789028e-06, 'epoch': 59.36})
242
+ Step 24200, Loss: {'mse_loss': 0.02118254266679287, 'mee_loss': 0.2693711519241333, 'totoal_loss': 0.02118254266679287, 'data_time': 0.0003583650104701519, 'model_time': 0.762605250813067, 'learning_rate': 1.4885369160571124e-06, 'epoch': 59.61})
243
+ Step 24300, Loss: {'mse_loss': 0.010495397262275219, 'mee_loss': 0.24366815388202667, 'totoal_loss': 0.010495397262275219, 'data_time': 0.0005410858429968357, 'model_time': 0.8461631988175213, 'learning_rate': 1.4480245189114938e-06, 'epoch': 59.85})
244
+ Step 24400, Loss: {'mse_loss': 0.029379520565271378, 'mee_loss': 0.3756038546562195, 'totoal_loss': 0.029379520565271378, 'data_time': 0.023825952783226967, 'model_time': 0.7221802952699363, 'learning_rate': 1.408092758819191e-06, 'epoch': 60.1})
245
+ Step 24500, Loss: {'mse_loss': 0.00856106262654066, 'mee_loss': 0.17942042648792267, 'totoal_loss': 0.00856106262654066, 'data_time': 0.026142755057662725, 'model_time': 0.8151237280108035, 'learning_rate': 1.368747941468028e-06, 'epoch': 60.34})
246
+ Step 24600, Loss: {'mse_loss': 0.023658474907279015, 'mee_loss': 0.31152108311653137, 'totoal_loss': 0.023658474907279015, 'data_time': 0.023125431034713984, 'model_time': 0.7140239188447595, 'learning_rate': 1.3299962798607614e-06, 'epoch': 60.59})
247
+ Step 24700, Loss: {'mse_loss': 0.019509417936205864, 'mee_loss': 0.2967301905155182, 'totoal_loss': 0.019509417936205864, 'data_time': 0.02583051286637783, 'model_time': 0.7289070771075785, 'learning_rate': 1.2918438933339827e-06, 'epoch': 60.84})
248
+ Step 24800, Loss: {'mse_loss': 0.011377936229109764, 'mee_loss': 0.1891167312860489, 'totoal_loss': 0.011377936229109764, 'data_time': 0.00035943277180194855, 'model_time': 0.7896756669506431, 'learning_rate': 1.2542968065918027e-06, 'epoch': 61.08})
249
+ Step 24900, Loss: {'mse_loss': 0.014741861261427402, 'mee_loss': 0.23172074556350708, 'totoal_loss': 0.014741861261427402, 'data_time': 0.0003821090795099735, 'model_time': 0.7389728147536516, 'learning_rate': 1.217360948754476e-06, 'epoch': 61.33})
250
+ Step 25000, Loss: {'mse_loss': 0.04220208153128624, 'mee_loss': 0.26535946130752563, 'totoal_loss': 0.04220208153128624, 'data_time': 0.0004024570807814598, 'model_time': 0.7763959411531687, 'learning_rate': 1.1810421524221318e-06, 'epoch': 61.58})
251
+ Step 25100, Loss: {'mse_loss': 0.011246977373957634, 'mee_loss': 0.20302638411521912, 'totoal_loss': 0.011246977373957634, 'data_time': 0.00047211814671754837, 'model_time': 0.7691056840121746, 'learning_rate': 1.1453461527537284e-06, 'epoch': 61.82})
252
+ Step 25200, Loss: {'mse_loss': 0.0063846721313893795, 'mee_loss': 0.15369682013988495, 'totoal_loss': 0.0063846721313893795, 'data_time': 0.021580711007118225, 'model_time': 0.7440026528201997, 'learning_rate': 1.1102785865614162e-06, 'epoch': 62.07})
253
+ Step 25300, Loss: {'mse_loss': 0.032355986535549164, 'mee_loss': 0.36810141801834106, 'totoal_loss': 0.032355986535549164, 'data_time': 0.0282350848428905, 'model_time': 0.7412814688868821, 'learning_rate': 1.0758449914204127e-06, 'epoch': 62.32})
254
+ Step 25400, Loss: {'mse_loss': 0.011614861898124218, 'mee_loss': 0.2310769408941269, 'totoal_loss': 0.011614861898124218, 'data_time': 0.02238401211798191, 'model_time': 0.733771821949631, 'learning_rate': 1.0420508047945595e-06, 'epoch': 62.56})
255
+ Step 25500, Loss: {'mse_loss': 0.03942498192191124, 'mee_loss': 0.3292714059352875, 'totoal_loss': 0.03942498192191124, 'data_time': 0.02504176227375865, 'model_time': 0.7516146507114172, 'learning_rate': 1.0089013631776776e-06, 'epoch': 62.81})
256
+ Step 25600, Loss: {'mse_loss': 0.010135342366993427, 'mee_loss': 0.16912277042865753, 'totoal_loss': 0.010135342366993427, 'data_time': 0.009605506900697947, 'model_time': 0.736942402087152, 'learning_rate': 9.76401901250878e-07, 'epoch': 63.05})
257
+ Step 25700, Loss: {'mse_loss': 0.02189052291214466, 'mee_loss': 0.29399797320365906, 'totoal_loss': 0.02189052291214466, 'data_time': 0.010332806967198849, 'model_time': 0.8190033677965403, 'learning_rate': 9.44557551055946e-07, 'epoch': 63.3})
258
+ Step 25800, Loss: {'mse_loss': 0.01107397023588419, 'mee_loss': 0.18286195397377014, 'totoal_loss': 0.01107397023588419, 'data_time': 0.007756267208606005, 'model_time': 0.7272981079295278, 'learning_rate': 9.13373341184928e-07, 'epoch': 63.55})
259
+ Step 25900, Loss: {'mse_loss': 0.005308044608682394, 'mee_loss': 0.12210547924041748, 'totoal_loss': 0.005308044608682394, 'data_time': 0.014163398183882236, 'model_time': 0.7375545809045434, 'learning_rate': 8.828541959860623e-07, 'epoch': 63.79})
260
+ Step 26000, Loss: {'mse_loss': 0.012842824682593346, 'mee_loss': 0.20237605273723602, 'totoal_loss': 0.012842824682593346, 'data_time': 0.00799161707982421, 'model_time': 0.7753863832913339, 'learning_rate': 8.530049347861661e-07, 'epoch': 64.04})
261
+ Step 26100, Loss: {'mse_loss': 0.012298298999667168, 'mee_loss': 0.19056668877601624, 'totoal_loss': 0.012298298999667168, 'data_time': 0.007608476560562849, 'model_time': 0.747491670306772, 'learning_rate': 8.238302711296034e-07, 'epoch': 64.29})
262
+ Step 26200, Loss: {'mse_loss': 0.021783949807286263, 'mee_loss': 0.24234361946582794, 'totoal_loss': 0.021783949807286263, 'data_time': 0.009561271872371435, 'model_time': 0.7384904357604682, 'learning_rate': 7.953348120339707e-07, 'epoch': 64.53})
263
+ Step 26300, Loss: {'mse_loss': 0.0070648156106472015, 'mee_loss': 0.16958634555339813, 'totoal_loss': 0.0070648156106472015, 'data_time': 0.007931203115731478, 'model_time': 0.7739335992373526, 'learning_rate': 7.675230572625892e-07, 'epoch': 64.78})
264
+ Step 26400, Loss: {'mse_loss': 0.06586682796478271, 'mee_loss': 0.39055368304252625, 'totoal_loss': 0.06586682796478271, 'data_time': 0.0003893151879310608, 'model_time': 0.7592325452715158, 'learning_rate': 7.40399398613941e-07, 'epoch': 65.02})
265
+ Step 26500, Loss: {'mse_loss': 0.004974900279194117, 'mee_loss': 0.12108834087848663, 'totoal_loss': 0.004974900279194117, 'data_time': 0.0004621092230081558, 'model_time': 0.7639132188633084, 'learning_rate': 7.139681192281557e-07, 'epoch': 65.27})
266
+ Step 26600, Loss: {'mse_loss': 0.01202124822884798, 'mee_loss': 0.21552756428718567, 'totoal_loss': 0.01202124822884798, 'data_time': 0.0004207887686789036, 'model_time': 0.7467764299362898, 'learning_rate': 6.882333929106462e-07, 'epoch': 65.52})
267
+ Step 26700, Loss: {'mse_loss': 0.006025412585586309, 'mee_loss': 0.13323163986206055, 'totoal_loss': 0.006025412585586309, 'data_time': 0.0004914868623018265, 'model_time': 0.7374827638268471, 'learning_rate': 6.63199283473027e-07, 'epoch': 65.76})
268
+ Step 26800, Loss: {'mse_loss': 0.014716456644237041, 'mee_loss': 0.2199215143918991, 'totoal_loss': 0.014716456644237041, 'data_time': 0.07164633274078369, 'model_time': 0.7653826237656176, 'learning_rate': 6.388697440913819e-07, 'epoch': 66.01})
269
+ Step 26900, Loss: {'mse_loss': 0.012044903822243214, 'mee_loss': 0.20254945755004883, 'totoal_loss': 0.012044903822243214, 'data_time': 0.021725859958678484, 'model_time': 0.7320828810334206, 'learning_rate': 6.152486166820176e-07, 'epoch': 66.26})
270
+ Step 27000, Loss: {'mse_loss': 0.03483772277832031, 'mee_loss': 0.2532285749912262, 'totoal_loss': 0.03483772277832031, 'data_time': 0.022608721163123846, 'model_time': 0.7322946591302752, 'learning_rate': 5.923396312947748e-07, 'epoch': 66.5})
271
+ Step 27100, Loss: {'mse_loss': 0.026979859918355942, 'mee_loss': 0.19482281804084778, 'totoal_loss': 0.026979859918355942, 'data_time': 0.022848004940897226, 'model_time': 0.7171280398033559, 'learning_rate': 5.701464055240163e-07, 'epoch': 66.75})
272
+ Step 27200, Loss: {'mse_loss': 0.01178445853292942, 'mee_loss': 0.20676471292972565, 'totoal_loss': 0.01178445853292942, 'data_time': 0.014754158910363913, 'model_time': 0.6922084661200643, 'learning_rate': 5.48672443937364e-07, 'epoch': 67.0})
273
+ Step 27300, Loss: {'mse_loss': 0.006411155220121145, 'mee_loss': 0.15268802642822266, 'totoal_loss': 0.006411155220121145, 'data_time': 0.008532003965228796, 'model_time': 0.7265999000519514, 'learning_rate': 5.279211375222855e-07, 'epoch': 67.24})
274
+ Step 27400, Loss: {'mse_loss': 0.024241577833890915, 'mee_loss': 0.39063841104507446, 'totoal_loss': 0.024241577833890915, 'data_time': 0.007327849976718426, 'model_time': 0.7538337442092597, 'learning_rate': 5.07895763150622e-07, 'epoch': 67.49})
275
+ Step 27500, Loss: {'mse_loss': 0.011072216555476189, 'mee_loss': 0.19513016939163208, 'totoal_loss': 0.011072216555476189, 'data_time': 0.007754083722829819, 'model_time': 0.7432063883170485, 'learning_rate': 4.885994830611266e-07, 'epoch': 67.73})
276
+ Step 27600, Loss: {'mse_loss': 0.02555636316537857, 'mee_loss': 0.2946043908596039, 'totoal_loss': 0.02555636316537857, 'data_time': 0.007679743226617575, 'model_time': 0.7329129339195788, 'learning_rate': 4.700353443601156e-07, 'epoch': 67.98})
277
+ Step 27700, Loss: {'mse_loss': 0.006666653323918581, 'mee_loss': 0.14367739856243134, 'totoal_loss': 0.006666653323918581, 'data_time': 0.019457657355815172, 'model_time': 0.8098078151233494, 'learning_rate': 4.5220627854029224e-07, 'epoch': 68.23})
278
+ Step 27800, Loss: {'mse_loss': 0.026818372309207916, 'mee_loss': 0.34790101647377014, 'totoal_loss': 0.026818372309207916, 'data_time': 0.014331072103232145, 'model_time': 0.7283625309355557, 'learning_rate': 4.351151010178311e-07, 'epoch': 68.47})
279
+ Step 27900, Loss: {'mse_loss': 0.018751395866274834, 'mee_loss': 0.24705350399017334, 'totoal_loss': 0.018751395866274834, 'data_time': 0.014586711302399635, 'model_time': 0.7738958573900163, 'learning_rate': 4.1876451068778983e-07, 'epoch': 68.72})
280
+ Step 28000, Loss: {'mse_loss': 0.008133821189403534, 'mee_loss': 0.14647267758846283, 'totoal_loss': 0.008133821189403534, 'data_time': 0.01644257176667452, 'model_time': 0.7732454319484532, 'learning_rate': 4.031570894979235e-07, 'epoch': 68.97})
281
+ Step 28100, Loss: {'mse_loss': 0.008800056762993336, 'mee_loss': 0.1728886365890503, 'totoal_loss': 0.008800056762993336, 'data_time': 0.00037854304537177086, 'model_time': 0.7684774026274681, 'learning_rate': 3.882953020409644e-07, 'epoch': 69.21})
282
+ Step 28200, Loss: {'mse_loss': 0.02674388326704502, 'mee_loss': 0.36487630009651184, 'totoal_loss': 0.02674388326704502, 'data_time': 0.00036378903314471245, 'model_time': 0.7279729773290455, 'learning_rate': 3.74181495165436e-07, 'epoch': 69.46})
283
+ Step 28300, Loss: {'mse_loss': 0.007230537943542004, 'mee_loss': 0.14534926414489746, 'totoal_loss': 0.007230537943542004, 'data_time': 0.0003568180836737156, 'model_time': 0.7616071850061417, 'learning_rate': 3.608178976050568e-07, 'epoch': 69.7})
284
+ Step 28400, Loss: {'mse_loss': 0.023184990510344505, 'mee_loss': 0.3077695369720459, 'totoal_loss': 0.023184990510344505, 'data_time': 0.0003679203800857067, 'model_time': 0.7386559802107513, 'learning_rate': 3.482066196267966e-07, 'epoch': 69.95})
285
+ Step 28500, Loss: {'mse_loss': 0.0064439778216183186, 'mee_loss': 0.1455841362476349, 'totoal_loss': 0.0064439778216183186, 'data_time': 0.015831453260034323, 'model_time': 0.7926610973663628, 'learning_rate': 3.36349652697643e-07, 'epoch': 70.2})
286
+ Step 28600, Loss: {'mse_loss': 0.009324661456048489, 'mee_loss': 0.20036572217941284, 'totoal_loss': 0.009324661456048489, 'data_time': 0.016866585239768028, 'model_time': 0.7657480333000422, 'learning_rate': 3.2524886917012403e-07, 'epoch': 70.44})
287
+ Step 28700, Loss: {'mse_loss': 0.007851711474359035, 'mee_loss': 0.16385556757450104, 'totoal_loss': 0.007851711474359035, 'data_time': 0.01602328661829233, 'model_time': 0.7948072128929198, 'learning_rate': 3.149060219866433e-07, 'epoch': 70.69})
288
+ Step 28800, Loss: {'mse_loss': 0.0038725826889276505, 'mee_loss': 0.10052645206451416, 'totoal_loss': 0.0038725826889276505, 'data_time': 0.01720969332382083, 'model_time': 0.7758883805945516, 'learning_rate': 3.053227444026695e-07, 'epoch': 70.94})
289
+ Step 28900, Loss: {'mse_loss': 0.006642735563218594, 'mee_loss': 0.1343085914850235, 'totoal_loss': 0.006642735563218594, 'data_time': 0.00802020588889718, 'model_time': 0.7029434507712722, 'learning_rate': 2.9650054972882544e-07, 'epoch': 71.18})
290
+ Step 29000, Loss: {'mse_loss': 0.028205174952745438, 'mee_loss': 0.3218350410461426, 'totoal_loss': 0.028205174952745438, 'data_time': 0.008744289167225361, 'model_time': 0.8064812677912414, 'learning_rate': 2.884408310919209e-07, 'epoch': 71.43})
291
+ Step 29100, Loss: {'mse_loss': 0.005604682490229607, 'mee_loss': 0.12546885013580322, 'totoal_loss': 0.005604682490229607, 'data_time': 0.009009646717458963, 'model_time': 0.761289288289845, 'learning_rate': 2.8114486121495906e-07, 'epoch': 71.67})
292
+ Step 29200, Loss: {'mse_loss': 0.011515564285218716, 'mee_loss': 0.2393442988395691, 'totoal_loss': 0.011515564285218716, 'data_time': 0.007532414048910141, 'model_time': 0.7379942592233419, 'learning_rate': 2.746137922161617e-07, 'epoch': 71.92})
293
+ Step 29300, Loss: {'mse_loss': 0.01965891569852829, 'mee_loss': 0.16624629497528076, 'totoal_loss': 0.01965891569852829, 'data_time': 0.014683069661259651, 'model_time': 0.753378068562597, 'learning_rate': 2.68848655427034e-07, 'epoch': 72.17})
294
+ Step 29400, Loss: {'mse_loss': 0.02909189462661743, 'mee_loss': 0.1944243460893631, 'totoal_loss': 0.02909189462661743, 'data_time': 0.01927111716940999, 'model_time': 0.7296773246489465, 'learning_rate': 2.638503612295071e-07, 'epoch': 72.41})
295
+ Step 29500, Loss: {'mse_loss': 0.013065879233181477, 'mee_loss': 0.2702900767326355, 'totoal_loss': 0.013065879233181477, 'data_time': 0.015075973235070705, 'model_time': 0.7489749370142817, 'learning_rate': 2.5961969891217614e-07, 'epoch': 72.66})
296
+ Step 29600, Loss: {'mse_loss': 0.023204730823636055, 'mee_loss': 0.24965611100196838, 'totoal_loss': 0.023204730823636055, 'data_time': 0.015224777162075043, 'model_time': 0.7199302450753748, 'learning_rate': 2.5615733654566483e-07, 'epoch': 72.91})
297
+ Step 29700, Loss: {'mse_loss': 0.032590437680482864, 'mee_loss': 0.27963706851005554, 'totoal_loss': 0.032590437680482864, 'data_time': 0.0003782575950026512, 'model_time': 0.7437721989117563, 'learning_rate': 2.5346382087712764e-07, 'epoch': 73.15})
298
+ Step 29800, Loss: {'mse_loss': 0.02707023173570633, 'mee_loss': 0.30234402418136597, 'totoal_loss': 0.02707023173570633, 'data_time': 0.0003673951141536236, 'model_time': 0.7660151161253452, 'learning_rate': 2.515395772439128e-07, 'epoch': 73.4})
299
+ Step 29900, Loss: {'mse_loss': 0.013737687841057777, 'mee_loss': 0.19384649395942688, 'totoal_loss': 0.013737687841057777, 'data_time': 0.000372184906154871, 'model_time': 0.7306320862844586, 'learning_rate': 2.5038490950639644e-07, 'epoch': 73.65})
300
+ Step 30000, Loss: {'mse_loss': 0.013745972886681557, 'mee_loss': 0.2856418490409851, 'totoal_loss': 0.013745972886681557, 'data_time': 0.0003651767037808895, 'model_time': 0.7573533710092306, 'learning_rate': 2.5e-07, 'epoch': 73.89})
libero_object_2B/starvla_qwen_pi/config.json ADDED
@@ -0,0 +1,129 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "run_id": "starvla_qwen_pi",
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": "QwenPI",
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_pi"
129
+ }
libero_object_2B/starvla_qwen_pi/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_pi/final_model/pytorch_model.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0eddde4f18cb46754fbaf5926e38790f4291443df79b940310de81fe80d73ca5
3
+ size 6825856850
libero_object_2B/starvla_qwen_pi/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: True
35
+ # episodes completed so far: 7
36
+ # successes: 7 (100.0%)
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: 8 (100.0%)
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: 9 (100.0%)
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: 10 (100.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: 11 (100.0%)
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: 12 (100.0%)
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: 13 (100.0%)
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: 14 (100.0%)
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: 15 (100.0%)
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: 16 (100.0%)
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: 17 (100.0%)
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: 18 (100.0%)
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: 19 (100.0%)
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: 20 (100.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: 21 (100.0%)
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: 22 (100.0%)
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: 23 (100.0%)
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: 24 (100.0%)
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: 25 (100.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: 26 (100.0%)
132
+
133
+ Task: pick up the alphabet soup and place it in the basket
134
+ Success: True
135
+ # episodes completed so far: 27
136
+ # successes: 27 (100.0%)
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: 28 (100.0%)
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: 29 (100.0%)
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: 30 (100.0%)
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: 31 (100.0%)
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: 32 (100.0%)
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: 33 (100.0%)
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: 34 (100.0%)
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: 35 (100.0%)
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: 36 (100.0%)
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: 37 (100.0%)
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: 38 (100.0%)
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: 39 (100.0%)
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: 40 (100.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: 41 (100.0%)
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: 42 (100.0%)
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: 43 (100.0%)
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: 44 (100.0%)
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: 45 (100.0%)
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: 46 (100.0%)
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: 47 (100.0%)
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: 48 (100.0%)
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: 49 (100.0%)
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: 50 (100.0%)
252
+ Current task success rate: 1.0
253
+ Current total success rate: 1.0
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: 51 (100.0%)
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: 52 (100.0%)
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: 53 (100.0%)
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: 54 (100.0%)
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: 55 (100.0%)
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: 56 (100.0%)
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: 57 (100.0%)
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: 58 (100.0%)
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: 59 (100.0%)
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: 60 (100.0%)
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: 61 (100.0%)
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: 62 (100.0%)
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: 63 (100.0%)
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: 64 (100.0%)
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: 65 (100.0%)
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: 66 (100.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: 67 (100.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: 68 (100.0%)
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: 69 (100.0%)
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: 70 (100.0%)
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: 71 (100.0%)
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: 72 (100.0%)
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: 73 (100.0%)
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: 74 (100.0%)
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: 75 (100.0%)
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: 76 (100.0%)
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: 77 (100.0%)
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: 78 (100.0%)
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: 79 (100.0%)
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: 80 (100.0%)
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: 81 (100.0%)
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: 82 (100.0%)
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: 83 (100.0%)
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: 84 (100.0%)
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: 85 (100.0%)
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: 86 (100.0%)
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: 87 (100.0%)
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: 88 (100.0%)
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: 89 (100.0%)
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: 90 (100.0%)
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: 91 (100.0%)
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: 92 (100.0%)
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: 93 (100.0%)
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: 94 (100.0%)
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: 95 (100.0%)
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: 96 (100.0%)
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: 97 (100.0%)
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: 98 (100.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: 99 (100.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: 100 (100.0%)
504
+ Current task success rate: 1.0
505
+ Current total success rate: 1.0
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: 101 (100.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: 102 (100.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: 103 (100.0%)
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: 104 (100.0%)
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: 105 (100.0%)
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: 106 (100.0%)
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: 107 (100.0%)
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: 108 (100.0%)
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: 109 (100.0%)
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: 110 (100.0%)
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: 111 (100.0%)
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: 112 (100.0%)
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: 113 (100.0%)
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: 114 (100.0%)
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: 115 (100.0%)
581
+
582
+ Task: pick up the salad dressing and place it in the basket
583
+ Success: False
584
+ # episodes completed so far: 116
585
+ # successes: 115 (99.1%)
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: 116 (99.1%)
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: 117 (99.2%)
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: 118 (99.2%)
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: 119 (99.2%)
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: 120 (99.2%)
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: 121 (99.2%)
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: 122 (99.2%)
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: 123 (99.2%)
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: 124 (99.2%)
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: 125 (99.2%)
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: 126 (99.2%)
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: 127 (99.2%)
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: 128 (99.2%)
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: 129 (99.2%)
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: 130 (99.2%)
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: 131 (99.2%)
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: 132 (99.2%)
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: 133 (99.3%)
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: 134 (99.3%)
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: 135 (99.3%)
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: 136 (99.3%)
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: 137 (99.3%)
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: 138 (99.3%)
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: 139 (99.3%)
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: 140 (99.3%)
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: 141 (99.3%)
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: 142 (99.3%)
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: 143 (99.3%)
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: 144 (99.3%)
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: 145 (99.3%)
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: 146 (99.3%)
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: 147 (99.3%)
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: 148 (99.3%)
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: 149 (99.3%)
756
+ Current task success rate: 0.98
757
+ Current total success rate: 0.9933333333333333
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: 150 (99.3%)
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: 151 (99.3%)
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: 152 (99.3%)
773
+
774
+ Task: pick up the bbq sauce and place it in the basket
775
+ Success: False
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: False
806
+ # episodes completed so far: 160
807
+ # successes: 157 (98.1%)
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: 158 (98.1%)
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: 159 (98.1%)
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: 160 (98.2%)
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: 161 (98.2%)
828
+
829
+ Task: pick up the bbq sauce and place it in the basket
830
+ Success: False
831
+ # episodes completed so far: 165
832
+ # successes: 161 (97.6%)
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: 162 (97.6%)
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: 163 (97.6%)
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: 164 (97.6%)
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: 165 (97.6%)
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: 166 (97.6%)
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: 167 (97.7%)
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: 168 (97.7%)
868
+
869
+ Task: pick up the bbq sauce and place it in the basket
870
+ Success: True
871
+ # episodes completed so far: 173
872
+ # successes: 169 (97.7%)
873
+
874
+ Task: pick up the bbq sauce and place it in the basket
875
+ Success: False
876
+ # episodes completed so far: 174
877
+ # successes: 169 (97.1%)
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: 170 (97.1%)
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: 171 (97.2%)
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: 172 (97.2%)
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: 173 (97.2%)
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: 174 (97.2%)
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: 175 (97.2%)
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: 176 (97.2%)
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: 177 (97.3%)
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: 178 (97.3%)
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: 179 (97.3%)
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: 180 (97.3%)
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: 181 (97.3%)
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: 182 (97.3%)
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: 183 (97.3%)
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: 184 (97.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: 185 (97.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: 186 (97.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: 187 (97.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: 188 (97.4%)
973
+
974
+ Task: pick up the bbq sauce and place it in the basket
975
+ Success: True
976
+ # episodes completed so far: 194
977
+ # successes: 189 (97.4%)
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: 190 (97.4%)
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: 191 (97.4%)
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: 192 (97.5%)
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: 193 (97.5%)
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: 194 (97.5%)
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: 195 (97.5%)
1008
+ Current task success rate: 0.92
1009
+ Current total success rate: 0.975
1010
+
1011
+ Task: pick up the ketchup and place it in the basket
1012
+ Success: True
1013
+ # episodes completed so far: 201
1014
+ # successes: 196 (97.5%)
1015
+
1016
+ Task: pick up the ketchup and place it in the basket
1017
+ Success: True
1018
+ # episodes completed so far: 202
1019
+ # successes: 197 (97.5%)
1020
+
1021
+ Task: pick up the ketchup and place it in the basket
1022
+ Success: True
1023
+ # episodes completed so far: 203
1024
+ # successes: 198 (97.5%)
1025
+
1026
+ Task: pick up the ketchup and place it in the basket
1027
+ Success: True
1028
+ # episodes completed so far: 204
1029
+ # successes: 199 (97.5%)
1030
+
1031
+ Task: pick up the ketchup and place it in the basket
1032
+ Success: True
1033
+ # episodes completed so far: 205
1034
+ # successes: 200 (97.6%)
1035
+
1036
+ Task: pick up the ketchup and place it in the basket
1037
+ Success: True
1038
+ # episodes completed so far: 206
1039
+ # successes: 201 (97.6%)
1040
+
1041
+ Task: pick up the ketchup and place it in the basket
1042
+ Success: True
1043
+ # episodes completed so far: 207
1044
+ # successes: 202 (97.6%)
1045
+
1046
+ Task: pick up the ketchup and place it in the basket
1047
+ Success: True
1048
+ # episodes completed so far: 208
1049
+ # successes: 203 (97.6%)
1050
+
1051
+ Task: pick up the ketchup and place it in the basket
1052
+ Success: True
1053
+ # episodes completed so far: 209
1054
+ # successes: 204 (97.6%)
1055
+
1056
+ Task: pick up the ketchup and place it in the basket
1057
+ Success: True
1058
+ # episodes completed so far: 210
1059
+ # successes: 205 (97.6%)
1060
+
1061
+ Task: pick up the ketchup and place it in the basket
1062
+ Success: True
1063
+ # episodes completed so far: 211
1064
+ # successes: 206 (97.6%)
1065
+
1066
+ Task: pick up the ketchup and place it in the basket
1067
+ Success: True
1068
+ # episodes completed so far: 212
1069
+ # successes: 207 (97.6%)
1070
+
1071
+ Task: pick up the ketchup and place it in the basket
1072
+ Success: True
1073
+ # episodes completed so far: 213
1074
+ # successes: 208 (97.7%)
1075
+
1076
+ Task: pick up the ketchup and place it in the basket
1077
+ Success: True
1078
+ # episodes completed so far: 214
1079
+ # successes: 209 (97.7%)
1080
+
1081
+ Task: pick up the ketchup and place it in the basket
1082
+ Success: True
1083
+ # episodes completed so far: 215
1084
+ # successes: 210 (97.7%)
1085
+
1086
+ Task: pick up the ketchup and place it in the basket
1087
+ Success: True
1088
+ # episodes completed so far: 216
1089
+ # successes: 211 (97.7%)
1090
+
1091
+ Task: pick up the ketchup and place it in the basket
1092
+ Success: True
1093
+ # episodes completed so far: 217
1094
+ # successes: 212 (97.7%)
1095
+
1096
+ Task: pick up the ketchup and place it in the basket
1097
+ Success: True
1098
+ # episodes completed so far: 218
1099
+ # successes: 213 (97.7%)
1100
+
1101
+ Task: pick up the ketchup and place it in the basket
1102
+ Success: True
1103
+ # episodes completed so far: 219
1104
+ # successes: 214 (97.7%)
1105
+
1106
+ Task: pick up the ketchup and place it in the basket
1107
+ Success: True
1108
+ # episodes completed so far: 220
1109
+ # successes: 215 (97.7%)
1110
+
1111
+ Task: pick up the ketchup and place it in the basket
1112
+ Success: True
1113
+ # episodes completed so far: 221
1114
+ # successes: 216 (97.7%)
1115
+
1116
+ Task: pick up the ketchup and place it in the basket
1117
+ Success: True
1118
+ # episodes completed so far: 222
1119
+ # successes: 217 (97.7%)
1120
+
1121
+ Task: pick up the ketchup and place it in the basket
1122
+ Success: True
1123
+ # episodes completed so far: 223
1124
+ # successes: 218 (97.8%)
1125
+
1126
+ Task: pick up the ketchup and place it in the basket
1127
+ Success: True
1128
+ # episodes completed so far: 224
1129
+ # successes: 219 (97.8%)
1130
+
1131
+ Task: pick up the ketchup and place it in the basket
1132
+ Success: True
1133
+ # episodes completed so far: 225
1134
+ # successes: 220 (97.8%)
1135
+
1136
+ Task: pick up the ketchup and place it in the basket
1137
+ Success: True
1138
+ # episodes completed so far: 226
1139
+ # successes: 221 (97.8%)
1140
+
1141
+ Task: pick up the ketchup and place it in the basket
1142
+ Success: True
1143
+ # episodes completed so far: 227
1144
+ # successes: 222 (97.8%)
1145
+
1146
+ Task: pick up the ketchup and place it in the basket
1147
+ Success: True
1148
+ # episodes completed so far: 228
1149
+ # successes: 223 (97.8%)
1150
+
1151
+ Task: pick up the ketchup and place it in the basket
1152
+ Success: True
1153
+ # episodes completed so far: 229
1154
+ # successes: 224 (97.8%)
1155
+
1156
+ Task: pick up the ketchup and place it in the basket
1157
+ Success: True
1158
+ # episodes completed so far: 230
1159
+ # successes: 225 (97.8%)
1160
+
1161
+ Task: pick up the ketchup and place it in the basket
1162
+ Success: True
1163
+ # episodes completed so far: 231
1164
+ # successes: 226 (97.8%)
1165
+
1166
+ Task: pick up the ketchup and place it in the basket
1167
+ Success: True
1168
+ # episodes completed so far: 232
1169
+ # successes: 227 (97.8%)
1170
+
1171
+ Task: pick up the ketchup and place it in the basket
1172
+ Success: True
1173
+ # episodes completed so far: 233
1174
+ # successes: 228 (97.9%)
1175
+
1176
+ Task: pick up the ketchup and place it in the basket
1177
+ Success: True
1178
+ # episodes completed so far: 234
1179
+ # successes: 229 (97.9%)
1180
+
1181
+ Task: pick up the ketchup and place it in the basket
1182
+ Success: True
1183
+ # episodes completed so far: 235
1184
+ # successes: 230 (97.9%)
1185
+
1186
+ Task: pick up the ketchup and place it in the basket
1187
+ Success: True
1188
+ # episodes completed so far: 236
1189
+ # successes: 231 (97.9%)
1190
+
1191
+ Task: pick up the ketchup and place it in the basket
1192
+ Success: True
1193
+ # episodes completed so far: 237
1194
+ # successes: 232 (97.9%)
1195
+
1196
+ Task: pick up the ketchup and place it in the basket
1197
+ Success: True
1198
+ # episodes completed so far: 238
1199
+ # successes: 233 (97.9%)
1200
+
1201
+ Task: pick up the ketchup and place it in the basket
1202
+ Success: True
1203
+ # episodes completed so far: 239
1204
+ # successes: 234 (97.9%)
1205
+
1206
+ Task: pick up the ketchup and place it in the basket
1207
+ Success: True
1208
+ # episodes completed so far: 240
1209
+ # successes: 235 (97.9%)
1210
+
1211
+ Task: pick up the ketchup and place it in the basket
1212
+ Success: True
1213
+ # episodes completed so far: 241
1214
+ # successes: 236 (97.9%)
1215
+
1216
+ Task: pick up the ketchup and place it in the basket
1217
+ Success: True
1218
+ # episodes completed so far: 242
1219
+ # successes: 237 (97.9%)
1220
+
1221
+ Task: pick up the ketchup and place it in the basket
1222
+ Success: True
1223
+ # episodes completed so far: 243
1224
+ # successes: 238 (97.9%)
1225
+
1226
+ Task: pick up the ketchup and place it in the basket
1227
+ Success: True
1228
+ # episodes completed so far: 244
1229
+ # successes: 239 (98.0%)
1230
+
1231
+ Task: pick up the ketchup and place it in the basket
1232
+ Success: True
1233
+ # episodes completed so far: 245
1234
+ # successes: 240 (98.0%)
1235
+
1236
+ Task: pick up the ketchup and place it in the basket
1237
+ Success: True
1238
+ # episodes completed so far: 246
1239
+ # successes: 241 (98.0%)
1240
+
1241
+ Task: pick up the ketchup and place it in the basket
1242
+ Success: True
1243
+ # episodes completed so far: 247
1244
+ # successes: 242 (98.0%)
1245
+
1246
+ Task: pick up the ketchup and place it in the basket
1247
+ Success: True
1248
+ # episodes completed so far: 248
1249
+ # successes: 243 (98.0%)
1250
+
1251
+ Task: pick up the ketchup and place it in the basket
1252
+ Success: True
1253
+ # episodes completed so far: 249
1254
+ # successes: 244 (98.0%)
1255
+
1256
+ Task: pick up the ketchup and place it in the basket
1257
+ Success: True
1258
+ # episodes completed so far: 250
1259
+ # successes: 245 (98.0%)
1260
+ Current task success rate: 1.0
1261
+ Current total success rate: 0.98
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: 246 (98.0%)
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: 247 (98.0%)
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: 248 (98.0%)
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: 249 (98.0%)
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: 250 (98.0%)
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: 251 (98.0%)
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: 252 (98.1%)
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: 253 (98.1%)
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: 254 (98.1%)
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: 255 (98.1%)
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: 256 (98.1%)
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: 257 (98.1%)
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: 258 (98.1%)
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: 259 (98.1%)
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: 260 (98.1%)
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: 261 (98.1%)
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: 262 (98.1%)
1347
+
1348
+ Task: pick up the tomato sauce and place it in the basket
1349
+ Success: False
1350
+ # episodes completed so far: 268
1351
+ # successes: 262 (97.8%)
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: 263 (97.8%)
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: 264 (97.8%)
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: 265 (97.8%)
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: 266 (97.8%)
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: 267 (97.8%)
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: 268 (97.8%)
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: 269 (97.8%)
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: 270 (97.8%)
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: 271 (97.8%)
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: 272 (97.8%)
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: 273 (97.8%)
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: 274 (97.9%)
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: 275 (97.9%)
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: 276 (97.9%)
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: 277 (97.9%)
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: 278 (97.9%)
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: 279 (97.9%)
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: 280 (97.9%)
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: 281 (97.9%)
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: 282 (97.9%)
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: 283 (97.9%)
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: 284 (97.9%)
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: 285 (97.9%)
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: 286 (97.9%)
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: 287 (98.0%)
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: 288 (98.0%)
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: 289 (98.0%)
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: 290 (98.0%)
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: 291 (98.0%)
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: 292 (98.0%)
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: 293 (98.0%)
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: 294 (98.0%)
1512
+ Current task success rate: 0.98
1513
+ Current total success rate: 0.98
1514
+
1515
+ Task: pick up the butter and place it in the basket
1516
+ Success: True
1517
+ # episodes completed so far: 301
1518
+ # successes: 295 (98.0%)
1519
+
1520
+ Task: pick up the butter and place it in the basket
1521
+ Success: True
1522
+ # episodes completed so far: 302
1523
+ # successes: 296 (98.0%)
1524
+
1525
+ Task: pick up the butter and place it in the basket
1526
+ Success: True
1527
+ # episodes completed so far: 303
1528
+ # successes: 297 (98.0%)
1529
+
1530
+ Task: pick up the butter and place it in the basket
1531
+ Success: True
1532
+ # episodes completed so far: 304
1533
+ # successes: 298 (98.0%)
1534
+
1535
+ Task: pick up the butter and place it in the basket
1536
+ Success: True
1537
+ # episodes completed so far: 305
1538
+ # successes: 299 (98.0%)
1539
+
1540
+ Task: pick up the butter and place it in the basket
1541
+ Success: True
1542
+ # episodes completed so far: 306
1543
+ # successes: 300 (98.0%)
1544
+
1545
+ Task: pick up the butter and place it in the basket
1546
+ Success: True
1547
+ # episodes completed so far: 307
1548
+ # successes: 301 (98.0%)
1549
+
1550
+ Task: pick up the butter and place it in the basket
1551
+ Success: True
1552
+ # episodes completed so far: 308
1553
+ # successes: 302 (98.1%)
1554
+
1555
+ Task: pick up the butter and place it in the basket
1556
+ Success: True
1557
+ # episodes completed so far: 309
1558
+ # successes: 303 (98.1%)
1559
+
1560
+ Task: pick up the butter and place it in the basket
1561
+ Success: True
1562
+ # episodes completed so far: 310
1563
+ # successes: 304 (98.1%)
1564
+
1565
+ Task: pick up the butter and place it in the basket
1566
+ Success: True
1567
+ # episodes completed so far: 311
1568
+ # successes: 305 (98.1%)
1569
+
1570
+ Task: pick up the butter and place it in the basket
1571
+ Success: True
1572
+ # episodes completed so far: 312
1573
+ # successes: 306 (98.1%)
1574
+
1575
+ Task: pick up the butter and place it in the basket
1576
+ Success: True
1577
+ # episodes completed so far: 313
1578
+ # successes: 307 (98.1%)
1579
+
1580
+ Task: pick up the butter and place it in the basket
1581
+ Success: True
1582
+ # episodes completed so far: 314
1583
+ # successes: 308 (98.1%)
1584
+
1585
+ Task: pick up the butter and place it in the basket
1586
+ Success: True
1587
+ # episodes completed so far: 315
1588
+ # successes: 309 (98.1%)
1589
+
1590
+ Task: pick up the butter and place it in the basket
1591
+ Success: True
1592
+ # episodes completed so far: 316
1593
+ # successes: 310 (98.1%)
1594
+
1595
+ Task: pick up the butter and place it in the basket
1596
+ Success: True
1597
+ # episodes completed so far: 317
1598
+ # successes: 311 (98.1%)
1599
+
1600
+ Task: pick up the butter and place it in the basket
1601
+ Success: True
1602
+ # episodes completed so far: 318
1603
+ # successes: 312 (98.1%)
1604
+
1605
+ Task: pick up the butter and place it in the basket
1606
+ Success: True
1607
+ # episodes completed so far: 319
1608
+ # successes: 313 (98.1%)
1609
+
1610
+ Task: pick up the butter and place it in the basket
1611
+ Success: True
1612
+ # episodes completed so far: 320
1613
+ # successes: 314 (98.1%)
1614
+
1615
+ Task: pick up the butter and place it in the basket
1616
+ Success: True
1617
+ # episodes completed so far: 321
1618
+ # successes: 315 (98.1%)
1619
+
1620
+ Task: pick up the butter and place it in the basket
1621
+ Success: True
1622
+ # episodes completed so far: 322
1623
+ # successes: 316 (98.1%)
1624
+
1625
+ Task: pick up the butter and place it in the basket
1626
+ Success: True
1627
+ # episodes completed so far: 323
1628
+ # successes: 317 (98.1%)
1629
+
1630
+ Task: pick up the butter and place it in the basket
1631
+ Success: True
1632
+ # episodes completed so far: 324
1633
+ # successes: 318 (98.1%)
1634
+
1635
+ Task: pick up the butter and place it in the basket
1636
+ Success: True
1637
+ # episodes completed so far: 325
1638
+ # successes: 319 (98.2%)
1639
+
1640
+ Task: pick up the butter and place it in the basket
1641
+ Success: True
1642
+ # episodes completed so far: 326
1643
+ # successes: 320 (98.2%)
1644
+
1645
+ Task: pick up the butter and place it in the basket
1646
+ Success: True
1647
+ # episodes completed so far: 327
1648
+ # successes: 321 (98.2%)
1649
+
1650
+ Task: pick up the butter and place it in the basket
1651
+ Success: True
1652
+ # episodes completed so far: 328
1653
+ # successes: 322 (98.2%)
1654
+
1655
+ Task: pick up the butter and place it in the basket
1656
+ Success: True
1657
+ # episodes completed so far: 329
1658
+ # successes: 323 (98.2%)
1659
+
1660
+ Task: pick up the butter and place it in the basket
1661
+ Success: True
1662
+ # episodes completed so far: 330
1663
+ # successes: 324 (98.2%)
1664
+
1665
+ Task: pick up the butter and place it in the basket
1666
+ Success: True
1667
+ # episodes completed so far: 331
1668
+ # successes: 325 (98.2%)
1669
+
1670
+ Task: pick up the butter and place it in the basket
1671
+ Success: True
1672
+ # episodes completed so far: 332
1673
+ # successes: 326 (98.2%)
1674
+
1675
+ Task: pick up the butter and place it in the basket
1676
+ Success: True
1677
+ # episodes completed so far: 333
1678
+ # successes: 327 (98.2%)
1679
+
1680
+ Task: pick up the butter and place it in the basket
1681
+ Success: True
1682
+ # episodes completed so far: 334
1683
+ # successes: 328 (98.2%)
1684
+
1685
+ Task: pick up the butter and place it in the basket
1686
+ Success: True
1687
+ # episodes completed so far: 335
1688
+ # successes: 329 (98.2%)
1689
+
1690
+ Task: pick up the butter and place it in the basket
1691
+ Success: True
1692
+ # episodes completed so far: 336
1693
+ # successes: 330 (98.2%)
1694
+
1695
+ Task: pick up the butter and place it in the basket
1696
+ Success: True
1697
+ # episodes completed so far: 337
1698
+ # successes: 331 (98.2%)
1699
+
1700
+ Task: pick up the butter and place it in the basket
1701
+ Success: True
1702
+ # episodes completed so far: 338
1703
+ # successes: 332 (98.2%)
1704
+
1705
+ Task: pick up the butter and place it in the basket
1706
+ Success: True
1707
+ # episodes completed so far: 339
1708
+ # successes: 333 (98.2%)
1709
+
1710
+ Task: pick up the butter and place it in the basket
1711
+ Success: True
1712
+ # episodes completed so far: 340
1713
+ # successes: 334 (98.2%)
1714
+
1715
+ Task: pick up the butter and place it in the basket
1716
+ Success: True
1717
+ # episodes completed so far: 341
1718
+ # successes: 335 (98.2%)
1719
+
1720
+ Task: pick up the butter and place it in the basket
1721
+ Success: True
1722
+ # episodes completed so far: 342
1723
+ # successes: 336 (98.2%)
1724
+
1725
+ Task: pick up the butter and place it in the basket
1726
+ Success: True
1727
+ # episodes completed so far: 343
1728
+ # successes: 337 (98.3%)
1729
+
1730
+ Task: pick up the butter and place it in the basket
1731
+ Success: True
1732
+ # episodes completed so far: 344
1733
+ # successes: 338 (98.3%)
1734
+
1735
+ Task: pick up the butter and place it in the basket
1736
+ Success: True
1737
+ # episodes completed so far: 345
1738
+ # successes: 339 (98.3%)
1739
+
1740
+ Task: pick up the butter and place it in the basket
1741
+ Success: True
1742
+ # episodes completed so far: 346
1743
+ # successes: 340 (98.3%)
1744
+
1745
+ Task: pick up the butter and place it in the basket
1746
+ Success: True
1747
+ # episodes completed so far: 347
1748
+ # successes: 341 (98.3%)
1749
+
1750
+ Task: pick up the butter and place it in the basket
1751
+ Success: True
1752
+ # episodes completed so far: 348
1753
+ # successes: 342 (98.3%)
1754
+
1755
+ Task: pick up the butter and place it in the basket
1756
+ Success: True
1757
+ # episodes completed so far: 349
1758
+ # successes: 343 (98.3%)
1759
+
1760
+ Task: pick up the butter and place it in the basket
1761
+ Success: True
1762
+ # episodes completed so far: 350
1763
+ # successes: 344 (98.3%)
1764
+ Current task success rate: 1.0
1765
+ Current total success rate: 0.9828571428571429
1766
+
1767
+ Task: pick up the milk and place it in the basket
1768
+ Success: True
1769
+ # episodes completed so far: 351
1770
+ # successes: 345 (98.3%)
1771
+
1772
+ Task: pick up the milk and place it in the basket
1773
+ Success: True
1774
+ # episodes completed so far: 352
1775
+ # successes: 346 (98.3%)
1776
+
1777
+ Task: pick up the milk and place it in the basket
1778
+ Success: True
1779
+ # episodes completed so far: 353
1780
+ # successes: 347 (98.3%)
1781
+
1782
+ Task: pick up the milk and place it in the basket
1783
+ Success: True
1784
+ # episodes completed so far: 354
1785
+ # successes: 348 (98.3%)
1786
+
1787
+ Task: pick up the milk and place it in the basket
1788
+ Success: True
1789
+ # episodes completed so far: 355
1790
+ # successes: 349 (98.3%)
1791
+
1792
+ Task: pick up the milk and place it in the basket
1793
+ Success: True
1794
+ # episodes completed so far: 356
1795
+ # successes: 350 (98.3%)
1796
+
1797
+ Task: pick up the milk and place it in the basket
1798
+ Success: True
1799
+ # episodes completed so far: 357
1800
+ # successes: 351 (98.3%)
1801
+
1802
+ Task: pick up the milk and place it in the basket
1803
+ Success: True
1804
+ # episodes completed so far: 358
1805
+ # successes: 352 (98.3%)
1806
+
1807
+ Task: pick up the milk and place it in the basket
1808
+ Success: True
1809
+ # episodes completed so far: 359
1810
+ # successes: 353 (98.3%)
1811
+
1812
+ Task: pick up the milk and place it in the basket
1813
+ Success: True
1814
+ # episodes completed so far: 360
1815
+ # successes: 354 (98.3%)
1816
+
1817
+ Task: pick up the milk and place it in the basket
1818
+ Success: True
1819
+ # episodes completed so far: 361
1820
+ # successes: 355 (98.3%)
1821
+
1822
+ Task: pick up the milk and place it in the basket
1823
+ Success: True
1824
+ # episodes completed so far: 362
1825
+ # successes: 356 (98.3%)
1826
+
1827
+ Task: pick up the milk and place it in the basket
1828
+ Success: True
1829
+ # episodes completed so far: 363
1830
+ # successes: 357 (98.3%)
1831
+
1832
+ Task: pick up the milk and place it in the basket
1833
+ Success: True
1834
+ # episodes completed so far: 364
1835
+ # successes: 358 (98.4%)
1836
+
1837
+ Task: pick up the milk and place it in the basket
1838
+ Success: True
1839
+ # episodes completed so far: 365
1840
+ # successes: 359 (98.4%)
1841
+
1842
+ Task: pick up the milk and place it in the basket
1843
+ Success: True
1844
+ # episodes completed so far: 366
1845
+ # successes: 360 (98.4%)
1846
+
1847
+ Task: pick up the milk and place it in the basket
1848
+ Success: True
1849
+ # episodes completed so far: 367
1850
+ # successes: 361 (98.4%)
1851
+
1852
+ Task: pick up the milk and place it in the basket
1853
+ Success: True
1854
+ # episodes completed so far: 368
1855
+ # successes: 362 (98.4%)
1856
+
1857
+ Task: pick up the milk and place it in the basket
1858
+ Success: True
1859
+ # episodes completed so far: 369
1860
+ # successes: 363 (98.4%)
1861
+
1862
+ Task: pick up the milk and place it in the basket
1863
+ Success: True
1864
+ # episodes completed so far: 370
1865
+ # successes: 364 (98.4%)
1866
+
1867
+ Task: pick up the milk and place it in the basket
1868
+ Success: True
1869
+ # episodes completed so far: 371
1870
+ # successes: 365 (98.4%)
1871
+
1872
+ Task: pick up the milk and place it in the basket
1873
+ Success: True
1874
+ # episodes completed so far: 372
1875
+ # successes: 366 (98.4%)
1876
+
1877
+ Task: pick up the milk and place it in the basket
1878
+ Success: True
1879
+ # episodes completed so far: 373
1880
+ # successes: 367 (98.4%)
1881
+
1882
+ Task: pick up the milk and place it in the basket
1883
+ Success: True
1884
+ # episodes completed so far: 374
1885
+ # successes: 368 (98.4%)
1886
+
1887
+ Task: pick up the milk and place it in the basket
1888
+ Success: True
1889
+ # episodes completed so far: 375
1890
+ # successes: 369 (98.4%)
1891
+
1892
+ Task: pick up the milk and place it in the basket
1893
+ Success: True
1894
+ # episodes completed so far: 376
1895
+ # successes: 370 (98.4%)
1896
+
1897
+ Task: pick up the milk and place it in the basket
1898
+ Success: True
1899
+ # episodes completed so far: 377
1900
+ # successes: 371 (98.4%)
1901
+
1902
+ Task: pick up the milk and place it in the basket
1903
+ Success: True
1904
+ # episodes completed so far: 378
1905
+ # successes: 372 (98.4%)
1906
+
1907
+ Task: pick up the milk and place it in the basket
1908
+ Success: True
1909
+ # episodes completed so far: 379
1910
+ # successes: 373 (98.4%)
1911
+
1912
+ Task: pick up the milk and place it in the basket
1913
+ Success: True
1914
+ # episodes completed so far: 380
1915
+ # successes: 374 (98.4%)
1916
+
1917
+ Task: pick up the milk and place it in the basket
1918
+ Success: True
1919
+ # episodes completed so far: 381
1920
+ # successes: 375 (98.4%)
1921
+
1922
+ Task: pick up the milk and place it in the basket
1923
+ Success: True
1924
+ # episodes completed so far: 382
1925
+ # successes: 376 (98.4%)
1926
+
1927
+ Task: pick up the milk and place it in the basket
1928
+ Success: True
1929
+ # episodes completed so far: 383
1930
+ # successes: 377 (98.4%)
1931
+
1932
+ Task: pick up the milk and place it in the basket
1933
+ Success: True
1934
+ # episodes completed so far: 384
1935
+ # successes: 378 (98.4%)
1936
+
1937
+ Task: pick up the milk and place it in the basket
1938
+ Success: True
1939
+ # episodes completed so far: 385
1940
+ # successes: 379 (98.4%)
1941
+
1942
+ Task: pick up the milk and place it in the basket
1943
+ Success: True
1944
+ # episodes completed so far: 386
1945
+ # successes: 380 (98.4%)
1946
+
1947
+ Task: pick up the milk and place it in the basket
1948
+ Success: True
1949
+ # episodes completed so far: 387
1950
+ # successes: 381 (98.4%)
1951
+
1952
+ Task: pick up the milk and place it in the basket
1953
+ Success: True
1954
+ # episodes completed so far: 388
1955
+ # successes: 382 (98.5%)
1956
+
1957
+ Task: pick up the milk and place it in the basket
1958
+ Success: True
1959
+ # episodes completed so far: 389
1960
+ # successes: 383 (98.5%)
1961
+
1962
+ Task: pick up the milk and place it in the basket
1963
+ Success: True
1964
+ # episodes completed so far: 390
1965
+ # successes: 384 (98.5%)
1966
+
1967
+ Task: pick up the milk and place it in the basket
1968
+ Success: True
1969
+ # episodes completed so far: 391
1970
+ # successes: 385 (98.5%)
1971
+
1972
+ Task: pick up the milk and place it in the basket
1973
+ Success: True
1974
+ # episodes completed so far: 392
1975
+ # successes: 386 (98.5%)
1976
+
1977
+ Task: pick up the milk and place it in the basket
1978
+ Success: True
1979
+ # episodes completed so far: 393
1980
+ # successes: 387 (98.5%)
1981
+
1982
+ Task: pick up the milk and place it in the basket
1983
+ Success: True
1984
+ # episodes completed so far: 394
1985
+ # successes: 388 (98.5%)
1986
+
1987
+ Task: pick up the milk and place it in the basket
1988
+ Success: True
1989
+ # episodes completed so far: 395
1990
+ # successes: 389 (98.5%)
1991
+
1992
+ Task: pick up the milk and place it in the basket
1993
+ Success: True
1994
+ # episodes completed so far: 396
1995
+ # successes: 390 (98.5%)
1996
+
1997
+ Task: pick up the milk and place it in the basket
1998
+ Success: True
1999
+ # episodes completed so far: 397
2000
+ # successes: 391 (98.5%)
2001
+
2002
+ Task: pick up the milk and place it in the basket
2003
+ Success: True
2004
+ # episodes completed so far: 398
2005
+ # successes: 392 (98.5%)
2006
+
2007
+ Task: pick up the milk and place it in the basket
2008
+ Success: True
2009
+ # episodes completed so far: 399
2010
+ # successes: 393 (98.5%)
2011
+
2012
+ Task: pick up the milk and place it in the basket
2013
+ Success: True
2014
+ # episodes completed so far: 400
2015
+ # successes: 394 (98.5%)
2016
+ Current task success rate: 1.0
2017
+ Current total success rate: 0.985
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: 395 (98.5%)
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: 396 (98.5%)
2028
+
2029
+ Task: pick up the chocolate pudding and place it in the basket
2030
+ Success: False
2031
+ # episodes completed so far: 403
2032
+ # successes: 396 (98.3%)
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: 397 (98.3%)
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: 398 (98.3%)
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: 399 (98.3%)
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: 400 (98.3%)
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: 401 (98.3%)
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: 402 (98.3%)
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: 403 (98.3%)
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: 404 (98.3%)
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: 405 (98.3%)
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: 406 (98.3%)
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: 407 (98.3%)
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: 408 (98.3%)
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: 409 (98.3%)
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: 410 (98.3%)
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: 411 (98.3%)
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: 412 (98.3%)
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: 413 (98.3%)
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: 414 (98.3%)
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: 415 (98.3%)
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: 416 (98.3%)
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: 417 (98.3%)
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: 418 (98.4%)
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: 419 (98.4%)
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: 420 (98.4%)
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: 421 (98.4%)
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: 422 (98.4%)
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: 423 (98.4%)
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: 424 (98.4%)
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: 425 (98.4%)
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: 426 (98.4%)
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: 427 (98.4%)
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: 428 (98.4%)
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: 429 (98.4%)
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: 430 (98.4%)
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: 431 (98.4%)
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: 432 (98.4%)
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: 433 (98.4%)
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: 434 (98.4%)
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: 435 (98.4%)
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: 436 (98.4%)
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: 437 (98.4%)
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: 438 (98.4%)
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: 439 (98.4%)
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: 440 (98.4%)
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: 441 (98.4%)
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: 442 (98.4%)
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: 443 (98.4%)
2268
+ Current task success rate: 0.98
2269
+ Current total success rate: 0.9844444444444445
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: 444 (98.4%)
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: 445 (98.5%)
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: 446 (98.5%)
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: 447 (98.5%)
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: 448 (98.5%)
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: 449 (98.5%)
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: 450 (98.5%)
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: 451 (98.5%)
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: 452 (98.5%)
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: 453 (98.5%)
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: 454 (98.5%)
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: 455 (98.5%)
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: 456 (98.5%)
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: 457 (98.5%)
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: 458 (98.5%)
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: 459 (98.5%)
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: 460 (98.5%)
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: 461 (98.5%)
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: 462 (98.5%)
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: 463 (98.5%)
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: 464 (98.5%)
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: 465 (98.5%)
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: 466 (98.5%)
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: 467 (98.5%)
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: 468 (98.5%)
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: 469 (98.5%)
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: 470 (98.5%)
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: 471 (98.5%)
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: 472 (98.5%)
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: 473 (98.5%)
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: 474 (98.5%)
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: 475 (98.5%)
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: 476 (98.6%)
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: 477 (98.6%)
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: 478 (98.6%)
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: 479 (98.6%)
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: 480 (98.6%)
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: 481 (98.6%)
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: 482 (98.6%)
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: 483 (98.6%)
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: 484 (98.6%)
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: 485 (98.6%)
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: 486 (98.6%)
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: 487 (98.6%)
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: 488 (98.6%)
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: 489 (98.6%)
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: 490 (98.6%)
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: 491 (98.6%)
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: 492 (98.6%)
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: 493 (98.6%)
2520
+ Current task success rate: 1.0
2521
+ Current total success rate: 0.986
libero_object_2B/starvla_qwen_pi/libero_object.log ADDED
@@ -0,0 +1,300 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Step 100, Loss: {'mse_loss': 3967.013671875, 'totoal_loss': 3967.013671875, 'data_time': 0.00890212698141113, 'model_time': 0.8240989469923079, 'learning_rate': 2.0000000000000002e-07, 'epoch': 0.19})
2
+ Step 200, Loss: {'mse_loss': 1281.8837890625, 'totoal_loss': 1281.8837890625, 'data_time': 0.009513567027170211, 'model_time': 0.7391922090318985, 'learning_rate': 4.0000000000000003e-07, 'epoch': 0.38})
3
+ Step 300, Loss: {'mse_loss': 2.693419933319092, 'totoal_loss': 2.693419933319092, 'data_time': 0.011206256982404739, 'model_time': 0.7637967379996553, 'learning_rate': 6.000000000000001e-07, 'epoch': 0.58})
4
+ Step 400, Loss: {'mse_loss': 1.0940346717834473, 'totoal_loss': 1.0940346717834473, 'data_time': 0.00962843798333779, 'model_time': 0.7338259650277905, 'learning_rate': 8.000000000000001e-07, 'epoch': 0.77})
5
+ Step 500, Loss: {'mse_loss': 1.0942414999008179, 'totoal_loss': 1.0942414999008179, 'data_time': 0.008371719042770565, 'model_time': 0.789471298980061, 'learning_rate': 1.0000000000000002e-06, 'epoch': 0.96})
6
+ Step 600, Loss: {'mse_loss': 0.9558429718017578, 'totoal_loss': 0.9558429718017578, 'data_time': 0.010346421971917152, 'model_time': 0.7580102210049517, 'learning_rate': 1.2000000000000002e-06, 'epoch': 1.15})
7
+ Step 700, Loss: {'mse_loss': 0.8596686124801636, 'totoal_loss': 0.8596686124801636, 'data_time': 0.008581508009228855, 'model_time': 0.8068968299776316, 'learning_rate': 1.4000000000000001e-06, 'epoch': 1.34})
8
+ Step 800, Loss: {'mse_loss': 1.2266693115234375, 'totoal_loss': 1.2266693115234375, 'data_time': 0.008666331006679684, 'model_time': 0.8500178339891136, 'learning_rate': 1.6000000000000001e-06, 'epoch': 1.54})
9
+ Step 900, Loss: {'mse_loss': 0.6556279063224792, 'totoal_loss': 0.6556279063224792, 'data_time': 0.007171412988100201, 'model_time': 0.832648893003352, 'learning_rate': 1.8000000000000001e-06, 'epoch': 1.73})
10
+ Step 1000, Loss: {'mse_loss': 0.43981683254241943, 'totoal_loss': 0.43981683254241943, 'data_time': 0.009696932043880224, 'model_time': 0.8476443469990045, 'learning_rate': 2.0000000000000003e-06, 'epoch': 1.92})
11
+ Step 1100, Loss: {'mse_loss': 0.19758781790733337, 'totoal_loss': 0.19758781790733337, 'data_time': 0.0004021489876322448, 'model_time': 0.7853670119657181, 'learning_rate': 2.2e-06, 'epoch': 2.11})
12
+ Step 1200, Loss: {'mse_loss': 0.18712322413921356, 'totoal_loss': 0.18712322413921356, 'data_time': 0.0004321569576859474, 'model_time': 0.7736746009904891, 'learning_rate': 2.4000000000000003e-06, 'epoch': 2.3})
13
+ Step 1300, Loss: {'mse_loss': 0.14074988663196564, 'totoal_loss': 0.14074988663196564, 'data_time': 0.0004451270215213299, 'model_time': 0.7988255440141074, 'learning_rate': 2.6e-06, 'epoch': 2.5})
14
+ Step 1400, Loss: {'mse_loss': 0.19682541489601135, 'totoal_loss': 0.19682541489601135, 'data_time': 0.00045305496314540505, 'model_time': 0.7400257289991714, 'learning_rate': 2.8000000000000003e-06, 'epoch': 2.69})
15
+ Step 1500, Loss: {'mse_loss': 0.22675001621246338, 'totoal_loss': 0.22675001621246338, 'data_time': 0.0003842570004053414, 'model_time': 0.7908542840159498, 'learning_rate': 3e-06, 'epoch': 2.88})
16
+ Step 1600, Loss: {'mse_loss': 0.23056845366954803, 'totoal_loss': 0.23056845366954803, 'data_time': 0.00866397499339655, 'model_time': 0.7308780199964531, 'learning_rate': 3.2000000000000003e-06, 'epoch': 3.07})
17
+ Step 1700, Loss: {'mse_loss': 0.18337111175060272, 'totoal_loss': 0.18337111175060272, 'data_time': 0.009086551959626377, 'model_time': 0.9598723720409907, 'learning_rate': 3.4000000000000005e-06, 'epoch': 3.26})
18
+ Step 1800, Loss: {'mse_loss': 0.11242552101612091, 'totoal_loss': 0.11242552101612091, 'data_time': 0.009910597989801317, 'model_time': 0.729882350016851, 'learning_rate': 3.6000000000000003e-06, 'epoch': 3.45})
19
+ Step 1900, Loss: {'mse_loss': 0.13922685384750366, 'totoal_loss': 0.13922685384750366, 'data_time': 0.008815702982246876, 'model_time': 0.7368030979996547, 'learning_rate': 3.8000000000000005e-06, 'epoch': 3.65})
20
+ Step 2000, Loss: {'mse_loss': 0.13058076798915863, 'totoal_loss': 0.13058076798915863, 'data_time': 0.007359477982390672, 'model_time': 0.7629410169902258, 'learning_rate': 4.000000000000001e-06, 'epoch': 3.84})
21
+ Step 2100, Loss: {'mse_loss': 0.09890946000814438, 'totoal_loss': 0.09890946000814438, 'data_time': 0.01423638203414157, 'model_time': 0.8568310250411741, 'learning_rate': 4.2000000000000004e-06, 'epoch': 4.03})
22
+ Step 2200, Loss: {'mse_loss': 0.08388785272836685, 'totoal_loss': 0.08388785272836685, 'data_time': 0.01514762599254027, 'model_time': 0.7590228809858672, 'learning_rate': 4.4e-06, 'epoch': 4.22})
23
+ Step 2300, Loss: {'mse_loss': 0.09347882121801376, 'totoal_loss': 0.09347882121801376, 'data_time': 0.0171818730304949, 'model_time': 0.73132177896332, 'learning_rate': 4.600000000000001e-06, 'epoch': 4.41})
24
+ Step 2400, Loss: {'mse_loss': 0.14712201058864594, 'totoal_loss': 0.14712201058864594, 'data_time': 0.01550973200937733, 'model_time': 0.7190227980026975, 'learning_rate': 4.800000000000001e-06, 'epoch': 4.61})
25
+ Step 2500, Loss: {'mse_loss': 0.1452067792415619, 'totoal_loss': 0.1452067792415619, 'data_time': 0.01463023602264002, 'model_time': 0.8089555890182965, 'learning_rate': 5e-06, 'epoch': 4.8})
26
+ Step 2600, Loss: {'mse_loss': 0.10745090246200562, 'totoal_loss': 0.10745090246200562, 'data_time': 0.016873266955371946, 'model_time': 0.7038195739733055, 'learning_rate': 5.2e-06, 'epoch': 4.99})
27
+ Step 2700, Loss: {'mse_loss': 0.11361223459243774, 'totoal_loss': 0.11361223459243774, 'data_time': 0.0004310020012781024, 'model_time': 0.7342858710326254, 'learning_rate': 5.400000000000001e-06, 'epoch': 5.18})
28
+ Step 2800, Loss: {'mse_loss': 0.11881626397371292, 'totoal_loss': 0.11881626397371292, 'data_time': 0.00038068194407969713, 'model_time': 0.749590645020362, 'learning_rate': 5.600000000000001e-06, 'epoch': 5.37})
29
+ Step 2900, Loss: {'mse_loss': 0.05852673947811127, 'totoal_loss': 0.05852673947811127, 'data_time': 0.000394653994590044, 'model_time': 0.7511747179669328, 'learning_rate': 5.8e-06, 'epoch': 5.57})
30
+ Step 3000, Loss: {'mse_loss': 0.15391460061073303, 'totoal_loss': 0.15391460061073303, 'data_time': 0.0003726310096681118, 'model_time': 0.7745563620119356, 'learning_rate': 6e-06, 'epoch': 5.76})
31
+ Step 3100, Loss: {'mse_loss': 0.16049304604530334, 'totoal_loss': 0.16049304604530334, 'data_time': 0.000369130983017385, 'model_time': 0.7468528290046379, 'learning_rate': 6.200000000000001e-06, 'epoch': 5.95})
32
+ Step 3200, Loss: {'mse_loss': 0.11588262021541595, 'totoal_loss': 0.11588262021541595, 'data_time': 0.0004208959871903062, 'model_time': 0.9772112729842775, 'learning_rate': 6.4000000000000006e-06, 'epoch': 6.14})
33
+ Step 3300, Loss: {'mse_loss': 0.11595651507377625, 'totoal_loss': 0.11595651507377625, 'data_time': 0.00040927401278167963, 'model_time': 0.7340551070519723, 'learning_rate': 6.600000000000001e-06, 'epoch': 6.33})
34
+ Step 3400, Loss: {'mse_loss': 0.12715068459510803, 'totoal_loss': 0.12715068459510803, 'data_time': 0.0003722680266946554, 'model_time': 0.7910279839998111, 'learning_rate': 6.800000000000001e-06, 'epoch': 6.53})
35
+ Step 3500, Loss: {'mse_loss': 0.12201759219169617, 'totoal_loss': 0.12201759219169617, 'data_time': 0.00038749503437429667, 'model_time': 0.7769535440020263, 'learning_rate': 7e-06, 'epoch': 6.72})
36
+ Step 3600, Loss: {'mse_loss': 0.08826848864555359, 'totoal_loss': 0.08826848864555359, 'data_time': 0.0007155780331231654, 'model_time': 0.7695803020033054, 'learning_rate': 7.2000000000000005e-06, 'epoch': 6.91})
37
+ Step 3700, Loss: {'mse_loss': 0.12825807929039001, 'totoal_loss': 0.12825807929039001, 'data_time': 0.00037409598007798195, 'model_time': 0.74389035301283, 'learning_rate': 7.4e-06, 'epoch': 7.1})
38
+ Step 3800, Loss: {'mse_loss': 0.09907208383083344, 'totoal_loss': 0.09907208383083344, 'data_time': 0.00040500302566215396, 'model_time': 0.7189124249853194, 'learning_rate': 7.600000000000001e-06, 'epoch': 7.29})
39
+ Step 3900, Loss: {'mse_loss': 0.0860585868358612, 'totoal_loss': 0.0860585868358612, 'data_time': 0.0003434650134295225, 'model_time': 0.7643762429943308, 'learning_rate': 7.800000000000002e-06, 'epoch': 7.49})
40
+ Step 4000, Loss: {'mse_loss': 0.08092989772558212, 'totoal_loss': 0.08092989772558212, 'data_time': 0.000333559000864625, 'model_time': 0.7427231980254874, 'learning_rate': 8.000000000000001e-06, 'epoch': 7.68})
41
+ Step 4100, Loss: {'mse_loss': 0.09198968857526779, 'totoal_loss': 0.09198968857526779, 'data_time': 0.0006012669764459133, 'model_time': 0.8106835179496557, 'learning_rate': 8.2e-06, 'epoch': 7.87})
42
+ Step 4200, Loss: {'mse_loss': 0.07753049582242966, 'totoal_loss': 0.07753049582242966, 'data_time': 0.01583791698794812, 'model_time': 0.735758212977089, 'learning_rate': 8.400000000000001e-06, 'epoch': 8.06})
43
+ Step 4300, Loss: {'mse_loss': 0.08772227168083191, 'totoal_loss': 0.08772227168083191, 'data_time': 0.01609506004024297, 'model_time': 0.7397141780238599, 'learning_rate': 8.6e-06, 'epoch': 8.25})
44
+ Step 4400, Loss: {'mse_loss': 0.17335642874240875, 'totoal_loss': 0.17335642874240875, 'data_time': 0.017008985043503344, 'model_time': 0.7908304329612292, 'learning_rate': 8.8e-06, 'epoch': 8.45})
45
+ Step 4500, Loss: {'mse_loss': 0.08824757486581802, 'totoal_loss': 0.08824757486581802, 'data_time': 0.01689727301709354, 'model_time': 0.7430417540017515, 'learning_rate': 9e-06, 'epoch': 8.64})
46
+ Step 4600, Loss: {'mse_loss': 0.1108463853597641, 'totoal_loss': 0.1108463853597641, 'data_time': 0.015591687988489866, 'model_time': 0.7324867300339974, 'learning_rate': 9.200000000000002e-06, 'epoch': 8.83})
47
+ Step 4700, Loss: {'mse_loss': 0.12002433836460114, 'totoal_loss': 0.12002433836460114, 'data_time': 0.007281451020389795, 'model_time': 0.7613166460068896, 'learning_rate': 9.4e-06, 'epoch': 9.02})
48
+ Step 4800, Loss: {'mse_loss': 0.06566432863473892, 'totoal_loss': 0.06566432863473892, 'data_time': 0.008429406967479736, 'model_time': 0.7948963730013929, 'learning_rate': 9.600000000000001e-06, 'epoch': 9.21})
49
+ Step 4900, Loss: {'mse_loss': 0.07983963936567307, 'totoal_loss': 0.07983963936567307, 'data_time': 0.00904126197565347, 'model_time': 0.7307778720278293, 'learning_rate': 9.800000000000001e-06, 'epoch': 9.4})
50
+ Step 5000, Loss: {'mse_loss': 0.10600264370441437, 'totoal_loss': 0.10600264370441437, 'data_time': 0.010476408991962671, 'model_time': 0.7416760420310311, 'learning_rate': 1e-05, 'epoch': 9.6})
51
+ Step 5100, Loss: {'mse_loss': 0.07324104756116867, 'totoal_loss': 0.07324104756116867, 'data_time': 0.011127086007036269, 'model_time': 0.7357575860223733, 'learning_rate': 9.999615090493604e-06, 'epoch': 9.79})
52
+ Step 5200, Loss: {'mse_loss': 0.09025445580482483, 'totoal_loss': 0.09025445580482483, 'data_time': 0.01236735499696806, 'model_time': 0.7368630360579118, 'learning_rate': 9.998460422756089e-06, 'epoch': 9.98})
53
+ Step 5300, Loss: {'mse_loss': 0.08127345889806747, 'totoal_loss': 0.08127345889806747, 'data_time': 0.008637609018478543, 'model_time': 0.8418279379839078, 'learning_rate': 9.996536179122874e-06, 'epoch': 10.17})
54
+ Step 5400, Loss: {'mse_loss': 0.06142184138298035, 'totoal_loss': 0.06142184138298035, 'data_time': 0.008744791033677757, 'model_time': 0.7336764860083349, 'learning_rate': 9.993842663454337e-06, 'epoch': 10.36})
55
+ Step 5500, Loss: {'mse_loss': 0.07153177261352539, 'totoal_loss': 0.07153177261352539, 'data_time': 0.008564452989958227, 'model_time': 0.7453150780056603, 'learning_rate': 9.990380301087824e-06, 'epoch': 10.56})
56
+ Step 5600, Loss: {'mse_loss': 0.13973483443260193, 'totoal_loss': 0.13973483443260193, 'data_time': 0.011955628986470401, 'model_time': 0.7092615500441752, 'learning_rate': 9.986149638770493e-06, 'epoch': 10.75})
57
+ Step 5700, Loss: {'mse_loss': 0.07386045902967453, 'totoal_loss': 0.07386045902967453, 'data_time': 0.01620569301303476, 'model_time': 0.7754115280113183, 'learning_rate': 9.981151344572967e-06, 'epoch': 10.94})
58
+ Step 5800, Loss: {'mse_loss': 0.06459584832191467, 'totoal_loss': 0.06459584832191467, 'data_time': 0.00037337501998990774, 'model_time': 0.7560283810016699, 'learning_rate': 9.975386207783839e-06, 'epoch': 11.13})
59
+ Step 5900, Loss: {'mse_loss': 0.08207160234451294, 'totoal_loss': 0.08207160234451294, 'data_time': 0.0004463990335352719, 'model_time': 0.7390227029682137, 'learning_rate': 9.968855138785041e-06, 'epoch': 11.32})
60
+ Step 6000, Loss: {'mse_loss': 0.09270239621400833, 'totoal_loss': 0.09270239621400833, 'data_time': 0.000675344024784863, 'model_time': 0.7957507090177387, 'learning_rate': 9.961559168908081e-06, 'epoch': 11.52})
61
+ Step 6100, Loss: {'mse_loss': 0.07971170544624329, 'totoal_loss': 0.07971170544624329, 'data_time': 0.0003786179586313665, 'model_time': 0.7403945660335012, 'learning_rate': 9.953499450271174e-06, 'epoch': 11.71})
62
+ Step 6200, Loss: {'mse_loss': 0.0453367717564106, 'totoal_loss': 0.0453367717564106, 'data_time': 0.0005122909788042307, 'model_time': 0.8210770150180906, 'learning_rate': 9.944677255597332e-06, 'epoch': 11.9})
63
+ Step 6300, Loss: {'mse_loss': 0.0409071147441864, 'totoal_loss': 0.0409071147441864, 'data_time': 0.023073812015354633, 'model_time': 0.8196896759909578, 'learning_rate': 9.935093978013357e-06, 'epoch': 12.09})
64
+ Step 6400, Loss: {'mse_loss': 0.0594148263335228, 'totoal_loss': 0.0594148263335228, 'data_time': 0.020392369013279676, 'model_time': 0.7223023850237951, 'learning_rate': 9.924751130829878e-06, 'epoch': 12.28})
65
+ Step 6500, Loss: {'mse_loss': 0.08506827801465988, 'totoal_loss': 0.08506827801465988, 'data_time': 0.021439832053147256, 'model_time': 0.7328659109771252, 'learning_rate': 9.91365034730236e-06, 'epoch': 12.48})
66
+ Step 6600, Loss: {'mse_loss': 0.054613009095191956, 'totoal_loss': 0.054613009095191956, 'data_time': 0.022580513963475823, 'model_time': 0.7667344640358351, 'learning_rate': 9.901793380373204e-06, 'epoch': 12.67})
67
+ Step 6700, Loss: {'mse_loss': 0.07059471309185028, 'totoal_loss': 0.07059471309185028, 'data_time': 0.024607483996078372, 'model_time': 0.763322203012649, 'learning_rate': 9.889182102394944e-06, 'epoch': 12.86})
68
+ Step 6800, Loss: {'mse_loss': 0.07134523242712021, 'totoal_loss': 0.07134523242712021, 'data_time': 0.007429979974403977, 'model_time': 0.7420935159898363, 'learning_rate': 9.875818504834564e-06, 'epoch': 13.05})
69
+ Step 6900, Loss: {'mse_loss': 0.05801888182759285, 'totoal_loss': 0.05801888182759285, 'data_time': 0.00952644000062719, 'model_time': 0.754476236004848, 'learning_rate': 9.861704697959036e-06, 'epoch': 13.24})
70
+ Step 7000, Loss: {'mse_loss': 0.0843278244137764, 'totoal_loss': 0.0843278244137764, 'data_time': 0.01184692297829315, 'model_time': 0.7358958949916996, 'learning_rate': 9.846842910502077e-06, 'epoch': 13.44})
71
+ Step 7100, Loss: {'mse_loss': 0.047221891582012177, 'totoal_loss': 0.047221891582012177, 'data_time': 0.0076785130077041686, 'model_time': 0.8162377770058811, 'learning_rate': 9.831235489312212e-06, 'epoch': 13.63})
72
+ Step 7200, Loss: {'mse_loss': 0.0372920036315918, 'totoal_loss': 0.0372920036315918, 'data_time': 0.010479880031198263, 'model_time': 0.7284041270031594, 'learning_rate': 9.814884898982168e-06, 'epoch': 13.82})
73
+ Step 7300, Loss: {'mse_loss': 0.01934274286031723, 'totoal_loss': 0.01934274286031723, 'data_time': 0.00041945104021579027, 'model_time': 0.725741158996243, 'learning_rate': 9.797793721459709e-06, 'epoch': 14.01})
74
+ Step 7400, Loss: {'mse_loss': 0.0449473038315773, 'totoal_loss': 0.0449473038315773, 'data_time': 0.0003558819880709052, 'model_time': 0.9826023959903978, 'learning_rate': 9.779964655639886e-06, 'epoch': 14.2})
75
+ Step 7500, Loss: {'mse_loss': 0.05986585468053818, 'totoal_loss': 0.05986585468053818, 'data_time': 0.0004165029968135059, 'model_time': 0.7710657610441558, 'learning_rate': 9.761400516938874e-06, 'epoch': 14.4})
76
+ Step 7600, Loss: {'mse_loss': 0.04159802198410034, 'totoal_loss': 0.04159802198410034, 'data_time': 0.00037912599509581923, 'model_time': 0.7586015280103311, 'learning_rate': 9.74210423684938e-06, 'epoch': 14.59})
77
+ Step 7700, Loss: {'mse_loss': 0.03717919439077377, 'totoal_loss': 0.03717919439077377, 'data_time': 0.0003450050135143101, 'model_time': 0.7566525029833429, 'learning_rate': 9.722078862477715e-06, 'epoch': 14.78})
78
+ Step 7800, Loss: {'mse_loss': 0.04190526157617569, 'totoal_loss': 0.04190526157617569, 'data_time': 0.00033834698842838407, 'model_time': 0.7679929309524596, 'learning_rate': 9.701327556062637e-06, 'epoch': 14.97})
79
+ Step 7900, Loss: {'mse_loss': 0.07177937030792236, 'totoal_loss': 0.07177937030792236, 'data_time': 0.0003715890343300998, 'model_time': 0.8362448469852097, 'learning_rate': 9.679853594475985e-06, 'epoch': 15.16})
80
+ Step 8000, Loss: {'mse_loss': 0.06883052736520767, 'totoal_loss': 0.06883052736520767, 'data_time': 0.00036515999818220735, 'model_time': 0.76378045900492, 'learning_rate': 9.657660368705225e-06, 'epoch': 15.36})
81
+ Step 8100, Loss: {'mse_loss': 0.09215657413005829, 'totoal_loss': 0.09215657413005829, 'data_time': 0.00034797401167452335, 'model_time': 0.7467469029943459, 'learning_rate': 9.634751383317983e-06, 'epoch': 15.55})
82
+ Step 8200, Loss: {'mse_loss': 0.06566187739372253, 'totoal_loss': 0.06566187739372253, 'data_time': 0.0003342540003359318, 'model_time': 0.7710192910162732, 'learning_rate': 9.611130255908619e-06, 'epoch': 15.74})
83
+ Step 8300, Loss: {'mse_loss': 0.04231821745634079, 'totoal_loss': 0.04231821745634079, 'data_time': 0.0003744200221262872, 'model_time': 0.7767368850181811, 'learning_rate': 9.586800716526974e-06, 'epoch': 15.93})
84
+ Step 8400, Loss: {'mse_loss': 0.027050543576478958, 'totoal_loss': 0.027050543576478958, 'data_time': 0.018176735029555857, 'model_time': 0.7431487680296414, 'learning_rate': 9.561766607089355e-06, 'epoch': 16.12})
85
+ Step 8500, Loss: {'mse_loss': 0.04164029285311699, 'totoal_loss': 0.04164029285311699, 'data_time': 0.009074851986952126, 'model_time': 0.7826276289997622, 'learning_rate': 9.536031880771846e-06, 'epoch': 16.31})
86
+ Step 8600, Loss: {'mse_loss': 0.04599731042981148, 'totoal_loss': 0.04599731042981148, 'data_time': 0.008590857964009047, 'model_time': 0.7452214579680003, 'learning_rate': 9.50960060138606e-06, 'epoch': 16.51})
87
+ Step 8700, Loss: {'mse_loss': 0.02586655132472515, 'totoal_loss': 0.02586655132472515, 'data_time': 0.009387728001456708, 'model_time': 0.7810941429925151, 'learning_rate': 9.482476942737411e-06, 'epoch': 16.7})
88
+ Step 8800, Loss: {'mse_loss': 0.11778885126113892, 'totoal_loss': 0.11778885126113892, 'data_time': 0.00984564598184079, 'model_time': 0.7735125619801693, 'learning_rate': 9.45466518796603e-06, 'epoch': 16.89})
89
+ Step 8900, Loss: {'mse_loss': 0.07403749227523804, 'totoal_loss': 0.07403749227523804, 'data_time': 0.007957291963975877, 'model_time': 0.7259729739744216, 'learning_rate': 9.426169728870399e-06, 'epoch': 17.08})
90
+ Step 9000, Loss: {'mse_loss': 0.034769561141729355, 'totoal_loss': 0.034769561141729355, 'data_time': 0.007122943992726505, 'model_time': 0.7626091369893402, 'learning_rate': 9.396995065213835e-06, 'epoch': 17.27})
91
+ Step 9100, Loss: {'mse_loss': 0.060863979160785675, 'totoal_loss': 0.060863979160785675, 'data_time': 0.00881666096393019, 'model_time': 0.773080046987161, 'learning_rate': 9.367145804013938e-06, 'epoch': 17.47})
92
+ Step 9200, Loss: {'mse_loss': 0.02964704856276512, 'totoal_loss': 0.02964704856276512, 'data_time': 0.008362635038793087, 'model_time': 0.7325292739551514, 'learning_rate': 9.336626658815071e-06, 'epoch': 17.66})
93
+ Step 9300, Loss: {'mse_loss': 0.027077149599790573, 'totoal_loss': 0.027077149599790573, 'data_time': 0.009028709027916193, 'model_time': 0.7598666470148601, 'learning_rate': 9.305442448944056e-06, 'epoch': 17.85})
94
+ Step 9400, Loss: {'mse_loss': 0.03510282561182976, 'totoal_loss': 0.03510282561182976, 'data_time': 0.0004425430088303983, 'model_time': 0.7609497100347653, 'learning_rate': 9.273598098749124e-06, 'epoch': 18.04})
95
+ Step 9500, Loss: {'mse_loss': 0.08674801141023636, 'totoal_loss': 0.08674801141023636, 'data_time': 0.00034359702840447426, 'model_time': 0.7627101439866237, 'learning_rate': 9.241098636822324e-06, 'epoch': 18.23})
96
+ Step 9600, Loss: {'mse_loss': 0.040850650519132614, 'totoal_loss': 0.040850650519132614, 'data_time': 0.0004086350090801716, 'model_time': 0.7266912430059165, 'learning_rate': 9.207949195205442e-06, 'epoch': 18.43})
97
+ Step 9700, Loss: {'mse_loss': 0.04210885986685753, 'totoal_loss': 0.04210885986685753, 'data_time': 0.0005981880240142345, 'model_time': 0.7434620690182783, 'learning_rate': 9.174155008579588e-06, 'epoch': 18.62})
98
+ Step 9800, Loss: {'mse_loss': 0.04641108587384224, 'totoal_loss': 0.04641108587384224, 'data_time': 0.0005053379572927952, 'model_time': 0.7496095930109732, 'learning_rate': 9.139721413438583e-06, 'epoch': 18.81})
99
+ Step 9900, Loss: {'mse_loss': 0.027983423322439194, 'totoal_loss': 0.027983423322439194, 'data_time': 1.792516774032265, 'model_time': 1.0791938449838199, 'learning_rate': 9.104653847246273e-06, 'epoch': 19.0})
100
+ Step 10000, Loss: {'mse_loss': 0.03702989220619202, 'totoal_loss': 0.03702989220619202, 'data_time': 0.0076810970203951, 'model_time': 1.0739394960110076, 'learning_rate': 9.068957847577869e-06, 'epoch': 19.19})
101
+ Step 10100, Loss: {'mse_loss': 0.024851104244589806, 'totoal_loss': 0.024851104244589806, 'data_time': 0.009027151041664183, 'model_time': 0.7408841910073534, 'learning_rate': 9.032639051245524e-06, 'epoch': 19.39})
102
+ Step 10200, Loss: {'mse_loss': 0.06138942390680313, 'totoal_loss': 0.06138942390680313, 'data_time': 0.00853282300522551, 'model_time': 0.7244664460304193, 'learning_rate': 8.995703193408199e-06, 'epoch': 19.58})
103
+ Step 10300, Loss: {'mse_loss': 0.036812521517276764, 'totoal_loss': 0.036812521517276764, 'data_time': 0.011788576957769692, 'model_time': 0.7551875289645977, 'learning_rate': 8.958156106666017e-06, 'epoch': 19.77})
104
+ Step 10400, Loss: {'mse_loss': 0.024828843772411346, 'totoal_loss': 0.024828843772411346, 'data_time': 0.008704459993168712, 'model_time': 0.8952122820192017, 'learning_rate': 8.92000372013924e-06, 'epoch': 19.96})
105
+ Step 10500, Loss: {'mse_loss': 0.025794776156544685, 'totoal_loss': 0.025794776156544685, 'data_time': 0.023460374970454723, 'model_time': 0.7168980179703794, 'learning_rate': 8.881252058531973e-06, 'epoch': 20.15})
106
+ Step 10600, Loss: {'mse_loss': 0.0446980781853199, 'totoal_loss': 0.0446980781853199, 'data_time': 0.02220170700456947, 'model_time': 0.8029490850167349, 'learning_rate': 8.841907241180809e-06, 'epoch': 20.35})
107
+ Step 10700, Loss: {'mse_loss': 0.03772170469164848, 'totoal_loss': 0.03772170469164848, 'data_time': 0.024576983007136732, 'model_time': 0.7205909940530546, 'learning_rate': 8.801975481088507e-06, 'epoch': 20.54})
108
+ Step 10800, Loss: {'mse_loss': 0.04373898357152939, 'totoal_loss': 0.04373898357152939, 'data_time': 0.023046082991641015, 'model_time': 0.7152377300080843, 'learning_rate': 8.761463083942889e-06, 'epoch': 20.73})
109
+ Step 10900, Loss: {'mse_loss': 0.032584723085165024, 'totoal_loss': 0.032584723085165024, 'data_time': 0.020744181994814426, 'model_time': 0.727017417026218, 'learning_rate': 8.720376447121098e-06, 'epoch': 20.92})
110
+ Step 11000, Loss: {'mse_loss': 0.02606254070997238, 'totoal_loss': 0.02606254070997238, 'data_time': 0.00816094601759687, 'model_time': 0.7936871640267782, 'learning_rate': 8.678722058679382e-06, 'epoch': 21.11})
111
+ Step 11100, Loss: {'mse_loss': 0.08996906131505966, 'totoal_loss': 0.08996906131505966, 'data_time': 0.007682415016461164, 'model_time': 0.7315007610013708, 'learning_rate': 8.636506496328546e-06, 'epoch': 21.31})
112
+ Step 11200, Loss: {'mse_loss': 0.033314161002635956, 'totoal_loss': 0.033314161002635956, 'data_time': 0.008514876011759043, 'model_time': 0.7678987489780411, 'learning_rate': 8.593736426395268e-06, 'epoch': 21.5})
113
+ Step 11300, Loss: {'mse_loss': 0.03192418813705444, 'totoal_loss': 0.03192418813705444, 'data_time': 0.00041186000453308225, 'model_time': 0.7586903009796515, 'learning_rate': 8.550418602769392e-06, 'epoch': 21.69})
114
+ Step 11400, Loss: {'mse_loss': 0.059560686349868774, 'totoal_loss': 0.059560686349868774, 'data_time': 0.000380569021217525, 'model_time': 0.8513820040388964, 'learning_rate': 8.506559865837425e-06, 'epoch': 21.88})
115
+ Step 11500, Loss: {'mse_loss': 0.03265990689396858, 'totoal_loss': 0.03265990689396858, 'data_time': 0.0003691469901241362, 'model_time': 0.7487045549787581, 'learning_rate': 8.462167141402359e-06, 'epoch': 22.07})
116
+ Step 11600, Loss: {'mse_loss': 0.031184958294034004, 'totoal_loss': 0.031184958294034004, 'data_time': 0.0003300110111013055, 'model_time': 0.7399612860172056, 'learning_rate': 8.417247439589994e-06, 'epoch': 22.26})
117
+ Step 11700, Loss: {'mse_loss': 0.0760900005698204, 'totoal_loss': 0.0760900005698204, 'data_time': 0.00038700003642588854, 'model_time': 0.8084484949940816, 'learning_rate': 8.371807853741978e-06, 'epoch': 22.46})
118
+ Step 11800, Loss: {'mse_loss': 0.0192689448595047, 'totoal_loss': 0.0192689448595047, 'data_time': 0.0003750119940377772, 'model_time': 0.7459563469747081, 'learning_rate': 8.325855559295663e-06, 'epoch': 22.65})
119
+ Step 11900, Loss: {'mse_loss': 0.02175881341099739, 'totoal_loss': 0.02175881341099739, 'data_time': 0.00037162203807383776, 'model_time': 0.7479139090282843, 'learning_rate': 8.279397812651042e-06, 'epoch': 22.84})
120
+ Step 12000, Loss: {'mse_loss': 0.04685007780790329, 'totoal_loss': 0.04685007780790329, 'data_time': 0.01639885298209265, 'model_time': 0.7644038579892367, 'learning_rate': 8.232441950024864e-06, 'epoch': 23.03})
121
+ Step 12100, Loss: {'mse_loss': 0.029908504337072372, 'totoal_loss': 0.029908504337072372, 'data_time': 0.01528124901233241, 'model_time': 0.7245330850128084, 'learning_rate': 8.184995386292166e-06, 'epoch': 23.22})
122
+ Step 12200, Loss: {'mse_loss': 0.017132282257080078, 'totoal_loss': 0.017132282257080078, 'data_time': 0.016050265985541046, 'model_time': 0.7701067120069638, 'learning_rate': 8.137065613815381e-06, 'epoch': 23.42})
123
+ Step 12300, Loss: {'mse_loss': 0.04525196924805641, 'totoal_loss': 0.04525196924805641, 'data_time': 0.015347987005952746, 'model_time': 0.7650204530218616, 'learning_rate': 8.088660201261203e-06, 'epoch': 23.61})
124
+ Step 12400, Loss: {'mse_loss': 0.05415871739387512, 'totoal_loss': 0.05415871739387512, 'data_time': 0.01698154298355803, 'model_time': 0.750691541004926, 'learning_rate': 8.039786792405404e-06, 'epoch': 23.8})
125
+ Step 12500, Loss: {'mse_loss': 0.049777254462242126, 'totoal_loss': 0.049777254462242126, 'data_time': 0.013448588957544416, 'model_time': 0.7027835799963214, 'learning_rate': 7.990453104925807e-06, 'epoch': 23.99})
126
+ Step 12600, Loss: {'mse_loss': 0.05618558079004288, 'totoal_loss': 0.05618558079004288, 'data_time': 0.021923760999925435, 'model_time': 0.7876999540021643, 'learning_rate': 7.940666929183554e-06, 'epoch': 24.18})
127
+ Step 12700, Loss: {'mse_loss': 0.03433312475681305, 'totoal_loss': 0.03433312475681305, 'data_time': 0.022951084014493972, 'model_time': 0.7931429650052451, 'learning_rate': 7.89043612699294e-06, 'epoch': 24.38})
128
+ Step 12800, Loss: {'mse_loss': 0.10144785791635513, 'totoal_loss': 0.10144785791635513, 'data_time': 0.02145419199950993, 'model_time': 0.805641467042733, 'learning_rate': 7.839768630379917e-06, 'epoch': 24.57})
129
+ Step 12900, Loss: {'mse_loss': 0.038772102445364, 'totoal_loss': 0.038772102445364, 'data_time': 0.02182480797637254, 'model_time': 0.8057080070138909, 'learning_rate': 7.788672440329562e-06, 'epoch': 24.76})
130
+ Step 13000, Loss: {'mse_loss': 0.028290200978517532, 'totoal_loss': 0.028290200978517532, 'data_time': 0.030616693024057895, 'model_time': 0.7618368780240417, 'learning_rate': 7.737155625522608e-06, 'epoch': 24.95})
131
+ Step 13100, Loss: {'mse_loss': 0.03469306603074074, 'totoal_loss': 0.03469306603074074, 'data_time': 0.009322314988821745, 'model_time': 0.713639385998249, 'learning_rate': 7.685226321061318e-06, 'epoch': 25.14})
132
+ Step 13200, Loss: {'mse_loss': 0.02252628654241562, 'totoal_loss': 0.02252628654241562, 'data_time': 0.009942144970409572, 'model_time': 0.7300474949879572, 'learning_rate': 7.632892727184844e-06, 'epoch': 25.34})
133
+ Step 13300, Loss: {'mse_loss': 0.023912960663437843, 'totoal_loss': 0.023912960663437843, 'data_time': 0.01082282600691542, 'model_time': 0.7336632339865901, 'learning_rate': 7.580163107974335e-06, 'epoch': 25.53})
134
+ Step 13400, Loss: {'mse_loss': 0.03244233876466751, 'totoal_loss': 0.03244233876466751, 'data_time': 0.007586004969198257, 'model_time': 0.7618070239550434, 'learning_rate': 7.527045790047922e-06, 'epoch': 25.72})
135
+ Step 13500, Loss: {'mse_loss': 0.05212822183966637, 'totoal_loss': 0.05212822183966637, 'data_time': 0.009253863012418151, 'model_time': 0.8063896779785864, 'learning_rate': 7.473549161245862e-06, 'epoch': 25.91})
136
+ Step 13600, Loss: {'mse_loss': 0.05684538558125496, 'totoal_loss': 0.05684538558125496, 'data_time': 0.00036372500471770763, 'model_time': 0.7144163069897331, 'learning_rate': 7.419681669305998e-06, 'epoch': 26.1})
137
+ Step 13700, Loss: {'mse_loss': 0.05685211345553398, 'totoal_loss': 0.05685211345553398, 'data_time': 0.0003700879751704633, 'model_time': 0.8820505590410903, 'learning_rate': 7.365451820529756e-06, 'epoch': 26.3})
138
+ Step 13800, Loss: {'mse_loss': 0.07147876918315887, 'totoal_loss': 0.07147876918315887, 'data_time': 0.0004354459815658629, 'model_time': 0.7842601689626463, 'learning_rate': 7.310868178438909e-06, 'epoch': 26.49})
139
+ Step 13900, Loss: {'mse_loss': 0.02854536846280098, 'totoal_loss': 0.02854536846280098, 'data_time': 0.0003423329908400774, 'model_time': 0.8307754300185479, 'learning_rate': 7.2559393624232985e-06, 'epoch': 26.68})
140
+ Step 14000, Loss: {'mse_loss': 0.02679266780614853, 'totoal_loss': 0.02679266780614853, 'data_time': 0.00037033099215477705, 'model_time': 0.7636147559969686, 'learning_rate': 7.2006740463797296e-06, 'epoch': 26.87})
141
+ Step 14100, Loss: {'mse_loss': 0.060522083193063736, 'totoal_loss': 0.060522083193063736, 'data_time': 0.00038682797458022833, 'model_time': 0.7407267419621348, 'learning_rate': 7.145080957342262e-06, 'epoch': 27.06})
142
+ Step 14200, Loss: {'mse_loss': 0.036709703505039215, 'totoal_loss': 0.036709703505039215, 'data_time': 0.00045926403254270554, 'model_time': 0.7492256039986387, 'learning_rate': 7.0891688741041065e-06, 'epoch': 27.26})
143
+ Step 14300, Loss: {'mse_loss': 0.014070309698581696, 'totoal_loss': 0.014070309698581696, 'data_time': 0.0003882799646817148, 'model_time': 0.8014048589975573, 'learning_rate': 7.032946625831363e-06, 'epoch': 27.45})
144
+ Step 14400, Loss: {'mse_loss': 0.041276801377534866, 'totoal_loss': 0.041276801377534866, 'data_time': 0.0003732559853233397, 'model_time': 0.729474971012678, 'learning_rate': 6.976423090668781e-06, 'epoch': 27.64})
145
+ Step 14500, Loss: {'mse_loss': 0.02480708435177803, 'totoal_loss': 0.02480708435177803, 'data_time': 0.000386762956622988, 'model_time': 0.7589697279618122, 'learning_rate': 6.919607194337806e-06, 'epoch': 27.83})
146
+ Step 14600, Loss: {'mse_loss': 0.04066137224435806, 'totoal_loss': 0.04066137224435806, 'data_time': 0.015422096999827772, 'model_time': 0.778032175032422, 'learning_rate': 6.8625079087270976e-06, 'epoch': 28.02})
147
+ Step 14700, Loss: {'mse_loss': 0.054095558822155, 'totoal_loss': 0.054095558822155, 'data_time': 0.015670018969103694, 'model_time': 0.737066795991268, 'learning_rate': 6.8051342504757714e-06, 'epoch': 28.21})
148
+ Step 14800, Loss: {'mse_loss': 0.022892722859978676, 'totoal_loss': 0.022892722859978676, 'data_time': 0.014519570977427065, 'model_time': 0.7553381540346891, 'learning_rate': 6.747495279549561e-06, 'epoch': 28.41})
149
+ Step 14900, Loss: {'mse_loss': 0.022924764081835747, 'totoal_loss': 0.022924764081835747, 'data_time': 0.015783637994900346, 'model_time': 0.7293334639980458, 'learning_rate': 6.6896000978101465e-06, 'epoch': 28.6})
150
+ Step 15000, Loss: {'mse_loss': 0.04029260203242302, 'totoal_loss': 0.04029260203242302, 'data_time': 0.016377166961319745, 'model_time': 0.8102808519615792, 'learning_rate': 6.631457847577869e-06, 'epoch': 28.79})
151
+ Step 15100, Loss: {'mse_loss': 0.036687009036540985, 'totoal_loss': 0.036687009036540985, 'data_time': 0.014374811027664691, 'model_time': 0.7612986469757743, 'learning_rate': 6.573077710188046e-06, 'epoch': 28.98})
152
+ Step 15200, Loss: {'mse_loss': 0.018488340079784393, 'totoal_loss': 0.018488340079784393, 'data_time': 0.009656698035541922, 'model_time': 0.7272814029711299, 'learning_rate': 6.5144689045411345e-06, 'epoch': 29.17})
153
+ Step 15300, Loss: {'mse_loss': 0.04246918857097626, 'totoal_loss': 0.04246918857097626, 'data_time': 0.008432663977146149, 'model_time': 0.7381950569688343, 'learning_rate': 6.455640685646961e-06, 'epoch': 29.37})
154
+ Step 15400, Loss: {'mse_loss': 0.04658586531877518, 'totoal_loss': 0.04658586531877518, 'data_time': 0.008144785009790212, 'model_time': 0.7257849880261347, 'learning_rate': 6.396602343163248e-06, 'epoch': 29.56})
155
+ Step 15500, Loss: {'mse_loss': 0.021748529747128487, 'totoal_loss': 0.021748529747128487, 'data_time': 0.008304964983835816, 'model_time': 0.7131072799675167, 'learning_rate': 6.337363199928669e-06, 'epoch': 29.75})
156
+ Step 15600, Loss: {'mse_loss': 0.018049275502562523, 'totoal_loss': 0.018049275502562523, 'data_time': 0.010051304008811712, 'model_time': 0.761692303000018, 'learning_rate': 6.277932610490659e-06, 'epoch': 29.94})
157
+ Step 15700, Loss: {'mse_loss': 0.02083408087491989, 'totoal_loss': 0.02083408087491989, 'data_time': 0.008499665011186153, 'model_time': 0.9794315280159935, 'learning_rate': 6.218319959628234e-06, 'epoch': 30.13})
158
+ Step 15800, Loss: {'mse_loss': 0.020593887194991112, 'totoal_loss': 0.020593887194991112, 'data_time': 0.00813177804229781, 'model_time': 0.7324928939924575, 'learning_rate': 6.158534660870018e-06, 'epoch': 30.33})
159
+ Step 15900, Loss: {'mse_loss': 0.0597635880112648, 'totoal_loss': 0.0597635880112648, 'data_time': 0.011235674028284848, 'model_time': 0.7066144780255854, 'learning_rate': 6.0985861550077345e-06, 'epoch': 30.52})
160
+ Step 16000, Loss: {'mse_loss': 0.02892136201262474, 'totoal_loss': 0.02892136201262474, 'data_time': 0.01196345203788951, 'model_time': 0.8280887819710188, 'learning_rate': 6.0384839086054095e-06, 'epoch': 30.71})
161
+ Step 16100, Loss: {'mse_loss': 0.017974061891436577, 'totoal_loss': 0.017974061891436577, 'data_time': 0.008745867002289742, 'model_time': 0.719624390010722, 'learning_rate': 5.978237412504472e-06, 'epoch': 30.9})
162
+ Step 16200, Loss: {'mse_loss': 0.019548192620277405, 'totoal_loss': 0.019548192620277405, 'data_time': 0.00044873100705444813, 'model_time': 0.7540739949909039, 'learning_rate': 5.917856180325059e-06, 'epoch': 31.09})
163
+ Step 16300, Loss: {'mse_loss': 0.03267820179462433, 'totoal_loss': 0.03267820179462433, 'data_time': 0.00038042402593418956, 'model_time': 0.7588998299906962, 'learning_rate': 5.857349746963692e-06, 'epoch': 31.29})
164
+ Step 16400, Loss: {'mse_loss': 0.03385842591524124, 'totoal_loss': 0.03385842591524124, 'data_time': 0.00036714598536491394, 'model_time': 0.7385071190074086, 'learning_rate': 5.796727667087611e-06, 'epoch': 31.48})
165
+ Step 16500, Loss: {'mse_loss': 0.05125872418284416, 'totoal_loss': 0.05125872418284416, 'data_time': 0.0003954470157623291, 'model_time': 0.8543967489968054, 'learning_rate': 5.735999513625984e-06, 'epoch': 31.67})
166
+ Step 16600, Loss: {'mse_loss': 0.01512668002396822, 'totoal_loss': 0.01512668002396822, 'data_time': 0.00040595897007733583, 'model_time': 0.7486006020335481, 'learning_rate': 5.675174876258223e-06, 'epoch': 31.86})
167
+ Step 16700, Loss: {'mse_loss': 0.06348241120576859, 'totoal_loss': 0.06348241120576859, 'data_time': 0.008240056980866939, 'model_time': 0.7957855280255899, 'learning_rate': 5.614263359899673e-06, 'epoch': 32.05})
168
+ Step 16800, Loss: {'mse_loss': 0.04809282720088959, 'totoal_loss': 0.04809282720088959, 'data_time': 0.00840941199567169, 'model_time': 0.7264740659738891, 'learning_rate': 5.553274583184875e-06, 'epoch': 32.25})
169
+ Step 16900, Loss: {'mse_loss': 0.02556646801531315, 'totoal_loss': 0.02556646801531315, 'data_time': 0.00868645595619455, 'model_time': 0.8231678769807331, 'learning_rate': 5.492218176948673e-06, 'epoch': 32.44})
170
+ Step 17000, Loss: {'mse_loss': 0.03417831286787987, 'totoal_loss': 0.03417831286787987, 'data_time': 0.009392858017235994, 'model_time': 0.7328581790206954, 'learning_rate': 5.431103782705404e-06, 'epoch': 32.63})
171
+ Step 17100, Loss: {'mse_loss': 0.012099114246666431, 'totoal_loss': 0.012099114246666431, 'data_time': 0.00896582897985354, 'model_time': 0.7553469150443561, 'learning_rate': 5.369941051126377e-06, 'epoch': 32.82})
172
+ Step 17200, Loss: {'mse_loss': 0.05706867575645447, 'totoal_loss': 0.05706867575645447, 'data_time': 0.00778339704265818, 'model_time': 0.7805924330023117, 'learning_rate': 5.308739640515932e-06, 'epoch': 33.01})
173
+ Step 17300, Loss: {'mse_loss': 0.018343964591622353, 'totoal_loss': 0.018343964591622353, 'data_time': 0.010460780991706997, 'model_time': 0.7423724820255302, 'learning_rate': 5.24750921528627e-06, 'epoch': 33.21})
174
+ Step 17400, Loss: {'mse_loss': 0.034821342676877975, 'totoal_loss': 0.034821342676877975, 'data_time': 0.010312005993910134, 'model_time': 0.768351549981162, 'learning_rate': 5.186259444431344e-06, 'epoch': 33.4})
175
+ Step 17500, Loss: {'mse_loss': 0.02552548237144947, 'totoal_loss': 0.02552548237144947, 'data_time': 0.008374082972295582, 'model_time': 0.7465757289901376, 'learning_rate': 5.125e-06, 'epoch': 33.59})
176
+ Step 17600, Loss: {'mse_loss': 0.0172318946570158, 'totoal_loss': 0.0172318946570158, 'data_time': 0.008665847999509424, 'model_time': 0.8039427489857189, 'learning_rate': 5.063740555568656e-06, 'epoch': 33.78})
177
+ Step 17700, Loss: {'mse_loss': 0.03637170419096947, 'totoal_loss': 0.03637170419096947, 'data_time': 0.007994492014404386, 'model_time': 0.727765557996463, 'learning_rate': 5.002490784713731e-06, 'epoch': 33.97})
178
+ Step 17800, Loss: {'mse_loss': 0.036582253873348236, 'totoal_loss': 0.036582253873348236, 'data_time': 0.009151974983979017, 'model_time': 0.7349177990108728, 'learning_rate': 4.9412603594840695e-06, 'epoch': 34.17})
179
+ Step 17900, Loss: {'mse_loss': 0.018642064183950424, 'totoal_loss': 0.018642064183950424, 'data_time': 0.010513486980926245, 'model_time': 0.718491195992101, 'learning_rate': 4.8800589488736245e-06, 'epoch': 34.36})
180
+ Step 18000, Loss: {'mse_loss': 0.030784212052822113, 'totoal_loss': 0.030784212052822113, 'data_time': 0.009389618993736804, 'model_time': 0.8269445399637334, 'learning_rate': 4.818896217294598e-06, 'epoch': 34.55})
181
+ Step 18100, Loss: {'mse_loss': 0.04140530526638031, 'totoal_loss': 0.04140530526638031, 'data_time': 0.008050095988437533, 'model_time': 0.75426353700459, 'learning_rate': 4.757781823051329e-06, 'epoch': 34.74})
182
+ Step 18200, Loss: {'mse_loss': 0.012667094357311726, 'totoal_loss': 0.012667094357311726, 'data_time': 0.010132230003364384, 'model_time': 0.7495699109858833, 'learning_rate': 4.696725416815128e-06, 'epoch': 34.93})
183
+ Step 18300, Loss: {'mse_loss': 0.022572465240955353, 'totoal_loss': 0.022572465240955353, 'data_time': 0.017343192012049258, 'model_time': 0.8115600800374523, 'learning_rate': 4.635736640100327e-06, 'epoch': 35.12})
184
+ Step 18400, Loss: {'mse_loss': 0.05776960030198097, 'totoal_loss': 0.05776960030198097, 'data_time': 0.014441515959333628, 'model_time': 0.718866910028737, 'learning_rate': 4.574825123741778e-06, 'epoch': 35.32})
185
+ Step 18500, Loss: {'mse_loss': 0.030819498002529144, 'totoal_loss': 0.030819498002529144, 'data_time': 0.013709660968743265, 'model_time': 0.79398710798705, 'learning_rate': 4.5140004863740165e-06, 'epoch': 35.51})
186
+ Step 18600, Loss: {'mse_loss': 0.023713117465376854, 'totoal_loss': 0.023713117465376854, 'data_time': 0.01564303698251024, 'model_time': 0.7412633519852534, 'learning_rate': 4.45327233291239e-06, 'epoch': 35.7})
187
+ Step 18700, Loss: {'mse_loss': 0.04462210088968277, 'totoal_loss': 0.04462210088968277, 'data_time': 0.01641436101635918, 'model_time': 0.7329035939765163, 'learning_rate': 4.39265025303631e-06, 'epoch': 35.89})
188
+ Step 18800, Loss: {'mse_loss': 0.04714706167578697, 'totoal_loss': 0.04714706167578697, 'data_time': 0.010256642999593168, 'model_time': 0.7262259380077012, 'learning_rate': 4.332143819674943e-06, 'epoch': 36.08})
189
+ Step 18900, Loss: {'mse_loss': 0.01140760537236929, 'totoal_loss': 0.01140760537236929, 'data_time': 0.011524143978022039, 'model_time': 0.7496800730004907, 'learning_rate': 4.271762587495529e-06, 'epoch': 36.28})
190
+ Step 19000, Loss: {'mse_loss': 0.03421439230442047, 'totoal_loss': 0.03421439230442047, 'data_time': 0.00695629499386996, 'model_time': 0.8298550870385952, 'learning_rate': 4.2115160913945914e-06, 'epoch': 36.47})
191
+ Step 19100, Loss: {'mse_loss': 0.011520976200699806, 'totoal_loss': 0.011520976200699806, 'data_time': 0.008060402004048228, 'model_time': 0.7810998359927908, 'learning_rate': 4.151413844992267e-06, 'epoch': 36.66})
192
+ Step 19200, Loss: {'mse_loss': 0.009118586778640747, 'totoal_loss': 0.009118586778640747, 'data_time': 0.008933828969020396, 'model_time': 0.7184187889797613, 'learning_rate': 4.091465339129985e-06, 'epoch': 36.85})
193
+ Step 19300, Loss: {'mse_loss': 0.015209861099720001, 'totoal_loss': 0.015209861099720001, 'data_time': 0.00798977998783812, 'model_time': 0.7281083659618162, 'learning_rate': 4.031680040371768e-06, 'epoch': 37.04})
194
+ Step 19400, Loss: {'mse_loss': 0.014353993348777294, 'totoal_loss': 0.014353993348777294, 'data_time': 0.008434234012383968, 'model_time': 0.7730782930157147, 'learning_rate': 3.972067389509344e-06, 'epoch': 37.24})
195
+ Step 19500, Loss: {'mse_loss': 0.026994967833161354, 'totoal_loss': 0.026994967833161354, 'data_time': 0.00812419701833278, 'model_time': 0.7992115170345642, 'learning_rate': 3.912636800071335e-06, 'epoch': 37.43})
196
+ Step 19600, Loss: {'mse_loss': 0.02260241098701954, 'totoal_loss': 0.02260241098701954, 'data_time': 0.00843186501879245, 'model_time': 0.7665664739906788, 'learning_rate': 3.853397656836754e-06, 'epoch': 37.62})
197
+ Step 19700, Loss: {'mse_loss': 0.03710789233446121, 'totoal_loss': 0.03710789233446121, 'data_time': 0.009425500000361353, 'model_time': 0.738345498975832, 'learning_rate': 3.7943593143530404e-06, 'epoch': 37.81})
198
+ Step 19800, Loss: {'mse_loss': 0.010314267128705978, 'totoal_loss': 0.010314267128705978, 'data_time': 0.0005030280444771051, 'model_time': 0.8605338410125114, 'learning_rate': 3.735531095458867e-06, 'epoch': 38.0})
199
+ Step 19900, Loss: {'mse_loss': 0.01131647638976574, 'totoal_loss': 0.01131647638976574, 'data_time': 0.0005071779596619308, 'model_time': 0.8251137309707701, 'learning_rate': 3.6769222898119562e-06, 'epoch': 38.2})
200
+ Step 20000, Loss: {'mse_loss': 0.030815977603197098, 'totoal_loss': 0.030815977603197098, 'data_time': 0.000357509998138994, 'model_time': 0.75742783799069, 'learning_rate': 3.618542152422132e-06, 'epoch': 38.39})
201
+ Step 20100, Loss: {'mse_loss': 0.020928137004375458, 'totoal_loss': 0.020928137004375458, 'data_time': 0.0004002829664386809, 'model_time': 0.7362862289883196, 'learning_rate': 3.560399902189855e-06, 'epoch': 38.58})
202
+ Step 20200, Loss: {'mse_loss': 0.00823059119284153, 'totoal_loss': 0.00823059119284153, 'data_time': 0.0003869059728458524, 'model_time': 0.7603075969964266, 'learning_rate': 3.502504720450441e-06, 'epoch': 38.77})
203
+ Step 20300, Loss: {'mse_loss': 0.02096012979745865, 'totoal_loss': 0.02096012979745865, 'data_time': 0.00038861000211909413, 'model_time': 0.8235594220459461, 'learning_rate': 3.4448657495242304e-06, 'epoch': 38.96})
204
+ Step 20400, Loss: {'mse_loss': 0.011428529396653175, 'totoal_loss': 0.011428529396653175, 'data_time': 0.01612839801236987, 'model_time': 0.7599532390013337, 'learning_rate': 3.387492091272904e-06, 'epoch': 39.16})
205
+ Step 20500, Loss: {'mse_loss': 0.006801965646445751, 'totoal_loss': 0.006801965646445751, 'data_time': 0.017073979950509965, 'model_time': 0.7489697280107066, 'learning_rate': 3.3303928056621955e-06, 'epoch': 39.35})
206
+ Step 20600, Loss: {'mse_loss': 0.014205981977283955, 'totoal_loss': 0.014205981977283955, 'data_time': 0.01507062598830089, 'model_time': 0.7678855250123888, 'learning_rate': 3.2735769093312202e-06, 'epoch': 39.54})
207
+ Step 20700, Loss: {'mse_loss': 0.009927498176693916, 'totoal_loss': 0.009927498176693916, 'data_time': 0.014544377976562828, 'model_time': 0.730390704004094, 'learning_rate': 3.217053374168639e-06, 'epoch': 39.73})
208
+ Step 20800, Loss: {'mse_loss': 0.00840739905834198, 'totoal_loss': 0.00840739905834198, 'data_time': 0.014395793026778847, 'model_time': 0.7399959059548564, 'learning_rate': 3.1608311258958953e-06, 'epoch': 39.92})
209
+ Step 20900, Loss: {'mse_loss': 0.009641306474804878, 'totoal_loss': 0.009641306474804878, 'data_time': 0.009472456993535161, 'model_time': 0.8212331469985656, 'learning_rate': 3.10491904265774e-06, 'epoch': 40.12})
210
+ Step 21000, Loss: {'mse_loss': 0.013834227807819843, 'totoal_loss': 0.013834227807819843, 'data_time': 0.010144245985429734, 'model_time': 0.7962394030182622, 'learning_rate': 3.0493259536202714e-06, 'epoch': 40.31})
211
+ Step 21100, Loss: {'mse_loss': 0.018344497308135033, 'totoal_loss': 0.018344497308135033, 'data_time': 0.008652338001411408, 'model_time': 0.7588620759779587, 'learning_rate': 2.9940606375767038e-06, 'epoch': 40.5})
212
+ Step 21200, Loss: {'mse_loss': 0.015390696004033089, 'totoal_loss': 0.015390696004033089, 'data_time': 0.009725859039463103, 'model_time': 0.7472333520418033, 'learning_rate': 2.939131821561094e-06, 'epoch': 40.69})
213
+ Step 21300, Loss: {'mse_loss': 0.016939479857683182, 'totoal_loss': 0.016939479857683182, 'data_time': 0.01206312095746398, 'model_time': 0.7734293480170891, 'learning_rate': 2.8845481794702473e-06, 'epoch': 40.88})
214
+ Step 21400, Loss: {'mse_loss': 0.00817920733243227, 'totoal_loss': 0.00817920733243227, 'data_time': 0.010388558963313699, 'model_time': 0.780542268010322, 'learning_rate': 2.830318330694004e-06, 'epoch': 41.07})
215
+ Step 21500, Loss: {'mse_loss': 0.01871701143682003, 'totoal_loss': 0.01871701143682003, 'data_time': 0.009729148994665593, 'model_time': 0.7360282669542357, 'learning_rate': 2.7764508387541378e-06, 'epoch': 41.27})
216
+ Step 21600, Loss: {'mse_loss': 0.02080295793712139, 'totoal_loss': 0.02080295793712139, 'data_time': 0.00716059998376295, 'model_time': 0.829739919048734, 'learning_rate': 2.7229542099520797e-06, 'epoch': 41.46})
217
+ Step 21700, Loss: {'mse_loss': 0.022227494046092033, 'totoal_loss': 0.022227494046092033, 'data_time': 0.008466424944344908, 'model_time': 0.7216483739903197, 'learning_rate': 2.669836892025666e-06, 'epoch': 41.65})
218
+ Step 21800, Loss: {'mse_loss': 0.006030259188264608, 'totoal_loss': 0.006030259188264608, 'data_time': 0.008524382952600718, 'model_time': 0.7285846750019118, 'learning_rate': 2.6171072728151557e-06, 'epoch': 41.84})
219
+ Step 21900, Loss: {'mse_loss': 0.02341589517891407, 'totoal_loss': 0.02341589517891407, 'data_time': 0.007524724001996219, 'model_time': 0.7430668650195003, 'learning_rate': 2.5647736789386828e-06, 'epoch': 42.03})
220
+ Step 22000, Loss: {'mse_loss': 0.014826853759586811, 'totoal_loss': 0.014826853759586811, 'data_time': 0.007981565955560654, 'model_time': 0.7361640550079755, 'learning_rate': 2.5128443744773904e-06, 'epoch': 42.23})
221
+ Step 22100, Loss: {'mse_loss': 0.021510662510991096, 'totoal_loss': 0.021510662510991096, 'data_time': 0.007182296016253531, 'model_time': 0.9904022649861872, 'learning_rate': 2.4613275596704386e-06, 'epoch': 42.42})
222
+ Step 22200, Loss: {'mse_loss': 0.010553356260061264, 'totoal_loss': 0.010553356260061264, 'data_time': 0.014132536016404629, 'model_time': 0.748982088000048, 'learning_rate': 2.4102313696200853e-06, 'epoch': 42.61})
223
+ Step 22300, Loss: {'mse_loss': 0.04479570314288139, 'totoal_loss': 0.04479570314288139, 'data_time': 0.00938504800433293, 'model_time': 0.7577655999921262, 'learning_rate': 2.359563873007063e-06, 'epoch': 42.8})
224
+ Step 22400, Loss: {'mse_loss': 0.01275052409619093, 'totoal_loss': 0.01275052409619093, 'data_time': 0.009194350976031274, 'model_time': 0.7069945840048604, 'learning_rate': 2.3093330708164465e-06, 'epoch': 42.99})
225
+ Step 22500, Loss: {'mse_loss': 0.017935123294591904, 'totoal_loss': 0.017935123294591904, 'data_time': 0.007872219022829086, 'model_time': 0.7497628759592772, 'learning_rate': 2.2595468950741943e-06, 'epoch': 43.19})
226
+ Step 22600, Loss: {'mse_loss': 0.010424080304801464, 'totoal_loss': 0.010424080304801464, 'data_time': 0.008030504977796227, 'model_time': 0.7808908760198392, 'learning_rate': 2.2102132075945974e-06, 'epoch': 43.38})
227
+ Step 22700, Loss: {'mse_loss': 0.022329889237880707, 'totoal_loss': 0.022329889237880707, 'data_time': 0.008422715996857733, 'model_time': 0.8339692319859751, 'learning_rate': 2.1613397987388e-06, 'epoch': 43.57})
228
+ Step 22800, Loss: {'mse_loss': 0.05307791382074356, 'totoal_loss': 0.05307791382074356, 'data_time': 0.008518670976627618, 'model_time': 0.7692594939726405, 'learning_rate': 2.1129343861846207e-06, 'epoch': 43.76})
229
+ Step 22900, Loss: {'mse_loss': 0.009234455414116383, 'totoal_loss': 0.009234455414116383, 'data_time': 0.007740363012999296, 'model_time': 0.7657251000055112, 'learning_rate': 2.065004613707836e-06, 'epoch': 43.95})
230
+ Step 23000, Loss: {'mse_loss': 0.036656420677900314, 'totoal_loss': 0.036656420677900314, 'data_time': 0.016205971012823284, 'model_time': 0.7592429380165413, 'learning_rate': 2.0175580499751375e-06, 'epoch': 44.15})
231
+ Step 23100, Loss: {'mse_loss': 0.00928183551877737, 'totoal_loss': 0.00928183551877737, 'data_time': 0.014006125973537564, 'model_time': 0.7313137750024907, 'learning_rate': 1.9706021873489604e-06, 'epoch': 44.34})
232
+ Step 23200, Loss: {'mse_loss': 0.007261098362505436, 'totoal_loss': 0.007261098362505436, 'data_time': 0.015986978018190712, 'model_time': 0.7974723619990982, 'learning_rate': 1.924144440704338e-06, 'epoch': 44.53})
233
+ Step 23300, Loss: {'mse_loss': 0.011764303781092167, 'totoal_loss': 0.011764303781092167, 'data_time': 0.016457248013466597, 'model_time': 0.7489708819775842, 'learning_rate': 1.8781921462580238e-06, 'epoch': 44.72})
234
+ Step 23400, Loss: {'mse_loss': 0.010927507653832436, 'totoal_loss': 0.010927507653832436, 'data_time': 0.0181018189759925, 'model_time': 0.7395980620058253, 'learning_rate': 1.8327525604100058e-06, 'epoch': 44.91})
235
+ Step 23500, Loss: {'mse_loss': 0.00956825353205204, 'totoal_loss': 0.00956825353205204, 'data_time': 0.008184206031728536, 'model_time': 0.7825798420235515, 'learning_rate': 1.7878328585976426e-06, 'epoch': 45.11})
236
+ Step 23600, Loss: {'mse_loss': 0.01615150086581707, 'totoal_loss': 0.01615150086581707, 'data_time': 0.008556317014154047, 'model_time': 0.8501323660020716, 'learning_rate': 1.7434401341625765e-06, 'epoch': 45.3})
237
+ Step 23700, Loss: {'mse_loss': 0.013085109181702137, 'totoal_loss': 0.013085109181702137, 'data_time': 0.00848117598798126, 'model_time': 0.7423502469900995, 'learning_rate': 1.6995813972306108e-06, 'epoch': 45.49})
238
+ Step 23800, Loss: {'mse_loss': 0.019218305125832558, 'totoal_loss': 0.019218305125832558, 'data_time': 0.009436764987185597, 'model_time': 0.7420487680356018, 'learning_rate': 1.656263573604734e-06, 'epoch': 45.68})
239
+ Step 23900, Loss: {'mse_loss': 0.00796021893620491, 'totoal_loss': 0.00796021893620491, 'data_time': 0.009179693995974958, 'model_time': 0.732696641003713, 'learning_rate': 1.613493503671454e-06, 'epoch': 45.87})
240
+ Step 24000, Loss: {'mse_loss': 0.020186541602015495, 'totoal_loss': 0.020186541602015495, 'data_time': 0.00882436300162226, 'model_time': 0.7884044959791936, 'learning_rate': 1.5712779413206198e-06, 'epoch': 46.07})
241
+ Step 24100, Loss: {'mse_loss': 0.013728015124797821, 'totoal_loss': 0.013728015124797821, 'data_time': 0.010627165029291064, 'model_time': 0.7733530700206757, 'learning_rate': 1.5296235528789028e-06, 'epoch': 46.26})
242
+ Step 24200, Loss: {'mse_loss': 0.02372301183640957, 'totoal_loss': 0.02372301183640957, 'data_time': 0.008225878002122045, 'model_time': 0.8297210070304573, 'learning_rate': 1.4885369160571124e-06, 'epoch': 46.45})
243
+ Step 24300, Loss: {'mse_loss': 0.009844083338975906, 'totoal_loss': 0.009844083338975906, 'data_time': 0.008274265041109174, 'model_time': 0.7519435680005699, 'learning_rate': 1.4480245189114938e-06, 'epoch': 46.64})
244
+ Step 24400, Loss: {'mse_loss': 0.02692519500851631, 'totoal_loss': 0.02692519500851631, 'data_time': 0.01201973803108558, 'model_time': 0.7254122570157051, 'learning_rate': 1.408092758819191e-06, 'epoch': 46.83})
245
+ Step 24500, Loss: {'mse_loss': 0.0035507541615515947, 'totoal_loss': 0.0035507541615515947, 'data_time': 0.0004148099687881768, 'model_time': 0.7394603680004366, 'learning_rate': 1.368747941468028e-06, 'epoch': 47.02})
246
+ Step 24600, Loss: {'mse_loss': 0.020377855747938156, 'totoal_loss': 0.020377855747938156, 'data_time': 0.00036572798853740096, 'model_time': 0.8082908910000697, 'learning_rate': 1.3299962798607614e-06, 'epoch': 47.22})
247
+ Step 24700, Loss: {'mse_loss': 0.019652623683214188, 'totoal_loss': 0.019652623683214188, 'data_time': 0.00046570698032155633, 'model_time': 0.8241358210216276, 'learning_rate': 1.2918438933339827e-06, 'epoch': 47.41})
248
+ Step 24800, Loss: {'mse_loss': 0.022951385006308556, 'totoal_loss': 0.022951385006308556, 'data_time': 0.0005174520192667842, 'model_time': 0.7494003850151785, 'learning_rate': 1.2542968065918027e-06, 'epoch': 47.6})
249
+ Step 24900, Loss: {'mse_loss': 0.008343311958014965, 'totoal_loss': 0.008343311958014965, 'data_time': 0.0003779619582928717, 'model_time': 0.7308214969816618, 'learning_rate': 1.217360948754476e-06, 'epoch': 47.79})
250
+ Step 25000, Loss: {'mse_loss': 0.05083673819899559, 'totoal_loss': 0.05083673819899559, 'data_time': 0.00033441500272601843, 'model_time': 0.7168709730030969, 'learning_rate': 1.1810421524221318e-06, 'epoch': 47.98})
251
+ Step 25100, Loss: {'mse_loss': 0.006691320333629847, 'totoal_loss': 0.006691320333629847, 'data_time': 0.01492463203612715, 'model_time': 0.7557388989953324, 'learning_rate': 1.1453461527537284e-06, 'epoch': 48.18})
252
+ Step 25200, Loss: {'mse_loss': 0.0074266595765948296, 'totoal_loss': 0.0074266595765948296, 'data_time': 0.01743641699431464, 'model_time': 0.7694634880172089, 'learning_rate': 1.1102785865614162e-06, 'epoch': 48.37})
253
+ Step 25300, Loss: {'mse_loss': 0.013283106498420238, 'totoal_loss': 0.013283106498420238, 'data_time': 0.01770410599419847, 'model_time': 0.7264759480021894, 'learning_rate': 1.0758449914204127e-06, 'epoch': 48.56})
254
+ Step 25400, Loss: {'mse_loss': 0.006287962663918734, 'totoal_loss': 0.006287962663918734, 'data_time': 0.015182199014816433, 'model_time': 0.7304821249563247, 'learning_rate': 1.0420508047945595e-06, 'epoch': 48.75})
255
+ Step 25500, Loss: {'mse_loss': 0.04285638779401779, 'totoal_loss': 0.04285638779401779, 'data_time': 0.018699923006352037, 'model_time': 0.7292075789882801, 'learning_rate': 1.0089013631776776e-06, 'epoch': 48.94})
256
+ Step 25600, Loss: {'mse_loss': 0.01719692535698414, 'totoal_loss': 0.01719692535698414, 'data_time': 0.007658677001018077, 'model_time': 0.9802465560496785, 'learning_rate': 9.76401901250878e-07, 'epoch': 49.14})
257
+ Step 25700, Loss: {'mse_loss': 0.01331294048577547, 'totoal_loss': 0.01331294048577547, 'data_time': 0.008095655008219182, 'model_time': 0.776239798986353, 'learning_rate': 9.44557551055946e-07, 'epoch': 49.33})
258
+ Step 25800, Loss: {'mse_loss': 0.014588476158678532, 'totoal_loss': 0.014588476158678532, 'data_time': 0.009043543017469347, 'model_time': 0.7188386509660631, 'learning_rate': 9.13373341184928e-07, 'epoch': 49.52})
259
+ Step 25900, Loss: {'mse_loss': 0.006582589354366064, 'totoal_loss': 0.006582589354366064, 'data_time': 0.009990511985961348, 'model_time': 0.7223754560109228, 'learning_rate': 8.828541959860623e-07, 'epoch': 49.71})
260
+ Step 26000, Loss: {'mse_loss': 0.025039492174983025, 'totoal_loss': 0.025039492174983025, 'data_time': 0.0074998209602199495, 'model_time': 0.7835556420031935, 'learning_rate': 8.530049347861661e-07, 'epoch': 49.9})
261
+ Step 26100, Loss: {'mse_loss': 0.007457228377461433, 'totoal_loss': 0.007457228377461433, 'data_time': 0.0004816160071641207, 'model_time': 0.8358219300280325, 'learning_rate': 8.238302711296034e-07, 'epoch': 50.1})
262
+ Step 26200, Loss: {'mse_loss': 0.026031671091914177, 'totoal_loss': 0.026031671091914177, 'data_time': 0.00043827295303344727, 'model_time': 0.7307031970121898, 'learning_rate': 7.953348120339707e-07, 'epoch': 50.29})
263
+ Step 26300, Loss: {'mse_loss': 0.019242579117417336, 'totoal_loss': 0.019242579117417336, 'data_time': 0.0003470230149105191, 'model_time': 0.7493990119546652, 'learning_rate': 7.675230572625892e-07, 'epoch': 50.48})
264
+ Step 26400, Loss: {'mse_loss': 0.0121756661683321, 'totoal_loss': 0.0121756661683321, 'data_time': 0.00035615696106106043, 'model_time': 0.7856313310330734, 'learning_rate': 7.40399398613941e-07, 'epoch': 50.67})
265
+ Step 26500, Loss: {'mse_loss': 0.006419043056666851, 'totoal_loss': 0.006419043056666851, 'data_time': 0.00044381601037457585, 'model_time': 0.8250659590121359, 'learning_rate': 7.139681192281557e-07, 'epoch': 50.86})
266
+ Step 26600, Loss: {'mse_loss': 0.022340865805745125, 'totoal_loss': 0.022340865805745125, 'data_time': 0.010776437004096806, 'model_time': 0.7703765280311927, 'learning_rate': 6.882333929106462e-07, 'epoch': 51.06})
267
+ Step 26700, Loss: {'mse_loss': 0.009616941213607788, 'totoal_loss': 0.009616941213607788, 'data_time': 0.009055130009073764, 'model_time': 0.7381498900358565, 'learning_rate': 6.63199283473027e-07, 'epoch': 51.25})
268
+ Step 26800, Loss: {'mse_loss': 0.02970152348279953, 'totoal_loss': 0.02970152348279953, 'data_time': 0.007727644988335669, 'model_time': 0.7547586789587513, 'learning_rate': 6.388697440913819e-07, 'epoch': 51.44})
269
+ Step 26900, Loss: {'mse_loss': 0.014830781146883965, 'totoal_loss': 0.014830781146883965, 'data_time': 0.009864874999038875, 'model_time': 0.7186340590124018, 'learning_rate': 6.152486166820176e-07, 'epoch': 51.63})
270
+ Step 27000, Loss: {'mse_loss': 0.031019272282719612, 'totoal_loss': 0.031019272282719612, 'data_time': 0.008437565003987402, 'model_time': 0.7314871330163442, 'learning_rate': 5.923396312947748e-07, 'epoch': 51.82})
271
+ Step 27100, Loss: {'mse_loss': 0.00898223090916872, 'totoal_loss': 0.00898223090916872, 'data_time': 0.022991614998318255, 'model_time': 0.7236551870009862, 'learning_rate': 5.701464055240163e-07, 'epoch': 52.02})
272
+ Step 27200, Loss: {'mse_loss': 0.00849443580955267, 'totoal_loss': 0.00849443580955267, 'data_time': 0.02194973803125322, 'model_time': 0.7822902689804323, 'learning_rate': 5.48672443937364e-07, 'epoch': 52.21})
273
+ Step 27300, Loss: {'mse_loss': 0.026089321821928024, 'totoal_loss': 0.026089321821928024, 'data_time': 0.021976119023747742, 'model_time': 0.7196047159959562, 'learning_rate': 5.279211375222855e-07, 'epoch': 52.4})
274
+ Step 27400, Loss: {'mse_loss': 0.014661774970591068, 'totoal_loss': 0.014661774970591068, 'data_time': 0.02164469298440963, 'model_time': 0.750732957967557, 'learning_rate': 5.07895763150622e-07, 'epoch': 52.59})
275
+ Step 27500, Loss: {'mse_loss': 0.019706204533576965, 'totoal_loss': 0.019706204533576965, 'data_time': 0.024344356963410974, 'model_time': 0.7165082709980197, 'learning_rate': 4.885994830611266e-07, 'epoch': 52.78})
276
+ Step 27600, Loss: {'mse_loss': 0.021200666204094887, 'totoal_loss': 0.021200666204094887, 'data_time': 0.022706402000039816, 'model_time': 0.7394464639946818, 'learning_rate': 4.700353443601156e-07, 'epoch': 52.98})
277
+ Step 27700, Loss: {'mse_loss': 0.010667816735804081, 'totoal_loss': 0.010667816735804081, 'data_time': 0.008696548989973962, 'model_time': 0.7757418529945426, 'learning_rate': 4.5220627854029224e-07, 'epoch': 53.17})
278
+ Step 27800, Loss: {'mse_loss': 0.006469382904469967, 'totoal_loss': 0.006469382904469967, 'data_time': 0.010954194003716111, 'model_time': 0.7594713880098425, 'learning_rate': 4.351151010178311e-07, 'epoch': 53.36})
279
+ Step 27900, Loss: {'mse_loss': 0.007309651933610439, 'totoal_loss': 0.007309651933610439, 'data_time': 0.01116184500278905, 'model_time': 0.7324033239856362, 'learning_rate': 4.1876451068778983e-07, 'epoch': 53.55})
280
+ Step 28000, Loss: {'mse_loss': 0.0060468753799796104, 'totoal_loss': 0.0060468753799796104, 'data_time': 0.00937433703802526, 'model_time': 0.80342945700977, 'learning_rate': 4.031570894979235e-07, 'epoch': 53.74})
281
+ Step 28100, Loss: {'mse_loss': 0.014787891879677773, 'totoal_loss': 0.014787891879677773, 'data_time': 0.009005046973470598, 'model_time': 0.7118011160055175, 'learning_rate': 3.882953020409644e-07, 'epoch': 53.93})
282
+ Step 28200, Loss: {'mse_loss': 0.012722245417535305, 'totoal_loss': 0.012722245417535305, 'data_time': 0.00034185900585725904, 'model_time': 0.8646775119705126, 'learning_rate': 3.74181495165436e-07, 'epoch': 54.13})
283
+ Step 28300, Loss: {'mse_loss': 0.006924094166606665, 'totoal_loss': 0.006924094166606665, 'data_time': 0.0003777979873120785, 'model_time': 0.8060133709805086, 'learning_rate': 3.608178976050568e-07, 'epoch': 54.32})
284
+ Step 28400, Loss: {'mse_loss': 0.007229113485664129, 'totoal_loss': 0.007229113485664129, 'data_time': 0.00036973500391468406, 'model_time': 0.7578129270114005, 'learning_rate': 3.482066196267966e-07, 'epoch': 54.51})
285
+ Step 28500, Loss: {'mse_loss': 0.032104820013046265, 'totoal_loss': 0.032104820013046265, 'data_time': 0.00047977804206311703, 'model_time': 0.7429301959928125, 'learning_rate': 3.36349652697643e-07, 'epoch': 54.7})
286
+ Step 28600, Loss: {'mse_loss': 0.006504739169031382, 'totoal_loss': 0.006504739169031382, 'data_time': 0.00039132300298660994, 'model_time': 0.7627501050010324, 'learning_rate': 3.2524886917012403e-07, 'epoch': 54.89})
287
+ Step 28700, Loss: {'mse_loss': 0.005155154969543219, 'totoal_loss': 0.005155154969543219, 'data_time': 0.007897635048720986, 'model_time': 0.7917512689600699, 'learning_rate': 3.149060219866433e-07, 'epoch': 55.09})
288
+ Step 28800, Loss: {'mse_loss': 0.01172852236777544, 'totoal_loss': 0.01172852236777544, 'data_time': 0.008074747980572283, 'model_time': 0.7258597349864431, 'learning_rate': 3.053227444026695e-07, 'epoch': 55.28})
289
+ Step 28900, Loss: {'mse_loss': 0.009025966748595238, 'totoal_loss': 0.009025966748595238, 'data_time': 0.007197547995019704, 'model_time': 0.7107622380135581, 'learning_rate': 2.9650054972882544e-07, 'epoch': 55.47})
290
+ Step 29000, Loss: {'mse_loss': 0.008228864520788193, 'totoal_loss': 0.008228864520788193, 'data_time': 0.010654120007529855, 'model_time': 0.7244070470333099, 'learning_rate': 2.884408310919209e-07, 'epoch': 55.66})
291
+ Step 29100, Loss: {'mse_loss': 0.009086458943784237, 'totoal_loss': 0.009086458943784237, 'data_time': 0.009135372994933277, 'model_time': 0.7329610830056481, 'learning_rate': 2.8114486121495906e-07, 'epoch': 55.85})
292
+ Step 29200, Loss: {'mse_loss': 0.006894384510815144, 'totoal_loss': 0.006894384510815144, 'data_time': 0.01086570305051282, 'model_time': 0.7241421969956718, 'learning_rate': 2.746137922161617e-07, 'epoch': 56.05})
293
+ Step 29300, Loss: {'mse_loss': 0.003521817037835717, 'totoal_loss': 0.003521817037835717, 'data_time': 0.008560365997254848, 'model_time': 0.754710610024631, 'learning_rate': 2.68848655427034e-07, 'epoch': 56.24})
294
+ Step 29400, Loss: {'mse_loss': 0.013444201089441776, 'totoal_loss': 0.013444201089441776, 'data_time': 0.008674087992403656, 'model_time': 0.7662726769922301, 'learning_rate': 2.638503612295071e-07, 'epoch': 56.43})
295
+ Step 29500, Loss: {'mse_loss': 0.00888071022927761, 'totoal_loss': 0.00888071022927761, 'data_time': 0.008487657003570348, 'model_time': 0.7612487819860689, 'learning_rate': 2.5961969891217614e-07, 'epoch': 56.62})
296
+ Step 29600, Loss: {'mse_loss': 0.006276422645896673, 'totoal_loss': 0.006276422645896673, 'data_time': 0.009665702003985643, 'model_time': 0.7649262209888548, 'learning_rate': 2.5615733654566483e-07, 'epoch': 56.81})
297
+ Step 29700, Loss: {'mse_loss': 0.01027284562587738, 'totoal_loss': 0.01027284562587738, 'data_time': 0.012622417008969933, 'model_time': 0.783615185006056, 'learning_rate': 2.5346382087712764e-07, 'epoch': 57.01})
298
+ Step 29800, Loss: {'mse_loss': 0.013566877692937851, 'totoal_loss': 0.013566877692937851, 'data_time': 0.010746621992439032, 'model_time': 0.8039189419941977, 'learning_rate': 2.515395772439128e-07, 'epoch': 57.2})
299
+ Step 29900, Loss: {'mse_loss': 0.009388044476509094, 'totoal_loss': 0.009388044476509094, 'data_time': 0.007302353973500431, 'model_time': 0.7430161440279335, 'learning_rate': 2.5038490950639644e-07, 'epoch': 57.39})
300
+ Step 30000, Loss: {'mse_loss': 0.007931934669613838, 'totoal_loss': 0.007931934669613838, 'mse_score': 0.0017790280814681733, 'data_time': 0.006548503995873034, 'model_time': 0.7531409640214406, 'learning_rate': 2.5e-07, 'epoch': 57.58})
libero_spatial_2B/starvla_qwen_pi/config.json ADDED
@@ -0,0 +1,129 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "run_id": "starvla_qwen_pi",
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": "QwenPI",
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_pi"
129
+ }
libero_spatial_2B/starvla_qwen_pi/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_pi/final_model/pytorch_model.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d8213b4495686680a7b618df6982a855705705a61a18095eb9e972fc13c97e5
3
+ size 6825856850
libero_spatial_2B/starvla_qwen_pi/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: True
387
+ # episodes completed so far: 77
388
+ # successes: 77 (100.0%)
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: 78 (100.0%)
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: 79 (100.0%)
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: 80 (100.0%)
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: 81 (100.0%)
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: 82 (100.0%)
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: 83 (100.0%)
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: 84 (100.0%)
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: 85 (100.0%)
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: 86 (100.0%)
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: 87 (100.0%)
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: 88 (100.0%)
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: 89 (100.0%)
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: 90 (100.0%)
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: 91 (100.0%)
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: 92 (100.0%)
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: 93 (100.0%)
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: 94 (100.0%)
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: 95 (100.0%)
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: 96 (100.0%)
484
+
485
+ Task: pick up the black bowl next to the ramekin and place it on the plate
486
+ Success: True
487
+ # episodes completed so far: 97
488
+ # successes: 97 (100.0%)
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: 98 (100.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: 99 (100.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: 100 (100.0%)
504
+ Current task success rate: 1.0
505
+ Current total success rate: 1.0
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: 101 (100.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: 102 (100.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: 103 (100.0%)
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: 104 (100.0%)
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: 105 (100.0%)
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: 106 (100.0%)
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: 107 (100.0%)
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: 108 (100.0%)
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: 109 (100.0%)
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: 110 (100.0%)
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: 111 (100.0%)
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: 112 (100.0%)
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: 113 (100.0%)
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: 114 (100.0%)
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: 115 (100.0%)
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: 116 (100.0%)
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: 117 (100.0%)
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: 118 (100.0%)
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: 119 (100.0%)
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: 120 (100.0%)
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: 121 (100.0%)
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: 122 (100.0%)
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: 123 (100.0%)
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: 124 (100.0%)
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: 125 (100.0%)
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: 126 (100.0%)
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: 127 (100.0%)
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: 128 (100.0%)
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: 129 (100.0%)
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: 130 (100.0%)
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: 131 (100.0%)
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: 132 (100.0%)
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: 133 (100.0%)
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: 134 (100.0%)
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: 135 (100.0%)
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: 136 (100.0%)
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: 137 (100.0%)
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: 138 (100.0%)
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: 139 (100.0%)
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: 140 (100.0%)
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: 141 (100.0%)
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: 142 (100.0%)
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: 143 (100.0%)
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: 144 (100.0%)
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: 145 (100.0%)
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: 146 (100.0%)
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: 147 (100.0%)
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: 148 (100.0%)
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: 149 (100.0%)
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: 150 (100.0%)
756
+ Current task success rate: 1.0
757
+ Current total success rate: 1.0
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: 151 (100.0%)
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: 152 (100.0%)
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: 153 (100.0%)
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: 154 (100.0%)
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: 155 (100.0%)
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: 156 (100.0%)
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: 157 (100.0%)
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: 158 (100.0%)
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: 159 (100.0%)
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: 160 (100.0%)
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: 161 (100.0%)
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: 162 (100.0%)
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: 163 (100.0%)
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: 164 (100.0%)
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: 165 (100.0%)
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: 166 (100.0%)
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: 167 (100.0%)
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: 168 (100.0%)
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: 169 (100.0%)
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: 170 (100.0%)
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: 171 (100.0%)
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: 172 (100.0%)
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: 173 (100.0%)
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: 174 (100.0%)
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: 175 (100.0%)
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: 176 (100.0%)
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: 177 (100.0%)
893
+
894
+ Task: pick up the black bowl on the cookie box and place it on the plate
895
+ Success: True
896
+ # episodes completed so far: 178
897
+ # successes: 178 (100.0%)
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: 179 (100.0%)
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: 180 (100.0%)
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: 181 (100.0%)
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: 182 (100.0%)
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: 183 (100.0%)
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: 184 (100.0%)
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: 185 (100.0%)
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: 186 (100.0%)
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: 187 (100.0%)
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: 188 (100.0%)
948
+
949
+ Task: pick up the black bowl on the cookie box and place it on the plate
950
+ Success: True
951
+ # episodes completed so far: 189
952
+ # successes: 189 (100.0%)
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: 190 (100.0%)
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: 191 (100.0%)
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: 192 (100.0%)
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: 193 (100.0%)
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: 194 (100.0%)
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: 195 (100.0%)
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: 196 (100.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: 197 (100.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: 198 (100.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: 199 (100.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: 200 (100.0%)
1008
+ Current task success rate: 1.0
1009
+ Current total success rate: 1.0
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: 201 (100.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: 202 (100.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: 203 (100.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: 204 (100.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: 205 (100.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: 206 (100.0%)
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: 207 (100.0%)
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: 208 (100.0%)
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: 209 (100.0%)
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: 210 (100.0%)
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: 211 (100.0%)
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: 212 (100.0%)
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: 213 (100.0%)
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: 214 (100.0%)
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: 215 (100.0%)
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: 216 (100.0%)
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: 217 (100.0%)
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: 218 (100.0%)
1100
+
1101
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1102
+ Success: True
1103
+ # episodes completed so far: 219
1104
+ # successes: 219 (100.0%)
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: 220 (100.0%)
1110
+
1111
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1112
+ Success: False
1113
+ # episodes completed so far: 221
1114
+ # successes: 220 (99.5%)
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: 221 (99.5%)
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: 222 (99.6%)
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: 223 (99.6%)
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: 224 (99.6%)
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: 225 (99.6%)
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: 226 (99.6%)
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: 227 (99.6%)
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: 228 (99.6%)
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: 229 (99.6%)
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: 230 (99.6%)
1165
+
1166
+ Task: pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
1167
+ Success: True
1168
+ # episodes completed so far: 232
1169
+ # successes: 231 (99.6%)
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: 232 (99.6%)
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: 233 (99.6%)
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: 234 (99.6%)
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: 235 (99.6%)
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: 236 (99.6%)
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: 237 (99.6%)
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: 238 (99.6%)
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: 239 (99.6%)
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: 240 (99.6%)
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: 241 (99.6%)
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: 242 (99.6%)
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: 243 (99.6%)
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: 244 (99.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: 245 (99.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: 246 (99.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: 247 (99.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: 248 (99.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: 249 (99.6%)
1260
+ Current task success rate: 0.98
1261
+ Current total success rate: 0.996
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: 250 (99.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: 251 (99.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: 252 (99.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: 253 (99.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: 254 (99.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: 255 (99.6%)
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: 256 (99.6%)
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: 257 (99.6%)
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: 258 (99.6%)
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: 259 (99.6%)
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: 260 (99.6%)
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: 261 (99.6%)
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: 262 (99.6%)
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: 263 (99.6%)
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: 264 (99.6%)
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: 265 (99.6%)
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: 266 (99.6%)
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: 267 (99.6%)
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: 268 (99.6%)
1357
+
1358
+ Task: pick up the black bowl on the ramekin and place it on the plate
1359
+ Success: False
1360
+ # episodes completed so far: 270
1361
+ # successes: 268 (99.3%)
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: 269 (99.3%)
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: 270 (99.3%)
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: 271 (99.3%)
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: 272 (99.3%)
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: 273 (99.3%)
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: 274 (99.3%)
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: 275 (99.3%)
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: 276 (99.3%)
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: 277 (99.3%)
1407
+
1408
+ Task: pick up the black bowl on the ramekin and place it on the plate
1409
+ Success: True
1410
+ # episodes completed so far: 280
1411
+ # successes: 278 (99.3%)
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: 279 (99.3%)
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: 280 (99.3%)
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: 281 (99.3%)
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: 282 (99.3%)
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: 283 (99.3%)
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: 284 (99.3%)
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: 285 (99.3%)
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: 286 (99.3%)
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: 287 (99.3%)
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: 288 (99.3%)
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: 289 (99.3%)
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: 290 (99.3%)
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: 291 (99.3%)
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: 292 (99.3%)
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: 293 (99.3%)
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: 294 (99.3%)
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: 295 (99.3%)
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: 296 (99.3%)
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: 297 (99.3%)
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: 298 (99.3%)
1512
+ Current task success rate: 0.98
1513
+ Current total success rate: 0.9933333333333333
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: 299 (99.3%)
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: 300 (99.3%)
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: 301 (99.3%)
1529
+
1530
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1531
+ Success: True
1532
+ # episodes completed so far: 304
1533
+ # successes: 302 (99.3%)
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: 303 (99.3%)
1539
+
1540
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1541
+ Success: False
1542
+ # episodes completed so far: 306
1543
+ # successes: 303 (99.0%)
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: 304 (99.0%)
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: 305 (99.0%)
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: 306 (99.0%)
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: 307 (99.0%)
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: 308 (99.0%)
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: 309 (99.0%)
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: 310 (99.0%)
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: 311 (99.0%)
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: 312 (99.0%)
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: 313 (99.1%)
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: 314 (99.1%)
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: 315 (99.1%)
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: 316 (99.1%)
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: 317 (99.1%)
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: 318 (99.1%)
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: 319 (99.1%)
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: 320 (99.1%)
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: 321 (99.1%)
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: 322 (99.1%)
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: 323 (99.1%)
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: 324 (99.1%)
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: 325 (99.1%)
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: 326 (99.1%)
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: 327 (99.1%)
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: 328 (99.1%)
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: 329 (99.1%)
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: 330 (99.1%)
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: 331 (99.1%)
1684
+
1685
+ Task: pick up the black bowl next to the cookie box and place it on the plate
1686
+ Success: True
1687
+ # episodes completed so far: 335
1688
+ # successes: 332 (99.1%)
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: 333 (99.1%)
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: 334 (99.1%)
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: 335 (99.1%)
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: 336 (99.1%)
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: 337 (99.1%)
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: 338 (99.1%)
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: 339 (99.1%)
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: 340 (99.1%)
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: 341 (99.1%)
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: 342 (99.1%)
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: 343 (99.1%)
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: 344 (99.1%)
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: 345 (99.1%)
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: 346 (99.1%)
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: 347 (99.1%)
1764
+ Current task success rate: 0.98
1765
+ Current total success rate: 0.9914285714285714
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: 348 (99.1%)
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: 349 (99.1%)
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: 350 (99.2%)
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: 351 (99.2%)
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: 352 (99.2%)
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: 353 (99.2%)
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: 354 (99.2%)
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: 355 (99.2%)
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: 356 (99.2%)
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: 357 (99.2%)
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: 358 (99.2%)
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: 359 (99.2%)
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: 360 (99.2%)
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: 361 (99.2%)
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: 362 (99.2%)
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: 363 (99.2%)
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: 364 (99.2%)
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: 365 (99.2%)
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: 366 (99.2%)
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: 367 (99.2%)
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: 368 (99.2%)
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: 369 (99.2%)
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: 370 (99.2%)
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: 371 (99.2%)
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: 372 (99.2%)
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: 373 (99.2%)
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: 374 (99.2%)
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: 375 (99.2%)
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: 376 (99.2%)
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: 377 (99.2%)
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: 378 (99.2%)
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: 379 (99.2%)
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: 380 (99.2%)
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: 381 (99.2%)
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: 382 (99.2%)
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: 383 (99.2%)
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: 384 (99.2%)
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: 385 (99.2%)
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: 386 (99.2%)
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: 387 (99.2%)
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: 388 (99.2%)
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: 389 (99.2%)
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: 390 (99.2%)
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: 391 (99.2%)
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: 392 (99.2%)
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: 393 (99.2%)
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: 394 (99.2%)
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: 395 (99.2%)
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: 396 (99.2%)
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: 397 (99.2%)
2016
+ Current task success rate: 1.0
2017
+ Current total success rate: 0.9925
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: 398 (99.3%)
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: 399 (99.3%)
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: 400 (99.3%)
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: 401 (99.3%)
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: 402 (99.3%)
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: 403 (99.3%)
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: 404 (99.3%)
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: 405 (99.3%)
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: 406 (99.3%)
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: 407 (99.3%)
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: 408 (99.3%)
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: 409 (99.3%)
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: 410 (99.3%)
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: 411 (99.3%)
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: 412 (99.3%)
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: 413 (99.3%)
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: 414 (99.3%)
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: 415 (99.3%)
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: 416 (99.3%)
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: 417 (99.3%)
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: 418 (99.3%)
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: 419 (99.3%)
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: 420 (99.3%)
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: 421 (99.3%)
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: 422 (99.3%)
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: 423 (99.3%)
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: 424 (99.3%)
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: 425 (99.3%)
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: 426 (99.3%)
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: 427 (99.3%)
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: 428 (99.3%)
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: 429 (99.3%)
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: 430 (99.3%)
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: 431 (99.3%)
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: 432 (99.3%)
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: 433 (99.3%)
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: 434 (99.3%)
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: 435 (99.3%)
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: 436 (99.3%)
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: 437 (99.3%)
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: 438 (99.3%)
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: 439 (99.3%)
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: 440 (99.3%)
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: 441 (99.3%)
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: 442 (99.3%)
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: 443 (99.3%)
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: 444 (99.3%)
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: 445 (99.3%)
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: 446 (99.3%)
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: 447 (99.3%)
2268
+ Current task success rate: 1.0
2269
+ Current total success rate: 0.9933333333333333
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: 448 (99.3%)
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: 449 (99.3%)
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: 450 (99.3%)
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: 451 (99.3%)
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: 452 (99.3%)
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: 453 (99.3%)
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: 454 (99.3%)
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: 455 (99.3%)
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: 456 (99.3%)
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: 457 (99.3%)
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: 458 (99.3%)
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: 459 (99.4%)
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: 460 (99.4%)
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: 461 (99.4%)
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: 462 (99.4%)
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: 463 (99.4%)
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: 464 (99.4%)
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: 465 (99.4%)
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: 466 (99.4%)
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: 467 (99.4%)
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: 468 (99.4%)
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: 469 (99.4%)
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: 470 (99.4%)
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: 471 (99.4%)
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: 472 (99.4%)
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: 473 (99.4%)
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: 474 (99.4%)
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: 475 (99.4%)
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: 476 (99.4%)
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: 477 (99.4%)
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: 478 (99.4%)
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: 479 (99.4%)
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: 480 (99.4%)
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: 481 (99.4%)
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: 482 (99.4%)
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: 483 (99.4%)
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: 484 (99.4%)
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: 485 (99.4%)
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: 486 (99.4%)
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: 487 (99.4%)
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: 488 (99.4%)
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: 489 (99.4%)
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: 490 (99.4%)
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: 491 (99.4%)
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: 492 (99.4%)
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: 493 (99.4%)
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: 494 (99.4%)
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: 495 (99.4%)
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: 496 (99.4%)
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: 497 (99.4%)
2520
+ Current task success rate: 1.0
2521
+ Current total success rate: 0.994
libero_spatial_2B/starvla_qwen_pi/libero_spatial.log ADDED
@@ -0,0 +1,300 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Step 100, Loss: {'mse_loss': 3794.471435546875, 'totoal_loss': 3794.471435546875, 'data_time': 0.014249018859118223, 'model_time': 0.7571034780703485, 'learning_rate': 2.0000000000000002e-07, 'epoch': 0.24})
2
+ Step 200, Loss: {'mse_loss': 1284.0572509765625, 'totoal_loss': 1284.0572509765625, 'data_time': 0.01472738990560174, 'model_time': 0.7447184531483799, 'learning_rate': 4.0000000000000003e-07, 'epoch': 0.48})
3
+ Step 300, Loss: {'mse_loss': 1.2443957328796387, 'totoal_loss': 1.2443957328796387, 'data_time': 0.014090852113440633, 'model_time': 0.7362281151581556, 'learning_rate': 6.000000000000001e-07, 'epoch': 0.73})
4
+ Step 400, Loss: {'mse_loss': 1.1150784492492676, 'totoal_loss': 1.1150784492492676, 'data_time': 0.019134122179821134, 'model_time': 0.748344540130347, 'learning_rate': 8.000000000000001e-07, 'epoch': 0.97})
5
+ Step 500, Loss: {'mse_loss': 1.0454421043395996, 'totoal_loss': 1.0454421043395996, 'data_time': 0.007864821003749967, 'model_time': 0.7216012780554593, 'learning_rate': 1.0000000000000002e-06, 'epoch': 1.21})
6
+ Step 600, Loss: {'mse_loss': 1.0342153310775757, 'totoal_loss': 1.0342153310775757, 'data_time': 0.008724539075046778, 'model_time': 0.7476963358931243, 'learning_rate': 1.2000000000000002e-06, 'epoch': 1.45})
7
+ Step 700, Loss: {'mse_loss': 0.9204800724983215, 'totoal_loss': 0.9204800724983215, 'data_time': 0.007648308062925935, 'model_time': 0.7364662489853799, 'learning_rate': 1.4000000000000001e-06, 'epoch': 1.69})
8
+ Step 800, Loss: {'mse_loss': 0.8208611011505127, 'totoal_loss': 0.8208611011505127, 'data_time': 0.00994275719858706, 'model_time': 0.7324256179854274, 'learning_rate': 1.6000000000000001e-06, 'epoch': 1.94})
9
+ Step 900, Loss: {'mse_loss': 0.5615251660346985, 'totoal_loss': 0.5615251660346985, 'data_time': 0.008982657920569181, 'model_time': 0.7341715339571238, 'learning_rate': 1.8000000000000001e-06, 'epoch': 2.18})
10
+ Step 1000, Loss: {'mse_loss': 0.5385473370552063, 'totoal_loss': 0.5385473370552063, 'data_time': 0.009218459948897362, 'model_time': 0.8059495519846678, 'learning_rate': 2.0000000000000003e-06, 'epoch': 2.42})
11
+ Step 1100, Loss: {'mse_loss': 0.3815850615501404, 'totoal_loss': 0.3815850615501404, 'data_time': 0.007481761975213885, 'model_time': 0.7880301570985466, 'learning_rate': 2.2e-06, 'epoch': 2.66})
12
+ Step 1200, Loss: {'mse_loss': 0.193947896361351, 'totoal_loss': 0.193947896361351, 'data_time': 0.00744609790854156, 'model_time': 0.728604496922344, 'learning_rate': 2.4000000000000003e-06, 'epoch': 2.91})
13
+ Step 1300, Loss: {'mse_loss': 0.18042601644992828, 'totoal_loss': 0.18042601644992828, 'data_time': 0.000328573165461421, 'model_time': 0.8059555029030889, 'learning_rate': 2.6e-06, 'epoch': 3.15})
14
+ Step 1400, Loss: {'mse_loss': 0.23065602779388428, 'totoal_loss': 0.23065602779388428, 'data_time': 0.0007207188755273819, 'model_time': 0.8293370201718062, 'learning_rate': 2.8000000000000003e-06, 'epoch': 3.39})
15
+ Step 1500, Loss: {'mse_loss': 0.2566322684288025, 'totoal_loss': 0.2566322684288025, 'data_time': 0.0007158671505749226, 'model_time': 0.7370293179992586, 'learning_rate': 3e-06, 'epoch': 3.63})
16
+ Step 1600, Loss: {'mse_loss': 0.2169344574213028, 'totoal_loss': 0.2169344574213028, 'data_time': 0.00035960995592176914, 'model_time': 0.7425515840295702, 'learning_rate': 3.2000000000000003e-06, 'epoch': 3.87})
17
+ Step 1700, Loss: {'mse_loss': 0.30182352662086487, 'totoal_loss': 0.30182352662086487, 'data_time': 0.013736567925661802, 'model_time': 0.7365979538299143, 'learning_rate': 3.4000000000000005e-06, 'epoch': 4.12})
18
+ Step 1800, Loss: {'mse_loss': 0.15766024589538574, 'totoal_loss': 0.15766024589538574, 'data_time': 0.019642804050818086, 'model_time': 0.7855002649594098, 'learning_rate': 3.6000000000000003e-06, 'epoch': 4.36})
19
+ Step 1900, Loss: {'mse_loss': 0.19391418993473053, 'totoal_loss': 0.19391418993473053, 'data_time': 0.020538756856694818, 'model_time': 0.7342257651034743, 'learning_rate': 3.8000000000000005e-06, 'epoch': 4.6})
20
+ Step 2000, Loss: {'mse_loss': 0.19029566645622253, 'totoal_loss': 0.19029566645622253, 'data_time': 0.014303489122539759, 'model_time': 0.8119452078826725, 'learning_rate': 4.000000000000001e-06, 'epoch': 4.84})
21
+ Step 2100, Loss: {'mse_loss': 0.1521812230348587, 'totoal_loss': 0.1521812230348587, 'data_time': 0.011643619043752551, 'model_time': 0.7801253839861602, 'learning_rate': 4.2000000000000004e-06, 'epoch': 5.08})
22
+ Step 2200, Loss: {'mse_loss': 0.151506707072258, 'totoal_loss': 0.151506707072258, 'data_time': 0.009755566017702222, 'model_time': 0.7632500419858843, 'learning_rate': 4.4e-06, 'epoch': 5.33})
23
+ Step 2300, Loss: {'mse_loss': 0.1424315720796585, 'totoal_loss': 0.1424315720796585, 'data_time': 0.0071513301227241755, 'model_time': 0.7569590308703482, 'learning_rate': 4.600000000000001e-06, 'epoch': 5.57})
24
+ Step 2400, Loss: {'mse_loss': 0.12080242484807968, 'totoal_loss': 0.12080242484807968, 'data_time': 0.010013628983870149, 'model_time': 0.7185878101736307, 'learning_rate': 4.800000000000001e-06, 'epoch': 5.81})
25
+ Step 2500, Loss: {'mse_loss': 0.17403723299503326, 'totoal_loss': 0.17403723299503326, 'data_time': 0.0003586441744118929, 'model_time': 0.7721209691371769, 'learning_rate': 5e-06, 'epoch': 6.05})
26
+ Step 2600, Loss: {'mse_loss': 0.14328527450561523, 'totoal_loss': 0.14328527450561523, 'data_time': 0.00036373594775795937, 'model_time': 0.7206658150535077, 'learning_rate': 5.2e-06, 'epoch': 6.3})
27
+ Step 2700, Loss: {'mse_loss': 0.16563016176223755, 'totoal_loss': 0.16563016176223755, 'data_time': 0.00039362511597573757, 'model_time': 0.745157710975036, 'learning_rate': 5.400000000000001e-06, 'epoch': 6.54})
28
+ Step 2800, Loss: {'mse_loss': 0.12544719874858856, 'totoal_loss': 0.12544719874858856, 'data_time': 0.0003443700261414051, 'model_time': 0.7423051800578833, 'learning_rate': 5.600000000000001e-06, 'epoch': 6.78})
29
+ Step 2900, Loss: {'mse_loss': 0.08649276196956635, 'totoal_loss': 0.08649276196956635, 'data_time': 0.000378923024982214, 'model_time': 0.7860711619723588, 'learning_rate': 5.8e-06, 'epoch': 7.02})
30
+ Step 3000, Loss: {'mse_loss': 0.10055341571569443, 'totoal_loss': 0.10055341571569443, 'data_time': 0.00040250481106340885, 'model_time': 0.8467358981724828, 'learning_rate': 6e-06, 'epoch': 7.26})
31
+ Step 3100, Loss: {'mse_loss': 0.14137960970401764, 'totoal_loss': 0.14137960970401764, 'data_time': 0.00038857199251651764, 'model_time': 0.7193355238996446, 'learning_rate': 6.200000000000001e-06, 'epoch': 7.51})
32
+ Step 3200, Loss: {'mse_loss': 0.13362520933151245, 'totoal_loss': 0.13362520933151245, 'data_time': 0.00035075610503554344, 'model_time': 0.7956228060647845, 'learning_rate': 6.4000000000000006e-06, 'epoch': 7.75})
33
+ Step 3300, Loss: {'mse_loss': 0.11320210993289948, 'totoal_loss': 0.11320210993289948, 'data_time': 0.00031704502180218697, 'model_time': 0.7056753558572382, 'learning_rate': 6.600000000000001e-06, 'epoch': 7.99})
34
+ Step 3400, Loss: {'mse_loss': 0.16698569059371948, 'totoal_loss': 0.16698569059371948, 'data_time': 0.009859296027570963, 'model_time': 0.8166318431030959, 'learning_rate': 6.800000000000001e-06, 'epoch': 8.23})
35
+ Step 3500, Loss: {'mse_loss': 0.1114368811249733, 'totoal_loss': 0.1114368811249733, 'data_time': 0.008781706914305687, 'model_time': 0.7603109560441226, 'learning_rate': 7e-06, 'epoch': 8.47})
36
+ Step 3600, Loss: {'mse_loss': 0.07536527514457703, 'totoal_loss': 0.07536527514457703, 'data_time': 0.00916769402101636, 'model_time': 0.7630828358232975, 'learning_rate': 7.2000000000000005e-06, 'epoch': 8.72})
37
+ Step 3700, Loss: {'mse_loss': 0.09272727370262146, 'totoal_loss': 0.09272727370262146, 'data_time': 0.008753770031034946, 'model_time': 0.737770085921511, 'learning_rate': 7.4e-06, 'epoch': 8.96})
38
+ Step 3800, Loss: {'mse_loss': 0.11254985630512238, 'totoal_loss': 0.11254985630512238, 'data_time': 0.00748066883534193, 'model_time': 0.7263428890146315, 'learning_rate': 7.600000000000001e-06, 'epoch': 9.2})
39
+ Step 3900, Loss: {'mse_loss': 0.08918451517820358, 'totoal_loss': 0.08918451517820358, 'data_time': 0.0071777720004320145, 'model_time': 0.7342519159428775, 'learning_rate': 7.800000000000002e-06, 'epoch': 9.44})
40
+ Step 4000, Loss: {'mse_loss': 0.14105191826820374, 'totoal_loss': 0.14105191826820374, 'data_time': 0.00795172480866313, 'model_time': 0.7744615208357573, 'learning_rate': 8.000000000000001e-06, 'epoch': 9.69})
41
+ Step 4100, Loss: {'mse_loss': 0.09945701062679291, 'totoal_loss': 0.09945701062679291, 'data_time': 0.01243121293373406, 'model_time': 0.7168173210229725, 'learning_rate': 8.2e-06, 'epoch': 9.93})
42
+ Step 4200, Loss: {'mse_loss': 0.10275322943925858, 'totoal_loss': 0.10275322943925858, 'data_time': 0.011571218958124518, 'model_time': 0.8090661070309579, 'learning_rate': 8.400000000000001e-06, 'epoch': 10.17})
43
+ Step 4300, Loss: {'mse_loss': 0.09041430801153183, 'totoal_loss': 0.09041430801153183, 'data_time': 0.008645336143672466, 'model_time': 0.7556459920015186, 'learning_rate': 8.6e-06, 'epoch': 10.41})
44
+ Step 4400, Loss: {'mse_loss': 0.16755114495754242, 'totoal_loss': 0.16755114495754242, 'data_time': 0.011340998113155365, 'model_time': 0.7400190990883857, 'learning_rate': 8.8e-06, 'epoch': 10.65})
45
+ Step 4500, Loss: {'mse_loss': 0.10156528651714325, 'totoal_loss': 0.10156528651714325, 'data_time': 0.01004222990013659, 'model_time': 0.830319725908339, 'learning_rate': 9e-06, 'epoch': 10.9})
46
+ Step 4600, Loss: {'mse_loss': 0.16483744978904724, 'totoal_loss': 0.16483744978904724, 'data_time': 0.0004386119544506073, 'model_time': 1.0121101629920304, 'learning_rate': 9.200000000000002e-06, 'epoch': 11.14})
47
+ Step 4700, Loss: {'mse_loss': 0.05428924411535263, 'totoal_loss': 0.05428924411535263, 'data_time': 0.0005667801015079021, 'model_time': 0.7830101728904992, 'learning_rate': 9.4e-06, 'epoch': 11.38})
48
+ Step 4800, Loss: {'mse_loss': 0.1584121733903885, 'totoal_loss': 0.1584121733903885, 'data_time': 0.0003702370449900627, 'model_time': 0.7698897211812437, 'learning_rate': 9.600000000000001e-06, 'epoch': 11.62})
49
+ Step 4900, Loss: {'mse_loss': 0.09654010087251663, 'totoal_loss': 0.09654010087251663, 'data_time': 0.0004106259439140558, 'model_time': 0.7406456710305065, 'learning_rate': 9.800000000000001e-06, 'epoch': 11.86})
50
+ Step 5000, Loss: {'mse_loss': 0.07786589860916138, 'totoal_loss': 0.07786589860916138, 'data_time': 0.014452029950916767, 'model_time': 0.8230068190023303, 'learning_rate': 1e-05, 'epoch': 12.11})
51
+ Step 5100, Loss: {'mse_loss': 0.07787454128265381, 'totoal_loss': 0.07787454128265381, 'data_time': 0.016491837101057172, 'model_time': 0.7635719131212682, 'learning_rate': 9.999615090493604e-06, 'epoch': 12.35})
52
+ Step 5200, Loss: {'mse_loss': 0.11475516110658646, 'totoal_loss': 0.11475516110658646, 'data_time': 0.015011226991191506, 'model_time': 0.7580305740702897, 'learning_rate': 9.998460422756089e-06, 'epoch': 12.59})
53
+ Step 5300, Loss: {'mse_loss': 0.10438837110996246, 'totoal_loss': 0.10438837110996246, 'data_time': 0.015107284998521209, 'model_time': 0.8138397128786892, 'learning_rate': 9.996536179122874e-06, 'epoch': 12.83})
54
+ Step 5400, Loss: {'mse_loss': 0.10287881642580032, 'totoal_loss': 0.10287881642580032, 'data_time': 0.01219948404468596, 'model_time': 0.758510721148923, 'learning_rate': 9.993842663454337e-06, 'epoch': 13.08})
55
+ Step 5500, Loss: {'mse_loss': 0.09251940995454788, 'totoal_loss': 0.09251940995454788, 'data_time': 0.007936644135043025, 'model_time': 0.7598996490705758, 'learning_rate': 9.990380301087824e-06, 'epoch': 13.32})
56
+ Step 5600, Loss: {'mse_loss': 0.12677624821662903, 'totoal_loss': 0.12677624821662903, 'data_time': 0.007738539949059486, 'model_time': 0.9838642461691052, 'learning_rate': 9.986149638770493e-06, 'epoch': 13.56})
57
+ Step 5700, Loss: {'mse_loss': 0.05030045658349991, 'totoal_loss': 0.05030045658349991, 'data_time': 0.00767348101362586, 'model_time': 0.7779177010525018, 'learning_rate': 9.981151344572967e-06, 'epoch': 13.8})
58
+ Step 5800, Loss: {'mse_loss': 0.0836673304438591, 'totoal_loss': 0.0836673304438591, 'data_time': 0.0004625448491424322, 'model_time': 0.7567031881771982, 'learning_rate': 9.975386207783839e-06, 'epoch': 14.04})
59
+ Step 5900, Loss: {'mse_loss': 0.08735237270593643, 'totoal_loss': 0.08735237270593643, 'data_time': 0.0003803079016506672, 'model_time': 0.7745149291586131, 'learning_rate': 9.968855138785041e-06, 'epoch': 14.29})
60
+ Step 6000, Loss: {'mse_loss': 0.08044640719890594, 'totoal_loss': 0.08044640719890594, 'data_time': 0.00037207012064754963, 'model_time': 0.7965231460984796, 'learning_rate': 9.961559168908081e-06, 'epoch': 14.53})
61
+ Step 6100, Loss: {'mse_loss': 0.05149032920598984, 'totoal_loss': 0.05149032920598984, 'data_time': 0.00036906986497342587, 'model_time': 0.7487745999824256, 'learning_rate': 9.953499450271174e-06, 'epoch': 14.77})
62
+ Step 6200, Loss: {'mse_loss': 0.05739091709256172, 'totoal_loss': 0.05739091709256172, 'data_time': 0.013723131967708468, 'model_time': 0.7437640889547765, 'learning_rate': 9.944677255597332e-06, 'epoch': 15.01})
63
+ Step 6300, Loss: {'mse_loss': 0.0810936912894249, 'totoal_loss': 0.0810936912894249, 'data_time': 0.014830616069957614, 'model_time': 0.7452138918451965, 'learning_rate': 9.935093978013357e-06, 'epoch': 15.25})
64
+ Step 6400, Loss: {'mse_loss': 0.049445535987615585, 'totoal_loss': 0.049445535987615585, 'data_time': 0.014388408046215773, 'model_time': 0.7282904870808125, 'learning_rate': 9.924751130829878e-06, 'epoch': 15.5})
65
+ Step 6500, Loss: {'mse_loss': 0.03728165477514267, 'totoal_loss': 0.03728165477514267, 'data_time': 0.014662493020296097, 'model_time': 0.7386209429241717, 'learning_rate': 9.91365034730236e-06, 'epoch': 15.74})
66
+ Step 6600, Loss: {'mse_loss': 0.06861023604869843, 'totoal_loss': 0.06861023604869843, 'data_time': 0.013494226150214672, 'model_time': 0.817222738172859, 'learning_rate': 9.901793380373204e-06, 'epoch': 15.98})
67
+ Step 6700, Loss: {'mse_loss': 0.07006385177373886, 'totoal_loss': 0.07006385177373886, 'data_time': 0.016360312001779675, 'model_time': 0.7681889848317951, 'learning_rate': 9.889182102394944e-06, 'epoch': 16.22})
68
+ Step 6800, Loss: {'mse_loss': 0.12695565819740295, 'totoal_loss': 0.12695565819740295, 'data_time': 0.016338942106813192, 'model_time': 0.7532789399847388, 'learning_rate': 9.875818504834564e-06, 'epoch': 16.46})
69
+ Step 6900, Loss: {'mse_loss': 0.08161979168653488, 'totoal_loss': 0.08161979168653488, 'data_time': 0.014050757046788931, 'model_time': 0.7625002260319889, 'learning_rate': 9.861704697959036e-06, 'epoch': 16.71})
70
+ Step 7000, Loss: {'mse_loss': 0.08039968460798264, 'totoal_loss': 0.08039968460798264, 'data_time': 0.02148540411144495, 'model_time': 0.7187313979957253, 'learning_rate': 9.846842910502077e-06, 'epoch': 16.95})
71
+ Step 7100, Loss: {'mse_loss': 0.02087082341313362, 'totoal_loss': 0.02087082341313362, 'data_time': 0.000530189136043191, 'model_time': 0.738738605985418, 'learning_rate': 9.831235489312212e-06, 'epoch': 17.19})
72
+ Step 7200, Loss: {'mse_loss': 0.04687841609120369, 'totoal_loss': 0.04687841609120369, 'data_time': 0.0003664360847324133, 'model_time': 0.7323263441212475, 'learning_rate': 9.814884898982168e-06, 'epoch': 17.43})
73
+ Step 7300, Loss: {'mse_loss': 0.06682813167572021, 'totoal_loss': 0.06682813167572021, 'data_time': 0.0004935250617563725, 'model_time': 0.7457712660543621, 'learning_rate': 9.797793721459709e-06, 'epoch': 17.68})
74
+ Step 7400, Loss: {'mse_loss': 0.056752096861600876, 'totoal_loss': 0.056752096861600876, 'data_time': 0.00042577204294502735, 'model_time': 0.7430014479905367, 'learning_rate': 9.779964655639886e-06, 'epoch': 17.92})
75
+ Step 7500, Loss: {'mse_loss': 0.06975953280925751, 'totoal_loss': 0.06975953280925751, 'data_time': 0.006866951938718557, 'model_time': 0.8071959400549531, 'learning_rate': 9.761400516938874e-06, 'epoch': 18.16})
76
+ Step 7600, Loss: {'mse_loss': 0.048927392810583115, 'totoal_loss': 0.048927392810583115, 'data_time': 0.00720341014675796, 'model_time': 0.712639122037217, 'learning_rate': 9.74210423684938e-06, 'epoch': 18.4})
77
+ Step 7700, Loss: {'mse_loss': 0.07839373499155045, 'totoal_loss': 0.07839373499155045, 'data_time': 0.0077787640038877726, 'model_time': 0.7246799981221557, 'learning_rate': 9.722078862477715e-06, 'epoch': 18.64})
78
+ Step 7800, Loss: {'mse_loss': 0.053899649530649185, 'totoal_loss': 0.053899649530649185, 'data_time': 0.008514801040291786, 'model_time': 0.7296901750378311, 'learning_rate': 9.701327556062637e-06, 'epoch': 18.89})
79
+ Step 7900, Loss: {'mse_loss': 0.03417319059371948, 'totoal_loss': 0.03417319059371948, 'data_time': 0.0004148408770561218, 'model_time': 0.7487650162074715, 'learning_rate': 9.679853594475985e-06, 'epoch': 19.13})
80
+ Step 8000, Loss: {'mse_loss': 0.05816785991191864, 'totoal_loss': 0.05816785991191864, 'data_time': 0.00040705781430006027, 'model_time': 0.74737882707268, 'learning_rate': 9.657660368705225e-06, 'epoch': 19.37})
81
+ Step 8100, Loss: {'mse_loss': 0.0326114147901535, 'totoal_loss': 0.0326114147901535, 'data_time': 0.00037763011641800404, 'model_time': 0.7394175769295543, 'learning_rate': 9.634751383317983e-06, 'epoch': 19.61})
82
+ Step 8200, Loss: {'mse_loss': 0.06698407977819443, 'totoal_loss': 0.06698407977819443, 'data_time': 0.00037500192411243916, 'model_time': 0.7733213440515101, 'learning_rate': 9.611130255908619e-06, 'epoch': 19.85})
83
+ Step 8300, Loss: {'mse_loss': 0.04357622563838959, 'totoal_loss': 0.04357622563838959, 'data_time': 0.02009531087242067, 'model_time': 0.7467359029687941, 'learning_rate': 9.586800716526974e-06, 'epoch': 20.1})
84
+ Step 8400, Loss: {'mse_loss': 0.04547147452831268, 'totoal_loss': 0.04547147452831268, 'data_time': 0.020878880051895976, 'model_time': 0.7619085090700537, 'learning_rate': 9.561766607089355e-06, 'epoch': 20.34})
85
+ Step 8500, Loss: {'mse_loss': 0.0722801685333252, 'totoal_loss': 0.0722801685333252, 'data_time': 0.027702017920091748, 'model_time': 0.8166799850296229, 'learning_rate': 9.536031880771846e-06, 'epoch': 20.58})
86
+ Step 8600, Loss: {'mse_loss': 0.05015372857451439, 'totoal_loss': 0.05015372857451439, 'data_time': 0.025347216986119747, 'model_time': 0.7599556290078908, 'learning_rate': 9.50960060138606e-06, 'epoch': 20.82})
87
+ Step 8700, Loss: {'mse_loss': 0.030499868094921112, 'totoal_loss': 0.030499868094921112, 'data_time': 0.010489800944924355, 'model_time': 0.7133721860591322, 'learning_rate': 9.482476942737411e-06, 'epoch': 21.07})
88
+ Step 8800, Loss: {'mse_loss': 0.07207387685775757, 'totoal_loss': 0.07207387685775757, 'data_time': 0.008698324905708432, 'model_time': 0.7633058670908213, 'learning_rate': 9.45466518796603e-06, 'epoch': 21.31})
89
+ Step 8900, Loss: {'mse_loss': 0.08172648400068283, 'totoal_loss': 0.08172648400068283, 'data_time': 0.009951811050996184, 'model_time': 0.780352019937709, 'learning_rate': 9.426169728870399e-06, 'epoch': 21.55})
90
+ Step 9000, Loss: {'mse_loss': 0.06439992785453796, 'totoal_loss': 0.06439992785453796, 'data_time': 0.007962038042023778, 'model_time': 0.7642167538870126, 'learning_rate': 9.396995065213835e-06, 'epoch': 21.79})
91
+ Step 9100, Loss: {'mse_loss': 0.07880406081676483, 'totoal_loss': 0.07880406081676483, 'data_time': 0.0003681329544633627, 'model_time': 0.7523540579713881, 'learning_rate': 9.367145804013938e-06, 'epoch': 22.03})
92
+ Step 9200, Loss: {'mse_loss': 0.08117153495550156, 'totoal_loss': 0.08117153495550156, 'data_time': 0.0004195908550173044, 'model_time': 0.7344796799588948, 'learning_rate': 9.336626658815071e-06, 'epoch': 22.28})
93
+ Step 9300, Loss: {'mse_loss': 0.04620126262307167, 'totoal_loss': 0.04620126262307167, 'data_time': 0.00037842802703380585, 'model_time': 0.76879783696495, 'learning_rate': 9.305442448944056e-06, 'epoch': 22.52})
94
+ Step 9400, Loss: {'mse_loss': 0.05562726408243179, 'totoal_loss': 0.05562726408243179, 'data_time': 0.00032077403739094734, 'model_time': 0.7293392140418291, 'learning_rate': 9.273598098749124e-06, 'epoch': 22.76})
95
+ Step 9500, Loss: {'mse_loss': 0.059940747916698456, 'totoal_loss': 0.059940747916698456, 'data_time': 1.7271537319757044, 'model_time': 1.5728472149930894, 'learning_rate': 9.241098636822324e-06, 'epoch': 23.0})
96
+ Step 9600, Loss: {'mse_loss': 0.06886911392211914, 'totoal_loss': 0.06886911392211914, 'data_time': 0.00042895087972283363, 'model_time': 0.7418681879062206, 'learning_rate': 9.207949195205442e-06, 'epoch': 23.24})
97
+ Step 9700, Loss: {'mse_loss': 0.040525540709495544, 'totoal_loss': 0.040525540709495544, 'data_time': 0.000439157010987401, 'model_time': 0.7750196789857, 'learning_rate': 9.174155008579588e-06, 'epoch': 23.49})
98
+ Step 9800, Loss: {'mse_loss': 0.05380015820264816, 'totoal_loss': 0.05380015820264816, 'data_time': 0.0004284000024199486, 'model_time': 0.7508676249999553, 'learning_rate': 9.139721413438583e-06, 'epoch': 23.73})
99
+ Step 9900, Loss: {'mse_loss': 0.06000461429357529, 'totoal_loss': 0.06000461429357529, 'data_time': 0.0003899021539837122, 'model_time': 0.7356438289862126, 'learning_rate': 9.104653847246273e-06, 'epoch': 23.97})
100
+ Step 10000, Loss: {'mse_loss': 0.06356765329837799, 'totoal_loss': 0.06356765329837799, 'data_time': 0.007799481973052025, 'model_time': 0.8449898450635374, 'learning_rate': 9.068957847577869e-06, 'epoch': 24.21})
101
+ Step 10100, Loss: {'mse_loss': 0.050797395408153534, 'totoal_loss': 0.050797395408153534, 'data_time': 0.007212578086182475, 'model_time': 0.7469582441262901, 'learning_rate': 9.032639051245524e-06, 'epoch': 24.46})
102
+ Step 10200, Loss: {'mse_loss': 0.045726608484983444, 'totoal_loss': 0.045726608484983444, 'data_time': 0.008438059128820896, 'model_time': 0.7386908440385014, 'learning_rate': 8.995703193408199e-06, 'epoch': 24.7})
103
+ Step 10300, Loss: {'mse_loss': 0.03160233050584793, 'totoal_loss': 0.03160233050584793, 'data_time': 0.008332415949553251, 'model_time': 0.77268783794716, 'learning_rate': 8.958156106666017e-06, 'epoch': 24.94})
104
+ Step 10400, Loss: {'mse_loss': 0.027473757043480873, 'totoal_loss': 0.027473757043480873, 'data_time': 0.007891072891652584, 'model_time': 0.7752252581994981, 'learning_rate': 8.92000372013924e-06, 'epoch': 25.18})
105
+ Step 10500, Loss: {'mse_loss': 0.05516495183110237, 'totoal_loss': 0.05516495183110237, 'data_time': 0.007864418905228376, 'model_time': 0.757400015136227, 'learning_rate': 8.881252058531973e-06, 'epoch': 25.42})
106
+ Step 10600, Loss: {'mse_loss': 0.08759377896785736, 'totoal_loss': 0.08759377896785736, 'data_time': 0.008140777936205268, 'model_time': 0.7470686128363013, 'learning_rate': 8.841907241180809e-06, 'epoch': 25.67})
107
+ Step 10700, Loss: {'mse_loss': 0.05317174270749092, 'totoal_loss': 0.05317174270749092, 'data_time': 0.008205506950616837, 'model_time': 0.7478007040917873, 'learning_rate': 8.801975481088507e-06, 'epoch': 25.91})
108
+ Step 10800, Loss: {'mse_loss': 0.027807602658867836, 'totoal_loss': 0.027807602658867836, 'data_time': 0.007210573880001903, 'model_time': 0.7704672832041979, 'learning_rate': 8.761463083942889e-06, 'epoch': 26.15})
109
+ Step 10900, Loss: {'mse_loss': 0.040510501712560654, 'totoal_loss': 0.040510501712560654, 'data_time': 0.01508955517783761, 'model_time': 0.7339808798860759, 'learning_rate': 8.720376447121098e-06, 'epoch': 26.39})
110
+ Step 11000, Loss: {'mse_loss': 0.08507373183965683, 'totoal_loss': 0.08507373183965683, 'data_time': 0.007449188036844134, 'model_time': 0.7484439450781792, 'learning_rate': 8.678722058679382e-06, 'epoch': 26.63})
111
+ Step 11100, Loss: {'mse_loss': 0.027452245354652405, 'totoal_loss': 0.027452245354652405, 'data_time': 0.008941748877987266, 'model_time': 0.731532070087269, 'learning_rate': 8.636506496328546e-06, 'epoch': 26.88})
112
+ Step 11200, Loss: {'mse_loss': 0.03972136974334717, 'totoal_loss': 0.03972136974334717, 'data_time': 0.014335259795188904, 'model_time': 0.7403127080760896, 'learning_rate': 8.593736426395268e-06, 'epoch': 27.12})
113
+ Step 11300, Loss: {'mse_loss': 0.06724163889884949, 'totoal_loss': 0.06724163889884949, 'data_time': 0.014023429015651345, 'model_time': 0.7335262889973819, 'learning_rate': 8.550418602769392e-06, 'epoch': 27.36})
114
+ Step 11400, Loss: {'mse_loss': 0.020141109824180603, 'totoal_loss': 0.020141109824180603, 'data_time': 0.014104404952377081, 'model_time': 0.7741627050563693, 'learning_rate': 8.506559865837425e-06, 'epoch': 27.6})
115
+ Step 11500, Loss: {'mse_loss': 0.022462869063019753, 'totoal_loss': 0.022462869063019753, 'data_time': 0.020480212988331914, 'model_time': 0.7779097200836986, 'learning_rate': 8.462167141402359e-06, 'epoch': 27.85})
116
+ Step 11600, Loss: {'mse_loss': 0.017363833263516426, 'totoal_loss': 0.017363833263516426, 'data_time': 0.02526518004015088, 'model_time': 0.8181822989135981, 'learning_rate': 8.417247439589994e-06, 'epoch': 28.09})
117
+ Step 11700, Loss: {'mse_loss': 0.02715466357767582, 'totoal_loss': 0.02715466357767582, 'data_time': 0.019702255027368665, 'model_time': 0.7654628059826791, 'learning_rate': 8.371807853741978e-06, 'epoch': 28.33})
118
+ Step 11800, Loss: {'mse_loss': 0.05228758603334427, 'totoal_loss': 0.05228758603334427, 'data_time': 0.022811389062553644, 'model_time': 0.7587473639287055, 'learning_rate': 8.325855559295663e-06, 'epoch': 28.57})
119
+ Step 11900, Loss: {'mse_loss': 0.02058427967131138, 'totoal_loss': 0.02058427967131138, 'data_time': 0.02870767517015338, 'model_time': 0.7428998709656298, 'learning_rate': 8.279397812651042e-06, 'epoch': 28.81})
120
+ Step 12000, Loss: {'mse_loss': 0.030830610543489456, 'totoal_loss': 0.030830610543489456, 'data_time': 0.009354461915791035, 'model_time': 0.7642502610106021, 'learning_rate': 8.232441950024864e-06, 'epoch': 29.06})
121
+ Step 12100, Loss: {'mse_loss': 0.06604601442813873, 'totoal_loss': 0.06604601442813873, 'data_time': 0.008838087087497115, 'model_time': 0.8419947701040655, 'learning_rate': 8.184995386292166e-06, 'epoch': 29.3})
122
+ Step 12200, Loss: {'mse_loss': 0.062406525015830994, 'totoal_loss': 0.062406525015830994, 'data_time': 0.012990797171369195, 'model_time': 0.7620576911140233, 'learning_rate': 8.137065613815381e-06, 'epoch': 29.54})
123
+ Step 12300, Loss: {'mse_loss': 0.0202171728014946, 'totoal_loss': 0.0202171728014946, 'data_time': 0.013123600045219064, 'model_time': 0.7466664540115744, 'learning_rate': 8.088660201261203e-06, 'epoch': 29.78})
124
+ Step 12400, Loss: {'mse_loss': 0.04823393374681473, 'totoal_loss': 0.04823393374681473, 'data_time': 0.0074354230891913176, 'model_time': 0.7423426678869873, 'learning_rate': 8.039786792405404e-06, 'epoch': 30.02})
125
+ Step 12500, Loss: {'mse_loss': 0.036580778658390045, 'totoal_loss': 0.036580778658390045, 'data_time': 0.011313538998365402, 'model_time': 0.713027843972668, 'learning_rate': 7.990453104925807e-06, 'epoch': 30.27})
126
+ Step 12600, Loss: {'mse_loss': 0.023155560716986656, 'totoal_loss': 0.023155560716986656, 'data_time': 0.009537342004477978, 'model_time': 0.7218452640809119, 'learning_rate': 7.940666929183554e-06, 'epoch': 30.51})
127
+ Step 12700, Loss: {'mse_loss': 0.07774774730205536, 'totoal_loss': 0.07774774730205536, 'data_time': 0.011465203948318958, 'model_time': 0.7352207649964839, 'learning_rate': 7.89043612699294e-06, 'epoch': 30.75})
128
+ Step 12800, Loss: {'mse_loss': 0.06854137778282166, 'totoal_loss': 0.06854137778282166, 'data_time': 0.007612520130351186, 'model_time': 0.6985960511956364, 'learning_rate': 7.839768630379917e-06, 'epoch': 30.99})
129
+ Step 12900, Loss: {'mse_loss': 0.03492548689246178, 'totoal_loss': 0.03492548689246178, 'data_time': 0.00036367285065352917, 'model_time': 0.747063749935478, 'learning_rate': 7.788672440329562e-06, 'epoch': 31.23})
130
+ Step 13000, Loss: {'mse_loss': 0.043309472501277924, 'totoal_loss': 0.043309472501277924, 'data_time': 0.000371948117390275, 'model_time': 0.7362281221430749, 'learning_rate': 7.737155625522608e-06, 'epoch': 31.48})
131
+ Step 13100, Loss: {'mse_loss': 0.052296556532382965, 'totoal_loss': 0.052296556532382965, 'data_time': 0.000401137862354517, 'model_time': 0.7564599518664181, 'learning_rate': 7.685226321061318e-06, 'epoch': 31.72})
132
+ Step 13200, Loss: {'mse_loss': 0.06928879022598267, 'totoal_loss': 0.06928879022598267, 'data_time': 0.00035977084189653397, 'model_time': 0.8385091139934957, 'learning_rate': 7.632892727184844e-06, 'epoch': 31.96})
133
+ Step 13300, Loss: {'mse_loss': 0.02982027269899845, 'totoal_loss': 0.02982027269899845, 'data_time': 0.024770647985860705, 'model_time': 0.7299996688961983, 'learning_rate': 7.580163107974335e-06, 'epoch': 32.2})
134
+ Step 13400, Loss: {'mse_loss': 0.037024542689323425, 'totoal_loss': 0.037024542689323425, 'data_time': 0.028311484027653933, 'model_time': 0.7274325559847057, 'learning_rate': 7.527045790047922e-06, 'epoch': 32.45})
135
+ Step 13500, Loss: {'mse_loss': 0.02032245136797428, 'totoal_loss': 0.02032245136797428, 'data_time': 0.024674435146152973, 'model_time': 0.7677971918601543, 'learning_rate': 7.473549161245862e-06, 'epoch': 32.69})
136
+ Step 13600, Loss: {'mse_loss': 0.06486964970827103, 'totoal_loss': 0.06486964970827103, 'data_time': 0.02237496804445982, 'model_time': 0.7459883310366422, 'learning_rate': 7.419681669305998e-06, 'epoch': 32.93})
137
+ Step 13700, Loss: {'mse_loss': 0.02166975475847721, 'totoal_loss': 0.02166975475847721, 'data_time': 0.011609521927312016, 'model_time': 0.7240465970244259, 'learning_rate': 7.365451820529756e-06, 'epoch': 33.17})
138
+ Step 13800, Loss: {'mse_loss': 0.025469908490777016, 'totoal_loss': 0.025469908490777016, 'data_time': 0.007901523960754275, 'model_time': 0.7211457150988281, 'learning_rate': 7.310868178438909e-06, 'epoch': 33.41})
139
+ Step 13900, Loss: {'mse_loss': 0.05141131579875946, 'totoal_loss': 0.05141131579875946, 'data_time': 0.007254631025716662, 'model_time': 0.7352862041443586, 'learning_rate': 7.2559393624232985e-06, 'epoch': 33.66})
140
+ Step 14000, Loss: {'mse_loss': 0.021901194006204605, 'totoal_loss': 0.021901194006204605, 'data_time': 0.010144331026822329, 'model_time': 0.7456967590842396, 'learning_rate': 7.2006740463797296e-06, 'epoch': 33.9})
141
+ Step 14100, Loss: {'mse_loss': 0.04988359287381172, 'totoal_loss': 0.04988359287381172, 'data_time': 0.00041341385804116726, 'model_time': 0.7652279338799417, 'learning_rate': 7.145080957342262e-06, 'epoch': 34.14})
142
+ Step 14200, Loss: {'mse_loss': 0.03277695178985596, 'totoal_loss': 0.03277695178985596, 'data_time': 0.0003561628982424736, 'model_time': 0.7507815619464964, 'learning_rate': 7.0891688741041065e-06, 'epoch': 34.38})
143
+ Step 14300, Loss: {'mse_loss': 0.04948335513472557, 'totoal_loss': 0.04948335513472557, 'data_time': 0.00038388906978070736, 'model_time': 0.7624337349552661, 'learning_rate': 7.032946625831363e-06, 'epoch': 34.62})
144
+ Step 14400, Loss: {'mse_loss': 0.06257995963096619, 'totoal_loss': 0.06257995963096619, 'data_time': 0.00035816384479403496, 'model_time': 0.7745338850654662, 'learning_rate': 6.976423090668781e-06, 'epoch': 34.87})
145
+ Step 14500, Loss: {'mse_loss': 0.03234022110700607, 'totoal_loss': 0.03234022110700607, 'data_time': 0.0003866699989885092, 'model_time': 0.7438914519734681, 'learning_rate': 6.919607194337806e-06, 'epoch': 35.11})
146
+ Step 14600, Loss: {'mse_loss': 0.029007382690906525, 'totoal_loss': 0.029007382690906525, 'data_time': 0.0003717769868671894, 'model_time': 0.8043351750820875, 'learning_rate': 6.8625079087270976e-06, 'epoch': 35.35})
147
+ Step 14700, Loss: {'mse_loss': 0.04143048822879791, 'totoal_loss': 0.04143048822879791, 'data_time': 0.00033783004619181156, 'model_time': 0.993948811898008, 'learning_rate': 6.8051342504757714e-06, 'epoch': 35.59})
148
+ Step 14800, Loss: {'mse_loss': 0.028645263984799385, 'totoal_loss': 0.028645263984799385, 'data_time': 0.0003744419664144516, 'model_time': 0.801704180194065, 'learning_rate': 6.747495279549561e-06, 'epoch': 35.84})
149
+ Step 14900, Loss: {'mse_loss': 0.02313084714114666, 'totoal_loss': 0.02313084714114666, 'data_time': 0.021278959000483155, 'model_time': 0.7666578930802643, 'learning_rate': 6.6896000978101465e-06, 'epoch': 36.08})
150
+ Step 15000, Loss: {'mse_loss': 0.021299811080098152, 'totoal_loss': 0.021299811080098152, 'data_time': 0.015690980944782495, 'model_time': 0.9841179959475994, 'learning_rate': 6.631457847577869e-06, 'epoch': 36.32})
151
+ Step 15100, Loss: {'mse_loss': 0.03391154855489731, 'totoal_loss': 0.03391154855489731, 'data_time': 0.016210466856136918, 'model_time': 0.7453965919557959, 'learning_rate': 6.573077710188046e-06, 'epoch': 36.56})
152
+ Step 15200, Loss: {'mse_loss': 0.04188203066587448, 'totoal_loss': 0.04188203066587448, 'data_time': 0.017993173096328974, 'model_time': 0.7686978350393474, 'learning_rate': 6.5144689045411345e-06, 'epoch': 36.8})
153
+ Step 15300, Loss: {'mse_loss': 0.03968708962202072, 'totoal_loss': 0.03968708962202072, 'data_time': 0.011077277129516006, 'model_time': 0.8021221591625363, 'learning_rate': 6.455640685646961e-06, 'epoch': 37.05})
154
+ Step 15400, Loss: {'mse_loss': 0.024050692096352577, 'totoal_loss': 0.024050692096352577, 'data_time': 0.009963501011952758, 'model_time': 0.7267801188863814, 'learning_rate': 6.396602343163248e-06, 'epoch': 37.29})
155
+ Step 15500, Loss: {'mse_loss': 0.024059297516942024, 'totoal_loss': 0.024059297516942024, 'data_time': 0.012721636099740863, 'model_time': 0.781202491838485, 'learning_rate': 6.337363199928669e-06, 'epoch': 37.53})
156
+ Step 15600, Loss: {'mse_loss': 0.03134877607226372, 'totoal_loss': 0.03134877607226372, 'data_time': 0.009085329016670585, 'model_time': 0.7703715420793742, 'learning_rate': 6.277932610490659e-06, 'epoch': 37.77})
157
+ Step 15700, Loss: {'mse_loss': 0.039628464728593826, 'totoal_loss': 0.039628464728593826, 'data_time': 0.009434601059183478, 'model_time': 0.7747214729897678, 'learning_rate': 6.218319959628234e-06, 'epoch': 38.01})
158
+ Step 15800, Loss: {'mse_loss': 0.08394245058298111, 'totoal_loss': 0.08394245058298111, 'data_time': 0.007879598066210747, 'model_time': 0.7763790839817375, 'learning_rate': 6.158534660870018e-06, 'epoch': 38.26})
159
+ Step 15900, Loss: {'mse_loss': 0.020665301010012627, 'totoal_loss': 0.020665301010012627, 'data_time': 0.007084872107952833, 'model_time': 0.7700005180668086, 'learning_rate': 6.0985861550077345e-06, 'epoch': 38.5})
160
+ Step 16000, Loss: {'mse_loss': 0.01787746511399746, 'totoal_loss': 0.01787746511399746, 'data_time': 0.011562709929421544, 'model_time': 0.7232388670090586, 'learning_rate': 6.0384839086054095e-06, 'epoch': 38.74})
161
+ Step 16100, Loss: {'mse_loss': 0.032035376876592636, 'totoal_loss': 0.032035376876592636, 'data_time': 0.006531022023409605, 'model_time': 0.6962933950126171, 'learning_rate': 5.978237412504472e-06, 'epoch': 38.98})
162
+ Step 16200, Loss: {'mse_loss': 0.018169041723012924, 'totoal_loss': 0.018169041723012924, 'data_time': 0.021303886082023382, 'model_time': 0.8243711609393358, 'learning_rate': 5.917856180325059e-06, 'epoch': 39.23})
163
+ Step 16300, Loss: {'mse_loss': 0.022113101556897163, 'totoal_loss': 0.022113101556897163, 'data_time': 0.019443417200818658, 'model_time': 0.8635289131198078, 'learning_rate': 5.857349746963692e-06, 'epoch': 39.47})
164
+ Step 16400, Loss: {'mse_loss': 0.03771074488759041, 'totoal_loss': 0.03771074488759041, 'data_time': 0.016155404970049858, 'model_time': 0.823447538074106, 'learning_rate': 5.796727667087611e-06, 'epoch': 39.71})
165
+ Step 16500, Loss: {'mse_loss': 0.02260361984372139, 'totoal_loss': 0.02260361984372139, 'data_time': 0.015100907068699598, 'model_time': 0.7375635139178485, 'learning_rate': 5.735999513625984e-06, 'epoch': 39.95})
166
+ Step 16600, Loss: {'mse_loss': 0.03366462513804436, 'totoal_loss': 0.03366462513804436, 'data_time': 0.009037212003022432, 'model_time': 0.7235999798867851, 'learning_rate': 5.675174876258223e-06, 'epoch': 40.19})
167
+ Step 16700, Loss: {'mse_loss': 0.08774922788143158, 'totoal_loss': 0.08774922788143158, 'data_time': 0.010459952056407928, 'model_time': 0.8365184548310935, 'learning_rate': 5.614263359899673e-06, 'epoch': 40.44})
168
+ Step 16800, Loss: {'mse_loss': 0.014620845206081867, 'totoal_loss': 0.014620845206081867, 'data_time': 0.009989916812628508, 'model_time': 0.8413428049534559, 'learning_rate': 5.553274583184875e-06, 'epoch': 40.68})
169
+ Step 16900, Loss: {'mse_loss': 0.07593841850757599, 'totoal_loss': 0.07593841850757599, 'data_time': 0.008586087031289935, 'model_time': 0.7975127741228789, 'learning_rate': 5.492218176948673e-06, 'epoch': 40.92})
170
+ Step 17000, Loss: {'mse_loss': 0.05534094572067261, 'totoal_loss': 0.05534094572067261, 'data_time': 0.01018277695402503, 'model_time': 0.7322346779983491, 'learning_rate': 5.431103782705404e-06, 'epoch': 41.16})
171
+ Step 17100, Loss: {'mse_loss': 0.04108680784702301, 'totoal_loss': 0.04108680784702301, 'data_time': 0.006881925975903869, 'model_time': 0.7360467498656362, 'learning_rate': 5.369941051126377e-06, 'epoch': 41.4})
172
+ Step 17200, Loss: {'mse_loss': 0.01727432757616043, 'totoal_loss': 0.01727432757616043, 'data_time': 0.01006058300845325, 'model_time': 0.8287999569438398, 'learning_rate': 5.308739640515932e-06, 'epoch': 41.65})
173
+ Step 17300, Loss: {'mse_loss': 0.039631299674510956, 'totoal_loss': 0.039631299674510956, 'data_time': 0.010656994068995118, 'model_time': 0.7343356250785291, 'learning_rate': 5.24750921528627e-06, 'epoch': 41.89})
174
+ Step 17400, Loss: {'mse_loss': 0.015843085944652557, 'totoal_loss': 0.015843085944652557, 'data_time': 0.0005460749380290508, 'model_time': 0.8505982200149447, 'learning_rate': 5.186259444431344e-06, 'epoch': 42.13})
175
+ Step 17500, Loss: {'mse_loss': 0.02262303978204727, 'totoal_loss': 0.02262303978204727, 'data_time': 0.0006110749673098326, 'model_time': 0.7690419100690633, 'learning_rate': 5.125e-06, 'epoch': 42.37})
176
+ Step 17600, Loss: {'mse_loss': 0.020908156409859657, 'totoal_loss': 0.020908156409859657, 'data_time': 0.0003753979690372944, 'model_time': 0.7355612958781421, 'learning_rate': 5.063740555568656e-06, 'epoch': 42.62})
177
+ Step 17700, Loss: {'mse_loss': 0.03132982552051544, 'totoal_loss': 0.03132982552051544, 'data_time': 0.00037464313209056854, 'model_time': 0.7629571948200464, 'learning_rate': 5.002490784713731e-06, 'epoch': 42.86})
178
+ Step 17800, Loss: {'mse_loss': 0.0581941157579422, 'totoal_loss': 0.0581941157579422, 'data_time': 0.000411562854424119, 'model_time': 0.7280966970138252, 'learning_rate': 4.9412603594840695e-06, 'epoch': 43.1})
179
+ Step 17900, Loss: {'mse_loss': 0.01383005641400814, 'totoal_loss': 0.01383005641400814, 'data_time': 0.00046696816571056843, 'model_time': 0.8131536701694131, 'learning_rate': 4.8800589488736245e-06, 'epoch': 43.34})
180
+ Step 18000, Loss: {'mse_loss': 0.03348666429519653, 'totoal_loss': 0.03348666429519653, 'data_time': 0.00042004603892564774, 'model_time': 0.7421099790371954, 'learning_rate': 4.818896217294598e-06, 'epoch': 43.58})
181
+ Step 18100, Loss: {'mse_loss': 0.030396820977330208, 'totoal_loss': 0.030396820977330208, 'data_time': 0.0003730389289557934, 'model_time': 0.7721366200130433, 'learning_rate': 4.757781823051329e-06, 'epoch': 43.83})
182
+ Step 18200, Loss: {'mse_loss': 0.01443676371127367, 'totoal_loss': 0.01443676371127367, 'data_time': 0.009360773954540491, 'model_time': 0.7458260920830071, 'learning_rate': 4.696725416815128e-06, 'epoch': 44.07})
183
+ Step 18300, Loss: {'mse_loss': 0.050226666033267975, 'totoal_loss': 0.050226666033267975, 'data_time': 0.009440358961001039, 'model_time': 0.8140654840972275, 'learning_rate': 4.635736640100327e-06, 'epoch': 44.31})
184
+ Step 18400, Loss: {'mse_loss': 0.030072566121816635, 'totoal_loss': 0.030072566121816635, 'data_time': 0.008892909856513143, 'model_time': 0.75510418205522, 'learning_rate': 4.574825123741778e-06, 'epoch': 44.55})
185
+ Step 18500, Loss: {'mse_loss': 0.008966159075498581, 'totoal_loss': 0.008966159075498581, 'data_time': 0.01038784789852798, 'model_time': 0.7512956508435309, 'learning_rate': 4.5140004863740165e-06, 'epoch': 44.79})
186
+ Step 18600, Loss: {'mse_loss': 0.04114314541220665, 'totoal_loss': 0.04114314541220665, 'data_time': 0.009844817919656634, 'model_time': 0.8215625728480518, 'learning_rate': 4.45327233291239e-06, 'epoch': 45.04})
187
+ Step 18700, Loss: {'mse_loss': 0.049252741038799286, 'totoal_loss': 0.049252741038799286, 'data_time': 0.013104283018037677, 'model_time': 0.7272677468135953, 'learning_rate': 4.39265025303631e-06, 'epoch': 45.28})
188
+ Step 18800, Loss: {'mse_loss': 0.01857100799679756, 'totoal_loss': 0.01857100799679756, 'data_time': 0.013200575951486826, 'model_time': 0.7754893880337477, 'learning_rate': 4.332143819674943e-06, 'epoch': 45.52})
189
+ Step 18900, Loss: {'mse_loss': 0.053344156593084335, 'totoal_loss': 0.053344156593084335, 'data_time': 0.00855673709884286, 'model_time': 0.8329797210171819, 'learning_rate': 4.271762587495529e-06, 'epoch': 45.76})
190
+ Step 19000, Loss: {'mse_loss': 0.01130640972405672, 'totoal_loss': 0.01130640972405672, 'data_time': 0.0005647190846502781, 'model_time': 0.8264501108787954, 'learning_rate': 4.2115160913945914e-06, 'epoch': 46.0})
191
+ Step 19100, Loss: {'mse_loss': 0.027818717062473297, 'totoal_loss': 0.027818717062473297, 'data_time': 0.0004977029748260975, 'model_time': 0.8143139982130378, 'learning_rate': 4.151413844992267e-06, 'epoch': 46.25})
192
+ Step 19200, Loss: {'mse_loss': 0.018024936318397522, 'totoal_loss': 0.018024936318397522, 'data_time': 0.000547108007594943, 'model_time': 0.9859090379904956, 'learning_rate': 4.091465339129985e-06, 'epoch': 46.49})
193
+ Step 19300, Loss: {'mse_loss': 0.018992537632584572, 'totoal_loss': 0.018992537632584572, 'data_time': 0.00035346089862287045, 'model_time': 0.7625822571571916, 'learning_rate': 4.031680040371768e-06, 'epoch': 46.73})
194
+ Step 19400, Loss: {'mse_loss': 0.034544937312603, 'totoal_loss': 0.034544937312603, 'data_time': 0.0003685690462589264, 'model_time': 0.84280028892681, 'learning_rate': 3.972067389509344e-06, 'epoch': 46.97})
195
+ Step 19500, Loss: {'mse_loss': 0.02031608670949936, 'totoal_loss': 0.02031608670949936, 'data_time': 0.007482169894501567, 'model_time': 0.7308494579046965, 'learning_rate': 3.912636800071335e-06, 'epoch': 47.22})
196
+ Step 19600, Loss: {'mse_loss': 0.059730757027864456, 'totoal_loss': 0.059730757027864456, 'data_time': 0.007396590895950794, 'model_time': 0.730363286100328, 'learning_rate': 3.853397656836754e-06, 'epoch': 47.46})
197
+ Step 19700, Loss: {'mse_loss': 0.015958508476614952, 'totoal_loss': 0.015958508476614952, 'data_time': 0.011173738166689873, 'model_time': 0.9773536249995232, 'learning_rate': 3.7943593143530404e-06, 'epoch': 47.7})
198
+ Step 19800, Loss: {'mse_loss': 0.020410586148500443, 'totoal_loss': 0.020410586148500443, 'data_time': 0.006543399067595601, 'model_time': 0.7673892101738602, 'learning_rate': 3.735531095458867e-06, 'epoch': 47.94})
199
+ Step 19900, Loss: {'mse_loss': 0.010346255265176296, 'totoal_loss': 0.010346255265176296, 'data_time': 0.0091605419293046, 'model_time': 0.7876088151242584, 'learning_rate': 3.6769222898119562e-06, 'epoch': 48.18})
200
+ Step 20000, Loss: {'mse_loss': 0.01025340985506773, 'totoal_loss': 0.01025340985506773, 'data_time': 0.008886310970410705, 'model_time': 0.7429966269992292, 'learning_rate': 3.618542152422132e-06, 'epoch': 48.43})
201
+ Step 20100, Loss: {'mse_loss': 0.02285783924162388, 'totoal_loss': 0.02285783924162388, 'data_time': 0.006962300045415759, 'model_time': 0.7869122889824212, 'learning_rate': 3.560399902189855e-06, 'epoch': 48.67})
202
+ Step 20200, Loss: {'mse_loss': 0.05157552659511566, 'totoal_loss': 0.05157552659511566, 'data_time': 0.008115040138363838, 'model_time': 0.755572804948315, 'learning_rate': 3.502504720450441e-06, 'epoch': 48.91})
203
+ Step 20300, Loss: {'mse_loss': 0.012161072343587875, 'totoal_loss': 0.012161072343587875, 'data_time': 0.008863052120432258, 'model_time': 0.7254495660308748, 'learning_rate': 3.4448657495242304e-06, 'epoch': 49.15})
204
+ Step 20400, Loss: {'mse_loss': 0.009064135141670704, 'totoal_loss': 0.009064135141670704, 'data_time': 0.010516046080738306, 'model_time': 0.7371276901103556, 'learning_rate': 3.387492091272904e-06, 'epoch': 49.39})
205
+ Step 20500, Loss: {'mse_loss': 0.012490076944231987, 'totoal_loss': 0.012490076944231987, 'data_time': 0.007753460900858045, 'model_time': 0.7407285741064698, 'learning_rate': 3.3303928056621955e-06, 'epoch': 49.64})
206
+ Step 20600, Loss: {'mse_loss': 0.02646927908062935, 'totoal_loss': 0.02646927908062935, 'data_time': 0.009364254074171185, 'model_time': 0.7278965699952096, 'learning_rate': 3.2735769093312202e-06, 'epoch': 49.88})
207
+ Step 20700, Loss: {'mse_loss': 0.019719252362847328, 'totoal_loss': 0.019719252362847328, 'data_time': 0.007963882060721517, 'model_time': 0.7432871700730175, 'learning_rate': 3.217053374168639e-06, 'epoch': 50.12})
208
+ Step 20800, Loss: {'mse_loss': 0.022279316559433937, 'totoal_loss': 0.022279316559433937, 'data_time': 0.009765103925019503, 'model_time': 0.7607513091061264, 'learning_rate': 3.1608311258958953e-06, 'epoch': 50.36})
209
+ Step 20900, Loss: {'mse_loss': 0.02489997074007988, 'totoal_loss': 0.02489997074007988, 'data_time': 0.007926391903311014, 'model_time': 0.76494449400343, 'learning_rate': 3.10491904265774e-06, 'epoch': 50.61})
210
+ Step 21000, Loss: {'mse_loss': 0.030588626861572266, 'totoal_loss': 0.030588626861572266, 'data_time': 0.0077581440564244986, 'model_time': 0.7833606370259076, 'learning_rate': 3.0493259536202714e-06, 'epoch': 50.85})
211
+ Step 21100, Loss: {'mse_loss': 0.026108136400580406, 'totoal_loss': 0.026108136400580406, 'data_time': 0.0004149458836764097, 'model_time': 0.7553799129091203, 'learning_rate': 2.9940606375767038e-06, 'epoch': 51.09})
212
+ Step 21200, Loss: {'mse_loss': 0.013464692048728466, 'totoal_loss': 0.013464692048728466, 'data_time': 0.00038220989517867565, 'model_time': 0.83666448504664, 'learning_rate': 2.939131821561094e-06, 'epoch': 51.33})
213
+ Step 21300, Loss: {'mse_loss': 0.030870618298649788, 'totoal_loss': 0.030870618298649788, 'data_time': 0.00035502389073371887, 'model_time': 0.7728084130212665, 'learning_rate': 2.8845481794702473e-06, 'epoch': 51.57})
214
+ Step 21400, Loss: {'mse_loss': 0.024380557239055634, 'totoal_loss': 0.024380557239055634, 'data_time': 0.0004247608594596386, 'model_time': 0.7338733619544655, 'learning_rate': 2.830318330694004e-06, 'epoch': 51.82})
215
+ Step 21500, Loss: {'mse_loss': 0.01425305288285017, 'totoal_loss': 0.01425305288285017, 'data_time': 0.014250215142965317, 'model_time': 0.7447374688927084, 'learning_rate': 2.7764508387541378e-06, 'epoch': 52.06})
216
+ Step 21600, Loss: {'mse_loss': 0.020178502425551414, 'totoal_loss': 0.020178502425551414, 'data_time': 0.015354579081758857, 'model_time': 0.7613966930657625, 'learning_rate': 2.7229542099520797e-06, 'epoch': 52.3})
217
+ Step 21700, Loss: {'mse_loss': 0.046748872846364975, 'totoal_loss': 0.046748872846364975, 'data_time': 0.015355238923802972, 'model_time': 0.7252022349275649, 'learning_rate': 2.669836892025666e-06, 'epoch': 52.54})
218
+ Step 21800, Loss: {'mse_loss': 0.04017787054181099, 'totoal_loss': 0.04017787054181099, 'data_time': 0.01572444220073521, 'model_time': 0.7101900880225003, 'learning_rate': 2.6171072728151557e-06, 'epoch': 52.78})
219
+ Step 21900, Loss: {'mse_loss': 0.010919355787336826, 'totoal_loss': 0.010919355787336826, 'data_time': 0.00935438391752541, 'model_time': 0.8228289568796754, 'learning_rate': 2.5647736789386828e-06, 'epoch': 53.03})
220
+ Step 22000, Loss: {'mse_loss': 0.02633604034781456, 'totoal_loss': 0.02633604034781456, 'data_time': 0.012509487103670835, 'model_time': 0.7800154930446297, 'learning_rate': 2.5128443744773904e-06, 'epoch': 53.27})
221
+ Step 22100, Loss: {'mse_loss': 0.013460063375532627, 'totoal_loss': 0.013460063375532627, 'data_time': 0.008511160966008902, 'model_time': 0.7667332929559052, 'learning_rate': 2.4613275596704386e-06, 'epoch': 53.51})
222
+ Step 22200, Loss: {'mse_loss': 0.04102926701307297, 'totoal_loss': 0.04102926701307297, 'data_time': 0.011019612895324826, 'model_time': 0.8055554991587996, 'learning_rate': 2.4102313696200853e-06, 'epoch': 53.75})
223
+ Step 22300, Loss: {'mse_loss': 0.012498926371335983, 'totoal_loss': 0.012498926371335983, 'data_time': 0.008075640071183443, 'model_time': 0.6966685960069299, 'learning_rate': 2.359563873007063e-06, 'epoch': 54.0})
224
+ Step 22400, Loss: {'mse_loss': 0.015452464111149311, 'totoal_loss': 0.015452464111149311, 'data_time': 0.0004504951648414135, 'model_time': 0.7419610840734094, 'learning_rate': 2.3093330708164465e-06, 'epoch': 54.24})
225
+ Step 22500, Loss: {'mse_loss': 0.016090482473373413, 'totoal_loss': 0.016090482473373413, 'data_time': 0.00034733605571091175, 'model_time': 0.8575054418761283, 'learning_rate': 2.2595468950741943e-06, 'epoch': 54.48})
226
+ Step 22600, Loss: {'mse_loss': 0.01606101728975773, 'totoal_loss': 0.01606101728975773, 'data_time': 0.00039127818308770657, 'model_time': 0.8166063989046961, 'learning_rate': 2.2102132075945974e-06, 'epoch': 54.72})
227
+ Step 22700, Loss: {'mse_loss': 0.015153803862631321, 'totoal_loss': 0.015153803862631321, 'data_time': 0.0003773830831050873, 'model_time': 0.7336411050055176, 'learning_rate': 2.1613397987388e-06, 'epoch': 54.96})
228
+ Step 22800, Loss: {'mse_loss': 0.02406552992761135, 'totoal_loss': 0.02406552992761135, 'data_time': 0.015209821984171867, 'model_time': 0.7251223120838404, 'learning_rate': 2.1129343861846207e-06, 'epoch': 55.21})
229
+ Step 22900, Loss: {'mse_loss': 0.02162247523665428, 'totoal_loss': 0.02162247523665428, 'data_time': 0.0162750540766865, 'model_time': 0.7481897429097444, 'learning_rate': 2.065004613707836e-06, 'epoch': 55.45})
230
+ Step 23000, Loss: {'mse_loss': 0.015217226929962635, 'totoal_loss': 0.015217226929962635, 'data_time': 0.014176745899021626, 'model_time': 0.7481035829987377, 'learning_rate': 2.0175580499751375e-06, 'epoch': 55.69})
231
+ Step 23100, Loss: {'mse_loss': 0.024720048531889915, 'totoal_loss': 0.024720048531889915, 'data_time': 0.016562265111133456, 'model_time': 0.7378278188407421, 'learning_rate': 1.9706021873489604e-06, 'epoch': 55.93})
232
+ Step 23200, Loss: {'mse_loss': 0.02457212284207344, 'totoal_loss': 0.02457212284207344, 'data_time': 0.0203629732131958, 'model_time': 0.7738145780749619, 'learning_rate': 1.924144440704338e-06, 'epoch': 56.17})
233
+ Step 23300, Loss: {'mse_loss': 0.017440808936953545, 'totoal_loss': 0.017440808936953545, 'data_time': 0.022074813023209572, 'model_time': 0.7374578579328954, 'learning_rate': 1.8781921462580238e-06, 'epoch': 56.42})
234
+ Step 23400, Loss: {'mse_loss': 0.023047341033816338, 'totoal_loss': 0.023047341033816338, 'data_time': 0.020027840044349432, 'model_time': 0.7513653580099344, 'learning_rate': 1.8327525604100058e-06, 'epoch': 56.66})
235
+ Step 23500, Loss: {'mse_loss': 0.02242152951657772, 'totoal_loss': 0.02242152951657772, 'data_time': 0.02273267204873264, 'model_time': 0.7560809408314526, 'learning_rate': 1.7878328585976426e-06, 'epoch': 56.9})
236
+ Step 23600, Loss: {'mse_loss': 0.01581430993974209, 'totoal_loss': 0.01581430993974209, 'data_time': 0.008156575029715896, 'model_time': 0.8019576680380851, 'learning_rate': 1.7434401341625765e-06, 'epoch': 57.14})
237
+ Step 23700, Loss: {'mse_loss': 0.009847103618085384, 'totoal_loss': 0.009847103618085384, 'data_time': 0.009219577070325613, 'model_time': 0.7578191359061748, 'learning_rate': 1.6995813972306108e-06, 'epoch': 57.38})
238
+ Step 23800, Loss: {'mse_loss': 0.026405075564980507, 'totoal_loss': 0.026405075564980507, 'data_time': 0.010953495046123862, 'model_time': 0.8043129281140864, 'learning_rate': 1.656263573604734e-06, 'epoch': 57.63})
239
+ Step 23900, Loss: {'mse_loss': 0.02870473824441433, 'totoal_loss': 0.02870473824441433, 'data_time': 0.009923655074089766, 'model_time': 0.7700700780842453, 'learning_rate': 1.613493503671454e-06, 'epoch': 57.87})
240
+ Step 24000, Loss: {'mse_loss': 0.039127934724092484, 'totoal_loss': 0.039127934724092484, 'data_time': 0.00038728793151676655, 'model_time': 0.7348583249840885, 'learning_rate': 1.5712779413206198e-06, 'epoch': 58.11})
241
+ Step 24100, Loss: {'mse_loss': 0.005391555838286877, 'totoal_loss': 0.005391555838286877, 'data_time': 0.0004461531061679125, 'model_time': 0.7951013748534024, 'learning_rate': 1.5296235528789028e-06, 'epoch': 58.35})
242
+ Step 24200, Loss: {'mse_loss': 0.02454245276749134, 'totoal_loss': 0.02454245276749134, 'data_time': 0.00034295092336833477, 'model_time': 0.7731488149147481, 'learning_rate': 1.4885369160571124e-06, 'epoch': 58.6})
243
+ Step 24300, Loss: {'mse_loss': 0.0327361524105072, 'totoal_loss': 0.0327361524105072, 'data_time': 0.000375538831576705, 'model_time': 0.798751404043287, 'learning_rate': 1.4480245189114938e-06, 'epoch': 58.84})
244
+ Step 24400, Loss: {'mse_loss': 0.015705827623605728, 'totoal_loss': 0.015705827623605728, 'data_time': 0.0004182569682598114, 'model_time': 0.8208022648468614, 'learning_rate': 1.408092758819191e-06, 'epoch': 59.08})
245
+ Step 24500, Loss: {'mse_loss': 0.031151482835412025, 'totoal_loss': 0.031151482835412025, 'data_time': 0.0003609149716794491, 'model_time': 0.8477964310441166, 'learning_rate': 1.368747941468028e-06, 'epoch': 59.32})
246
+ Step 24600, Loss: {'mse_loss': 0.021220600232481956, 'totoal_loss': 0.021220600232481956, 'data_time': 0.0003926740027964115, 'model_time': 0.7654263661243021, 'learning_rate': 1.3299962798607614e-06, 'epoch': 59.56})
247
+ Step 24700, Loss: {'mse_loss': 0.012582383118569851, 'totoal_loss': 0.012582383118569851, 'data_time': 0.00036157318390905857, 'model_time': 0.8131893328391016, 'learning_rate': 1.2918438933339827e-06, 'epoch': 59.81})
248
+ Step 24800, Loss: {'mse_loss': 0.010915386490523815, 'totoal_loss': 0.010915386490523815, 'data_time': 0.00914398580789566, 'model_time': 0.7413901549298316, 'learning_rate': 1.2542968065918027e-06, 'epoch': 60.05})
249
+ Step 24900, Loss: {'mse_loss': 0.0274498388171196, 'totoal_loss': 0.0274498388171196, 'data_time': 0.008113102987408638, 'model_time': 0.8469159619417042, 'learning_rate': 1.217360948754476e-06, 'epoch': 60.29})
250
+ Step 25000, Loss: {'mse_loss': 0.009066909551620483, 'totoal_loss': 0.009066909551620483, 'data_time': 0.007668855134397745, 'model_time': 0.8326676278375089, 'learning_rate': 1.1810421524221318e-06, 'epoch': 60.53})
251
+ Step 25100, Loss: {'mse_loss': 0.011630638502538204, 'totoal_loss': 0.011630638502538204, 'data_time': 0.00842451979406178, 'model_time': 0.7534783100709319, 'learning_rate': 1.1453461527537284e-06, 'epoch': 60.77})
252
+ Step 25200, Loss: {'mse_loss': 0.014967923052608967, 'totoal_loss': 0.014967923052608967, 'data_time': 0.013147041201591492, 'model_time': 0.7364121519494802, 'learning_rate': 1.1102785865614162e-06, 'epoch': 61.02})
253
+ Step 25300, Loss: {'mse_loss': 0.020904572680592537, 'totoal_loss': 0.020904572680592537, 'data_time': 0.009093661094084382, 'model_time': 0.759232765994966, 'learning_rate': 1.0758449914204127e-06, 'epoch': 61.26})
254
+ Step 25400, Loss: {'mse_loss': 0.01314077340066433, 'totoal_loss': 0.01314077340066433, 'data_time': 0.007898518117144704, 'model_time': 0.720333781093359, 'learning_rate': 1.0420508047945595e-06, 'epoch': 61.5})
255
+ Step 25500, Loss: {'mse_loss': 0.018296033143997192, 'totoal_loss': 0.018296033143997192, 'data_time': 0.008417164906859398, 'model_time': 0.7549288501031697, 'learning_rate': 1.0089013631776776e-06, 'epoch': 61.74})
256
+ Step 25600, Loss: {'mse_loss': 0.023599306121468544, 'totoal_loss': 0.023599306121468544, 'data_time': 0.008091820869594812, 'model_time': 0.6903745480813086, 'learning_rate': 9.76401901250878e-07, 'epoch': 61.99})
257
+ Step 25700, Loss: {'mse_loss': 0.05393746867775917, 'totoal_loss': 0.05393746867775917, 'data_time': 0.0005446628201752901, 'model_time': 0.8341694897972047, 'learning_rate': 9.44557551055946e-07, 'epoch': 62.23})
258
+ Step 25800, Loss: {'mse_loss': 0.012489978224039078, 'totoal_loss': 0.012489978224039078, 'data_time': 0.000414521899074316, 'model_time': 0.7459860409144312, 'learning_rate': 9.13373341184928e-07, 'epoch': 62.47})
259
+ Step 25900, Loss: {'mse_loss': 0.02104717120528221, 'totoal_loss': 0.02104717120528221, 'data_time': 0.0003608760889619589, 'model_time': 0.8480601131450385, 'learning_rate': 8.828541959860623e-07, 'epoch': 62.71})
260
+ Step 26000, Loss: {'mse_loss': 0.02213149517774582, 'totoal_loss': 0.02213149517774582, 'data_time': 0.00044125807471573353, 'model_time': 0.7560341428034008, 'learning_rate': 8.530049347861661e-07, 'epoch': 62.95})
261
+ Step 26100, Loss: {'mse_loss': 0.011557845398783684, 'totoal_loss': 0.011557845398783684, 'data_time': 0.01647162390872836, 'model_time': 0.7709878850728273, 'learning_rate': 8.238302711296034e-07, 'epoch': 63.2})
262
+ Step 26200, Loss: {'mse_loss': 0.032180916517972946, 'totoal_loss': 0.032180916517972946, 'data_time': 0.014513432048261166, 'model_time': 0.7680377520155162, 'learning_rate': 7.953348120339707e-07, 'epoch': 63.44})
263
+ Step 26300, Loss: {'mse_loss': 0.008418045938014984, 'totoal_loss': 0.008418045938014984, 'data_time': 0.01925895898602903, 'model_time': 0.7508002610411495, 'learning_rate': 7.675230572625892e-07, 'epoch': 63.68})
264
+ Step 26400, Loss: {'mse_loss': 0.013644939288496971, 'totoal_loss': 0.013644939288496971, 'data_time': 0.017174152191728354, 'model_time': 0.8244154688436538, 'learning_rate': 7.40399398613941e-07, 'epoch': 63.92})
265
+ Step 26500, Loss: {'mse_loss': 0.01564278081059456, 'totoal_loss': 0.01564278081059456, 'data_time': 0.02710996218957007, 'model_time': 0.7546193909365684, 'learning_rate': 7.139681192281557e-07, 'epoch': 64.16})
266
+ Step 26600, Loss: {'mse_loss': 0.029583696275949478, 'totoal_loss': 0.029583696275949478, 'data_time': 0.008872001897543669, 'model_time': 0.7341137810144573, 'learning_rate': 6.882333929106462e-07, 'epoch': 64.41})
267
+ Step 26700, Loss: {'mse_loss': 0.03425779193639755, 'totoal_loss': 0.03425779193639755, 'data_time': 0.01547097391448915, 'model_time': 0.7302500570658594, 'learning_rate': 6.63199283473027e-07, 'epoch': 64.65})
268
+ Step 26800, Loss: {'mse_loss': 0.02972433716058731, 'totoal_loss': 0.02972433716058731, 'data_time': 0.020879274932667613, 'model_time': 0.7360974040348083, 'learning_rate': 6.388697440913819e-07, 'epoch': 64.89})
269
+ Step 26900, Loss: {'mse_loss': 0.03659547120332718, 'totoal_loss': 0.03659547120332718, 'data_time': 0.007919419091194868, 'model_time': 0.7852345199789852, 'learning_rate': 6.152486166820176e-07, 'epoch': 65.13})
270
+ Step 27000, Loss: {'mse_loss': 0.016252798959612846, 'totoal_loss': 0.016252798959612846, 'data_time': 0.012261092895641923, 'model_time': 0.7287681400775909, 'learning_rate': 5.923396312947748e-07, 'epoch': 65.38})
271
+ Step 27100, Loss: {'mse_loss': 0.007763921283185482, 'totoal_loss': 0.007763921283185482, 'data_time': 0.009649978019297123, 'model_time': 0.7525746650062501, 'learning_rate': 5.701464055240163e-07, 'epoch': 65.62})
272
+ Step 27200, Loss: {'mse_loss': 0.011347208172082901, 'totoal_loss': 0.011347208172082901, 'data_time': 0.007782486965879798, 'model_time': 0.7641270959284157, 'learning_rate': 5.48672443937364e-07, 'epoch': 65.86})
273
+ Step 27300, Loss: {'mse_loss': 0.022756529971957207, 'totoal_loss': 0.022756529971957207, 'data_time': 0.008606848074123263, 'model_time': 1.0366533659398556, 'learning_rate': 5.279211375222855e-07, 'epoch': 66.1})
274
+ Step 27400, Loss: {'mse_loss': 0.01919691637158394, 'totoal_loss': 0.01919691637158394, 'data_time': 0.008963119005784392, 'model_time': 0.8077244518790394, 'learning_rate': 5.07895763150622e-07, 'epoch': 66.34})
275
+ Step 27500, Loss: {'mse_loss': 0.018262816593050957, 'totoal_loss': 0.018262816593050957, 'data_time': 0.008581809001043439, 'model_time': 0.7296217230614275, 'learning_rate': 4.885994830611266e-07, 'epoch': 66.59})
276
+ Step 27600, Loss: {'mse_loss': 0.007403126452118158, 'totoal_loss': 0.007403126452118158, 'data_time': 0.008254263084381819, 'model_time': 0.8316959619987756, 'learning_rate': 4.700353443601156e-07, 'epoch': 66.83})
277
+ Step 27700, Loss: {'mse_loss': 0.019860900938510895, 'totoal_loss': 0.019860900938510895, 'data_time': 0.007939851842820644, 'model_time': 0.729742624098435, 'learning_rate': 4.5220627854029224e-07, 'epoch': 67.07})
278
+ Step 27800, Loss: {'mse_loss': 0.009959334507584572, 'totoal_loss': 0.009959334507584572, 'data_time': 0.007905294885858893, 'model_time': 0.7598921849858016, 'learning_rate': 4.351151010178311e-07, 'epoch': 67.31})
279
+ Step 27900, Loss: {'mse_loss': 0.01605001464486122, 'totoal_loss': 0.01605001464486122, 'data_time': 0.009223222034052014, 'model_time': 0.8132725001778454, 'learning_rate': 4.1876451068778983e-07, 'epoch': 67.55})
280
+ Step 28000, Loss: {'mse_loss': 0.02166476473212242, 'totoal_loss': 0.02166476473212242, 'data_time': 0.008984826970845461, 'model_time': 0.8140249489806592, 'learning_rate': 4.031570894979235e-07, 'epoch': 67.8})
281
+ Step 28100, Loss: {'mse_loss': 0.03496738523244858, 'totoal_loss': 0.03496738523244858, 'data_time': 0.0253070539329201, 'model_time': 0.7392002269625664, 'learning_rate': 3.882953020409644e-07, 'epoch': 68.04})
282
+ Step 28200, Loss: {'mse_loss': 0.027941662818193436, 'totoal_loss': 0.027941662818193436, 'data_time': 0.02092369901947677, 'model_time': 0.7468895500060171, 'learning_rate': 3.74181495165436e-07, 'epoch': 68.28})
283
+ Step 28300, Loss: {'mse_loss': 0.024226833134889603, 'totoal_loss': 0.024226833134889603, 'data_time': 0.021154148038476706, 'model_time': 0.7156540469732136, 'learning_rate': 3.608178976050568e-07, 'epoch': 68.52})
284
+ Step 28400, Loss: {'mse_loss': 0.01984257809817791, 'totoal_loss': 0.01984257809817791, 'data_time': 0.030017823912203312, 'model_time': 0.7587223390582949, 'learning_rate': 3.482066196267966e-07, 'epoch': 68.77})
285
+ Step 28500, Loss: {'mse_loss': 0.011615759693086147, 'totoal_loss': 0.011615759693086147, 'data_time': 0.01528036780655384, 'model_time': 0.8121264558285475, 'learning_rate': 3.36349652697643e-07, 'epoch': 69.01})
286
+ Step 28600, Loss: {'mse_loss': 0.0252086129039526, 'totoal_loss': 0.0252086129039526, 'data_time': 0.011960299918428063, 'model_time': 0.7159488869365305, 'learning_rate': 3.2524886917012403e-07, 'epoch': 69.25})
287
+ Step 28700, Loss: {'mse_loss': 0.006696898955851793, 'totoal_loss': 0.006696898955851793, 'data_time': 0.01157200988382101, 'model_time': 0.816200144123286, 'learning_rate': 3.149060219866433e-07, 'epoch': 69.49})
288
+ Step 28800, Loss: {'mse_loss': 0.019803352653980255, 'totoal_loss': 0.019803352653980255, 'data_time': 0.00934761599637568, 'model_time': 0.7595669140573591, 'learning_rate': 3.053227444026695e-07, 'epoch': 69.73})
289
+ Step 28900, Loss: {'mse_loss': 0.007676069624722004, 'totoal_loss': 0.007676069624722004, 'data_time': 0.007027981104329228, 'model_time': 0.8168533351272345, 'learning_rate': 2.9650054972882544e-07, 'epoch': 69.98})
290
+ Step 29000, Loss: {'mse_loss': 0.011123830452561378, 'totoal_loss': 0.011123830452561378, 'data_time': 0.0004775489214807749, 'model_time': 0.8333936228882521, 'learning_rate': 2.884408310919209e-07, 'epoch': 70.22})
291
+ Step 29100, Loss: {'mse_loss': 0.017882687970995903, 'totoal_loss': 0.017882687970995903, 'data_time': 0.00036479090340435505, 'model_time': 1.0043343948200345, 'learning_rate': 2.8114486121495906e-07, 'epoch': 70.46})
292
+ Step 29200, Loss: {'mse_loss': 0.00902477465569973, 'totoal_loss': 0.00902477465569973, 'data_time': 0.00039192289113998413, 'model_time': 0.7378231729380786, 'learning_rate': 2.746137922161617e-07, 'epoch': 70.7})
293
+ Step 29300, Loss: {'mse_loss': 0.02014608308672905, 'totoal_loss': 0.02014608308672905, 'data_time': 0.00034015183337032795, 'model_time': 0.7866911077871919, 'learning_rate': 2.68848655427034e-07, 'epoch': 70.94})
294
+ Step 29400, Loss: {'mse_loss': 0.006685366854071617, 'totoal_loss': 0.006685366854071617, 'data_time': 0.0075276498682796955, 'model_time': 0.7392499099951237, 'learning_rate': 2.638503612295071e-07, 'epoch': 71.19})
295
+ Step 29500, Loss: {'mse_loss': 0.01195951085537672, 'totoal_loss': 0.01195951085537672, 'data_time': 0.00758887710981071, 'model_time': 0.7320151599124074, 'learning_rate': 2.5961969891217614e-07, 'epoch': 71.43})
296
+ Step 29600, Loss: {'mse_loss': 0.01789228990674019, 'totoal_loss': 0.01789228990674019, 'data_time': 0.007713975850492716, 'model_time': 0.726104433182627, 'learning_rate': 2.5615733654566483e-07, 'epoch': 71.67})
297
+ Step 29700, Loss: {'mse_loss': 0.005125066265463829, 'totoal_loss': 0.005125066265463829, 'data_time': 0.007377303903922439, 'model_time': 0.7370973059441894, 'learning_rate': 2.5346382087712764e-07, 'epoch': 71.91})
298
+ Step 29800, Loss: {'mse_loss': 0.027181655168533325, 'totoal_loss': 0.027181655168533325, 'data_time': 0.016051308950409293, 'model_time': 0.7383555809501559, 'learning_rate': 2.515395772439128e-07, 'epoch': 72.15})
299
+ Step 29900, Loss: {'mse_loss': 0.01231908705085516, 'totoal_loss': 0.01231908705085516, 'data_time': 0.014490589965134859, 'model_time': 0.7521689310669899, 'learning_rate': 2.5038490950639644e-07, 'epoch': 72.4})
300
+ Step 30000, Loss: {'mse_loss': 0.013759791851043701, 'totoal_loss': 0.013759791851043701, 'mse_score': 0.0012650576287082263, 'data_time': 0.016765248030424118, 'model_time': 0.7693290058523417, 'learning_rate': 2.5e-07, 'epoch': 72.64})