diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000000000000000000000000000000000..1ef325f1b111266a6b26e0196871bd78baa8c2f3 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,59 @@ +*.7z filter=lfs diff=lfs merge=lfs -text +*.arrow filter=lfs diff=lfs merge=lfs -text +*.bin filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.ckpt filter=lfs diff=lfs merge=lfs -text +*.ftz filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.h5 filter=lfs diff=lfs merge=lfs -text +*.joblib filter=lfs diff=lfs merge=lfs -text +*.lfs.* filter=lfs diff=lfs merge=lfs -text +*.lz4 filter=lfs diff=lfs merge=lfs -text +*.mds filter=lfs diff=lfs merge=lfs -text +*.mlmodel filter=lfs diff=lfs merge=lfs -text +*.model filter=lfs diff=lfs merge=lfs -text +*.msgpack filter=lfs diff=lfs merge=lfs -text +*.npy filter=lfs diff=lfs merge=lfs -text +*.npz filter=lfs diff=lfs merge=lfs -text +*.onnx filter=lfs diff=lfs merge=lfs -text +*.ot filter=lfs diff=lfs merge=lfs -text +*.parquet filter=lfs diff=lfs merge=lfs -text +*.pb filter=lfs diff=lfs merge=lfs -text +*.pickle filter=lfs diff=lfs merge=lfs -text +*.pkl filter=lfs diff=lfs merge=lfs -text +*.pt filter=lfs diff=lfs merge=lfs -text +*.pth filter=lfs diff=lfs merge=lfs -text +*.rar filter=lfs diff=lfs merge=lfs -text +*.safetensors filter=lfs diff=lfs merge=lfs -text +saved_model/**/* filter=lfs diff=lfs merge=lfs -text +*.tar.* filter=lfs diff=lfs merge=lfs -text +*.tar filter=lfs diff=lfs merge=lfs -text +*.tflite filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.wasm filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text +*tfevents* filter=lfs diff=lfs merge=lfs -text +# Audio files - uncompressed +*.pcm filter=lfs diff=lfs merge=lfs -text +*.sam filter=lfs diff=lfs merge=lfs -text +*.raw filter=lfs diff=lfs merge=lfs -text +# Audio files - compressed +*.aac filter=lfs diff=lfs merge=lfs -text +*.flac filter=lfs diff=lfs merge=lfs -text +*.mp3 filter=lfs diff=lfs merge=lfs -text +*.ogg filter=lfs diff=lfs merge=lfs -text +*.wav filter=lfs diff=lfs merge=lfs -text +# Image files - uncompressed +*.bmp filter=lfs diff=lfs merge=lfs -text +*.gif filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.tiff filter=lfs diff=lfs merge=lfs -text +# Image files - compressed +*.jpg filter=lfs diff=lfs merge=lfs -text +*.jpeg filter=lfs diff=lfs merge=lfs -text +*.webp filter=lfs diff=lfs merge=lfs -text +# Video files - compressed +*.mp4 filter=lfs diff=lfs merge=lfs -text +*.webm filter=lfs diff=lfs merge=lfs -text diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..ac23ed1140fb2b85ab9529ee0bd728e4091435f8 --- /dev/null +++ b/README.md @@ -0,0 +1,255 @@ +--- +license: apache-2.0 +task_categories: +- robotics +tags: +- LeRobot +configs: +- config_name: default + data_files: data/*/*.parquet +--- + +This dataset was created using [LeRobot](https://github.com/huggingface/lerobot). + +## Dataset Description + + + +- **Homepage:** [More Information Needed] +- **Paper:** [More Information Needed] +- **License:** apache-2.0 + +## Dataset Structure + +[meta/info.json](meta/info.json): +```json +{ + "codebase_version": "v2.1", + "robot_type": null, + "total_episodes": 100, + "total_frames": 120681, + "total_tasks": 1, + "total_videos": 500, + "total_chunks": 1, + "chunks_size": 1000, + "fps": 30, + "splits": { + "train": "0:100" + }, + "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet", + "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4", + "features": { + "action": { + "dtype": "float32", + "shape": [ + 18 + ], + "names": [ + "shoulder_pan.pos", + "shoulder_lift.pos", + "elbow_flex.pos", + "wrist_flex.pos", + "wrist_roll.pos", + "gripper.pos", + "shoulder_pan.vel", + "shoulder_lift.vel", + "elbow_flex.vel", + "wrist_flex.vel", + "wrist_roll.vel", + "gripper.vel", + "shoulder_pan.angle", + "shoulder_lift.angle", + "elbow_flex.angle", + "wrist_flex.angle", + "wrist_roll.angle", + "gripper.angle" + ] + }, + "observation.state": { + "dtype": "float32", + "shape": [ + 18 + ], + "names": [ + "shoulder_pan.pos", + "shoulder_lift.pos", + "elbow_flex.pos", + "wrist_flex.pos", + "wrist_roll.pos", + "gripper.pos", + "shoulder_pan.vel", + "shoulder_lift.vel", + "elbow_flex.vel", + "wrist_flex.vel", + "wrist_roll.vel", + "gripper.vel", + "shoulder_pan.load", + "shoulder_lift.load", + "elbow_flex.load", + "wrist_flex.load", + "wrist_roll.load", + "gripper.load" + ] + }, + "observation.images.wrist": { + "dtype": "video", + "shape": [ + 480, + 640, + 3 + ], + "names": [ + "height", + "width", + "channels" + ], + "info": { + "video.height": 480, + "video.width": 640, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 30, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.global1": { + "dtype": "video", + "shape": [ + 480, + 640, + 3 + ], + "names": [ + "height", + "width", + "channels" + ], + "info": { + "video.height": 480, + "video.width": 640, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 30, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.global2": { + "dtype": "video", + "shape": [ + 480, + 640, + 3 + ], + "names": [ + "height", + "width", + "channels" + ], + "info": { + "video.height": 480, + "video.width": 640, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 30, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.low_camera1": { + "dtype": "video", + "shape": [ + 480, + 640, + 3 + ], + "names": [ + "height", + "width", + "channels" + ], + "info": { + "video.height": 480, + "video.width": 640, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 30, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.low_camera2": { + "dtype": "video", + "shape": [ + 480, + 640, + 3 + ], + "names": [ + "height", + "width", + "channels" + ], + "info": { + "video.height": 480, + "video.width": 640, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 30, + "video.channels": 3, + "has_audio": false + } + }, + "timestamp": { + "dtype": "float32", + "shape": [ + 1 + ], + "names": null + }, + "frame_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "episode_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "task_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + } + } +} +``` + + +## Citation + +**BibTeX:** + +```bibtex +[More Information Needed] +``` \ No newline at end of file diff --git a/data/chunk-000/episode_000000.parquet b/data/chunk-000/episode_000000.parquet new file mode 100644 index 0000000000000000000000000000000000000000..bb7e19248133fa51b20b9b204e28e98ae85e73aa --- /dev/null +++ b/data/chunk-000/episode_000000.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffa33d93b943de95ae479a5fb241ebb6ddb058316271b172f6debd9cf11ddeff +size 132303 diff --git a/data/chunk-000/episode_000001.parquet b/data/chunk-000/episode_000001.parquet new file mode 100644 index 0000000000000000000000000000000000000000..160c3a6ccbf003e8a2a1a1a22f3302b66233520a --- /dev/null +++ b/data/chunk-000/episode_000001.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a082050b0787966ab4959ec8ba2ab6ee8e75ee7e47304fa2b93a4238b2f8889 +size 137639 diff --git a/data/chunk-000/episode_000002.parquet b/data/chunk-000/episode_000002.parquet new file mode 100644 index 0000000000000000000000000000000000000000..63703113fc0f430b21bba6da93a17e1f63615208 --- /dev/null +++ b/data/chunk-000/episode_000002.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b1817347607f70be8b3beedf6704db0f4f351961a8009c91b0a2d570a24102c +size 133381 diff --git a/data/chunk-000/episode_000003.parquet b/data/chunk-000/episode_000003.parquet new file mode 100644 index 0000000000000000000000000000000000000000..9cee20eb62c7c38be0cf30a85e4dfb3e1a227338 --- /dev/null +++ b/data/chunk-000/episode_000003.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35f2b8891db828ff3c0a2996350568ef459e996dadc4b7d0f72bdaed3bdcc360 +size 109907 diff --git a/data/chunk-000/episode_000004.parquet b/data/chunk-000/episode_000004.parquet new file mode 100644 index 0000000000000000000000000000000000000000..12d5535441a4be8f01eb94cce5c4d9d29c7f3ff5 --- /dev/null +++ b/data/chunk-000/episode_000004.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dd068699a6ad02d6d9b56f020faf58ed00d8741afdd1dba7e614913863b987b +size 133226 diff --git a/data/chunk-000/episode_000005.parquet b/data/chunk-000/episode_000005.parquet new file mode 100644 index 0000000000000000000000000000000000000000..efe95894809ec2d1de19d3b8646abb9962fbe0e2 --- /dev/null +++ b/data/chunk-000/episode_000005.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74d2ce4b8e248aafbe3b73292d1ae2888abdc851a08f89e66be4401a23623637 +size 104424 diff --git a/data/chunk-000/episode_000006.parquet b/data/chunk-000/episode_000006.parquet new file mode 100644 index 0000000000000000000000000000000000000000..d110645e89e27ed29b94be6031a66b533289f010 --- /dev/null +++ b/data/chunk-000/episode_000006.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcffb07559250af6b27baf65e18fde53dd5c17a5f66aa854794a00677117453e +size 126828 diff --git a/data/chunk-000/episode_000007.parquet b/data/chunk-000/episode_000007.parquet new file mode 100644 index 0000000000000000000000000000000000000000..061d199c6c33f973bf4009426765b17513cf7796 --- /dev/null +++ b/data/chunk-000/episode_000007.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29387388ff65a05de770af479e88fca3cae14795c6d165f27535cb52845efa46 +size 127477 diff --git a/data/chunk-000/episode_000008.parquet b/data/chunk-000/episode_000008.parquet new file mode 100644 index 0000000000000000000000000000000000000000..cbdd99cdfcab17a5aa8720192d14ccfa8d0d10b9 --- /dev/null +++ b/data/chunk-000/episode_000008.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bb24ddce7c7a32d2d98a329a2a48c677ff84a93dcdc1b770dc89e8179bfb76e +size 123780 diff --git a/data/chunk-000/episode_000009.parquet b/data/chunk-000/episode_000009.parquet new file mode 100644 index 0000000000000000000000000000000000000000..fabdbd441e68d1e83c2d6aeec699cb2012f438c2 --- /dev/null +++ b/data/chunk-000/episode_000009.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:429b6783e8057e2bc827ec507447ddf279a93c93f272cb6c78085ba6a7dffeb8 +size 104461 diff --git a/data/chunk-000/episode_000010.parquet b/data/chunk-000/episode_000010.parquet new file mode 100644 index 0000000000000000000000000000000000000000..1f6b014cd0d640b6344f9aced0124119887e8b8e --- /dev/null +++ b/data/chunk-000/episode_000010.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:569e360486cc361559e35418b07fed8f3da5601b81c6743116c2e0e1d3df27ad +size 128163 diff --git a/data/chunk-000/episode_000011.parquet b/data/chunk-000/episode_000011.parquet new file mode 100644 index 0000000000000000000000000000000000000000..95f6e4002a9479f9260b77338e368478db0fc0c7 --- /dev/null +++ b/data/chunk-000/episode_000011.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50cba31690c008da633f4e2d039a1fd999c9d4205f07631e38128c94585beda1 +size 125006 diff --git a/data/chunk-000/episode_000012.parquet b/data/chunk-000/episode_000012.parquet new file mode 100644 index 0000000000000000000000000000000000000000..66669b553c4f8843f76caf1f230b22598ffae792 --- /dev/null +++ b/data/chunk-000/episode_000012.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53c76e5fa9d0c15047c051b6459e4bc0695d2acef903d2d77816abd2083e575c +size 107829 diff --git a/data/chunk-000/episode_000013.parquet b/data/chunk-000/episode_000013.parquet new file mode 100644 index 0000000000000000000000000000000000000000..eca0ca55535c49ce76cd7a4b7515c5f344a47467 --- /dev/null +++ b/data/chunk-000/episode_000013.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:155f29aa54dd2d0abdf2c22cf66419eca4d78ebf69b8b79adffe5b581f216bff +size 83702 diff --git a/data/chunk-000/episode_000014.parquet b/data/chunk-000/episode_000014.parquet new file mode 100644 index 0000000000000000000000000000000000000000..7b6ce1efb6146e393a9b89157f504021f20e069e --- /dev/null +++ b/data/chunk-000/episode_000014.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:733608cb0ac6979e86a2d77aa758d289a29990753ad443cb9f8d952d61943a1b +size 116446 diff --git a/data/chunk-000/episode_000015.parquet b/data/chunk-000/episode_000015.parquet new file mode 100644 index 0000000000000000000000000000000000000000..b362c7fea5c4c60380b08a003fe7d4325621cf99 --- /dev/null +++ b/data/chunk-000/episode_000015.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2965fd3f92085f664effff7d02d62e4e27d1b708ceba7e7887da39afcca21cde +size 110004 diff --git a/data/chunk-000/episode_000016.parquet b/data/chunk-000/episode_000016.parquet new file mode 100644 index 0000000000000000000000000000000000000000..c59fa451c0a5949db0824dfd220c69b560a56c1f --- /dev/null +++ b/data/chunk-000/episode_000016.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f20b0fc61c3e8ed4939cd80646c852d6a02623982db51f50e6fa9e63fcf23c80 +size 110815 diff --git a/data/chunk-000/episode_000017.parquet b/data/chunk-000/episode_000017.parquet new file mode 100644 index 0000000000000000000000000000000000000000..5e531439375e7515950b606f511e12bfad2f60a0 --- /dev/null +++ b/data/chunk-000/episode_000017.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83df2123911447a8cc1b1d3fc01895ea91486a11f321fd72861257d0b24f9acf +size 129654 diff --git a/data/chunk-000/episode_000018.parquet b/data/chunk-000/episode_000018.parquet new file mode 100644 index 0000000000000000000000000000000000000000..cff37f8d7ec5e164723ada8dfa535f38d763fd5e --- /dev/null +++ b/data/chunk-000/episode_000018.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d80741b763961fb20b27caa188441caaa13b2c961f6a569a46b686b9da4081f +size 143375 diff --git a/data/chunk-000/episode_000019.parquet b/data/chunk-000/episode_000019.parquet new file mode 100644 index 0000000000000000000000000000000000000000..28564cdbfa6d8387768d57a1cd1e1890b0281a26 --- /dev/null +++ b/data/chunk-000/episode_000019.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce1f81a7d006eafd480ee4564ac4f65d0481fd24692ed7d57d9984b05249a72f +size 95120 diff --git a/data/chunk-000/episode_000020.parquet b/data/chunk-000/episode_000020.parquet new file mode 100644 index 0000000000000000000000000000000000000000..07f944b1c9b6ffb0e218c2d7cc45583a6ad12b48 --- /dev/null +++ b/data/chunk-000/episode_000020.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe5c2d7448255bff14b1d50876ef9453220c8e9774b5086561b511e764a288e6 +size 95574 diff --git a/data/chunk-000/episode_000021.parquet b/data/chunk-000/episode_000021.parquet new file mode 100644 index 0000000000000000000000000000000000000000..91d6fb031644d3cb19b5fc0479f54577369b9ff9 --- /dev/null +++ b/data/chunk-000/episode_000021.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97ee6304a17ecc4fffcfb960f09428b2bb022196275b62c3be4e3170cf2d8272 +size 98368 diff --git a/data/chunk-000/episode_000022.parquet b/data/chunk-000/episode_000022.parquet new file mode 100644 index 0000000000000000000000000000000000000000..8d58fd333cccccd4dcf36f6352426c64010f726f --- /dev/null +++ b/data/chunk-000/episode_000022.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44acbd80330d632255a000ff07bb4a622af7522cdfa9ca9294ab117d1d40c848 +size 123866 diff --git a/data/chunk-000/episode_000023.parquet b/data/chunk-000/episode_000023.parquet new file mode 100644 index 0000000000000000000000000000000000000000..b384b14dff1d9d27fd078ba4b4d3d7821ee87063 --- /dev/null +++ b/data/chunk-000/episode_000023.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d6ee7282796db26187375f3a8b39d9201d317dd16c5d69a12a2bbeb17024ad8 +size 118573 diff --git a/data/chunk-000/episode_000024.parquet b/data/chunk-000/episode_000024.parquet new file mode 100644 index 0000000000000000000000000000000000000000..7b47c27e18a067bcc9c80911ed3b99c3800d6400 --- /dev/null +++ b/data/chunk-000/episode_000024.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad7029b885c7abee53277e58d2510e61434f495ffa2862c3d00050b675f27af3 +size 91016 diff --git a/data/chunk-000/episode_000025.parquet b/data/chunk-000/episode_000025.parquet new file mode 100644 index 0000000000000000000000000000000000000000..ff67dc43ec44fe8315deb7a93dbfa81e05b29625 --- /dev/null +++ b/data/chunk-000/episode_000025.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7674fb9cb00cf3eed9c3a63e40515c7468a9e37d4313278eebc7c2722a57e53c +size 100816 diff --git a/data/chunk-000/episode_000026.parquet b/data/chunk-000/episode_000026.parquet new file mode 100644 index 0000000000000000000000000000000000000000..e8d020a8957e0dc1104b7ed8eb711c0fa6156f2f --- /dev/null +++ b/data/chunk-000/episode_000026.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d2bb579877934304723fedf16dcc2f5e83cb12a151176848777fdd4c0e1eaa7 +size 107517 diff --git a/data/chunk-000/episode_000027.parquet b/data/chunk-000/episode_000027.parquet new file mode 100644 index 0000000000000000000000000000000000000000..a2d7e7bc654b9db33052dc82bd1421d1c8355dcf --- /dev/null +++ b/data/chunk-000/episode_000027.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a71b896f7e3320bb317ae68b2901c48c741c9d3cd21d9b30b05be814dc61136a +size 95733 diff --git a/data/chunk-000/episode_000028.parquet b/data/chunk-000/episode_000028.parquet new file mode 100644 index 0000000000000000000000000000000000000000..4267df0d261bf18ae4b66fdb1b6788823278f961 --- /dev/null +++ b/data/chunk-000/episode_000028.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68d0ba997c7524c042c52274a660cf460ad24082b3bf6da2a827cb3add1afbad +size 114001 diff --git a/data/chunk-000/episode_000029.parquet b/data/chunk-000/episode_000029.parquet new file mode 100644 index 0000000000000000000000000000000000000000..cb97d23ef53cd67d19a7adbdf2079b035f2077bb --- /dev/null +++ b/data/chunk-000/episode_000029.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d749bf52faa8b3dc593e6a6562f6fab8354e705b31d167a2eeb4ce111224e163 +size 118326 diff --git a/data/chunk-000/episode_000030.parquet b/data/chunk-000/episode_000030.parquet new file mode 100644 index 0000000000000000000000000000000000000000..5f15aee1196e02c7664da705633939b12f553385 --- /dev/null +++ b/data/chunk-000/episode_000030.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e924a76a83d8fc912a6f8ad1ac160b67f55feb6b30ad06f964f95d4c459613ab +size 106156 diff --git a/data/chunk-000/episode_000031.parquet b/data/chunk-000/episode_000031.parquet new file mode 100644 index 0000000000000000000000000000000000000000..3dce8d21b33e8989b13302fbd180936b66b8c6c1 --- /dev/null +++ b/data/chunk-000/episode_000031.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47ddbbfd9a371641b765128bae74798c92e98ce46381a0514f942fe9960b387a +size 109552 diff --git a/data/chunk-000/episode_000032.parquet b/data/chunk-000/episode_000032.parquet new file mode 100644 index 0000000000000000000000000000000000000000..95daa629126dbb3488e37bdc21f007227c990960 --- /dev/null +++ b/data/chunk-000/episode_000032.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4cac438d1abedb5dcf3ba468ba68571b017cf071d3e516bcc25ef3ba075a4bf +size 90582 diff --git a/data/chunk-000/episode_000033.parquet b/data/chunk-000/episode_000033.parquet new file mode 100644 index 0000000000000000000000000000000000000000..54b96010524fe3a1c91bc5eb6dcd8df719eedefe --- /dev/null +++ b/data/chunk-000/episode_000033.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87791e38994614b6c168cc2559bd7faa8b73860568685c902b9c37237cb0f6a9 +size 105286 diff --git a/data/chunk-000/episode_000034.parquet b/data/chunk-000/episode_000034.parquet new file mode 100644 index 0000000000000000000000000000000000000000..262b263430d55b8665f4b3278ebd4fb83ad27d6f --- /dev/null +++ b/data/chunk-000/episode_000034.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b4791d730265a423c6201567d79c75fc31528c26e61ae9f9331dec1a1312b06 +size 91857 diff --git a/data/chunk-000/episode_000035.parquet b/data/chunk-000/episode_000035.parquet new file mode 100644 index 0000000000000000000000000000000000000000..41a902deb9bcd0ea2c5cbd248a73ea41b1e5e5cb --- /dev/null +++ b/data/chunk-000/episode_000035.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2da4d32661ad8a5e37631d4885d1e7efb2cf4122dba1209b43291987f023d697 +size 82191 diff --git a/data/chunk-000/episode_000036.parquet b/data/chunk-000/episode_000036.parquet new file mode 100644 index 0000000000000000000000000000000000000000..f095361f8039374dad7d818006d7722695698e3e --- /dev/null +++ b/data/chunk-000/episode_000036.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97d3795d9a8d1da80a0dd61e91d585a2c4cf4a96b57d4c25627011548902d1cd +size 100968 diff --git a/data/chunk-000/episode_000037.parquet b/data/chunk-000/episode_000037.parquet new file mode 100644 index 0000000000000000000000000000000000000000..80b0d2ef0af6d7d54950d2dffb45b067a75c82b8 --- /dev/null +++ b/data/chunk-000/episode_000037.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ab467e00fda554a28197140f5c6852c1c2b025994a61dc1cd953576901f51be +size 82311 diff --git a/data/chunk-000/episode_000038.parquet b/data/chunk-000/episode_000038.parquet new file mode 100644 index 0000000000000000000000000000000000000000..550ff969fc46f56e1cdba8c54ec5a07eade46133 --- /dev/null +++ b/data/chunk-000/episode_000038.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e560246a43a07816671e6ba6c5f30d9834cb5d16bba3fa9bb8fd25cd98d0506a +size 85993 diff --git a/data/chunk-000/episode_000039.parquet b/data/chunk-000/episode_000039.parquet new file mode 100644 index 0000000000000000000000000000000000000000..692a778fd9006bdd69515dd0a4003b513ec915df --- /dev/null +++ b/data/chunk-000/episode_000039.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fe4c59341e8a2841059d8ec2f1d9ea540019a01386e2e9834c11ba1ba642a0d +size 103722 diff --git a/data/chunk-000/episode_000040.parquet b/data/chunk-000/episode_000040.parquet new file mode 100644 index 0000000000000000000000000000000000000000..cae970b92ef96d7e3d2ba755d3370650b8cd3141 --- /dev/null +++ b/data/chunk-000/episode_000040.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fffab9287255e6462e0d72560249136179af24acd98aed62aa75873a719d0b7e +size 107832 diff --git a/data/chunk-000/episode_000041.parquet b/data/chunk-000/episode_000041.parquet new file mode 100644 index 0000000000000000000000000000000000000000..60846aa639aea99939d8ffd592fcf0d7f65046ea --- /dev/null +++ b/data/chunk-000/episode_000041.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bfcce605d52fd0772900f7f58e16bd8e0be9a81290e07070f9b9b1fb4f7f23f +size 82923 diff --git a/data/chunk-000/episode_000042.parquet b/data/chunk-000/episode_000042.parquet new file mode 100644 index 0000000000000000000000000000000000000000..aebf2313540513084cc41924b13bcb264e7a0b6b --- /dev/null +++ b/data/chunk-000/episode_000042.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:878cff5a581a53a6a5e069269a49a95ac17e9b78ff7f5005b2c7283d88063994 +size 110232 diff --git a/data/chunk-000/episode_000043.parquet b/data/chunk-000/episode_000043.parquet new file mode 100644 index 0000000000000000000000000000000000000000..49bf9c09c387d9eccd635827376ae017761b5036 --- /dev/null +++ b/data/chunk-000/episode_000043.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e31f659429e742388de93eabd4ca890c79320cdac2a3d5662fa90feca3161cb +size 99830 diff --git a/data/chunk-000/episode_000044.parquet b/data/chunk-000/episode_000044.parquet new file mode 100644 index 0000000000000000000000000000000000000000..23a04020c4bc1d1a08962902e2b366ea247a6a73 --- /dev/null +++ b/data/chunk-000/episode_000044.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06a0e40dd2ab0542d8cd9e39ed35d75fba5aecbd99b1c6d0c27cb37923a9b2b8 +size 111676 diff --git a/data/chunk-000/episode_000045.parquet b/data/chunk-000/episode_000045.parquet new file mode 100644 index 0000000000000000000000000000000000000000..ddbfaae6542be663a76195ed398d5012bf601b23 --- /dev/null +++ b/data/chunk-000/episode_000045.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b4ce3c9673ca16f032726d8365e31e8a743e3a97818951ad7e729db6a5b2a76 +size 88930 diff --git a/data/chunk-000/episode_000046.parquet b/data/chunk-000/episode_000046.parquet new file mode 100644 index 0000000000000000000000000000000000000000..6a6a87f5a1b175ad1eae1b565e575ffffa8dfcc6 --- /dev/null +++ b/data/chunk-000/episode_000046.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a405838b539c114cb73435e39ba0d04e6a0c5f4274bb6dddae3230899ea3803d +size 98243 diff --git a/data/chunk-000/episode_000047.parquet b/data/chunk-000/episode_000047.parquet new file mode 100644 index 0000000000000000000000000000000000000000..862f6ec4763c9f0fbff4edb7d8896825d7e70e70 --- /dev/null +++ b/data/chunk-000/episode_000047.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08e3d732388ab4f8583024d8b85e3ec470412702f9f3eeebff0c3dada37551e9 +size 91181 diff --git a/data/chunk-000/episode_000048.parquet b/data/chunk-000/episode_000048.parquet new file mode 100644 index 0000000000000000000000000000000000000000..cd0bb5966da7610d90c3114ac07db4887f23e49e --- /dev/null +++ b/data/chunk-000/episode_000048.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5de7ce573f336818d57848a6b372d93b0248ac323362c546ed8886fdfc7c57f1 +size 83697 diff --git a/data/chunk-000/episode_000049.parquet b/data/chunk-000/episode_000049.parquet new file mode 100644 index 0000000000000000000000000000000000000000..cc974602d7a8f5c2b727b86636629bf9d1a9e078 --- /dev/null +++ b/data/chunk-000/episode_000049.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc32abb403efd9beef998dc4520bb3225db0dea0cc93157a69ee27e77b1b8240 +size 89925 diff --git a/data/chunk-000/episode_000050.parquet b/data/chunk-000/episode_000050.parquet new file mode 100644 index 0000000000000000000000000000000000000000..08036916182a93d16a207210d8d274de53bf6ac5 --- /dev/null +++ b/data/chunk-000/episode_000050.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5000f063869facb10f974a2a02794b1ddb1c7b6935f1472fe2acbb19a64c905 +size 111661 diff --git a/data/chunk-000/episode_000051.parquet b/data/chunk-000/episode_000051.parquet new file mode 100644 index 0000000000000000000000000000000000000000..6ce5d0c578bb241531700693a5e3a1d5d0455d21 --- /dev/null +++ b/data/chunk-000/episode_000051.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc0a75803de708188b4d5ad70b52691119562319f58ed84edd96d77c6592780c +size 134328 diff --git a/data/chunk-000/episode_000052.parquet b/data/chunk-000/episode_000052.parquet new file mode 100644 index 0000000000000000000000000000000000000000..0c1b7f33c980f4897fa24877c167886c7a2ea012 --- /dev/null +++ b/data/chunk-000/episode_000052.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3c851495f106d0057e730f60af989e0a6ee3a388e94e9119ed06ffa922817fe +size 136183 diff --git a/data/chunk-000/episode_000053.parquet b/data/chunk-000/episode_000053.parquet new file mode 100644 index 0000000000000000000000000000000000000000..bac09d1110596b61ce85a928bff4b7470e989ace --- /dev/null +++ b/data/chunk-000/episode_000053.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba2ab247fc868f8f73c2213f2308dce9e82fa23dc0eff5b7e56eca35e084a0d4 +size 135704 diff --git a/data/chunk-000/episode_000054.parquet b/data/chunk-000/episode_000054.parquet new file mode 100644 index 0000000000000000000000000000000000000000..ee68df72067ed4b63cd4e0a79f87f8816f22757d --- /dev/null +++ b/data/chunk-000/episode_000054.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58282ba9ceebbd9ed5c6c6f515814c7bb9586000eb22be6f7d033b9ba04608c3 +size 99618 diff --git a/data/chunk-000/episode_000055.parquet b/data/chunk-000/episode_000055.parquet new file mode 100644 index 0000000000000000000000000000000000000000..c75eb11b61e5ba89525d4300badf07cfbaefe51b --- /dev/null +++ b/data/chunk-000/episode_000055.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a620d97bcb2534f266e0d2b944ffc8b9ca09c6215167b5acb442e29002cf35bd +size 129699 diff --git a/data/chunk-000/episode_000056.parquet b/data/chunk-000/episode_000056.parquet new file mode 100644 index 0000000000000000000000000000000000000000..4b049943ff20c268bf90cc49548e41af99e10032 --- /dev/null +++ b/data/chunk-000/episode_000056.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06a545d3d8e9eb98eb3cae1bc098a1317ff8c2feae61d49d4bc486dd80cbd1d4 +size 119258 diff --git a/data/chunk-000/episode_000057.parquet b/data/chunk-000/episode_000057.parquet new file mode 100644 index 0000000000000000000000000000000000000000..d35a09e0613aea23efd4a070b3559abd1fb96ada --- /dev/null +++ b/data/chunk-000/episode_000057.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5f064d62f10b093c2ed44fb9f209c6a6beb76564442c278490b95a5d1516dec +size 121324 diff --git a/data/chunk-000/episode_000058.parquet b/data/chunk-000/episode_000058.parquet new file mode 100644 index 0000000000000000000000000000000000000000..d44786f582b9da5b24f0b84beb138668ab8b84ff --- /dev/null +++ b/data/chunk-000/episode_000058.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:179169ad0980ba29db327fad7d1d02d0ab63d234d81e39f8b8a27547cd4fe79f +size 104656 diff --git a/data/chunk-000/episode_000059.parquet b/data/chunk-000/episode_000059.parquet new file mode 100644 index 0000000000000000000000000000000000000000..768e4b8534742bd749521b005006d23abde76b61 --- /dev/null +++ b/data/chunk-000/episode_000059.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d8e6201f9cacca3da5e787398a2b3a626a2cae47ef0d4df7cf57828b528685b +size 103046 diff --git a/data/chunk-000/episode_000060.parquet b/data/chunk-000/episode_000060.parquet new file mode 100644 index 0000000000000000000000000000000000000000..50925d7d963eff9ea2a4f01d1d8e0a13803e6649 --- /dev/null +++ b/data/chunk-000/episode_000060.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f60eb762a2ce05b5aaa4ae49fa21347f82597854451f0af67248ba0273b91059 +size 110381 diff --git a/data/chunk-000/episode_000061.parquet b/data/chunk-000/episode_000061.parquet new file mode 100644 index 0000000000000000000000000000000000000000..b7e8449b039ee0ef12a2a6fd949843f040fbbbde --- /dev/null +++ b/data/chunk-000/episode_000061.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5311e25fc3f277548ed54130f6492e1c91c3537520fa6fddabfe0e6ad909d059 +size 132152 diff --git a/data/chunk-000/episode_000062.parquet b/data/chunk-000/episode_000062.parquet new file mode 100644 index 0000000000000000000000000000000000000000..49a2e64c32ad8be04968ff146e0cba5428ec30ab --- /dev/null +++ b/data/chunk-000/episode_000062.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9cf198a8102a74d93d5d2df9b7fd92b0826faafffbac9067113ca1b6deb5807 +size 147721 diff --git a/data/chunk-000/episode_000063.parquet b/data/chunk-000/episode_000063.parquet new file mode 100644 index 0000000000000000000000000000000000000000..b26f8e0c9259e95bc01f6e93aae5bcbcd2d4c8bd --- /dev/null +++ b/data/chunk-000/episode_000063.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02fa2c3f836a46c6704838782c0a530a08b80373f5474015de6a7199d4a882af +size 105156 diff --git a/data/chunk-000/episode_000064.parquet b/data/chunk-000/episode_000064.parquet new file mode 100644 index 0000000000000000000000000000000000000000..3c7ec033546a7bd998d8f5593752b38451188665 --- /dev/null +++ b/data/chunk-000/episode_000064.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:204a381fb00f7446257abb5b598f6d698015f9dc605e30c3786941b15e98250d +size 115815 diff --git a/data/chunk-000/episode_000065.parquet b/data/chunk-000/episode_000065.parquet new file mode 100644 index 0000000000000000000000000000000000000000..a09c36316834956a9e98d49a40530598f5af2b0c --- /dev/null +++ b/data/chunk-000/episode_000065.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45bc2679019b5023b2d29a90bb7499580994b2994790235135188fdb35800c4e +size 96489 diff --git a/data/chunk-000/episode_000066.parquet b/data/chunk-000/episode_000066.parquet new file mode 100644 index 0000000000000000000000000000000000000000..2c19d1a1aacaed9258066836523dd3f56d3d655e --- /dev/null +++ b/data/chunk-000/episode_000066.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d01ff89239f0b2140bfcdd391158a253d418412e5e7c651a849b4fe837c0386 +size 100161 diff --git a/data/chunk-000/episode_000067.parquet b/data/chunk-000/episode_000067.parquet new file mode 100644 index 0000000000000000000000000000000000000000..37e1d990f57e5d69eaf68776aa00ffd599861131 --- /dev/null +++ b/data/chunk-000/episode_000067.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f28b89b502f62d72ee30174ecaa4d277d60bd278eed7d7f081b7740d30b9bde1 +size 144834 diff --git a/data/chunk-000/episode_000068.parquet b/data/chunk-000/episode_000068.parquet new file mode 100644 index 0000000000000000000000000000000000000000..19b1e51ee99cebca814ec4a15b95ffa2a7ae2779 --- /dev/null +++ b/data/chunk-000/episode_000068.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8652bc3e485868928449d93668e5b6bdbbeb7e3a54a9e4a61db839a4e5250374 +size 128153 diff --git a/data/chunk-000/episode_000069.parquet b/data/chunk-000/episode_000069.parquet new file mode 100644 index 0000000000000000000000000000000000000000..d9879e49fb72a1a8a9ec9ae965492c44fc447437 --- /dev/null +++ b/data/chunk-000/episode_000069.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e04b4069e3ddccf89c34e5439cf794837fba5ed812d590c01e9776b1b7b7bee +size 115068 diff --git a/data/chunk-000/episode_000070.parquet b/data/chunk-000/episode_000070.parquet new file mode 100644 index 0000000000000000000000000000000000000000..0ff9eb872107221ea175f063e536cc9a06dbffba --- /dev/null +++ b/data/chunk-000/episode_000070.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3393e2a7e8096b820dc2dce891d8481f5b215a09aaf77c1094b36b8b0d360a00 +size 100533 diff --git a/data/chunk-000/episode_000071.parquet b/data/chunk-000/episode_000071.parquet new file mode 100644 index 0000000000000000000000000000000000000000..9c7044aff5af264291fe51130556e0e378b64824 --- /dev/null +++ b/data/chunk-000/episode_000071.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d4dc3d3c0c98df50806567d55a5643092c2929c93deb467746688dce2a3ced2 +size 117561 diff --git a/data/chunk-000/episode_000072.parquet b/data/chunk-000/episode_000072.parquet new file mode 100644 index 0000000000000000000000000000000000000000..9655e6f8eb082db625e981dec6fd3b516f5b548b --- /dev/null +++ b/data/chunk-000/episode_000072.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0e902123ab6398e5bb86c3dbd9c98ee9d55f89dac63eadeca20ae023e65a9a7 +size 130813 diff --git a/data/chunk-000/episode_000073.parquet b/data/chunk-000/episode_000073.parquet new file mode 100644 index 0000000000000000000000000000000000000000..bff0e21535bb25d3a0cf5b48e232a322348b9271 --- /dev/null +++ b/data/chunk-000/episode_000073.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:321da3a7e5905fe9446f18c95205018ea072caabfed30e4889ec3609395a12f2 +size 94451 diff --git a/data/chunk-000/episode_000074.parquet b/data/chunk-000/episode_000074.parquet new file mode 100644 index 0000000000000000000000000000000000000000..8a06f4fe56af7bdb594752244c8ac2fe6f5e5755 --- /dev/null +++ b/data/chunk-000/episode_000074.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e4f80d8fb64156d29d85f6baadd82df234ef6dc2101dc8042c9e24ac30f5035 +size 103238 diff --git a/data/chunk-000/episode_000075.parquet b/data/chunk-000/episode_000075.parquet new file mode 100644 index 0000000000000000000000000000000000000000..8b6d931393b46cb69d80026a1cab7f404fdf0b30 --- /dev/null +++ b/data/chunk-000/episode_000075.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6fbc4343f965c4a6b7e41949e207a632f4cddd4c1ab80891d5f2d30039e53fa +size 91171 diff --git a/data/chunk-000/episode_000076.parquet b/data/chunk-000/episode_000076.parquet new file mode 100644 index 0000000000000000000000000000000000000000..55a701ad1bbe33ec5f7f298009d22af24fddc45f --- /dev/null +++ b/data/chunk-000/episode_000076.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2195381b36b75c31ea5e2f0d092b223a6e9bbd35dd6002f427d6b83078d102a9 +size 117762 diff --git a/data/chunk-000/episode_000077.parquet b/data/chunk-000/episode_000077.parquet new file mode 100644 index 0000000000000000000000000000000000000000..7aa9c577a0d1d6f4284c2926f79648e387032aa0 --- /dev/null +++ b/data/chunk-000/episode_000077.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a950fa5417990a4ceef04ea81bb5d11b3b9749a68d5b29e34181feea79cade7 +size 92768 diff --git a/data/chunk-000/episode_000078.parquet b/data/chunk-000/episode_000078.parquet new file mode 100644 index 0000000000000000000000000000000000000000..7eb0d817223a12c68329f9a4ec7911f8412d7af2 --- /dev/null +++ b/data/chunk-000/episode_000078.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff5c4053e96c19a45f272c30e6dfd7b4631d336197b11a626d51c5dd7cf9e92a +size 83082 diff --git a/data/chunk-000/episode_000079.parquet b/data/chunk-000/episode_000079.parquet new file mode 100644 index 0000000000000000000000000000000000000000..ae3920b13af21ffdec0fc68c3b76f5812ab1a757 --- /dev/null +++ b/data/chunk-000/episode_000079.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5e7c28ca1ce10f5a2fb1a57d3373f1907212a61e85231bc2c68c71e6a85fb45 +size 87340 diff --git a/data/chunk-000/episode_000080.parquet b/data/chunk-000/episode_000080.parquet new file mode 100644 index 0000000000000000000000000000000000000000..32e304011656ac98478533205e5afb370bd67a93 --- /dev/null +++ b/data/chunk-000/episode_000080.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9344f4d41d340c84cfa874d0b70e88dd434663acdb4a62089004f496cc36c65 +size 91337 diff --git a/data/chunk-000/episode_000081.parquet b/data/chunk-000/episode_000081.parquet new file mode 100644 index 0000000000000000000000000000000000000000..1793bc56281fefcba7ea30fede573530b75f65c1 --- /dev/null +++ b/data/chunk-000/episode_000081.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95c1faecaa9d5c0e379c1cca21508e198b2e87b2e57bf038914cb0839a030d31 +size 101651 diff --git a/data/chunk-000/episode_000082.parquet b/data/chunk-000/episode_000082.parquet new file mode 100644 index 0000000000000000000000000000000000000000..bace962026af066595f89a1a2a1b060560ce4296 --- /dev/null +++ b/data/chunk-000/episode_000082.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a99743f1519dc48f26caa9252d76a344ed4cdee46103fb32a94eba7d6c55131 +size 80985 diff --git a/data/chunk-000/episode_000083.parquet b/data/chunk-000/episode_000083.parquet new file mode 100644 index 0000000000000000000000000000000000000000..ad5fe830eee3729573fbcd6074165d5701faa91a --- /dev/null +++ b/data/chunk-000/episode_000083.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:329242ac3460963d5516a0cab023eaeba4979639ffb6ff5b9371af8d8334ee30 +size 97157 diff --git a/data/chunk-000/episode_000084.parquet b/data/chunk-000/episode_000084.parquet new file mode 100644 index 0000000000000000000000000000000000000000..21d72ce1c703c0369bd9d14504dd9e412a1f4c2f --- /dev/null +++ b/data/chunk-000/episode_000084.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:443dd5ddbec0627ee3ce0400086251211a361c74e3a6dfd063c5422063c8a06f +size 114947 diff --git a/data/chunk-000/episode_000085.parquet b/data/chunk-000/episode_000085.parquet new file mode 100644 index 0000000000000000000000000000000000000000..5f2e7726cf9409941d0626d907743ad5f2443463 --- /dev/null +++ b/data/chunk-000/episode_000085.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c2b051b9649b3efa0e0c2af0f7403cd4d4972613ef72cd9e5a91fb1bb06c147 +size 92466 diff --git a/data/chunk-000/episode_000086.parquet b/data/chunk-000/episode_000086.parquet new file mode 100644 index 0000000000000000000000000000000000000000..8d3663b84be95ec3c23d4993ee205075b385c1d6 --- /dev/null +++ b/data/chunk-000/episode_000086.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97644dd12c8288a6a27aea30f8df9f60db742a030a6102e7115cbcb54837258d +size 95758 diff --git a/data/chunk-000/episode_000087.parquet b/data/chunk-000/episode_000087.parquet new file mode 100644 index 0000000000000000000000000000000000000000..b9aba523712c2e358a6ab05e0f741af37e68ee4d --- /dev/null +++ b/data/chunk-000/episode_000087.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bba2a8c002711aaf9f17d00cd8a721ffee526ee0eba6fcd2adaeda21c89943c +size 123386 diff --git a/data/chunk-000/episode_000088.parquet b/data/chunk-000/episode_000088.parquet new file mode 100644 index 0000000000000000000000000000000000000000..80ef96dfc01647405e19bc6f7f205800dcd45b04 --- /dev/null +++ b/data/chunk-000/episode_000088.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dca8143150ba7798b3c018d8d66c54c8e1bc2597f830303a53d83e5a25b76997 +size 112200 diff --git a/data/chunk-000/episode_000089.parquet b/data/chunk-000/episode_000089.parquet new file mode 100644 index 0000000000000000000000000000000000000000..4f754efa6439f26b15c0c059abe39c40d4c127c0 --- /dev/null +++ b/data/chunk-000/episode_000089.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9eeddf63f5c2efe53044bcbd1f7404b84ccb67f019ecbacf12570fddf674d59 +size 112369 diff --git a/data/chunk-000/episode_000090.parquet b/data/chunk-000/episode_000090.parquet new file mode 100644 index 0000000000000000000000000000000000000000..58ac3c5c599ec6e19e51eda1e50fa706a9837a16 --- /dev/null +++ b/data/chunk-000/episode_000090.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63442e674aeb8997f8617f6981892e32cb462bfcb063136bfd857596866e9f3d +size 110008 diff --git a/data/chunk-000/episode_000091.parquet b/data/chunk-000/episode_000091.parquet new file mode 100644 index 0000000000000000000000000000000000000000..38feff5a9ed9b8f5ddc83da018563487b26704b8 --- /dev/null +++ b/data/chunk-000/episode_000091.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6984d2ddbe48ed678fce0d847c223fbab6d58001c9a90f3ccd770215247ba3a9 +size 102316 diff --git a/data/chunk-000/episode_000092.parquet b/data/chunk-000/episode_000092.parquet new file mode 100644 index 0000000000000000000000000000000000000000..e40dd052070ed373398acec914247f048d905700 --- /dev/null +++ b/data/chunk-000/episode_000092.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acd28dd6463ca2ae0cce1bd96ba592ce6cdc8a4d81d99cf7a1155be57ac9963a +size 101205 diff --git a/data/chunk-000/episode_000093.parquet b/data/chunk-000/episode_000093.parquet new file mode 100644 index 0000000000000000000000000000000000000000..436895b5cd0c62c63b202c7801d6d9b3516e6486 --- /dev/null +++ b/data/chunk-000/episode_000093.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:805c883e8950cf3e727b0a76228468a408c1bea077ae3f867dddb569c2ac3c37 +size 106927 diff --git a/data/chunk-000/episode_000094.parquet b/data/chunk-000/episode_000094.parquet new file mode 100644 index 0000000000000000000000000000000000000000..749a5887d35e85eae44163c4f9e0140030476407 --- /dev/null +++ b/data/chunk-000/episode_000094.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62b0da02c0f00a4b640f9db5bc5d2730b6192f798d8868ba5ec9d3aef09ada78 +size 110628 diff --git a/data/chunk-000/episode_000095.parquet b/data/chunk-000/episode_000095.parquet new file mode 100644 index 0000000000000000000000000000000000000000..3758ab68320e20190fbd8b974e963028a145177a --- /dev/null +++ b/data/chunk-000/episode_000095.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30899c5407c9e0066f94bb23243c64ed885fc38ee79a69ed176d066099ad655f +size 105388 diff --git a/data/chunk-000/episode_000096.parquet b/data/chunk-000/episode_000096.parquet new file mode 100644 index 0000000000000000000000000000000000000000..d5b3bad8adb26dc16298f512a81b45551a8c1c09 --- /dev/null +++ b/data/chunk-000/episode_000096.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d90f4d4175272135f4239a547c14aad6cde40d7b11a30651084c51d0380b9559 +size 105975 diff --git a/data/chunk-000/episode_000097.parquet b/data/chunk-000/episode_000097.parquet new file mode 100644 index 0000000000000000000000000000000000000000..5d522a5d3284b79109faec5df59ea087b7cbc471 --- /dev/null +++ b/data/chunk-000/episode_000097.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d671f2d29be1b167afe1798ad1795ad7d79c5600e17db79e47420c56b0d6e24 +size 94549 diff --git a/data/chunk-000/episode_000098.parquet b/data/chunk-000/episode_000098.parquet new file mode 100644 index 0000000000000000000000000000000000000000..419eb3c5cdd79f0b26af050b4cb2937eb8014585 --- /dev/null +++ b/data/chunk-000/episode_000098.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00b4ee111ab4434ecd78496f6dbfade696e7b6fe9f8da68f78190f0bd78730d9 +size 100876 diff --git a/data/chunk-000/episode_000099.parquet b/data/chunk-000/episode_000099.parquet new file mode 100644 index 0000000000000000000000000000000000000000..9a0e75e71b30ed330773fc87706a05ab9c54ad9b --- /dev/null +++ b/data/chunk-000/episode_000099.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19269b24c0221834a3db4ed66fc7654dafb6106a87928f0c6d0867e0d7b407ab +size 91960 diff --git a/meta/episodes.jsonl b/meta/episodes.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..b3b4fdf63e0fee7c29594a15d660a53e8d29cd49 --- /dev/null +++ b/meta/episodes.jsonl @@ -0,0 +1,100 @@ +{"episode_index": 0, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1547} +{"episode_index": 1, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1652} +{"episode_index": 2, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1595} +{"episode_index": 3, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1265} +{"episode_index": 4, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1554} +{"episode_index": 5, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1191} +{"episode_index": 6, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1417} +{"episode_index": 7, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1509} +{"episode_index": 8, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1401} +{"episode_index": 9, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1187} +{"episode_index": 10, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1482} +{"episode_index": 11, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1405} +{"episode_index": 12, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1165} +{"episode_index": 13, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 928} +{"episode_index": 14, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1309} +{"episode_index": 15, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1165} +{"episode_index": 16, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1188} +{"episode_index": 17, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1488} +{"episode_index": 18, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1713} +{"episode_index": 19, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1032} +{"episode_index": 20, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1047} +{"episode_index": 21, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1077} +{"episode_index": 22, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1328} +{"episode_index": 23, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1288} +{"episode_index": 24, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 993} +{"episode_index": 25, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1096} +{"episode_index": 26, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1117} +{"episode_index": 27, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 993} +{"episode_index": 28, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1302} +{"episode_index": 29, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1378} +{"episode_index": 30, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1125} +{"episode_index": 31, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1179} +{"episode_index": 32, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1000} +{"episode_index": 33, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1095} +{"episode_index": 34, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1006} +{"episode_index": 35, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 918} +{"episode_index": 36, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1118} +{"episode_index": 37, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 836} +{"episode_index": 38, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 907} +{"episode_index": 39, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1131} +{"episode_index": 40, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1190} +{"episode_index": 41, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 860} +{"episode_index": 42, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1228} +{"episode_index": 43, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1146} +{"episode_index": 44, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1230} +{"episode_index": 45, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 988} +{"episode_index": 46, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1053} +{"episode_index": 47, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1018} +{"episode_index": 48, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 917} +{"episode_index": 49, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 998} +{"episode_index": 50, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1318} +{"episode_index": 51, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1578} +{"episode_index": 52, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1690} +{"episode_index": 53, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1520} +{"episode_index": 54, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1141} +{"episode_index": 55, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1564} +{"episode_index": 56, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1380} +{"episode_index": 57, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1377} +{"episode_index": 58, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1136} +{"episode_index": 59, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1120} +{"episode_index": 60, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1314} +{"episode_index": 61, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1505} +{"episode_index": 62, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1761} +{"episode_index": 63, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1248} +{"episode_index": 64, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1318} +{"episode_index": 65, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1057} +{"episode_index": 66, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1076} +{"episode_index": 67, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1690} +{"episode_index": 68, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1449} +{"episode_index": 69, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1286} +{"episode_index": 70, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1095} +{"episode_index": 71, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1277} +{"episode_index": 72, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1486} +{"episode_index": 73, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1013} +{"episode_index": 74, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1103} +{"episode_index": 75, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 944} +{"episode_index": 76, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1302} +{"episode_index": 77, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1003} +{"episode_index": 78, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 921} +{"episode_index": 79, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 943} +{"episode_index": 80, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 954} +{"episode_index": 81, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1088} +{"episode_index": 82, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 803} +{"episode_index": 83, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1032} +{"episode_index": 84, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1247} +{"episode_index": 85, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 974} +{"episode_index": 86, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1078} +{"episode_index": 87, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1420} +{"episode_index": 88, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1235} +{"episode_index": 89, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1257} +{"episode_index": 90, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1178} +{"episode_index": 91, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1107} +{"episode_index": 92, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1073} +{"episode_index": 93, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1189} +{"episode_index": 94, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1248} +{"episode_index": 95, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1144} +{"episode_index": 96, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1142} +{"episode_index": 97, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1039} +{"episode_index": 98, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1077} +{"episode_index": 99, "tasks": ["Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."], "length": 1026} diff --git a/meta/episodes_stats.jsonl b/meta/episodes_stats.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..cab74919e859a0218c9853698e560deebdc922de --- /dev/null +++ b/meta/episodes_stats.jsonl @@ -0,0 +1,100 @@ +{"episode_index": 0, "stats": {"action": {"min": [-35.33945083618164, -96.23273468017578, -51.70222473144531, 55.15618133544922, -41.51340103149414, 0.48859935998916626, -800.0, -1250.0, -1200.0, -900.0, -1250.0, -850.0, -1.908257007598877, -3.5161170959472656, -3.9945526123046875, -2.4818191528320312, -2.3121395111083984, -2.3615646362304688], "max": [38.05504608154297, 48.51402282714844, 100.0, 92.98245239257812, -0.6305832862854004, 29.641693115234375, 900.0, 1750.0, 1550.0, 1150.0, 1250.0, 1700.0, 2.201833724975586, 4.939308166503906, 4.7208356857299805, 3.5087738037109375, 2.154491424560547, 4.397394180297852], "mean": [-5.482169151306152, 16.798038482666016, -8.873050689697266, 75.15740966796875, -23.312042236328125, 16.581735610961914, 1.2928248643875122, 0.6140918135643005, 0.6787330508232117, -2.456367254257202, 1.5190691947937012, 0.12928248941898346, 0.003937758971005678, -0.0008657242287881672, 0.0045774271711707115, -0.004480905830860138, 0.003532680217176676, -0.000579034211114049], "std": [23.786508560180664, 21.47830581665039, 29.48001480102539, 8.851922988891602, 11.552414894104004, 10.195295333862305, 220.02529907226562, 344.4563293457031, 321.0421142578125, 172.43968200683594, 221.06285095214844, 226.3149871826172, 0.5371019840240479, 0.960355281829834, 0.9765051603317261, 0.5000020861625671, 0.3856140375137329, 0.6127951741218567], "count": [1547]}, "observation.state": {"min": [-35.30338668823242, -96.37764739990234, -50.022674560546875, 55.897010803222656, -41.40946578979492, 1.2072434425354004, -800.0, -1350.0, -1150.0, -800.0, -1150.0, -850.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [37.982662200927734, 48.28516387939453, 98.82086181640625, 92.85713958740234, -2.8292181491851807, 29.510395050048828, 800.0, 1800.0, 1500.0, 1200.0, 1100.0, 1450.0, 1280.0, 1528.0, 1420.0, 1388.0, 1364.0, 1460.0], "mean": [-5.558980941772461, 18.24289321899414, -7.506722927093506, 75.23770141601562, -23.3721923828125, 17.889787673950195, 0.42016807198524475, 2.0685198307037354, -0.6464124321937561, -2.391726016998291, 0.9049773812294006, -1.5837104320526123, 487.0639953613281, 361.6961975097656, 258.0245666503906, 372.3258056640625, 461.6625671386719, 468.7239685058594], "std": [23.798213958740234, 21.724090576171875, 29.166595458984375, 8.731143951416016, 11.481151580810547, 8.19597053527832, 206.05322265625, 359.1126403808594, 312.9648132324219, 166.9261932373047, 209.76983642578125, 193.493896484375, 517.5454711914062, 429.0820617675781, 377.4313659667969, 486.97882080078125, 515.6875, 459.93243408203125], "count": [1547]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5778090045299963]], [[0.575496553516393]], [[0.5597641811467134]]], "std": [[[0.17599124383844136]], [[0.18318311548140193]], [[0.18289825132557144]]], "count": [246]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6443824276661885]], [[0.632993376873107]], [[0.6164234774363675]]], "std": [[[0.2774596121014677]], [[0.27884788309284747]], [[0.2783792463759892]]], "count": [246]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[0.9372549019607843]], [[0.9372549019607843]]], "mean": [[[0.47462153109888944]], [[0.4696792204686753]], [[0.47745878085312715]]], "std": [[[0.17196688109782463]], [[0.1746239983139495]], [[0.17804406729438918]]], "count": [246]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5047936277830916]], [[0.4985827770471332]], [[0.497548166082151]]], "std": [[[0.1672663096151276]], [[0.16644332525888944]], [[0.16574273173574258]]], "count": [246]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.444216474208247]], [[0.44530400625697436]], [[0.4632769043254158]]], "std": [[[0.20453307939338794]], [[0.20517445746615937]], [[0.20823663429476746]]], "count": [246]}, "timestamp": {"min": [0.0], "max": [51.53333333333333], "mean": [25.766666666666666], "std": [14.886011330552364], "count": [1547]}, "frame_index": {"min": [0], "max": [1546], "mean": [773.0], "std": [446.5803399165709], "count": [1547]}, "episode_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1547]}, "index": {"min": [0], "max": [1546], "mean": [773.0], "std": [446.5803399165709], "count": [1547]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1547]}}} +{"episode_index": 1, "stats": {"action": {"min": [-32.62385177612305, -100.0, -45.982749938964844, 48.48095703125, -52.60115432739258, 0.40716612339019775, -800.0, -1750.0, -1500.0, -1150.0, -1200.0, -800.0, -1.9816532135009766, -5.106739044189453, -4.6300506591796875, -3.3376121520996094, -2.1019420623779297, -2.280130386352539], "max": [37.467891693115234, 47.67685317993164, 99.72764587402344, 95.54985046386719, 1.8392012119293213, 32.9804573059082, 1000.0, 1750.0, 1850.0, 1250.0, 1250.0, 2000.0, 2.715597152709961, 4.8555908203125, 5.991830825805664, 3.679931640625, 2.417236328125, 5.781759262084961], "mean": [1.6297435760498047, 19.568164825439453, -10.864709854125977, 72.79674530029297, -32.29594421386719, 14.76036548614502, 3.1476998329162598, -0.12106537818908691, -0.09079903364181519, -3.1174333095550537, 5.599273681640625, -0.2118644118309021, 0.006131003610789776, -0.0003547045052982867, 5.493441130965948e-05, -0.005594805348664522, 0.00970176886767149, 2.1648176307120792e-10], "std": [21.49974822998047, 22.36767578125, 31.586870193481445, 11.361409187316895, 13.861513137817383, 8.822025299072266, 235.65716552734375, 344.86456298828125, 325.4186706542969, 227.00563049316406, 241.61019897460938, 208.39279174804688, 0.5820173025131226, 0.9608857035636902, 0.9913702607154846, 0.6504477262496948, 0.4229215681552887, 0.5679372549057007], "count": [1652]}, "observation.state": {"min": [-32.624114990234375, -96.30057525634766, -44.126983642578125, 48.920265197753906, -52.572017669677734, 1.2072434425354004, -750.0, -1850.0, -1450.0, -1050.0, -1100.0, -800.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [37.27344512939453, 48.208091735839844, 99.27437591552734, 94.85050201416016, 1.6975308656692505, 33.13212585449219, 950.0, 1700.0, 1750.0, 1350.0, 1200.0, 1800.0, 1324.0, 1528.0, 1460.0, 1380.0, 1392.0, 1572.0], "mean": [1.534525990486145, 21.07864761352539, -9.475190162658691, 72.90790557861328, -32.36531448364258, 15.748762130737305, 1.5738499164581299, 2.2094430923461914, -1.7857142686843872, -5.145278453826904, 3.2687652111053467, -0.5750605463981628, 535.0823364257812, 326.7167053222656, 210.4552001953125, 374.4576416015625, 505.88861083984375, 491.0242004394531], "std": [21.534252166748047, 22.421661376953125, 31.288768768310547, 11.194168090820312, 13.77054500579834, 7.333498954772949, 221.30201721191406, 358.01129150390625, 314.46600341796875, 216.79165649414062, 233.48388671875, 183.9530487060547, 520.023193359375, 409.74505615234375, 336.4117736816406, 487.389404296875, 520.3344116210938, 473.99725341796875], "count": [1652]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5727143456481691]], [[0.5711123728770787]], [[0.5603010226613168]]], "std": [[[0.17866145346056214]], [[0.18665847105076433]], [[0.18634246322641704]]], "count": [259]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6440189115060438]], [[0.6344345727029551]], [[0.6204922937643526]]], "std": [[[0.2782385235628526]], [[0.28001510779680555]], [[0.2803680823800276]]], "count": [259]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9568627450980393]], [[0.9490196078431372]], [[0.9490196078431372]]], "mean": [[[0.49856639885684]], [[0.4944897970449441]], [[0.5022561503204885]]], "std": [[[0.17722619151249494]], [[0.18024328986125174]], [[0.18373388375302546]]], "count": [259]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49650958074671314]], [[0.49066266765715294]], [[0.48957134182501827]]], "std": [[[0.16500025052898962]], [[0.16405434679737257]], [[0.16280855385864887]]], "count": [259]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9137254901960784]], [[0.9019607843137255]], [[0.9176470588235294]]], "mean": [[[0.4412570516945517]], [[0.4433406870631135]], [[0.4611360854026295]]], "std": [[[0.20627594891334472]], [[0.20736313838862816]], [[0.2106458672095899]]], "count": [259]}, "timestamp": {"min": [0.0], "max": [55.03333333333333], "mean": [27.516666666666666], "std": [15.896374499307136], "count": [1652]}, "frame_index": {"min": [0], "max": [1651], "mean": [825.5], "std": [476.8912349792141], "count": [1652]}, "episode_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [1652]}, "index": {"min": [1547], "max": [3198], "mean": [2372.5], "std": [476.8912349792141], "count": [1652]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1652]}}} +{"episode_index": 2, "stats": {"action": {"min": [-29.61467933654785, -99.24654388427734, -41.8066291809082, 40.60761642456055, -39.779296875, 0.08143322169780731, -1000.0, -1150.0, -1250.0, -1100.0, -1350.0, -1500.0, -2.495412826538086, -3.264965057373047, -3.8129806518554688, -3.2520294189453125, -2.364686965942383, -3.827362060546875], "max": [36.073394775390625, 43.74215316772461, 100.0, 91.09970092773438, 1.1560693979263306, 30.78175926208496, 850.0, 2200.0, 1650.0, 1050.0, 1300.0, 1950.0, 2.2752294540405273, 6.4462127685546875, 5.083976745605469, 2.9952926635742188, 2.312138557434082, 5.700325965881348], "mean": [1.5501874685287476, 18.042831420898438, -7.66460657119751, 73.34886169433594, -25.619543075561523, 17.745466232299805, -1.285266399383545, 1.034482717514038, 0.03134796395897865, -5.329153537750244, 0.7523511052131653, -0.6583071947097778, -0.003589198226109147, 0.0028343917801976204, 0.002561431610956788, -0.014164934866130352, 0.0024050455540418625, 0.00010211019252892584], "std": [18.58860969543457, 20.940526962280273, 28.752243041992188, 8.89194107055664, 9.377710342407227, 8.871298789978027, 207.8395538330078, 322.0919189453125, 306.0646667480469, 163.26304626464844, 208.01910400390625, 239.43682861328125, 0.5120460391044617, 0.9022573232650757, 0.931943953037262, 0.4722144603729248, 0.3631005585193634, 0.6532055735588074], "count": [1595]}, "observation.state": {"min": [-29.39322280883789, -96.37764739990234, -39.229026794433594, 41.52824020385742, -39.60905456542969, 1.2072434425354004, -900.0, -1250.0, -1200.0, -1050.0, -1200.0, -1250.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [35.933807373046875, 44.43159866333008, 99.09297180175781, 90.86378479003906, 0.6172839403152466, 30.5835018157959, 800.0, 2200.0, 1600.0, 700.0, 1200.0, 1800.0, 1288.0, 1656.0, 1440.0, 1244.0, 1368.0, 1560.0], "mean": [1.4767358303070068, 19.522884368896484, -6.297889709472656, 73.4204330444336, -25.641857147216797, 18.560216903686523, -1.7554858922958374, 3.2915360927581787, -0.6896551847457886, -6.8025078773498535, 1.630094051361084, 0.5956112742424011, 530.3749389648438, 301.0407409667969, 260.7222595214844, 439.52099609375, 437.9460754394531, 523.9573364257812], "std": [18.60334587097168, 21.162206649780273, 28.471128463745117, 8.70192813873291, 9.305092811584473, 7.353008270263672, 195.42665100097656, 338.4121398925781, 297.6646728515625, 156.3866424560547, 195.7879638671875, 212.36328125, 519.298828125, 394.9272155761719, 376.72259521484375, 503.8641052246094, 508.6454162597656, 481.5567321777344], "count": [1595]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5764098170518207]], [[0.5741450430866791]], [[0.5622974504616661]]], "std": [[[0.1776675686538663]], [[0.1870979112314927]], [[0.1873613246030462]]], "count": [252]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6428322132093578]], [[0.6330852785558667]], [[0.6178228591205001]]], "std": [[[0.27738338911815935]], [[0.2793010717736575]], [[0.27953539405121014]]], "count": [252]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9803921568627451]], [[0.9411764705882353]], [[0.9529411764705882]]], "mean": [[[0.5022546839337587]], [[0.4974042999144102]], [[0.5047458672126258]]], "std": [[[0.1746087423255698]], [[0.1786750083497443]], [[0.18326205742771579]]], "count": [252]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49749084934899884]], [[0.49040861506639694]], [[0.48844331054180934]]], "std": [[[0.1654180824919453]], [[0.16511610558056838]], [[0.16506465999139378]]], "count": [252]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.984313725490196]], [[0.9725490196078431]], [[0.9725490196078431]]], "mean": [[[0.44360345179738564]], [[0.44541759551042637]], [[0.46362064918560014]]], "std": [[[0.2054969234691893]], [[0.2069532835411861]], [[0.20998314499535392]]], "count": [252]}, "timestamp": {"min": [0.0], "max": [53.13333333333333], "mean": [26.566666666666663], "std": [15.347891639498169], "count": [1595]}, "frame_index": {"min": [0], "max": [1594], "mean": [797.0], "std": [460.43674918494503], "count": [1595]}, "episode_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [1595]}, "index": {"min": [3199], "max": [4793], "mean": [3996.0], "std": [460.43674918494503], "count": [1595]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1595]}}} +{"episode_index": 3, "stats": {"action": {"min": [-30.495412826538086, -100.0, -48.161598205566406, 42.3192138671875, -47.609039306640625, 0.48859935998916626, -850.0, -1300.0, -1250.0, -1350.0, -1200.0, -1350.0, -2.2018356323242188, -3.599834442138672, -3.8129820823669434, -3.9366722106933594, -2.1019439697265625, -3.90879487991333], "max": [34.972476959228516, 46.00251007080078, 98.093505859375, 85.70817565917969, 8.145033836364746, 26.547231674194336, 1100.0, 1600.0, 1450.0, 1000.0, 1500.0, 1900.0, 2.642202377319336, 4.520721435546875, 4.539264678955078, 2.7385520935058594, 2.7325267791748047, 5.293159484863281], "mean": [0.08927018195390701, 17.33061408996582, -10.210465431213379, 71.3790054321289, -24.097803115844727, 13.772722244262695, 5.691699504852295, 0.43478259444236755, -1.067193627357483, 1.7391303777694702, 7.944664001464844, 0.0, 0.012126033194363117, -0.0005293081048876047, -0.003085909178480506, 0.006088679190725088, 0.013209848664700985, -0.0002574957034084946], "std": [16.929349899291992, 25.300073623657227, 32.386592864990234, 9.026092529296875, 13.877896308898926, 8.7265625, 227.49514770507812, 373.98828125, 342.1108093261719, 185.3670196533203, 242.92025756835938, 225.39381408691406, 0.5601537823677063, 1.0451582670211792, 1.0387846231460571, 0.5301722884178162, 0.4278866648674011, 0.613685131072998], "count": [1265]}, "observation.state": {"min": [-30.338850021362305, -96.37764739990234, -45.21541976928711, 43.3554801940918, -47.47942352294922, 1.2072434425354004, -850.0, -1400.0, -1250.0, -1200.0, -1000.0, -1000.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [34.51536560058594, 46.35838317871094, 99.27437591552734, 86.0465087890625, 7.664608955383301, 26.559356689453125, 1000.0, 1750.0, 1450.0, 850.0, 1400.0, 1450.0, 1344.0, 1500.0, 1384.0, 1280.0, 1440.0, 1492.0], "mean": [-0.04030686989426613, 18.93120002746582, -8.631308555603027, 71.45667266845703, -24.197736740112305, 14.735228538513184, 3.8339920043945312, 0.0, -1.1067193746566772, 0.395256906747818, 8.932806015014648, -1.3043478727340698, 541.5177612304688, 355.1083068847656, 287.6332092285156, 416.6956481933594, 533.4229125976562, 481.42608642578125], "std": [16.92168617248535, 25.36455535888672, 32.121185302734375, 8.872926712036133, 13.764520645141602, 7.498121738433838, 214.5485382080078, 393.02105712890625, 332.90264892578125, 172.9761505126953, 231.11561584472656, 191.94163513183594, 520.9270629882812, 419.68804931640625, 387.8240966796875, 499.10528564453125, 521.5045776367188, 472.8354187011719], "count": [1265]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5736563791003823]], [[0.572781265414971]], [[0.5613242760744235]]], "std": [[[0.17814484604299732]], [[0.1856503848197874]], [[0.1849960582319504]]], "count": [212]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6450340246947835]], [[0.6350827311860279]], [[0.6199922626479838]]], "std": [[[0.2775014554147086]], [[0.2793546642937486]], [[0.2795207122564688]]], "count": [212]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9490196078431372]], [[0.9333333333333333]], [[0.9450980392156862]]], "mean": [[[0.5027170794025158]], [[0.49782746119281046]], [[0.505579651082131]]], "std": [[[0.17384218355805886]], [[0.17788289197390203]], [[0.1829701578726783]]], "count": [212]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.506183426593908]], [[0.4995148706298557]], [[0.49804531423418424]]], "std": [[[0.16372470802511896]], [[0.16320104227699753]], [[0.16290621572734282]]], "count": [212]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44327964780644963]], [[0.4450843054399433]], [[0.4623763594077568]]], "std": [[[0.2051185266974158]], [[0.2064186280486601]], [[0.2091033765694213]]], "count": [212]}, "timestamp": {"min": [0.0], "max": [42.13333333333333], "mean": [21.066666666666666], "std": [12.17246437205256], "count": [1265]}, "frame_index": {"min": [0], "max": [1264], "mean": [632.0], "std": [365.1739311615768], "count": [1265]}, "episode_index": {"min": [3], "max": [3], "mean": [3.0], "std": [0.0], "count": [1265]}, "index": {"min": [4794], "max": [6058], "mean": [5426.0], "std": [365.1739311615768], "count": [1265]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1265]}}} +{"episode_index": 4, "stats": {"action": {"min": [-32.25688171386719, -99.49769592285156, -55.60599136352539, 34.36029052734375, -70.46768188476562, 0.48859935998916626, -850.0, -1350.0, -1700.0, -1600.0, -1350.0, -1100.0, -2.2018346786499023, -3.7672653198242188, -5.356331825256348, -4.621307373046875, -2.5748825073242188, -2.931596279144287], "max": [38.6422004699707, 51.19296646118164, 100.0, 99.91442108154297, 1.0509721040725708, 34.6091194152832, 850.0, 1450.0, 1850.0, 1450.0, 1350.0, 2000.0, 2.2018356323242188, 4.18585205078125, 5.810258865356445, 4.27899169921875, 2.417236328125, 5.456026077270508], "mean": [-0.22367265820503235, 17.665212631225586, -7.513777256011963, 74.70014190673828, -34.56031799316406, 17.643224716186523, -0.257400244474411, 0.48262548446655273, 0.0, -4.08622932434082, 3.185328245162964, 0.6113256216049194, 0.0008501256234012544, 0.0012928853975608945, 0.0005257040611468256, -0.009362013079226017, 0.0064248619601130486, 5.2403145673451945e-05], "std": [17.3585147857666, 25.33324432373047, 38.662906646728516, 13.220512390136719, 17.25398826599121, 10.490021705627441, 211.32644653320312, 374.3427429199219, 393.9607238769531, 257.0009765625, 279.9349365234375, 249.0283203125, 0.5212095379829407, 1.044609546661377, 1.2012038230895996, 0.7385720610618591, 0.4931057393550873, 0.6735690832138062], "count": [1554]}, "observation.state": {"min": [-32.2301025390625, -96.37764739990234, -53.74149703979492, 35.46511459350586, -70.21604919433594, 1.3413816690444946, -900.0, -1450.0, -1600.0, -1500.0, -1200.0, -1150.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [38.455474853515625, 50.5973014831543, 99.5464859008789, 99.25249481201172, 0.8230452537536621, 34.80885314941406, 800.0, 1550.0, 1850.0, 1350.0, 1300.0, 1750.0, 1296.0, 1468.0, 1496.0, 1428.0, 1400.0, 1552.0], "mean": [-0.3293563723564148, 19.20899200439453, -6.383933067321777, 74.79499816894531, -34.61958312988281, 18.519657135009766, 0.8365508317947388, 1.9948519468307495, 1.3191763162612915, -7.110682010650635, 3.828828811645508, 0.2895752787590027, 561.909912109375, 327.32562255859375, 316.37322998046875, 393.4517517089844, 517.5933227539062, 409.06304931640625], "std": [17.331666946411133, 25.560670852661133, 38.22108840942383, 13.000370025634766, 17.16046905517578, 9.216988563537598, 198.61770629882812, 393.70928955078125, 384.0307312011719, 241.2227020263672, 272.3066711425781, 234.99664306640625, 518.7609252929688, 408.5018615722656, 431.1441955566406, 495.93365478515625, 520.7733764648438, 463.4258117675781], "count": [1554]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5771550046638089]], [[0.5737049909369956]], [[0.5612576696501813]]], "std": [[[0.17760399132030139]], [[0.1874184292379644]], [[0.18712342700867354]]], "count": [247]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6438537813235956]], [[0.6344582754491811]], [[0.6185468274523034]]], "std": [[[0.2776031233393852]], [[0.2795524156703598]], [[0.279334502344756]]], "count": [247]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.996078431372549]], [[0.9333333333333333]], [[0.9411764705882353]]], "mean": [[[0.4977876685255749]], [[0.49430512721282843]], [[0.5033942530959752]]], "std": [[[0.1816785721090939]], [[0.18367803739295427]], [[0.18581804467336557]]], "count": [247]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5079793527228705]], [[0.5010013511814982]], [[0.4992168786880474]]], "std": [[[0.17059743083462842]], [[0.16978577951837828]], [[0.16899292632663057]]], "count": [247]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44423523127199593]], [[0.4463384279656532]], [[0.4635138128125744]]], "std": [[[0.20628518766330628]], [[0.20720262766029415]], [[0.20951123237765434]]], "count": [247]}, "timestamp": {"min": [0.0], "max": [51.766666666666666], "mean": [25.883333333333333], "std": [14.95336887596707], "count": [1554]}, "frame_index": {"min": [0], "max": [1553], "mean": [776.5], "std": [448.6010662790122], "count": [1554]}, "episode_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [1554]}, "index": {"min": [6059], "max": [7612], "mean": [6835.5], "std": [448.6010662790122], "count": [1554]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1554]}}} +{"episode_index": 5, "stats": {"action": {"min": [-29.4678897857666, -99.66513061523438, -47.34453201293945, 36.756526947021484, -43.93063735961914, 0.0, -800.0, -1400.0, -1500.0, -600.0, -1650.0, -1400.0, -1.9082574844360352, -4.0184173583984375, -4.720832824707031, -1.7115936279296875, -2.6799793243408203, -3.7459282875061035], "max": [37.10091781616211, 48.51402282714844, 100.0, 88.10440826416016, 9.301103591918945, 32.49185562133789, 950.0, 2400.0, 1600.0, 1000.0, 2350.0, 2050.0, 2.422018051147461, 6.781078338623047, 5.083976745605469, 2.8241348266601562, 4.203888416290283, 5.781759262084961], "mean": [2.7932121753692627, 14.527141571044922, -2.7753548622131348, 69.02994537353516, -16.85344886779785, 15.700082778930664, 1.553316593170166, 0.9235936403274536, 1.2174643278121948, -5.835432529449463, 3.0646514892578125, 0.1679261177778244, 0.00449854601174593, 0.002530470257624984, 0.004878433886915445, -0.01221542339771986, 0.005735786631703377, -0.0016409724485129118], "std": [19.842708587646484, 23.457237243652344, 31.56867790222168, 11.127781867980957, 15.428425788879395, 9.250115394592285, 245.87234497070312, 418.32440185546875, 372.5517883300781, 193.3338623046875, 335.5142822265625, 275.1382141113281, 0.6071464419364929, 1.1683146953582764, 1.1363435983657837, 0.5566456317901611, 0.5870466232299805, 0.7450976967811584], "count": [1191]}, "observation.state": {"min": [-29.156816482543945, -96.37764739990234, -45.6689338684082, 37.541526794433594, -43.8271598815918, 1.3413816690444946, -750.0, -1450.0, -1400.0, -600.0, -1250.0, -1150.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [36.72182846069336, 48.593448638916016, 99.5464859008789, 87.5415267944336, 8.950616836547852, 32.19315719604492, 900.0, 2400.0, 1400.0, 950.0, 2000.0, 1750.0, 1308.0, 1716.0, 1400.0, 1292.0, 1612.0, 1556.0], "mean": [2.708118200302124, 15.863381385803223, -1.5203768014907837, 69.13819122314453, -16.904003143310547, 16.81609344482422, 1.2174643278121948, 1.7212426662445068, -0.1679261177778244, -8.606213569641113, 3.652392864227295, 1.1335012912750244, 479.5029296875, 345.3031005859375, 256.0067138671875, 412.52728271484375, 486.4215087890625, 443.0831298828125], "std": [19.811511993408203, 23.551158905029297, 31.329076766967773, 10.930707931518555, 15.341157913208008, 7.4899468421936035, 229.94857788085938, 435.1601257324219, 358.8275146484375, 178.5150909423828, 315.52569580078125, 243.20330810546875, 517.902099609375, 431.3871765136719, 385.42645263671875, 496.6445007324219, 520.0006713867188, 463.8890380859375], "count": [1191]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5765167948780172]], [[0.5742300867954442]], [[0.5608245739095968]]], "std": [[[0.18123868148280184]], [[0.1876679336301879]], [[0.18718996191409365]]], "count": [202]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6428794560522229]], [[0.6328498258833236]], [[0.6177606320374684]]], "std": [[[0.27732866171678805]], [[0.27914900637143975]], [[0.2791507873360262]]], "count": [202]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8941176470588236]], [[0.8941176470588236]], [[0.9254901960784314]]], "mean": [[[0.47509899574516273]], [[0.4702240715799521]], [[0.47842990742088914]]], "std": [[[0.16825475067891943]], [[0.17175350385734456]], [[0.17611825195090197]]], "count": [202]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5007667453326214]], [[0.49697911712127096]], [[0.4969161034669643]]], "std": [[[0.16515580921552966]], [[0.16451813509218768]], [[0.1635155222129389]]], "count": [202]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4421248715864234]], [[0.4441228887594642]], [[0.4625606101970491]]], "std": [[[0.20513453172398363]], [[0.20638193110878045]], [[0.20991079438838894]]], "count": [202]}, "timestamp": {"min": [0.0], "max": [39.666666666666664], "mean": [19.833333333333332], "std": [11.460398803738933], "count": [1191]}, "frame_index": {"min": [0], "max": [1190], "mean": [595.0], "std": [343.81196411216797], "count": [1191]}, "episode_index": {"min": [5], "max": [5], "mean": [5.0], "std": [0.0], "count": [1191]}, "index": {"min": [7613], "max": [8803], "mean": [8208.0], "std": [343.81196411216797], "count": [1191]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1191]}}} +{"episode_index": 6, "stats": {"action": {"min": [-36.880733489990234, -95.64671325683594, -43.62233352661133, 15.532733917236328, -58.959537506103516, 0.0, -950.0, -1600.0, -1400.0, -2800.0, -1100.0, -1750.0, -2.42201828956604, -4.520720481872559, -4.357696533203125, -7.873344421386719, -1.9968452453613281, -4.397394180297852], "max": [34.75229263305664, 41.90037536621094, 100.0, 92.21223449707031, 5.517603874206543, 34.20195388793945, 1100.0, 1450.0, 2750.0, 2200.0, 1300.0, 1750.0, 2.7155964374542236, 4.0184173583984375, 8.533817291259766, 6.418485641479492, 2.364686965942383, 5.048859596252441], "mean": [-1.235303521156311, 15.320844650268555, -3.728267192840576, 65.458740234375, -27.81627082824707, 18.474205017089844, 0.07057163119316101, 0.9174311757087708, -0.7057163119316101, -3.0698659420013428, -2.8228652477264404, 0.8115737438201904, -0.000828736403491348, -0.0005906750448048115, 0.0003202919033356011, -0.0074889990501105785, -0.001631715684197843, -0.0004597484949044883], "std": [21.922103881835938, 18.8272762298584, 24.5067138671875, 13.932403564453125, 18.428251266479492, 10.361889839172363, 255.53842163085938, 393.07122802734375, 423.5848388671875, 331.43743896484375, 294.04656982421875, 284.3617858886719, 0.6279039978981018, 1.1021333932876587, 1.2883812189102173, 0.9690404534339905, 0.5155312418937683, 0.769714891910553], "count": [1417]}, "observation.state": {"min": [-36.800628662109375, -96.22350311279297, -41.4058952331543, 16.777408599853516, -58.89917755126953, 1.3413816690444946, -850.0, -1700.0, -1350.0, -2250.0, -950.0, -1400.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [34.43656539916992, 42.042388916015625, 99.72789001464844, 91.94351959228516, 5.298353672027588, 33.802818298339844, 1000.0, 1550.0, 2500.0, 1600.0, 1250.0, 1750.0, 1344.0, 1472.0, 1684.0, 1536.0, 1412.0, 1480.0], "mean": [-1.267635464668274, 16.83679962158203, -2.069762945175171, 65.64018249511719, -27.854774475097656, 19.514936447143555, -0.035285815596580505, 5.151729106903076, -0.38814395666122437, -9.42131233215332, -0.8821454048156738, 0.6704304814338684, 470.20465087890625, 375.683837890625, 254.27239990234375, 413.4989318847656, 452.87225341796875, 483.00634765625], "std": [21.87294578552246, 18.929033279418945, 24.339385986328125, 13.634718894958496, 18.394746780395508, 8.559513092041016, 235.96456909179688, 408.51287841796875, 406.6900634765625, 292.6604919433594, 279.92852783203125, 257.8498840332031, 515.373046875, 434.8313293457031, 364.4241943359375, 499.8020324707031, 514.4218139648438, 473.9465026855469], "count": [1417]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5691505203893151]], [[0.5649077942952544]], [[0.5552649376598465]]], "std": [[[0.17571775021280786]], [[0.18493257827400003]], [[0.1848776889904654]]], "count": [230]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6429899367718102]], [[0.6330629005044046]], [[0.6183421621909634]]], "std": [[[0.27784890732620593]], [[0.27955652865566044]], [[0.27934810861560716]]], "count": [230]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8941176470588236]], [[0.8941176470588236]], [[0.8941176470588236]]], "mean": [[[0.4701892094700199]], [[0.4666460127166809]], [[0.4759923921923842]]], "std": [[[0.1719310497631822]], [[0.17468417561645413]], [[0.17809142704277225]]], "count": [230]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5131166453537936]], [[0.5087537164322251]], [[0.5064446193876102]]], "std": [[[0.1716290649815188]], [[0.171029191956818]], [[0.17042849229794427]]], "count": [230]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8862745098039215]], [[0.8823529411764706]], [[0.8941176470588236]]], "mean": [[[0.4427182189542484]], [[0.44546201602017615]], [[0.46260919650468885]]], "std": [[[0.20441496778699803]], [[0.20527207138499]], [[0.20796193542667668]]], "count": [230]}, "timestamp": {"min": [0.0], "max": [47.2], "mean": [23.599999999999998], "std": [13.635085461982097], "count": [1417]}, "frame_index": {"min": [0], "max": [1416], "mean": [708.0], "std": [409.0525638594629], "count": [1417]}, "episode_index": {"min": [6], "max": [6], "mean": [6.0], "std": [0.0], "count": [1417]}, "index": {"min": [8804], "max": [10220], "mean": [9512.0], "std": [409.0525638594629], "count": [1417]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1417]}}} +{"episode_index": 7, "stats": {"action": {"min": [-36.073394775390625, -97.82335662841797, -42.260555267333984, 36.756526947021484, -56.3846549987793, 0.16286644339561462, -1050.0, -1200.0, -1350.0, -1050.0, -2200.0, -1350.0, -2.568807601928711, -3.4323997497558594, -4.448482513427734, -2.9097137451171875, -4.098791122436523, -3.583061695098877], "max": [39.30275344848633, 41.31435775756836, 100.0, 95.72100830078125, -1.9968470335006714, 27.361562728881836, 1250.0, 1600.0, 1500.0, 1250.0, 1250.0, 1550.0, 3.009174346923828, 4.771873474121094, 4.720832824707031, 3.5943527221679688, 2.2595901489257812, 4.071660995483398], "mean": [1.626865267753601, 9.593149185180664, 5.773043155670166, 67.44572448730469, -32.48938751220703, 13.865463256835938, 0.5632869601249695, 2.3194167613983154, -0.1325381100177765, -5.202120780944824, 0.49701789021492004, 0.8283631801605225, 0.0015077649150043726, 0.005381660535931587, 0.0001805067149689421, -0.011115731671452522, -0.0010447046952322125, -5.396546839619987e-05], "std": [22.529966354370117, 22.504417419433594, 28.52117156982422, 10.279963493347168, 16.671619415283203, 8.0938138961792, 263.5231628417969, 324.228515625, 345.2027282714844, 217.8993377685547, 246.65660095214844, 212.8427276611328, 0.6504899859428406, 0.9096090197563171, 1.0520617961883545, 0.6275918483734131, 0.43637576699256897, 0.5813836455345154], "count": [1509]}, "observation.state": {"min": [-35.6973991394043, -96.22350311279297, -39.954647064208984, 37.541526794433594, -56.0699577331543, 1.2072434425354004, -950.0, -1350.0, -1350.0, -1050.0, -1800.0, -1150.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [39.0070915222168, 41.96531677246094, 99.72789001464844, 95.01660919189453, -2.160493850708008, 27.364185333251953, 1100.0, 1800.0, 1450.0, 1100.0, 1150.0, 1300.0, 1372.0, 1512.0, 1392.0, 1376.0, 1388.0, 1420.0], "mean": [1.49703049659729, 10.800271034240723, 7.166723728179932, 67.56319427490234, -32.53605651855469, 15.01798152923584, 1.0934393405914307, 4.373757362365723, 0.03313452750444412, -7.422133922576904, -1.192842960357666, -0.8946322202682495, 578.1338500976562, 325.7707214355469, 273.6858825683594, 389.8767395019531, 548.0132446289062, 409.92974853515625], "std": [22.542091369628906, 22.729164123535156, 28.207799911499023, 10.078987121582031, 16.645877838134766, 6.4343485832214355, 245.84732055664062, 340.3545837402344, 334.3069152832031, 204.25808715820312, 238.98780822753906, 181.0263671875, 520.4038696289062, 421.4861755371094, 388.8907775878906, 491.6103515625, 520.2286376953125, 453.3426513671875], "count": [1509]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5697225910508832]], [[0.566092392845568]], [[0.5574685221195916]]], "std": [[[0.17814289181666437]], [[0.18727006671682847]], [[0.1867675509373271]]], "count": [242]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.645609750580673]], [[0.6357193998811645]], [[0.6207527953330092]]], "std": [[[0.2774904623186805]], [[0.27920121044872415]], [[0.27893620608501885]]], "count": [242]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9254901960784314]], [[0.8666666666666667]], [[0.8666666666666667]]], "mean": [[[0.4751535922392373]], [[0.471149777352401]], [[0.48096123669853613]]], "std": [[[0.1681326161493429]], [[0.17157330240158433]], [[0.1760365560978232]]], "count": [242]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[0.996078431372549]]], "mean": [[[0.5008534045333008]], [[0.49886497241803057]], [[0.4978276042510668]]], "std": [[[0.16576833270107239]], [[0.1654263706049366]], [[0.16419663871824366]]], "count": [242]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44379886684356934]], [[0.4472098820761087]], [[0.46417757707421814]]], "std": [[[0.20458119418797416]], [[0.20578122225815704]], [[0.2082195345106986]]], "count": [242]}, "timestamp": {"min": [0.0], "max": [50.266666666666666], "mean": [25.133333333333333], "std": [14.520356081747469], "count": [1509]}, "frame_index": {"min": [0], "max": [1508], "mean": [754.0], "std": [435.6106824524241], "count": [1509]}, "episode_index": {"min": [7], "max": [7], "mean": [7.0], "std": [0.0], "count": [1509]}, "index": {"min": [10221], "max": [11729], "mean": [10975.0], "std": [435.6106824524241], "count": [1509]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1509]}}} +{"episode_index": 8, "stats": {"action": {"min": [-37.39449691772461, -97.99079132080078, -57.694053649902344, 49.08001708984375, -52.70625305175781, 0.08143322169780731, -950.0, -1450.0, -1700.0, -1300.0, -1700.0, -1600.0, -2.2752294540405273, -4.0184173583984375, -5.174762725830078, -3.7655105590820312, -2.995269775390625, -3.827361583709717], "max": [39.96330261230469, 50.60694885253906, 100.0, 97.86050415039062, -3.4156594276428223, 21.905536651611328, 1600.0, 1500.0, 2200.0, 1300.0, 1550.0, 1500.0, 4.403670310974121, 4.269569396972656, 6.808897018432617, 3.936676025390625, 2.9427242279052734, 4.071660995483398], "mean": [-8.068778038024902, 12.370222091674805, -2.339284658432007, 70.59588623046875, -32.76773452758789, 13.782221794128418, 0.035688795149326324, 1.8915060758590698, -0.24982155859470367, -4.532476902008057, 0.4639543294906616, 0.21413275599479675, 0.000261937384493649, 0.0007767714560031891, -0.00038872065488249063, -0.006474989932030439, 0.0015753326006233692, 0.0002906247682403773], "std": [20.980510711669922, 26.616004943847656, 40.8603401184082, 13.071113586425781, 14.913064002990723, 6.077834606170654, 280.2345275878906, 420.0848388671875, 468.986572265625, 248.7423553466797, 268.31494140625, 194.04022216796875, 0.6927689909934998, 1.174641489982605, 1.4285430908203125, 0.7114772796630859, 0.4681643843650818, 0.5223338603973389], "count": [1401]}, "observation.state": {"min": [-37.115840911865234, -96.30057525634766, -56.009071350097656, 49.335548400878906, -52.46913528442383, 1.2072434425354004, -850.0, -1550.0, -1600.0, -1150.0, -1500.0, -1650.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [39.716312408447266, 51.213871002197266, 99.45578002929688, 97.34219360351562, -4.166666507720947, 21.59624481201172, 1450.0, 1650.0, 2100.0, 1250.0, 1500.0, 1150.0, 1468.0, 1472.0, 1576.0, 1408.0, 1472.0, 1324.0], "mean": [-8.21546459197998, 13.690834999084473, -0.9304906129837036, 70.75167846679688, -32.822418212890625, 14.546998023986816, -0.6423982977867126, 4.104211330413818, -1.605995774269104, -4.0685224533081055, -1.1777302026748657, -0.2855103611946106, 563.3433227539062, 370.1955871582031, 304.4282531738281, 334.0128479003906, 478.0385437011719, 433.5874328613281], "std": [20.96074867248535, 26.834800720214844, 40.50101852416992, 12.90870475769043, 14.787172317504883, 4.708895683288574, 261.043212890625, 444.7756042480469, 455.1849060058594, 236.22122192382812, 253.0396270751953, 164.24681091308594, 522.2528686523438, 443.5340881347656, 417.6640625, 471.5141296386719, 518.4404296875, 472.654296875], "count": [1401]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5737701740052745]], [[0.5717391076496389]], [[0.5630319792024997]]], "std": [[[0.17386629710281418]], [[0.18160061611863404]], [[0.18095721279411495]]], "count": [228]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6459189492317395]], [[0.6361939042612659]], [[0.6213568003955968]]], "std": [[[0.2765734775590906]], [[0.27809584213616845]], [[0.27755752439864106]]], "count": [228]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[0.8823529411764706]], [[0.8823529411764706]]], "mean": [[[0.48018229524997136]], [[0.47596350135448917]], [[0.4848346699059741]]], "std": [[[0.16828232837013024]], [[0.1719584898295681]], [[0.17684564823247187]]], "count": [228]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[0.984313725490196]]], "mean": [[[0.49562724494037386]], [[0.4942946542469327]], [[0.49188842395510834]]], "std": [[[0.1668393835303563]], [[0.1675497398774554]], [[0.16679103839675272]]], "count": [228]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44446237082186674]], [[0.447077743378053]], [[0.4648785286592707]]], "std": [[[0.20488718634531197]], [[0.20614423352569097]], [[0.20861675815729747]]], "count": [228]}, "timestamp": {"min": [0.0], "max": [46.666666666666664], "mean": [23.333333333333332], "std": [13.481125351421547], "count": [1401]}, "frame_index": {"min": [0], "max": [1400], "mean": [700.0], "std": [404.43376054264644], "count": [1401]}, "episode_index": {"min": [8], "max": [8], "mean": [8.0], "std": [0.0], "count": [1401]}, "index": {"min": [11730], "max": [13130], "mean": [12430.0], "std": [404.43376054264644], "count": [1401]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1401]}}} +{"episode_index": 9, "stats": {"action": {"min": [-28.440366744995117, -98.82796478271484, -61.96096420288086, 45.14334487915039, -49.6584358215332, 0.0, -1150.0, -1150.0, -2050.0, -1150.0, -2600.0, -1450.0, -2.8623857498168945, -3.264965057373047, -6.17340087890625, -3.3376121520996094, -4.624277114868164, -3.827361583709717], "max": [36.51375961303711, 51.527835845947266, 100.0, 94.95079040527344, 17.235942840576172, 26.221498489379883, 950.0, 1950.0, 1450.0, 1150.0, 2350.0, 1750.0, 2.422018051147461, 5.525325775146484, 4.357694625854492, 3.423187255859375, 4.256437301635742, 4.967426300048828], "mean": [2.292567253112793, 17.841106414794922, -11.557170867919922, 70.28712463378906, -23.12285804748535, 13.457023620605469, -0.33698397874832153, 0.25273799896240234, 0.0, -1.0951980352401733, -3.6225779056549072, 0.6739679574966431, 0.0007419830071739852, 0.00021159839525353163, 0.0003059309965465218, -0.004109563305974007, -0.005445223301649094, -0.0006860420689918101], "std": [20.240026473999023, 25.613609313964844, 32.97957992553711, 10.572937965393066, 13.212484359741211, 7.837951183319092, 252.00103759765625, 419.7576904296875, 431.9623107910156, 208.85719299316406, 360.244873046875, 264.42236328125, 0.6187072992324829, 1.170614242553711, 1.3158355951309204, 0.6026503443717957, 0.6314982771873474, 0.7258788347244263], "count": [1187]}, "observation.state": {"min": [-28.132387161254883, -96.22350311279297, -59.45578384399414, 45.930233001708984, -49.845680236816406, 1.4755197763442993, -1150.0, -1250.0, -1850.0, -950.0, -1950.0, -1550.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [36.24901580810547, 52.36994171142578, 99.45578002929688, 94.51827239990234, 16.975309371948242, 25.821596145629883, 850.0, 2100.0, 1350.0, 1200.0, 2150.0, 1500.0, 1312.0, 1576.0, 1360.0, 1360.0, 1680.0, 1472.0], "mean": [2.2028679847717285, 19.432621002197266, -10.104801177978516, 70.3914566040039, -23.110979080200195, 14.570233345031738, -0.4212299883365631, 1.6849199533462524, 0.16849198937416077, -6.276326656341553, -4.29654598236084, 0.8424599766731262, 554.69921875, 378.4161682128906, 302.8138122558594, 378.21734619140625, 373.0614929199219, 629.9578857421875], "std": [20.27894401550293, 25.786191940307617, 32.656917572021484, 10.4439697265625, 13.14368724822998, 5.927788257598877, 234.20608520507812, 440.0455627441406, 416.5841064453125, 190.28858947753906, 333.7809143066406, 216.3468017578125, 520.3926391601562, 432.9300537109375, 411.6863098144531, 488.4530944824219, 496.60247802734375, 462.14093017578125], "count": [1187]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5677576067349382]], [[0.5657865038342069]], [[0.5571370779541189]]], "std": [[[0.17710434650524573]], [[0.1840856655230391]], [[0.18302149883997063]]], "count": [202]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6475016774655407]], [[0.6376018542111564]], [[0.6230882807949913]]], "std": [[[0.277578583011412]], [[0.27908301658493845]], [[0.27854701667509324]]], "count": [202]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9607843137254902]], [[0.9568627450980393]], [[0.9686274509803922]]], "mean": [[[0.47652901843493173]], [[0.4714887693732609]], [[0.48058273171067106]]], "std": [[[0.1718110779982257]], [[0.17462263117990193]], [[0.17818403907852826]]], "count": [202]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5036779882951531]], [[0.5031448201805475]], [[0.5027036083203908]]], "std": [[[0.16848271399361114]], [[0.16868255858742293]], [[0.16772182470403937]]], "count": [202]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44134835165501846]], [[0.4449962669061024]], [[0.46287646007247785]]], "std": [[[0.2053500220712125]], [[0.20674554661594471]], [[0.20891786152873293]]], "count": [202]}, "timestamp": {"min": [0.0], "max": [39.53333333333333], "mean": [19.76666666666667], "std": [11.421908772179892], "count": [1187]}, "frame_index": {"min": [0], "max": [1186], "mean": [593.0], "std": [342.6572631653968], "count": [1187]}, "episode_index": {"min": [9], "max": [9], "mean": [9.0], "std": [0.0], "count": [1187]}, "index": {"min": [13131], "max": [14317], "mean": [13724.0], "std": [342.6572631653968], "count": [1187]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1187]}}} +{"episode_index": 10, "stats": {"action": {"min": [-29.174312591552734, -94.8095474243164, -60.4176139831543, 41.12109375, -55.07094192504883, 0.0, -650.0, -1150.0, -1250.0, -800.0, -1350.0, -1500.0, -1.6880741119384766, -3.264965057373047, -4.085338592529297, -2.2250747680664062, -2.364686965942383, -4.071660995483398], "max": [40.84403610229492, 51.9464225769043, 100.0, 95.2931137084961, -2.6274304389953613, 21.661237716674805, 1200.0, 1350.0, 1300.0, 1150.0, 2050.0, 1650.0, 2.935779571533203, 3.850982666015625, 3.9945526123046875, 3.3376121520996094, 3.7309513092041016, 4.560260772705078], "mean": [-2.2268950939178467, 13.923792839050293, -0.2929973602294922, 64.01447296142578, -35.26999282836914, 13.957780838012695, -0.30364373326301575, 2.7665317058563232, 1.1133602857589722, -5.668015956878662, 2.5303642749786377, -0.6072874665260315, -0.001287643681280315, 0.008360459469258785, 0.007044731639325619, -0.015129493549466133, 0.004325863905251026, -0.0004945332766510546], "std": [19.576854705810547, 19.99161148071289, 29.841428756713867, 12.647841453552246, 14.293280601501465, 6.832069396972656, 227.18768310546875, 336.8286437988281, 377.4331970214844, 200.02066040039062, 303.14288330078125, 190.79537963867188, 0.5604603886604309, 0.9416564106941223, 1.1481668949127197, 0.5774025917053223, 0.529278039932251, 0.516594409942627], "count": [1482]}, "observation.state": {"min": [-29.235618591308594, -96.37764739990234, -58.367347717285156, 41.94352340698242, -54.938270568847656, 1.2072434425354004, -650.0, -1250.0, -1200.0, -600.0, -1250.0, -1250.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [40.50433349609375, 52.36994171142578, 99.00226593017578, 95.01660919189453, -2.777777671813965, 21.395036697387695, 1050.0, 1500.0, 1200.0, 950.0, 1800.0, 1200.0, 1364.0, 1436.0, 1328.0, 1328.0, 1532.0, 1460.0], "mean": [-2.38437557220459, 15.432792663574219, 0.8442299365997314, 64.18329620361328, -35.31381607055664, 14.838421821594238, -0.16869096457958221, 6.5452094078063965, -0.33738192915916443, -6.342780113220215, 1.6194331645965576, -0.5735492706298828, 631.219970703125, 365.4385986328125, 372.5209045410156, 282.0701904296875, 527.460205078125, 520.091796875], "std": [19.612361907958984, 20.24211311340332, 29.295902252197266, 12.551464080810547, 14.21575927734375, 5.338052272796631, 212.7235870361328, 355.8895568847656, 368.02398681640625, 188.9403076171875, 293.8935241699219, 162.55726623535156, 512.1036987304688, 424.6620788574219, 454.0874328613281, 446.2164611816406, 520.9378662109375, 476.88739013671875], "count": [1482]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5647571795875214]], [[0.562787941279453]], [[0.5536449639904982]]], "std": [[[0.175390340972234]], [[0.18270436631706707]], [[0.18232489505110594]]], "count": [238]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6478439319355193]], [[0.6382389233879826]], [[0.6239899944046247]]], "std": [[[0.27803318940579747]], [[0.2792561722703817]], [[0.27841548855926673]]], "count": [238]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9764705882352941]], [[0.8941176470588236]], [[0.9058823529411765]]], "mean": [[[0.47646759059015764]], [[0.47209640437057176]], [[0.48146283452106337]]], "std": [[[0.17487630171964144]], [[0.1766820597276446]], [[0.17932208555482868]]], "count": [238]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[0.996078431372549]], [[1.0]]], "mean": [[[0.49689096999093757]], [[0.4962807428118306]], [[0.49578114015213925]]], "std": [[[0.16980884074562397]], [[0.17055010066667506]], [[0.1697157979616254]]], "count": [238]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44254407731229745]], [[0.4461885727330148]], [[0.4637465372178283]]], "std": [[[0.20481608893518166]], [[0.20570484348699933]], [[0.20801012719055306]]], "count": [238]}, "timestamp": {"min": [0.0], "max": [49.36666666666667], "mean": [24.68333333333333], "std": [14.260548402524384], "count": [1482]}, "frame_index": {"min": [0], "max": [1481], "mean": [740.5], "std": [427.8164520757315], "count": [1482]}, "episode_index": {"min": [10], "max": [10], "mean": [10.0], "std": [0.0], "count": [1482]}, "index": {"min": [14318], "max": [15799], "mean": [15058.5], "std": [427.8164520757315], "count": [1482]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1482]}}} +{"episode_index": 11, "stats": {"action": {"min": [-27.779815673828125, -96.23273468017578, -54.97049331665039, 19.726144790649414, -55.859169006347656, 0.40716612339019775, -900.0, -1400.0, -1650.0, -1250.0, -1350.0, -1450.0, -2.1284408569335938, -3.8509836196899414, -5.174761772155762, -3.5943527221679688, -2.5748815536499023, -4.071660995483398], "max": [36.44036865234375, 51.527835845947266, 100.0, 100.0, -3.205465078353882, 26.954397201538086, 1050.0, 1550.0, 1550.0, 1950.0, 1250.0, 1450.0, 2.642202377319336, 4.520717620849609, 4.720834732055664, 5.6482696533203125, 2.1544928550720215, 4.071661949157715], "mean": [6.3081440925598145, 7.29194974899292, 7.647130966186523, 62.62886428833008, -35.69369888305664, 13.763909339904785, -0.7829181551933289, -4.021352291107178, 4.092526912689209, 1.5658363103866577, -0.21352313458919525, 2.419928789138794, -0.0017761050257831812, -0.016385814175009727, 0.014603315852582455, 0.004933778662234545, 0.0007854244322516024, 0.00614371569827199], "std": [19.115108489990234, 25.602020263671875, 39.936397552490234, 13.767126083374023, 12.866332054138184, 6.84644889831543, 247.1531524658203, 384.9617614746094, 466.11065673828125, 301.4153747558594, 301.18963623046875, 207.083251953125, 0.6086777448654175, 1.0769481658935547, 1.4181612730026245, 0.8672012090682983, 0.5278977751731873, 0.5627923011779785], "count": [1405]}, "observation.state": {"min": [-27.895980834960938, -86.74373626708984, -52.01813888549805, 20.681062698364258, -55.76131820678711, 1.2072434425354004, -750.0, -1500.0, -1600.0, -1200.0, -1250.0, -1350.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [36.01260757446289, 51.75337219238281, 99.81859588623047, 98.9202651977539, -3.9609053134918213, 26.291080474853516, 950.0, 1650.0, 1450.0, 1800.0, 1050.0, 1450.0, 1332.0, 1480.0, 1388.0, 1536.0, 1352.0, 1416.0], "mean": [6.229352951049805, 8.637663841247559, 8.838014602661133, 62.76490783691406, -35.74092483520508, 14.52953052520752, -0.6049821972846985, -0.6405693888664246, 0.8896797299385071, -1.743772268295288, -2.7046263217926025, 3.914590835571289, 528.7089233398438, 380.30462646484375, 375.453369140625, 338.7872009277344, 571.453369140625, 524.7772216796875], "std": [19.121355056762695, 25.87803840637207, 39.3667106628418, 13.641806602478027, 12.845953941345215, 5.5142669677734375, 230.85287475585938, 410.9564514160156, 456.3204345703125, 284.77093505859375, 294.0394592285156, 193.38510131835938, 519.9248046875, 443.8768310546875, 458.98028564453125, 475.25775146484375, 519.5828247070312, 482.8331298828125], "count": [1405]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5588515007349373]], [[0.5578870809786797]], [[0.5497120570753774]]], "std": [[[0.1735867496206607]], [[0.17997327836784263]], [[0.17893393015213138]]], "count": [229]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6466375492336673]], [[0.6365797201886577]], [[0.6221950946499415]]], "std": [[[0.27838773064319866]], [[0.2794897653577855]], [[0.27844294576662443]]], "count": [229]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9411764705882353]], [[0.8941176470588236]], [[0.9058823529411765]]], "mean": [[[0.47209754063561377]], [[0.4679709253788851]], [[0.47717968147957873]]], "std": [[[0.1735609840651202]], [[0.17522293327294275]], [[0.17736746128875808]]], "count": [229]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4994178885892057]], [[0.49843416067300284]], [[0.49720799886548506]]], "std": [[[0.16620128665298378]], [[0.16647488004805072]], [[0.16568761644209237]]], "count": [229]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.44077040343065904]], [[0.4441768104075691]], [[0.4623767267460114]]], "std": [[[0.20493086604929373]], [[0.20624129698873198]], [[0.20908092543342574]]], "count": [229]}, "timestamp": {"min": [0.0], "max": [46.8], "mean": [23.4], "std": [13.519615379144483], "count": [1405]}, "frame_index": {"min": [0], "max": [1404], "mean": [702.0], "std": [405.5884613743345], "count": [1405]}, "episode_index": {"min": [11], "max": [11], "mean": [11.0], "std": [0.0], "count": [1405]}, "index": {"min": [15800], "max": [17204], "mean": [16502.0], "std": [405.5884613743345], "count": [1405]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1405]}}} +{"episode_index": 12, "stats": {"action": {"min": [-29.688074111938477, -98.74424743652344, -52.33772277832031, 38.04022216796875, -64.47714233398438, 0.32573288679122925, -1400.0, -1700.0, -1700.0, -1500.0, -1850.0, -1250.0, -3.3027524948120117, -4.8555908203125, -5.356330871582031, -4.27899169921875, -3.3105621337890625, -3.257328987121582], "max": [36.587154388427734, 45.50020980834961, 100.0, 97.17586517333984, -4.203888416290283, 28.501628875732422, 1300.0, 2200.0, 2100.0, 1650.0, 1650.0, 1950.0, 3.229357957839966, 6.278778076171875, 6.445755481719971, 4.792469024658203, 2.8376235961914062, 5.3745927810668945], "mean": [4.218547344207764, 5.3912739753723145, 9.489185333251953, 69.67645263671875, -34.220619201660156, 17.105932235717773, 1.716738224029541, 0.7725321650505066, 0.21459227800369263, -4.935622215270996, 2.317596673965454, -3.64806866645813, 0.004976960830390453, 0.0012216133764013648, 0.00046738391392864287, -0.01043118629604578, 0.003608487080782652, -0.007479273714125156], "std": [23.34853172302246, 26.199186325073242, 39.00503921508789, 12.322380065917969, 16.141958236694336, 9.434731483459473, 283.64019775390625, 517.2587280273438, 599.972900390625, 286.7292785644531, 370.2781677246094, 269.77490234375, 0.6979113817214966, 1.4473580121994019, 1.8317184448242188, 0.8318584561347961, 0.6549091935157776, 0.7369372844696045], "count": [1165]}, "observation.state": {"min": [-29.708431243896484, -96.22350311279297, -49.75056838989258, 39.03654479980469, -64.3004150390625, 1.408450722694397, -1200.0, -1850.0, -1600.0, -1350.0, -1800.0, -1150.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [36.24901580810547, 46.28131103515625, 99.27437591552734, 96.51162719726562, -4.475308418273926, 28.236083984375, 1150.0, 2300.0, 2000.0, 1300.0, 1400.0, 1700.0, 1388.0, 1652.0, 1544.0, 1404.0, 1460.0, 1468.0], "mean": [4.081826686859131, 6.665473461151123, 10.876372337341309, 69.81449127197266, -34.253116607666016, 18.36618995666504, 1.2017167806625366, 4.763948440551758, -0.1287553608417511, -6.609442234039307, 1.7596566677093506, -3.3047211170196533, 593.3665161132812, 402.88067626953125, 424.71417236328125, 371.09356689453125, 523.618896484375, 410.38970947265625], "std": [23.3692684173584, 26.545412063598633, 38.34662628173828, 12.065624237060547, 16.080385208129883, 7.316469192504883, 263.08319091796875, 546.2744750976562, 582.4119873046875, 270.58837890625, 361.8648986816406, 228.17623901367188, 519.958740234375, 464.8087158203125, 476.1547546386719, 487.61517333984375, 524.9168701171875, 450.4161376953125], "count": [1165]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5789781597940684]], [[0.5762031398824186]], [[0.5673300592012349]]], "std": [[[0.1760424437654598]], [[0.18377272300036043]], [[0.18327009553278045]]], "count": [199]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6473447517407297]], [[0.6374432600091964]], [[0.6231438021397839]]], "std": [[[0.2778643668294236]], [[0.279455970267375]], [[0.2788578798369275]]], "count": [199]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9490196078431372]], [[0.8352941176470589]], [[0.8274509803921568]]], "mean": [[[0.47674655138437283]], [[0.4722334096955365]], [[0.4812154645777909]]], "std": [[[0.17060703807659952]], [[0.17280784139541674]], [[0.17583981408626734]]], "count": [199]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5112890637829671]], [[0.5106939456268269]], [[0.5102564446004533]]], "std": [[[0.16629113773177737]], [[0.16640151544601567]], [[0.16525051149956355]]], "count": [199]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4465026470177686]], [[0.45021721865044173]], [[0.46806910060925544]]], "std": [[[0.20285041422952088]], [[0.20398048054837342]], [[0.20566794133968155]]], "count": [199]}, "timestamp": {"min": [0.0], "max": [38.8], "mean": [19.4], "std": [11.21021359693422], "count": [1165]}, "frame_index": {"min": [0], "max": [1164], "mean": [582.0], "std": [336.30640790802664], "count": [1165]}, "episode_index": {"min": [12], "max": [12], "mean": [12.0], "std": [0.0], "count": [1165]}, "index": {"min": [17205], "max": [18369], "mean": [17787.0], "std": [336.30640790802664], "count": [1165]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1165]}}} +{"episode_index": 13, "stats": {"action": {"min": [-28.366971969604492, -100.0, -40.444847106933594, 32.04963684082031, -70.5727767944336, 0.0, -1000.0, -2100.0, -1750.0, -1500.0, -2150.0, -1500.0, -2.422018051147461, -5.94390869140625, -5.356332302093506, -4.4501495361328125, -3.7309532165527344, -3.9902279376983643], "max": [36.220184326171875, 41.90037536621094, 100.0, 88.36114501953125, -3.625854015350342, 20.846904754638672, 1100.0, 2000.0, 1950.0, 2200.0, 2200.0, 1700.0, 2.935779571533203, 5.609043121337891, 5.9918293952941895, 6.418487548828125, 4.098793029785156, 4.804560661315918], "mean": [2.3581161499023438, 12.16173267364502, 0.546963095664978, 65.3084487915039, -49.705020904541016, 12.075545310974121, 4.956896781921387, -0.16163793206214905, -1.2392241954803467, -4.956896781921387, -2.316810369491577, 0.10775861889123917, 0.013128770515322685, -0.0010824039345607162, 9.782560664461926e-05, -0.012726310640573502, -0.006228820886462927, -0.0007020108751021326], "std": [17.90518569946289, 22.374225616455078, 30.093339920043945, 11.303324699401855, 17.125656127929688, 6.955734729766846, 306.40087890625, 483.8360595703125, 515.5974731445312, 312.5035705566406, 499.30572509765625, 273.5758056640625, 0.7531439661979675, 1.3455537557601929, 1.573150396347046, 0.9109207987785339, 0.8784009218215942, 0.7451499700546265], "count": [928]}, "observation.state": {"min": [-28.447595596313477, -96.30057525634766, -38.04988479614258, 34.634552001953125, -70.57613372802734, 1.2072434425354004, -900.0, -2200.0, -1650.0, -1300.0, -1750.0, -1250.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [36.24901580810547, 42.4277458190918, 99.27437591552734, 87.8737564086914, -3.806584358215332, 20.724346160888672, 1000.0, 2100.0, 1800.0, 1400.0, 1950.0, 1300.0, 1336.0, 1624.0, 1496.0, 1424.0, 1592.0, 1476.0], "mean": [2.147190570831299, 13.719963073730469, 2.0447139739990234, 65.4942855834961, -49.71239471435547, 13.248628616333008, 4.579741477966309, 7.058189868927002, -0.43103447556495667, -13.739224433898926, -5.926723957061768, -0.6465517282485962, 655.5948486328125, 402.9741516113281, 349.74139404296875, 330.52154541015625, 607.737060546875, 421.0732727050781], "std": [17.889101028442383, 22.576034545898438, 29.618358612060547, 11.037172317504883, 17.14324188232422, 5.203701972961426, 283.7803955078125, 493.97296142578125, 496.84326171875, 275.6987609863281, 483.7009582519531, 211.23971557617188, 511.35858154296875, 449.21722412109375, 438.3298645019531, 471.71795654296875, 526.5988159179688, 455.93646240234375], "count": [928]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5625744570397604]], [[0.5643835456057423]], [[0.5590415925050576]]], "std": [[[0.17465718191556048]], [[0.18253464881945727]], [[0.18242297365361412]]], "count": [168]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6427309246615313]], [[0.6404958068296763]], [[0.626083869485294]]], "std": [[[0.2777891919397359]], [[0.2807651057843706]], [[0.2810888139663318]]], "count": [168]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8901960784313725]], [[0.8823529411764706]], [[0.9137254901960784]]], "mean": [[[0.47471596954754125]], [[0.47030625097261125]], [[0.47982713658380016]]], "std": [[[0.1732089569173664]], [[0.17529933412375953]], [[0.17867401251263143]]], "count": [168]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4916974206349206]], [[0.4912295909683318]], [[0.4902355530753968]]], "std": [[[0.1625289359920963]], [[0.16263018675796287]], [[0.16167900408782634]]], "count": [168]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43785956344343296]], [[0.44023681990157176]], [[0.45899798061585745]]], "std": [[[0.20307400497516206]], [[0.20381252012039522]], [[0.2067226165590175]]], "count": [168]}, "timestamp": {"min": [0.0], "max": [30.9], "mean": [15.450000000000003], "std": [8.92967897892565], "count": [928]}, "frame_index": {"min": [0], "max": [927], "mean": [463.5], "std": [267.89036936776955], "count": [928]}, "episode_index": {"min": [13], "max": [13], "mean": [13.0], "std": [0.0], "count": [928]}, "index": {"min": [18370], "max": [19297], "mean": [18833.5], "std": [267.89036936776955], "count": [928]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [928]}}} +{"episode_index": 14, "stats": {"action": {"min": [-34.311927795410156, -98.91168212890625, -44.89332580566406, 28.112964630126953, -63.373619079589844, 0.0, -1300.0, -1300.0, -1750.0, -1250.0, -2150.0, -1950.0, -3.082568645477295, -3.6835498809814453, -5.356330871582031, -3.679931640625, -3.5207557678222656, -5.2931599617004395], "max": [37.321102142333984, 44.07701873779297, 100.0, 88.87462615966797, -6.4634785652160645, 24.185667037963867, 1500.0, 1400.0, 2000.0, 1550.0, 1750.0, 1650.0, 3.816514015197754, 4.0184173583984375, 6.173397064208984, 4.4501495361328125, 3.047821044921875, 4.397393226623535], "mean": [0.6305800080299377, 14.337124824523926, -2.5206453800201416, 66.52513122558594, -35.86729049682617, 13.609184265136719, -1.6042780876159668, 3.5141329765319824, 1.7952635288238525, -7.715813636779785, -0.038197096437215805, 0.9167303442955017, -0.0029716717544943094, 0.009657327085733414, 0.0069354986771941185, -0.01686752587556839, 0.000923314830288291, -0.00012441961735021323], "std": [20.287336349487305, 21.906951904296875, 29.648427963256836, 11.2776517868042, 16.745487213134766, 7.380126476287842, 316.55584716796875, 403.06787109375, 444.5986022949219, 270.3331604003906, 362.1063232421875, 244.61050415039062, 0.7811318635940552, 1.128254771232605, 1.3556593656539917, 0.7717868089675903, 0.6394832730293274, 0.6645622849464417], "count": [1309]}, "observation.state": {"min": [-34.278961181640625, -96.30057525634766, -42.13151931762695, 29.401992797851562, -63.2716064453125, 1.0731053352355957, -1250.0, -1450.0, -1650.0, -1250.0, -1650.0, -1650.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [37.03703689575195, 44.35452651977539, 98.82086181640625, 88.70431518554688, -7.150205612182617, 24.144868850708008, 1350.0, 1550.0, 1950.0, 1350.0, 1400.0, 1400.0, 1436.0, 1464.0, 1524.0, 1424.0, 1440.0, 1440.0], "mean": [0.5472207069396973, 15.599117279052734, -1.2477962970733643, 66.74654388427734, -35.88786315917969, 14.550763130187988, 0.45836517214775085, 6.9900689125061035, -0.7257448434829712, -11.802903175354004, -0.22918258607387543, 1.2605042457580566, 522.3743286132812, 389.2834167480469, 294.4996032714844, 352.8128356933594, 483.8930358886719, 450.14208984375], "std": [20.22416114807129, 22.143321990966797, 29.032976150512695, 10.966297149658203, 16.693058013916016, 5.880455017089844, 296.9087829589844, 426.40399169921875, 432.87939453125, 250.9350128173828, 351.2611083984375, 214.26419067382812, 523.0267944335938, 451.6177978515625, 417.6663513183594, 477.53131103515625, 521.656982421875, 470.76947021484375], "count": [1309]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5685729853769466]], [[0.5665634186470287]], [[0.5540055099996989]]], "std": [[[0.17564584756890636]], [[0.18391357837723485]], [[0.1825406929817687]]], "count": [217]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6457058917653083]], [[0.6390908745218518]], [[0.6205961558010301]]], "std": [[[0.2782048298586485]], [[0.28076950273606455]], [[0.2802950735291119]]], "count": [217]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9764705882352941]], [[0.9607843137254902]], [[0.9647058823529412]]], "mean": [[[0.49687363708924426]], [[0.49212427901268035]], [[0.5002283797927773]]], "std": [[[0.1791441289269162]], [[0.1816101419609961]], [[0.18486364334484334]]], "count": [217]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[0.996078431372549]], [[1.0]]], "mean": [[[0.5025101230008132]], [[0.49900552035330265]], [[0.4988939273289961]]], "std": [[[0.16693734323900056]], [[0.16766284580940674]], [[0.1681473606063887]]], "count": [217]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43440081435800126]], [[0.437019537250384]], [[0.4567276004487817]]], "std": [[[0.2014187818989221]], [[0.20189808163532347]], [[0.20601317116028076]]], "count": [217]}, "timestamp": {"min": [0.0], "max": [43.6], "mean": [21.799999999999997], "std": [12.595854697302425], "count": [1309]}, "frame_index": {"min": [0], "max": [1308], "mean": [654.0], "std": [377.87564091907274], "count": [1309]}, "episode_index": {"min": [14], "max": [14], "mean": [14.0], "std": [0.0], "count": [1309]}, "index": {"min": [19298], "max": [20606], "mean": [19952.0], "std": [377.87564091907274], "count": [1309]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1309]}}} +{"episode_index": 15, "stats": {"action": {"min": [-36.220184326171875, -100.0, -51.520652770996094, 39.922977447509766, -52.12821960449219, 0.0, -1200.0, -1850.0, -1900.0, -1200.0, -1350.0, -1900.0, -3.009174346923828, -5.3578948974609375, -5.9010443687438965, -3.679931640625, -2.3646888732910156, -5.0488600730896], "max": [36.733943939208984, 51.36040115356445, 100.0, 95.46427154541016, -3.625854015350342, 27.117263793945312, 1200.0, 2250.0, 1850.0, 2050.0, 2000.0, 1750.0, 3.009174346923828, 6.278778076171875, 5.810258865356445, 5.733844757080078, 3.836050033569336, 4.723127365112305], "mean": [-1.6776411533355713, 5.6631975173950195, 6.213192462921143, 67.6087875366211, -30.247568130493164, 14.74800968170166, 0.7725321650505066, 0.6866952776908875, 1.9313304424285889, -0.6008583903312683, 4.377682209014893, 0.7725321650505066, 0.0016380088636651635, 0.001796571770682931, 0.009351185522973537, -0.0008815061300992966, 0.01127652358263731, 0.0001397981686750427], "std": [23.998178482055664, 29.291959762573242, 40.86164474487305, 13.173348426818848, 11.970093727111816, 7.852339267730713, 281.9371032714844, 521.8895263671875, 582.9234619140625, 289.7671813964844, 333.97381591796875, 263.2559814453125, 0.6947093605995178, 1.4602675437927246, 1.7731705904006958, 0.8324494361877441, 0.5882710814476013, 0.7170984745025635], "count": [1165]}, "observation.state": {"min": [-35.855003356933594, -96.37764739990234, -49.65986251831055, 40.86378860473633, -51.95473098754883, 1.2072434425354004, -1100.0, -1900.0, -1750.0, -1100.0, -1150.0, -1400.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [36.48542022705078, 51.44508743286133, 99.27437591552734, 95.01660919189453, -3.806584358215332, 26.492286682128906, 1100.0, 2300.0, 1800.0, 1750.0, 1950.0, 1600.0, 1360.0, 1688.0, 1492.0, 1464.0, 1580.0, 1512.0], "mean": [-1.7789678573608398, 6.994083881378174, 7.516228675842285, 67.73529052734375, -30.340229034423828, 15.687917709350586, 0.6008583903312683, 1.716738224029541, -0.17167381942272186, -4.120171546936035, 3.433476448059082, -2.4892704486846924, 564.4188842773438, 503.7768249511719, 392.95794677734375, 365.36309814453125, 510.321044921875, 563.9691162109375], "std": [23.997806549072266, 29.60125732421875, 40.31941604614258, 13.003238677978516, 11.826176643371582, 6.135535717010498, 261.77716064453125, 551.68505859375, 568.8104858398438, 266.7310485839844, 324.9638366699219, 226.16090393066406, 521.0630493164062, 480.4265441894531, 470.85968017578125, 484.43133544921875, 524.4646606445312, 478.726318359375], "count": [1165]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5632141929007783]], [[0.5641185861907576]], [[0.5571410555637665]]], "std": [[[0.17813431346267009]], [[0.18479708577464785]], [[0.18386416930770372]]], "count": [199]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6463986312280356]], [[0.6371420141968009]], [[0.6219379567362959]]], "std": [[[0.27770819719757245]], [[0.28000661310260266]], [[0.2802476212427991]]], "count": [199]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8784313725490196]], [[0.8745098039215686]], [[0.8862745098039215]]], "mean": [[[0.47704198278976584]], [[0.4731796697950537]], [[0.4819827497372483]]], "std": [[[0.1692248591657443]], [[0.17265674529933986]], [[0.17676414057700648]]], "count": [199]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[0.996078431372549]]], "mean": [[[0.4977671465990081]], [[0.49642193606923507]], [[0.4959305853203928]]], "std": [[[0.16738810788122477]], [[0.16776812838382626]], [[0.16735982745901037]]], "count": [199]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.996078431372549]], [[1.0]], [[1.0]]], "mean": [[[0.43816938758334156]], [[0.4418917750517292]], [[0.459965842283312]]], "std": [[[0.2019181059295013]], [[0.20336185125193404]], [[0.20677900907675473]]], "count": [199]}, "timestamp": {"min": [0.0], "max": [38.8], "mean": [19.4], "std": [11.21021359693422], "count": [1165]}, "frame_index": {"min": [0], "max": [1164], "mean": [582.0], "std": [336.30640790802664], "count": [1165]}, "episode_index": {"min": [15], "max": [15], "mean": [15.0], "std": [0.0], "count": [1165]}, "index": {"min": [20607], "max": [21771], "mean": [21189.0], "std": [336.30640790802664], "count": [1165]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1165]}}} +{"episode_index": 16, "stats": {"action": {"min": [-31.302751541137695, -100.0, -53.245574951171875, 40.436458587646484, -85.02364349365234, 0.8143322467803955, -950.0, -1650.0, -1650.0, -1300.0, -2300.0, -1250.0, -2.2752294540405273, -4.520721435546875, -4.993190765380859, -3.765514373779297, -4.046245574951172, -3.5016283988952637], "max": [33.724769592285156, 50.94181823730469, 100.0, 93.75267791748047, -8.933262825012207, 32.410423278808594, 1250.0, 1400.0, 1650.0, 1950.0, 1500.0, 2350.0, 2.935779571533203, 3.850984573364258, 4.993190765380859, 5.562686920166016, 2.5748825073242188, 6.596091270446777], "mean": [-2.1194870471954346, -4.687808036804199, 27.036949157714844, 61.7890625, -47.47521209716797, 18.580825805664062, 1.6414141654968262, 0.4208754301071167, 0.33670035004615784, 0.2525252401828766, -1.3047138452529907, 1.430976390838623, 0.0015445102471858263, 0.0007047813851386309, -0.0008405820117332041, 0.00533073116093874, -0.0014154550153762102, 0.005003892816603184], "std": [19.846891403198242, 27.78624725341797, 39.33917236328125, 11.977093696594238, 19.42947769165039, 10.31089973449707, 251.34988403320312, 450.373779296875, 555.542724609375, 322.9375305175781, 449.14764404296875, 298.13214111328125, 0.6191080212593079, 1.2559715509414673, 1.6954783201217651, 0.924735963344574, 0.7878471612930298, 0.8139212131500244], "count": [1188]}, "observation.state": {"min": [-31.205673217773438, -96.37764739990234, -52.29024887084961, 41.86046600341797, -84.51646423339844, 1.2072434425354004, -850.0, -1650.0, -1550.0, -1200.0, -1950.0, -1050.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [33.569740295410156, 50.98265838623047, 99.27437591552734, 93.93687438964844, -7.561728477478027, 32.12609100341797, 1150.0, 1550.0, 1550.0, 1600.0, 1300.0, 2000.0, 1348.0, 1436.0, 1428.0, 1504.0, 1428.0, 1576.0], "mean": [-2.2065930366516113, -3.5628581047058105, 28.110837936401367, 61.846927642822266, -47.488914489746094, 19.441516876220703, 1.2205387353897095, 0.9259259104728699, -0.5892255902290344, -2.9040403366088867, -1.8518518209457397, -0.5892255902290344, 531.3568725585938, 429.30975341796875, 407.531982421875, 435.2962951660156, 524.888916015625, 304.2828369140625], "std": [19.769630432128906, 27.939531326293945, 38.982269287109375, 11.85014820098877, 19.41108512878418, 8.959330558776855, 237.95126342773438, 480.5946044921875, 541.0189208984375, 299.40631103515625, 430.3797607421875, 285.46331787109375, 520.038330078125, 470.4224548339844, 479.8651428222656, 506.8805236816406, 527.7808227539062, 424.5789794921875], "count": [1188]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5622107388128519]], [[0.5602237308289653]], [[0.5516485957419272]]], "std": [[[0.17558066664543742]], [[0.18245954348941065]], [[0.18259278643887342]]], "count": [202]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6469104017019349]], [[0.6381128937342263]], [[0.6239278335921827]]], "std": [[[0.27815522869657316]], [[0.28067208136901245]], [[0.2812034044115569]]], "count": [202]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9529411764705882]], [[0.9529411764705882]], [[0.9333333333333333]]], "mean": [[[0.47836435684009576]], [[0.47551296067106713]], [[0.4873203130055653]]], "std": [[[0.17621155317106235]], [[0.17524963178583794]], [[0.17488189438801874]]], "count": [202]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[0.9882352941176471]], [[1.0]]], "mean": [[[0.5108154302562609]], [[0.5099610765304472]], [[0.5108542869911991]]], "std": [[[0.1676176524365814]], [[0.16812549889786743]], [[0.16756030172529543]]], "count": [202]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8313725490196079]], [[0.803921568627451]], [[0.8235294117647058]]], "mean": [[[0.4402676169271339]], [[0.4443711799488772]], [[0.46363421746586425]]], "std": [[[0.20278636444071568]], [[0.20356449699899964]], [[0.20597502483721625]]], "count": [202]}, "timestamp": {"min": [0.0], "max": [39.56666666666667], "mean": [19.783333333333335], "std": [11.431531280078246], "count": [1188]}, "frame_index": {"min": [0], "max": [1187], "mean": [593.5], "std": [342.9459384023474], "count": [1188]}, "episode_index": {"min": [16], "max": [16], "mean": [16.0], "std": [0.0], "count": [1188]}, "index": {"min": [21772], "max": [22959], "mean": [22365.5], "std": [342.9459384023474], "count": [1188]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1188]}}} +{"episode_index": 17, "stats": {"action": {"min": [-43.119266510009766, -100.0, -34.816158294677734, 21.780059814453125, -80.13662719726562, 0.0, -1450.0, -1500.0, -2100.0, -1500.0, -2200.0, -1750.0, -3.669724941253662, -4.185855865478516, -6.354969024658203, -4.621311187744141, -3.8885955810546875, -4.723126411437988], "max": [35.7064208984375, 38.970279693603516, 100.0, 96.83354949951172, -3.520756721496582, 32.89902114868164, 1550.0, 2000.0, 1650.0, 1850.0, 1650.0, 1850.0, 4.256881237030029, 5.609039306640625, 4.90240478515625, 5.6482696533203125, 2.9427223205566406, 5.456027030944824], "mean": [-1.5101569890975952, -1.7636247873306274, 25.882755279541016, 57.48413848876953, -41.20945739746094, 19.63245964050293, 1.1424731016159058, -0.43682795763015747, -0.4704301059246063, 0.3360215127468109, 3.4946236610412598, -0.3360215127468109, 0.005770935211330652, -0.0010688561014831066, 0.0006101464969106019, 0.00017254326667170972, 0.005191294942051172, 0.0007114468025974929], "std": [22.763633728027344, 24.536907196044922, 34.09585189819336, 14.565020561218262, 20.862693786621094, 10.753786087036133, 309.4038391113281, 387.32196044921875, 446.9012145996094, 303.8835144042969, 416.0297546386719, 289.6799011230469, 0.762036919593811, 1.07953679561615, 1.363298773765564, 0.8737579584121704, 0.7305185794830322, 0.7915343642234802], "count": [1488]}, "observation.state": {"min": [-42.71079635620117, -96.30057525634766, -32.06349182128906, 22.342193603515625, -79.93827056884766, 6.237424373626709, -1300.0, -1500.0, -1900.0, -1250.0, -1950.0, -1550.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [35.61859893798828, 39.73025131225586, 99.81859588623047, 96.17940521240234, -4.475308418273926, 32.729713439941406, 1400.0, 1950.0, 1550.0, 1750.0, 1550.0, 1700.0, 1464.0, 1612.0, 1416.0, 1528.0, 1488.0, 1556.0], "mean": [-1.5979636907577515, -0.5982381701469421, 27.025991439819336, 57.56875991821289, -41.2678337097168, 20.657194137573242, 1.579301118850708, 1.7473118305206299, 0.16801075637340546, -5.208333492279053, 3.259408712387085, 0.10080645233392715, 520.9301147460938, 322.8924865722656, 357.9166564941406, 390.7876281738281, 558.4489135742188, 503.0887145996094], "std": [22.70503807067871, 24.888166427612305, 33.69961166381836, 14.375588417053223, 20.814376831054688, 8.9347562789917, 284.1506042480469, 405.9361267089844, 430.2236633300781, 278.0826416015625, 403.52349853515625, 261.9297790527344, 522.8490600585938, 426.029296875, 454.32318115234375, 495.64227294921875, 528.1038208007812, 477.4200134277344], "count": [1488]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5644967431358876]], [[0.5615425648467197]], [[0.550380913802062]]], "std": [[[0.17795609897627485]], [[0.18390333990100283]], [[0.1827391198015373]]], "count": [239]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6488432953551017]], [[0.6403946599734733]], [[0.6251374104383735]]], "std": [[[0.2778472581626164]], [[0.2802915566206499]], [[0.28026703858403207]]], "count": [239]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9176470588235294]], [[0.9019607843137255]], [[0.9019607843137255]]], "mean": [[[0.4764900277230837]], [[0.47447052499521425]], [[0.48553899007301665]]], "std": [[[0.17707301772117642]], [[0.17723564327828994]], [[0.1777520782658718]]], "count": [239]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9686274509803922]], [[0.9490196078431372]], [[0.9568627450980393]]], "mean": [[[0.5091067389996444]], [[0.5079973866464298]], [[0.5084058346665026]]], "std": [[[0.16546446310416366]], [[0.16617883101536365]], [[0.16585778861131023]]], "count": [239]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4409684021795608]], [[0.4448693083928132]], [[0.4631655591106736]]], "std": [[[0.20266667515792167]], [[0.2037167891000063]], [[0.20627359831675832]]], "count": [239]}, "timestamp": {"min": [0.0], "max": [49.56666666666667], "mean": [24.78333333333333], "std": [14.318283442533911], "count": [1488]}, "frame_index": {"min": [0], "max": [1487], "mean": [743.5], "std": [429.5485032760173], "count": [1488]}, "episode_index": {"min": [17], "max": [17], "mean": [17.0], "std": [0.0], "count": [1488]}, "index": {"min": [22960], "max": [24447], "mean": [23703.5], "std": [429.5485032760173], "count": [1488]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1488]}}} +{"episode_index": 18, "stats": {"action": {"min": [-31.66972541809082, -100.0, -28.370403289794922, 22.379117965698242, -80.08407592773438, 0.0, -950.0, -1500.0, -1500.0, -2050.0, -1950.0, -1300.0, -2.348623752593994, -4.437004089355469, -4.6300506591796875, -5.9905853271484375, -3.415660858154297, -3.583061695098877], "max": [35.779815673828125, 30.766010284423828, 100.0, 95.63542938232422, -0.7356805205345154, 34.77198791503906, 1400.0, 1400.0, 1550.0, 2250.0, 2050.0, 1700.0, 3.4495413303375244, 4.0184173583984375, 4.539264678955078, 6.418483734130859, 3.8885955810546875, 4.641693115234375], "mean": [-4.033843517303467, -7.322883605957031, 36.1807975769043, 52.00384521484375, -50.283878326416016, 14.81417465209961, -1.1091651916503906, -0.02918855845928192, -0.9340338706970215, 0.02918855845928192, 2.8021016120910645, -1.1091651916503906, -0.004455947782844305, -0.0013194844359531999, -0.0015369555912911892, -9.991255501518026e-05, 0.0032516950741410255, -0.003850607667118311], "std": [18.290369033813477, 22.570335388183594, 30.345399856567383, 14.627903938293457, 16.975059509277344, 9.586858749389648, 229.43475341796875, 364.03338623046875, 381.8733215332031, 301.7388916015625, 393.6751708984375, 233.56919860839844, 0.5655288696289062, 1.0152432918548584, 1.1650346517562866, 0.8689512610435486, 0.691993772983551, 0.6335079073905945], "count": [1713]}, "observation.state": {"min": [-31.67848777770996, -96.53179168701172, -25.260770797729492, 23.338871002197266, -79.83538818359375, 1.2072434425354004, -900.0, -1550.0, -1350.0, -1800.0, -1700.0, -1250.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [35.61859893798828, 31.175336837768555, 99.45578002929688, 95.09967041015625, -0.8230452537536621, 34.54057693481445, 1300.0, 1500.0, 1400.0, 1700.0, 1850.0, 1450.0, 1420.0, 1464.0, 1380.0, 1568.0, 1580.0, 1464.0], "mean": [-4.096252918243408, -6.205453395843506, 37.305416107177734, 52.202049255371094, -50.33918380737305, 15.769407272338867, -1.7221249341964722, 0.46701693534851074, 0.17513135075569153, -3.7945125102996826, 0.7005254030227661, -2.043199062347412, 547.78515625, 305.18621826171875, 347.4815979003906, 337.73028564453125, 553.5645141601562, 389.65789794921875], "std": [18.218172073364258, 22.883455276489258, 29.950593948364258, 14.40880298614502, 16.906768798828125, 8.359829902648926, 215.01922607421875, 385.507568359375, 366.73956298828125, 269.9992370605469, 380.99481201171875, 206.021484375, 517.6629638671875, 418.7962341308594, 444.93963623046875, 470.8362121582031, 525.8754272460938, 455.7511291503906], "count": [1713]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5595636640621161]], [[0.5583158370804462]], [[0.5480755020209839]]], "std": [[[0.17724638742873794]], [[0.18327447696647323]], [[0.18241629906522014]]], "count": [266]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6485698782802595]], [[0.6416270217516831]], [[0.6233872641161727]]], "std": [[[0.2776827857350754]], [[0.2798372915550978]], [[0.27883271503545864]]], "count": [266]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9058823529411765]], [[0.9058823529411765]], [[0.9058823529411765]]], "mean": [[[0.47855130857167427]], [[0.4764740166900093]], [[0.48820091896407686]]], "std": [[[0.17485146245253522]], [[0.17531215889897342]], [[0.17629159913158177]]], "count": [266]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[0.9725490196078431]], [[0.9725490196078431]]], "mean": [[[0.5039205251179418]], [[0.5025324217406261]], [[0.5033572127315838]]], "std": [[[0.16630299805499738]], [[0.16782665263374688]], [[0.16803030510211509]]], "count": [266]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.996078431372549]], [[1.0]], [[1.0]]], "mean": [[[0.44169101598972926]], [[0.44554766588653005]], [[0.46510377583050766]]], "std": [[[0.2034221865297749]], [[0.2042034024872775]], [[0.2067180586118256]]], "count": [266]}, "timestamp": {"min": [0.0], "max": [57.06666666666667], "mean": [28.53333333333333], "std": [16.483347376693267], "count": [1713]}, "frame_index": {"min": [0], "max": [1712], "mean": [856.0], "std": [494.50042130079794], "count": [1713]}, "episode_index": {"min": [18], "max": [18], "mean": [18.0], "std": [0.0], "count": [1713]}, "index": {"min": [24448], "max": [26160], "mean": [25304.0], "std": [494.50042130079794], "count": [1713]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1713]}}} +{"episode_index": 19, "stats": {"action": {"min": [-27.266054153442383, -100.0, -31.27553367614746, 25.545570373535156, -76.3531265258789, 0.0, -1150.0, -1500.0, -1650.0, -1850.0, -2150.0, -1750.0, -2.7155961990356445, -4.269569396972656, -5.174762725830078, -5.305946350097656, -3.8885955810546875, -4.967426776885986], "max": [38.20183563232422, 36.458770751953125, 100.0, 84.42447662353516, -0.8407776951789856, 30.37459373474121, 1450.0, 1550.0, 2300.0, 1950.0, 1650.0, 1450.0, 3.4495413303375244, 4.269568920135498, 6.899681091308594, 5.562686920166016, 2.995269775390625, 3.908794403076172], "mean": [-1.2294285297393799, -5.708417892456055, 30.24057388305664, 61.115028381347656, -41.416717529296875, 17.976778030395508, -1.3565891981124878, 0.09689922630786896, 0.8236433863639832, -0.5329457521438599, 0.6298449635505676, -1.5988372564315796, -0.0027025111485272646, -9.980312398738533e-08, -1.1089236195971353e-08, 0.005970677826553583, 0.0045318081974983215, -0.001183622283861041], "std": [17.851966857910156, 27.54853057861328, 37.4859733581543, 11.0939359664917, 19.169994354248047, 10.064024925231934, 309.4797668457031, 487.3995056152344, 524.802734375, 326.29730224609375, 415.3681640625, 334.6939697265625, 0.7608478665351868, 1.358107089996338, 1.6014214754104614, 0.943053662776947, 0.7246147990226746, 0.9142991900444031], "count": [1032]}, "observation.state": {"min": [-27.1867618560791, -96.45471954345703, -28.707483291625977, 26.744186401367188, -76.1316909790039, 1.3413816690444946, -1100.0, -1550.0, -1500.0, -1600.0, -1900.0, -1650.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [37.588653564453125, 37.18689727783203, 99.81859588623047, 83.97010040283203, -2.160493850708008, 30.046947479248047, 1250.0, 1800.0, 2150.0, 1600.0, 1500.0, 1400.0, 1412.0, 1512.0, 1572.0, 1492.0, 1480.0, 1440.0], "mean": [-1.3523874282836914, -4.621448993682861, 31.387880325317383, 61.208614349365234, -41.43193817138672, 18.829025268554688, -2.5193798542022705, 1.6957364082336426, 0.09689922630786896, -6.007751941680908, -1.0658915042877197, -0.38759690523147583, 550.9767456054688, 386.6666564941406, 412.1085205078125, 480.248046875, 594.6821899414062, 454.5658874511719], "std": [17.830814361572266, 27.631196975708008, 36.964019775390625, 10.906783103942871, 19.10003089904785, 8.728489875793457, 285.7645263671875, 517.2163696289062, 508.1554260253906, 299.13104248046875, 396.93994140625, 327.8863525390625, 523.0469970703125, 464.805908203125, 473.7926025390625, 512.322265625, 523.0256958007812, 476.60504150390625], "count": [1032]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5700528374811463]], [[0.5707885995744452]], [[0.5629265525120305]]], "std": [[[0.1780312229588948]], [[0.1862282453822399]], [[0.18585858434063668]]], "count": [182]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6482638496103569]], [[0.6400810652786756]], [[0.6251412759013862]]], "std": [[[0.27819698815984145]], [[0.2802361268535097]], [[0.28009508999401844]]], "count": [182]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9137254901960784]], [[0.8705882352941177]], [[0.8823529411764706]]], "mean": [[[0.47726936319399554]], [[0.47510555712669683]], [[0.4864716992566257]]], "std": [[[0.17588955237021506]], [[0.1759816213121916]], [[0.17661415849045506]]], "count": [182]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9882352941176471]], [[0.9647058823529412]], [[1.0]]], "mean": [[[0.5175801596279538]], [[0.5163446298391152]], [[0.5169779030201824]]], "std": [[[0.1672415925550421]], [[0.16775118074181378]], [[0.16708728271303525]]], "count": [182]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.984313725490196]], [[1.0]], [[1.0]]], "mean": [[[0.44049998541083096]], [[0.4440492171227466]], [[0.46146040162860014]]], "std": [[[0.20344520508015992]], [[0.20443788738600996]], [[0.2067391664361332]]], "count": [182]}, "timestamp": {"min": [0.0], "max": [34.36666666666667], "mean": [17.183333333333334], "std": [9.930419967994341], "count": [1032]}, "frame_index": {"min": [0], "max": [1031], "mean": [515.5], "std": [297.91259903983024], "count": [1032]}, "episode_index": {"min": [19], "max": [19], "mean": [19.0], "std": [0.0], "count": [1032]}, "index": {"min": [26161], "max": [27192], "mean": [26676.5], "std": [297.91259903983024], "count": [1032]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1032]}}} +{"episode_index": 20, "stats": {"action": {"min": [-34.165138244628906, -100.0, -27.190195083618164, 33.504493713378906, -73.46295166015625, 0.24429967999458313, -800.0, -1650.0, -1400.0, -1100.0, -1900.0, -1300.0, -1.9082565307617188, -4.771873474121094, -4.26690673828125, -3.1664505004882812, -3.4682083129882812, -3.501628875732422], "max": [33.43119430541992, 42.402679443359375, 100.0, 92.72571563720703, -2.364687442779541, 31.107492446899414, 1100.0, 1700.0, 1550.0, 1550.0, 1450.0, 1450.0, 2.7889909744262695, 4.939308166503906, 4.539264678955078, 4.535732269287109, 2.6274304389953613, 3.7459278106689453], "mean": [-1.2846181392669678, 9.408653259277344, 8.671377182006836, 57.45445251464844, -41.90764236450195, 15.987789154052734, -0.2865329384803772, -1.0028653144836426, -0.5253103971481323, -8.834766387939453, 2.578796625137329, 0.2865329384803772, 0.0002804032410494983, -0.0007195349899120629, -8.671058458276093e-05, -0.02370404824614525, 0.005018970463424921, 0.00015555531717836857], "std": [20.617610931396484, 23.409128189086914, 28.94887924194336, 11.909921646118164, 18.564382553100586, 9.600565910339355, 280.7155456542969, 419.2034912109375, 417.0406494140625, 289.7672119140625, 427.897705078125, 281.2083740234375, 0.6900615096092224, 1.1747621297836304, 1.2721675634384155, 0.8311047554016113, 0.7508158683776855, 0.7662537097930908], "count": [1047]}, "observation.state": {"min": [-34.04255294799805, -96.37764739990234, -24.625850677490234, 34.634552001953125, -72.89094543457031, 1.2072434425354004, -750.0, -1750.0, -1300.0, -1000.0, -1750.0, -1250.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [33.490936279296875, 42.11946105957031, 99.27437591552734, 92.19268798828125, -2.726337432861328, 30.851778030395508, 1000.0, 1900.0, 1400.0, 1450.0, 1350.0, 1400.0, 1340.0, 1544.0, 1376.0, 1464.0, 1428.0, 1416.0], "mean": [-1.3987196683883667, 11.083550453186035, 10.037235260009766, 57.6822395324707, -41.93024444580078, 17.20524024963379, 1.623686671257019, 1.4326647520065308, -0.2865329384803772, -11.652339935302734, 1.0983762741088867, 1.3849092721939087, 589.5396118164062, 347.4956970214844, 328.7220764160156, 364.7564392089844, 579.663818359375, 478.532958984375], "std": [20.571861267089844, 23.480649948120117, 28.481735229492188, 11.71826457977295, 18.519468307495117, 7.764652729034424, 260.8804016113281, 442.9126892089844, 403.5833740234375, 267.5243225097656, 416.58050537109375, 257.9855041503906, 518.832275390625, 413.8288269042969, 428.7877502441406, 480.5067138671875, 526.9140014648438, 466.4407043457031], "count": [1047]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5587618852568201]], [[0.5582625646046462]], [[0.5492963277475845]]], "std": [[[0.1744423876298919]], [[0.18237692437873715]], [[0.1819648711300982]]], "count": [184]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6450811332232168]], [[0.6390561849513355]], [[0.6227029240817704]]], "std": [[[0.2797695025996357]], [[0.2819896253767124]], [[0.2811537103693036]]], "count": [184]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9490196078431372]], [[0.8705882352941177]], [[0.8156862745098039]]], "mean": [[[0.47111258969167374]], [[0.4686153337240694]], [[0.47888646454958794]]], "std": [[[0.17670377582691343]], [[0.1774429203010763]], [[0.17844988318179542]]], "count": [184]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[0.996078431372549]], [[1.0]]], "mean": [[[0.5002812067082267]], [[0.4977881666933078]], [[0.49567781263320543]]], "std": [[[0.17037913777202388]], [[0.17094004089284606]], [[0.17041209166551124]]], "count": [184]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8549019607843137]], [[0.8549019607843137]], [[0.8549019607843137]]], "mean": [[[0.4361859159651179]], [[0.43911235880221655]], [[0.455021630345979]]], "std": [[[0.2043005986365627]], [[0.20563229478721984]], [[0.20814576714236466]]], "count": [184]}, "timestamp": {"min": [0.0], "max": [34.86666666666667], "mean": [17.433333333333334], "std": [10.074757602083574], "count": [1047]}, "frame_index": {"min": [0], "max": [1046], "mean": [523.0], "std": [302.2427280625072], "count": [1047]}, "episode_index": {"min": [20], "max": [20], "mean": [20.0], "std": [0.0], "count": [1047]}, "index": {"min": [27193], "max": [28239], "mean": [27716.0], "std": [302.2427280625072], "count": [1047]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1047]}}} +{"episode_index": 21, "stats": {"action": {"min": [-32.99082565307617, -100.0, -38.08443069458008, 36.414207458496094, -69.3641586303711, 0.0, -1100.0, -1700.0, -1700.0, -1250.0, -2300.0, -1500.0, -2.7889907360076904, -4.939308166503906, -5.447116851806641, -3.4231948852539062, -3.9411468505859375, -4.315960884094238], "max": [34.89908218383789, 43.82586669921875, 100.0, 98.37398529052734, -4.939568996429443, 39.57654571533203, 1500.0, 2050.0, 1800.0, 2100.0, 1750.0, 1850.0, 3.743119716644287, 5.860191345214844, 5.356331825256348, 6.076164245605469, 3.1003684997558594, 5.293158531188965], "mean": [-4.183859825134277, 10.206448554992676, 8.437674522399902, 59.39116287231445, -44.76201248168945, 19.16303825378418, 1.4856082201004028, -1.1606314182281494, 3.9461467266082764, -3.3890435695648193, -3.110491991043091, -0.6035283207893372, 0.00429327180609107, -0.0039642248302698135, 0.014498629607260227, -0.0053239078260958195, -0.005757416132837534, -0.000982947531156242], "std": [20.319284439086914, 23.507080078125, 34.7902717590332, 17.66100311279297, 18.9228515625, 11.666352272033691, 318.8841552734375, 486.8619689941406, 493.9150695800781, 317.2524719238281, 446.8065185546875, 322.999267578125, 0.7859104871749878, 1.3615601062774658, 1.4979677200317383, 0.9150358438491821, 0.7894517779350281, 0.8800227046012878], "count": [1077]}, "observation.state": {"min": [-33.096927642822266, -96.30057525634766, -36.417232513427734, 36.54484939575195, -69.34156036376953, 1.3413816690444946, -950.0, -1850.0, -1650.0, -1150.0, -1850.0, -1250.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [34.51536560058594, 44.20038604736328, 98.82086181640625, 97.59136199951172, -4.732510089874268, 39.03420639038086, 1300.0, 2100.0, 1550.0, 1850.0, 1650.0, 1750.0, 1436.0, 1632.0, 1424.0, 1568.0, 1516.0, 1540.0], "mean": [-4.245365619659424, 11.440155029296875, 9.679229736328125, 59.47303771972656, -44.80327606201172, 20.140987396240234, 0.6499536037445068, 1.2070566415786743, 0.3249768018722534, -6.128133773803711, -5.385329723358154, -1.4856082201004028, 498.9972229003906, 421.6972961425781, 411.1197814941406, 460.17083740234375, 598.636962890625, 470.2209777832031], "std": [20.332725524902344, 23.624080657958984, 34.25634765625, 17.604473114013672, 18.904098510742188, 10.246970176696777, 295.22576904296875, 516.6748657226562, 480.0738220214844, 288.9969787597656, 432.9505310058594, 295.7953796386719, 521.1002197265625, 469.4170837402344, 467.2667541503906, 509.41302490234375, 526.211181640625, 475.0847473144531], "count": [1077]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5604277460540954]], [[0.5608003081108329]], [[0.5522097837140175]]], "std": [[[0.17409178677351222]], [[0.18141081678011026]], [[0.18107422520886118]]], "count": [188]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.648739571382631]], [[0.6427737840703657]], [[0.6282757917883466]]], "std": [[[0.27781685022906666]], [[0.27996489243352585]], [[0.27976327510285026]]], "count": [188]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8941176470588236]], [[0.8313725490196079]], [[0.8431372549019608]]], "mean": [[[0.47482317197712415]], [[0.4719871084515367]], [[0.4821502626981644]]], "std": [[[0.17519208313138557]], [[0.17715084834825473]], [[0.17960029386462553]]], "count": [188]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5009993916006119]], [[0.4993471798515506]], [[0.49784826410617433]]], "std": [[[0.17090673546209428]], [[0.17103867664276973]], [[0.1703885809001911]]], "count": [188]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9019607843137255]], [[0.9647058823529412]], [[1.0]]], "mean": [[[0.4390582194757336]], [[0.44263160765192605]], [[0.4615339867108191]]], "std": [[[0.2035719274797661]], [[0.20455374362474815]], [[0.206566906158513]]], "count": [188]}, "timestamp": {"min": [0.0], "max": [35.86666666666667], "mean": [17.933333333333334], "std": [10.363432864680542], "count": [1077]}, "frame_index": {"min": [0], "max": [1076], "mean": [538.0], "std": [310.9029859404163], "count": [1077]}, "episode_index": {"min": [21], "max": [21], "mean": [21.0], "std": [0.0], "count": [1077]}, "index": {"min": [28240], "max": [29316], "mean": [28778.0], "std": [310.9029859404163], "count": [1077]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1077]}}} +{"episode_index": 22, "stats": {"action": {"min": [-33.50458526611328, -99.33026123046875, -46.527462005615234, 29.482242584228516, -85.28639221191406, 0.0, -1200.0, -1700.0, -1700.0, -1600.0, -1850.0, -1950.0, -3.009174108505249, -4.604438781738281, -5.083976745605469, -4.621311187744141, -3.3105621337890625, -5.45602560043335], "max": [36.2935791015625, 45.24905776977539, 100.0, 88.78904724121094, 5.307409286499023, 26.954397201538086, 1200.0, 1450.0, 1850.0, 2050.0, 1950.0, 1650.0, 3.009174346923828, 4.018418312072754, 5.810260772705078, 6.161750793457031, 3.3631134033203125, 4.641693115234375], "mean": [-0.1774059534072876, 5.569657802581787, 13.778179168701172, 62.44350814819336, -38.69173049926758, 15.483660697937012, -0.4518072307109833, -1.317771077156067, -0.03765060380101204, -5.120481967926025, 6.400602340698242, -0.07530120760202408, -0.0017132742796093225, -0.003845372935757041, 0.0009570495458319783, -0.009730839170515537, 0.012108339928090572, 0.0004905610112473369], "std": [20.369483947753906, 24.36511993408203, 33.78725814819336, 14.295393943786621, 22.74591636657715, 9.201155662536621, 303.62335205078125, 418.76983642578125, 465.9952392578125, 344.8957824707031, 475.2328186035156, 271.5764465332031, 0.7480568289756775, 1.1673312187194824, 1.4215196371078491, 0.9984195232391357, 0.8418947458267212, 0.7432700395584106], "count": [1328]}, "observation.state": {"min": [-33.41213607788086, -96.30057525634766, -43.21995544433594, 30.897010803222656, -85.08230590820312, 1.2072434425354004, -1100.0, -1750.0, -1600.0, -1450.0, -1700.0, -1500.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [36.24901580810547, 45.35645294189453, 99.5464859008789, 88.03986358642578, 5.092592716217041, 27.028839111328125, 1100.0, 1500.0, 1700.0, 1800.0, 1700.0, 1350.0, 1368.0, 1412.0, 1448.0, 1576.0, 1552.0, 1460.0], "mean": [-0.3115912973880768, 6.9423065185546875, 14.742631912231445, 62.62004089355469, -38.766788482666016, 16.494836807250977, -0.9036144614219666, 2.033132553100586, -0.33885541558265686, -10.015060424804688, 6.325301170349121, -0.03765060380101204, 622.5873413085938, 376.67169189453125, 458.2560119628906, 419.7469787597656, 477.6777038574219, 462.1927795410156], "std": [20.338634490966797, 24.619367599487305, 33.44550323486328, 13.99947738647461, 22.644638061523438, 7.694883346557617, 281.3728332519531, 437.9154052734375, 451.0672912597656, 310.4936828613281, 461.4748229980469, 236.41949462890625, 515.4444580078125, 441.9468994140625, 490.5715026855469, 500.265625, 530.25439453125, 472.280517578125], "count": [1328]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5657396057167159]], [[0.5664582745769541]], [[0.5580327991166025]]], "std": [[[0.17591944827817832]], [[0.1830659982779096]], [[0.18229108446385184]]], "count": [219]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6511048400334258]], [[0.645984461269287]], [[0.6325419455263079]]], "std": [[[0.27815670488110467]], [[0.28050058570900094]], [[0.2806283524517275]]], "count": [219]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8862745098039215]], [[0.8235294117647058]], [[0.8352941176470589]]], "mean": [[[0.4761556633688483]], [[0.4732595120049542]], [[0.4833116736801265]]], "std": [[[0.1743716739756407]], [[0.1763161409173241]], [[0.17877807072024068]]], "count": [219]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49547372936998235]], [[0.49360508904855704]], [[0.4918435187050467]]], "std": [[[0.16791158902429507]], [[0.16790084780600653]], [[0.16812961351876243]]], "count": [219]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8509803921568627]], [[0.8392156862745098]], [[0.8627450980392157]]], "mean": [[[0.43957747728086666]], [[0.44301490173695046]], [[0.46152435125496166]]], "std": [[[0.2036633919133088]], [[0.20489604008760273]], [[0.20714282980273957]]], "count": [219]}, "timestamp": {"min": [0.0], "max": [44.233333333333334], "mean": [22.116666666666664], "std": [12.778682335132297], "count": [1328]}, "frame_index": {"min": [0], "max": [1327], "mean": [663.5], "std": [383.3604700539689], "count": [1328]}, "episode_index": {"min": [22], "max": [22], "mean": [22.0], "std": [0.0], "count": [1328]}, "index": {"min": [29317], "max": [30644], "mean": [29980.5], "std": [383.3604700539689], "count": [1328]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1328]}}} +{"episode_index": 23, "stats": {"action": {"min": [-35.926605224609375, -100.0, -25.19291877746582, 13.222079277038574, -66.7892837524414, 0.32573288679122925, -1150.0, -1300.0, -1500.0, -1500.0, -2100.0, -1250.0, -2.8623857498168945, -3.5998306274414062, -4.448478698730469, -4.193412780761719, -3.6784019470214844, -3.501628875732422], "max": [41.577980041503906, 41.398075103759766, 100.0, 80.5733871459961, 2.785076141357422, 34.527687072753906, 1500.0, 1800.0, 1650.0, 1850.0, 1450.0, 1450.0, 3.596329689025879, 4.939304351806641, 5.083976745605469, 5.305948257446289, 2.5748815536499023, 3.9902281761169434], "mean": [1.273747205734253, 1.8377978801727295, 22.01556968688965, 50.27060317993164, -32.16836929321289, 19.295269012451172, -0.5822981595993042, 1.7857142686843872, 0.54347825050354, -2.7173912525177, 0.8928571343421936, -0.3105590045452118, -0.0018804238643497229, 0.002664936240762472, 1.4808607673444385e-08, -0.0057141827419400215, 0.003223089035600424, 0.00018967299547512084], "std": [22.836524963378906, 22.988977432250977, 29.043903350830078, 15.942689895629883, 13.87856388092041, 10.60302734375, 306.7271423339844, 392.7032165527344, 377.0796203613281, 295.2138366699219, 374.7113952636719, 280.8867492675781, 0.7541691064834595, 1.0969218015670776, 1.1522592306137085, 0.8489455580711365, 0.6574392318725586, 0.7676792144775391], "count": [1288]}, "observation.state": {"min": [-35.61859893798828, -96.45471954345703, -23.174602508544922, 13.95348834991455, -66.56378936767578, 1.2743124961853027, -1050.0, -1350.0, -1400.0, -1350.0, -1850.0, -1250.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [41.292354583740234, 41.502891540527344, 99.90929412841797, 79.98339080810547, 3.4979424476623535, 34.138160705566406, 1350.0, 1850.0, 1550.0, 1600.0, 1100.0, 1400.0, 1436.0, 1556.0, 1412.0, 1504.0, 1372.0, 1444.0], "mean": [1.083595633506775, 3.0166103839874268, 23.32889175415039, 50.458927154541016, -32.18488693237305, 20.42494010925293, 0.4270186424255371, 4.425466060638428, 0.0, -10.05434799194336, 0.1552795022726059, -0.4658385217189789, 707.0838623046875, 376.555908203125, 348.7826232910156, 356.9844665527344, 541.6863403320312, 396.5714416503906], "std": [22.853300094604492, 23.14955711364746, 28.792367935180664, 15.745525360107422, 13.823413848876953, 8.743871688842773, 284.35833740234375, 413.7373352050781, 366.4016418457031, 266.9012145996094, 363.0599060058594, 267.5726013183594, 494.12518310546875, 448.3824462890625, 436.0210266113281, 480.8111877441406, 524.2785034179688, 453.36737060546875], "count": [1288]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5616080502489157]], [[0.5622230793018141]], [[0.5533438330355507]]], "std": [[[0.17453036489678847]], [[0.18097796397489266]], [[0.1799822729130846]]], "count": [214]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6472007818703805]], [[0.6420422641408589]], [[0.628002560740028]]], "std": [[[0.27689328358875276]], [[0.27923649808832773]], [[0.27915960771533255]]], "count": [214]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8784313725490196]], [[0.8745098039215686]], [[0.8862745098039215]]], "mean": [[[0.4768013751450736]], [[0.47405110694978925]], [[0.48414655774693055]]], "std": [[[0.17445783602297338]], [[0.17623117254511672]], [[0.17838157594232204]]], "count": [214]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[0.9921568627450981]], [[0.9921568627450981]]], "mean": [[[0.4880834383208112]], [[0.48664110317024006]], [[0.48596743574766355]]], "std": [[[0.16585246125054937]], [[0.16591447631721168]], [[0.16500384766878923]]], "count": [214]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8941176470588236]], [[0.8352941176470589]], [[0.9137254901960784]]], "mean": [[[0.441080713418545]], [[0.444404882299493]], [[0.4623805452476941]]], "std": [[[0.20320169684090428]], [[0.20448800194445862]], [[0.20716751010532455]]], "count": [214]}, "timestamp": {"min": [0.0], "max": [42.9], "mean": [21.45], "std": [12.393782043159115], "count": [1288]}, "frame_index": {"min": [0], "max": [1287], "mean": [643.5], "std": [371.81346129477345], "count": [1288]}, "episode_index": {"min": [23], "max": [23], "mean": [23.0], "std": [0.0], "count": [1288]}, "index": {"min": [30645], "max": [31932], "mean": [31288.5], "std": [371.81346129477345], "count": [1288]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1288]}}} +{"episode_index": 24, "stats": {"action": {"min": [-33.65137481689453, -99.66513061523438, -33.27280807495117, 33.504493713378906, -61.48187255859375, 0.48859935998916626, -1500.0, -2100.0, -1600.0, -1600.0, -1650.0, -1250.0, -3.669724702835083, -5.94390869140625, -4.993190765380859, -4.706890106201172, -2.9427223205566406, -3.4201955795288086], "max": [40.47706604003906, 43.23984909057617, 100.0, 91.52760314941406, -1.366263747215271, 33.876220703125, 1450.0, 2250.0, 2300.0, 2050.0, 2300.0, 1900.0, 3.669724941253662, 6.362495422363281, 6.899684906005859, 5.819427490234375, 3.9936933517456055, 5.0488600730896], "mean": [2.9909510612487793, 6.5292816162109375, 10.27514934539795, 65.60138702392578, -37.04774856567383, 20.238853454589844, 2.3665659427642822, 0.40281975269317627, 8.257804870605469, -8.559919357299805, -1.661631464958191, 0.20140987634658813, 0.005321648437529802, -0.0005056951777078211, 0.027427565306425095, -0.015943871811032295, -0.0050802286714315414, -0.0014761300990357995], "std": [21.106918334960938, 24.38265037536621, 31.544776916503906, 12.455999374389648, 13.0519437789917, 10.944790840148926, 403.081298828125, 494.4758605957031, 486.175537109375, 365.9085693359375, 416.9548034667969, 340.95257568359375, 0.990908145904541, 1.3789833784103394, 1.4713929891586304, 1.0638151168823242, 0.7359741926193237, 0.9288756847381592], "count": [993]}, "observation.state": {"min": [-33.33333206176758, -96.45471954345703, -32.06349182128906, 35.13288879394531, -61.316871643066406, 1.2072434425354004, -1350.0, -2050.0, -1500.0, -1450.0, -1400.0, -1100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [40.26792907714844, 43.12138748168945, 96.28118133544922, 91.02989959716797, -3.4979424476623535, 33.534542083740234, 1350.0, 2300.0, 2050.0, 1700.0, 2000.0, 1750.0, 1416.0, 1672.0, 1560.0, 1544.0, 1624.0, 1544.0], "mean": [2.7935469150543213, 7.905155658721924, 11.511025428771973, 65.79512023925781, -37.06135940551758, 21.202552795410156, 3.524672746658325, 7.6535749435424805, 3.6757302284240723, -13.041289329528809, -2.7190332412719727, 0.251762330532074, 637.7039184570312, 353.63543701171875, 368.8620300292969, 407.0493469238281, 433.50250244140625, 382.21954345703125], "std": [21.079824447631836, 24.529935836791992, 30.973403930664062, 12.062474250793457, 12.990129470825195, 9.311212539672852, 372.2470703125, 509.75537109375, 468.5466003417969, 330.6109924316406, 393.11505126953125, 326.0622863769531, 520.6965942382812, 439.0827331542969, 453.169921875, 497.60321044921875, 515.4472045898438, 455.8658752441406], "count": [993]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5740877432412358]], [[0.5737633469344177]], [[0.5651665448139483]]], "std": [[[0.17664069050383635]], [[0.1855556917110651]], [[0.18527278304531702]]], "count": [176]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.649870073668672]], [[0.6409601553215983]], [[0.6220683837455437]]], "std": [[[0.27873938210254645]], [[0.2813558278649548]], [[0.28076477277097256]]], "count": [176]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9058823529411765]], [[0.8313725490196079]], [[0.796078431372549]]], "mean": [[[0.47649766855132203]], [[0.4733449511196524]], [[0.48312500812351455]]], "std": [[[0.1719446345120685]], [[0.17477429510357562]], [[0.17783412138695384]]], "count": [176]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4985598238822044]], [[0.4968680950126263]], [[0.4956561084187463]]], "std": [[[0.16698073826834692]], [[0.16733613500763772]], [[0.16584627058812035]]], "count": [176]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8627450980392157]], [[0.8313725490196079]], [[0.8431372549019608]]], "mean": [[[0.43967586364564765]], [[0.4430687121676322]], [[0.4612917618278372]]], "std": [[[0.20322294158590073]], [[0.2045501706637372]], [[0.20692249849819525]]], "count": [176]}, "timestamp": {"min": [0.0], "max": [33.06666666666667], "mean": [16.53333333333333], "std": [9.555142109918656], "count": [993]}, "frame_index": {"min": [0], "max": [992], "mean": [496.0], "std": [286.6542632975597], "count": [993]}, "episode_index": {"min": [24], "max": [24], "mean": [24.0], "std": [0.0], "count": [993]}, "index": {"min": [31933], "max": [32925], "mean": [32429.0], "std": [286.6542632975597], "count": [993]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [993]}}} +{"episode_index": 25, "stats": {"action": {"min": [-37.24770736694336, -100.0, -22.197004318237305, 32.135215759277344, -69.15396881103516, 0.48859935998916626, -1150.0, -1650.0, -1750.0, -1600.0, -1400.0, -1350.0, -2.7889909744262695, -4.60443115234375, -5.356330871582031, -4.621307373046875, -2.417236328125, -3.7459278106689453], "max": [35.48624038696289, 38.04939270019531, 100.0, 77.40692901611328, 9.353652000427246, 40.71661376953125, 1400.0, 1950.0, 1850.0, 2850.0, 1450.0, 1950.0, 3.5229358673095703, 5.525323867797852, 5.719474792480469, 8.301239013671875, 2.8376235961914062, 5.293159484863281], "mean": [-0.7635443210601807, 10.188737869262695, 9.739123344421387, 57.00404739379883, -37.73583221435547, 20.996185302734375, -3.1934306621551514, -1.0492700338363647, 1.6423357725143433, 0.9124087691307068, 5.474452495574951, 1.8704379796981812, -0.01084845419973135, -0.0025969387497752905, 0.0003313739725854248, 0.0010931682772934437, 0.011698773130774498, 0.003269216977059841], "std": [21.456375122070312, 23.07520294189453, 27.05547332763672, 12.304190635681152, 21.13856315612793, 12.15392017364502, 295.0304260253906, 430.9494323730469, 406.8871765136719, 338.8656921386719, 358.0576477050781, 344.3463439941406, 0.7289062142372131, 1.2020156383514404, 1.2408089637756348, 0.9692790508270264, 0.630607545375824, 0.9437278509140015], "count": [1096]}, "observation.state": {"min": [-37.115840911865234, -96.14643859863281, -20.90703010559082, 32.641197204589844, -69.08436584472656, 1.0731053352355957, -1100.0, -1650.0, -1700.0, -1500.0, -1250.0, -1350.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [34.672969818115234, 38.26589584350586, 99.5464859008789, 77.49169158935547, 9.156378746032715, 40.04024124145508, 1250.0, 2100.0, 1800.0, 1950.0, 1450.0, 1900.0, 1412.0, 1588.0, 1484.0, 1684.0, 1456.0, 1604.0], "mean": [-0.9108938574790955, 11.551124572753906, 10.791833877563477, 57.12849044799805, -37.80272674560547, 21.935884475708008, -2.8284671306610107, 0.0, -0.2281021922826767, -3.0565693378448486, 8.531022071838379, 1.6879562139511108, 607.8284912109375, 363.072998046875, 405.3832092285156, 348.58758544921875, 455.9707946777344, 503.6313781738281], "std": [21.405160903930664, 23.05168342590332, 26.779123306274414, 12.089078903198242, 20.974985122680664, 10.407576560974121, 274.5039367675781, 446.43121337890625, 391.93780517578125, 297.5443115234375, 342.8457336425781, 338.0834655761719, 519.62109375, 436.0546875, 468.5414123535156, 481.8086242675781, 519.6804809570312, 480.5627746582031], "count": [1096]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5578157303491572]], [[0.5582838289043688]], [[0.5494119345545235]]], "std": [[[0.17637515016078123]], [[0.18361830851534627]], [[0.18319351375516896]]], "count": [190]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6496202152132783]], [[0.6410688607241142]], [[0.6223733885878914]]], "std": [[[0.2782061516048048]], [[0.28098084066063667]], [[0.28035596908731925]]], "count": [190]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8431372549019608]], [[0.8235294117647058]], [[0.8235294117647058]]], "mean": [[[0.4715385567165463]], [[0.4691282453990368]], [[0.47936070798933605]]], "std": [[[0.17515369124749033]], [[0.1769685898370363]], [[0.17895501586590987]]], "count": [190]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4964413968438252]], [[0.49491861885104915]], [[0.49353777949776406]]], "std": [[[0.16873059719447203]], [[0.169124136564242]], [[0.1677951664759981]]], "count": [190]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4390282174492604]], [[0.4424317778207774]], [[0.46065277670278637]]], "std": [[[0.20279721946403256]], [[0.20391228244887985]], [[0.20585815427938284]]], "count": [190]}, "timestamp": {"min": [0.0], "max": [36.5], "mean": [18.25], "std": [10.546260527367561], "count": [1096]}, "frame_index": {"min": [0], "max": [1095], "mean": [547.5], "std": [316.38781582102683], "count": [1096]}, "episode_index": {"min": [25], "max": [25], "mean": [25.0], "std": [0.0], "count": [1096]}, "index": {"min": [32926], "max": [34021], "mean": [33473.5], "std": [316.38781582102683], "count": [1096]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1096]}}} +{"episode_index": 26, "stats": {"action": {"min": [-33.13761520385742, -100.0, -56.60462951660156, 39.06718063354492, -58.01366424560547, 0.0, -1100.0, -1200.0, -1500.0, -1500.0, -1850.0, -1450.0, -2.9357800483703613, -3.348682403564453, -4.6300506591796875, -4.364570617675781, -3.3105621337890625, -3.8273613452911377], "max": [39.15596389770508, 53.11845779418945, 100.0, 90.50064086914062, 10.089332580566406, 32.24755859375, 1450.0, 1750.0, 1500.0, 2000.0, 1500.0, 1800.0, 3.596330165863037, 4.8555908203125, 4.539264678955078, 5.990589141845703, 2.5748815536499023, 4.967426300048828], "mean": [5.478072643280029, 12.114131927490234, -1.34360933303833, 66.991455078125, -30.732038497924805, 18.14105224609375, 0.9847806692123413, -1.5219337940216064, -0.17905102670192719, -1.8800357580184937, -4.252461910247803, -0.2685765326023102, 0.0013798581203445792, -0.003672518767416477, -0.00016246785526163876, -0.003524329513311386, -0.009691146202385426, -0.002770333318039775], "std": [19.226154327392578, 31.547380447387695, 40.06843948364258, 13.988408088684082, 16.11967658996582, 10.282928466796875, 313.4106140136719, 425.2515869140625, 416.4638671875, 324.91339111328125, 384.6914367675781, 319.6067199707031, 0.7685533761978149, 1.1851950883865356, 1.2700709104537964, 0.9303598999977112, 0.6782374382019043, 0.8738688826560974], "count": [1117]}, "observation.state": {"min": [-32.86051940917969, -96.22350311279297, -54.195011138916016, 39.86711120605469, -57.71604919433594, 1.2072434425354004, -1050.0, -1300.0, -1450.0, -1350.0, -1750.0, -1200.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [38.61308288574219, 53.294795989990234, 99.36508178710938, 89.53488159179688, 9.927983283996582, 32.19315719604492, 1250.0, 1950.0, 1400.0, 1200.0, 1350.0, 1450.0, 1436.0, 1560.0, 1388.0, 1480.0, 1436.0, 1468.0], "mean": [5.292932510375977, 13.533685684204102, -0.07916006445884705, 67.12074279785156, -30.74306869506836, 19.1273250579834, -0.7162041068077087, 0.7162041068077087, 0.2685765326023102, -6.669651031494141, -2.014324188232422, -2.23813796043396, 632.959716796875, 367.5308837890625, 343.7457580566406, 434.6141357421875, 558.5174560546875, 503.4055480957031], "std": [19.212881088256836, 31.527122497558594, 39.97078323364258, 13.772727012634277, 16.07626724243164, 8.608612060546875, 289.62884521484375, 447.79827880859375, 404.7225036621094, 291.8974304199219, 364.92205810546875, 288.212158203125, 516.557861328125, 437.85784912109375, 438.13623046875, 504.36053466796875, 524.5588989257812, 479.53765869140625], "count": [1117]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5641075933827763]], [[0.5645611432828744]], [[0.5559926534085137]]], "std": [[[0.1735784198081983]], [[0.18100651322843542]], [[0.1810968008068619]]], "count": [193]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.648854073537878]], [[0.6442162524552135]], [[0.6314008538216669]]], "std": [[[0.27817979864113324]], [[0.2820410357632863]], [[0.2835141964636924]]], "count": [193]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9098039215686274]], [[0.8313725490196079]], [[0.8117647058823529]]], "mean": [[[0.47021173782552744]], [[0.4676224072098615]], [[0.47792034525381827]]], "std": [[[0.1728193276662829]], [[0.175037573854294]], [[0.1775179121015419]]], "count": [193]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[0.996078431372549]], [[0.9921568627450981]]], "mean": [[[0.49514759219750076]], [[0.4936225945257205]], [[0.4923112448779166]]], "std": [[[0.16529900453049284]], [[0.1651132680926131]], [[0.16399923163859093]]], "count": [193]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.43862120711842595]], [[0.4422095133174168]], [[0.4607474865809882]]], "std": [[[0.2025275457456198]], [[0.2036097806549818]], [[0.205856445494625]]], "count": [193]}, "timestamp": {"min": [0.0], "max": [37.2], "mean": [18.599999999999998], "std": [10.748333204114331], "count": [1117]}, "frame_index": {"min": [0], "max": [1116], "mean": [558.0], "std": [322.44999612342997], "count": [1117]}, "episode_index": {"min": [26], "max": [26], "mean": [26.0], "std": [0.0], "count": [1117]}, "index": {"min": [34022], "max": [35138], "mean": [34580.0], "std": [322.44999612342997], "count": [1117]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1117]}}} +{"episode_index": 27, "stats": {"action": {"min": [-35.119266510009766, -100.0, -48.161598205566406, 35.558406829833984, -68.05044555664062, 0.24429967999458313, -1100.0, -1550.0, -1800.0, -1350.0, -2350.0, -1100.0, -2.7889909744262695, -4.437004089355469, -5.719470977783203, -3.8510894775390625, -4.046241760253906, -2.9315967559814453], "max": [37.541282653808594, 42.48639678955078, 100.0, 91.09970092773438, 1.4188123941421509, 29.723127365112305, 1350.0, 2150.0, 1850.0, 2150.0, 2050.0, 1900.0, 3.3027524948120117, 6.027626037597656, 5.991828918457031, 6.332904815673828, 3.836048126220703, 5.781759262084961], "mean": [1.0852844715118408, 8.848319053649902, 8.39206314086914, 59.94887161254883, -43.78932571411133, 16.795059204101562, 2.7190332412719727, -0.40281975269317627, 0.10070493817329407, 2.3665659427642822, 9.264854431152344, -0.7552869915962219, 0.009904174134135246, 4.609906056884938e-08, -9.148742537945509e-05, 0.014220207929611206, 0.016881175339221954, -0.0013941236538812518], "std": [19.66797637939453, 24.046823501586914, 30.13155746459961, 14.133790016174316, 15.164947509765625, 8.988666534423828, 326.70281982421875, 513.1409301757812, 497.6582336425781, 369.946533203125, 442.28790283203125, 319.9425048828125, 0.8060048818588257, 1.4353493452072144, 1.515428066253662, 1.0682604312896729, 0.7787403464317322, 0.8648501038551331], "count": [993]}, "observation.state": {"min": [-34.98817825317383, -96.37764739990234, -45.48752975463867, 35.96345520019531, -67.79835510253906, 1.3413816690444946, -1000.0, -1600.0, -1750.0, -1150.0, -1950.0, -1150.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [36.879432678222656, 42.890174865722656, 99.81859588623047, 90.94684600830078, -0.20576131343841553, 29.309188842773438, 1250.0, 2250.0, 1750.0, 1500.0, 1700.0, 1750.0, 1412.0, 1632.0, 1476.0, 1532.0, 1516.0, 1524.0], "mean": [0.9836382269859314, 10.074782371520996, 9.65183162689209, 60.015777587890625, -43.87656021118164, 17.921703338623047, 1.460221529006958, 3.7260825634002686, 0.050352469086647034, -4.632427215576172, 7.401812553405762, 0.10070493817329407, 538.1188354492188, 468.378662109375, 398.9405822753906, 440.217529296875, 546.7271118164062, 448.0443115234375], "std": [19.603544235229492, 24.082489013671875, 29.749116897583008, 13.9766845703125, 14.955815315246582, 7.02457332611084, 302.20001220703125, 536.0770874023438, 480.1261901855469, 327.8663024902344, 428.1241149902344, 281.09271240234375, 523.9924926757812, 478.6799621582031, 465.19293212890625, 508.6005859375, 529.953369140625, 464.70526123046875], "count": [993]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5597892435383244]], [[0.5599476915292632]], [[0.5519297965871954]]], "std": [[[0.174077827020759]], [[0.18234518739990596]], [[0.18162244458941584]]], "count": [176]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6485638392193999]], [[0.6417304896390374]], [[0.626340018985814]]], "std": [[[0.27954940982134546]], [[0.2826694044197209]], [[0.28298252899327475]]], "count": [176]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9019607843137255]], [[0.8901960784313725]], [[0.9019607843137255]]], "mean": [[[0.4741666771111854]], [[0.4716011238302139]], [[0.48183433832813427]]], "std": [[[0.17358142769783796]], [[0.1757830894654384]], [[0.17815007260703203]]], "count": [176]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[0.9921568627450981]], [[0.9882352941176471]]], "mean": [[[0.5086473535910576]], [[0.5070971723206328]], [[0.5056201096442365]]], "std": [[[0.16754880973896968]], [[0.16760956488740383]], [[0.16615553905227465]]], "count": [176]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4388843861408199]], [[0.4422842916759507]], [[0.461093954248366]]], "std": [[[0.20268186166963534]], [[0.20375132005551644]], [[0.205683979232457]]], "count": [176]}, "timestamp": {"min": [0.0], "max": [33.06666666666667], "mean": [16.53333333333333], "std": [9.555142109918656], "count": [993]}, "frame_index": {"min": [0], "max": [992], "mean": [496.0], "std": [286.6542632975597], "count": [993]}, "episode_index": {"min": [27], "max": [27], "mean": [27.0], "std": [0.0], "count": [993]}, "index": {"min": [35139], "max": [36131], "mean": [35635.0], "std": [286.6542632975597], "count": [993]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [993]}}} +{"episode_index": 28, "stats": {"action": {"min": [-33.3577995300293, -100.0, -7.762142658233643, 21.694480895996094, -69.15396881103516, 0.32573288679122925, -1300.0, -1650.0, -1550.0, -1000.0, -1450.0, -1150.0, -3.1559629440307617, -4.520721435546875, -4.90240478515625, -3.08087158203125, -2.5748825073242188, -3.257328987121582], "max": [36.0, 30.263708114624023, 100.0, 73.38468170166016, 18.18181800842285, 27.035831451416016, 1200.0, 1450.0, 1600.0, 1800.0, 1600.0, 1950.0, 3.082569122314453, 4.102134704589844, 4.993190765380859, 5.477108001708984, 2.9427223205566406, 5.293159484863281], "mean": [-6.630588531494141, 7.074593544006348, 18.662092208862305, 42.56071472167969, -47.171791076660156, 14.781848907470703, -5.683563709259033, -0.9600614309310913, 0.6912442445755005, -4.416282653808594, 0.0, 4.9155144691467285, -0.015220063738524914, -0.0014145348686724901, -0.0002790090802591294, -0.009793693199753761, -8.07199758128263e-05, 0.012196220457553864], "std": [18.126306533813477, 20.274097442626953, 18.4305477142334, 11.982833862304688, 17.977890014648438, 7.461668491363525, 297.59375, 346.339599609375, 313.3966064453125, 287.6045837402344, 359.9361877441406, 258.28564453125, 0.7351351976394653, 0.9634959101676941, 0.953241229057312, 0.827079176902771, 0.6360218524932861, 0.6979129314422607], "count": [1302]}, "observation.state": {"min": [-33.41213607788086, -95.99229431152344, -4.852607727050781, 21.511627197265625, -69.08436584472656, 1.2072434425354004, -1150.0, -1750.0, -1400.0, -1000.0, -1250.0, -1300.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [35.460994720458984, 30.2504825592041, 99.27437591552734, 72.42524719238281, 17.644033432006836, 26.62642478942871, 1100.0, 1600.0, 1500.0, 1600.0, 1500.0, 1800.0, 1376.0, 1436.0, 1400.0, 1516.0, 1480.0, 1524.0], "mean": [-6.732263088226318, 8.454803466796875, 19.891742706298828, 42.80955505371094, -47.2208366394043, 15.550686836242676, -4.454685211181641, 2.3809523582458496, -1.9969278573989868, -4.032258033752441, 1.6897081136703491, 6.029185771942139, 590.9185791015625, 274.2181396484375, 296.6636047363281, 282.3717346191406, 494.6083068847656, 566.1720581054688], "std": [18.13979148864746, 20.19700813293457, 18.23748207092285, 11.875235557556152, 17.895240783691406, 5.922488689422607, 276.6360168457031, 360.40985107421875, 296.5169372558594, 268.2668151855469, 344.15350341796875, 229.37179565429688, 520.5031127929688, 383.8700256347656, 412.3981018066406, 442.95361328125, 523.347900390625, 483.71807861328125], "count": [1302]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5538000436864561]], [[0.5503969614273179]], [[0.5352133894259865]]], "std": [[[0.17532852014142614]], [[0.18070451685868832]], [[0.17911180136411525]]], "count": [216]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6494832998592955]], [[0.6450943277581094]], [[0.6314108928679497]]], "std": [[[0.2842139265035134]], [[0.28625957052881723]], [[0.2846814242844771]]], "count": [216]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9607843137254902]], [[0.9568627450980393]], [[0.9686274509803922]]], "mean": [[[0.48708592426167996]], [[0.48491720470981603]], [[0.4956102837161099]]], "std": [[[0.18478850349409565]], [[0.18410594281792872]], [[0.18314849682411924]]], "count": [216]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[0.9921568627450981]], [[1.0]]], "mean": [[[0.4955961026385863]], [[0.4885331421341685]], [[0.4880014401400992]]], "std": [[[0.17281663634928082]], [[0.17166546471002536]], [[0.17032543002336928]]], "count": [216]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9411764705882353]], [[0.9333333333333333]], [[0.9254901960784314]]], "mean": [[[0.4393723731390704]], [[0.44169033489167275]], [[0.46212805237835874]]], "std": [[[0.20383457672241592]], [[0.20454176658537762]], [[0.20805145676842174]]], "count": [216]}, "timestamp": {"min": [0.0], "max": [43.36666666666667], "mean": [21.68333333333333], "std": [12.528497146136113], "count": [1302]}, "frame_index": {"min": [0], "max": [1301], "mean": [650.5], "std": [375.8549143840834], "count": [1302]}, "episode_index": {"min": [28], "max": [28], "mean": [28.0], "std": [0.0], "count": [1302]}, "index": {"min": [36132], "max": [37433], "mean": [36782.5], "std": [375.8549143840834], "count": [1302]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1302]}}} +{"episode_index": 29, "stats": {"action": {"min": [-35.119266510009766, -96.31645202636719, -32.09260177612305, 19.98288345336914, -78.61271667480469, 0.32573288679122925, -1000.0, -1750.0, -1950.0, -1150.0, -2150.0, -1700.0, -2.42201828956604, -4.855587005615234, -6.082614898681641, -3.337615966796875, -3.8885955810546875, -4.560260772705078], "max": [36.80733871459961, 36.62620162963867, 94.00817108154297, 90.58621978759766, 0.7356805205345154, 30.70032501220703, 1500.0, 2450.0, 2150.0, 2100.0, 2050.0, 1600.0, 3.522935628890991, 7.032230377197266, 6.536540985107422, 6.076164245605469, 3.6258544921875, 4.560260772705078], "mean": [-4.485479354858398, -2.8619279861450195, 32.38533020019531, 41.89837646484375, -52.593833923339844, 18.557292938232422, -3.120464324951172, 2.4310595989227295, -2.9027576446533203, -1.8505079746246338, 2.648766279220581, -3.8098692893981934, -0.004367453511804342, 0.006318307016044855, -0.005665830336511135, -0.0019873520359396935, 0.002021095249801874, -0.011050806380808353], "std": [19.158363342285156, 22.316823959350586, 28.189050674438477, 15.290143966674805, 19.05663299560547, 8.712016105651855, 262.72467041015625, 398.0261535644531, 395.4323425292969, 298.9129638671875, 413.4618225097656, 255.83682250976562, 0.6444149613380432, 1.1201293468475342, 1.209801435470581, 0.8640027642250061, 0.7303645610809326, 0.6942201852798462], "count": [1378]}, "observation.state": {"min": [-34.83057403564453, -95.76107788085938, -29.070295333862305, 20.34883689880371, -78.44650268554688, 2.6827633380889893, -800.0, -1800.0, -1700.0, -1000.0, -1900.0, -1650.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [36.406620025634766, 37.341041564941406, 99.45578002929688, 90.0332260131836, 0.41152262687683105, 30.717639923095703, 1200.0, 2400.0, 1900.0, 1750.0, 1750.0, 1600.0, 1416.0, 1740.0, 1516.0, 1556.0, 1548.0, 1468.0], "mean": [-4.51991605758667, -1.8531920909881592, 33.718955993652344, 42.044639587402344, -52.640254974365234, 19.25651741027832, -1.3425253629684448, 8.23657512664795, -3.555878162384033, -4.934688091278076, 1.7053700685501099, -3.8824384212493896, 472.8504943847656, 330.9521179199219, 331.0391845703125, 328.6531066894531, 521.4252319335938, 485.2626953125], "std": [19.108657836914062, 22.70561981201172, 27.899961471557617, 15.169473648071289, 19.01359748840332, 7.440680503845215, 242.01243591308594, 409.0560302734375, 381.5062255859375, 277.0047302246094, 393.53173828125, 240.06753540039062, 516.177978515625, 436.8331298828125, 431.5251159667969, 471.4640197753906, 528.4028930664062, 484.2718200683594], "count": [1378]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5481765600598646]], [[0.5484501100772168]], [[0.5415109227688126]]], "std": [[[0.17434369789715654]], [[0.1793850722308026]], [[0.17848565694014473]]], "count": [226]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6521596291355776]], [[0.6451666675704204]], [[0.628976982293655]]], "std": [[[0.27882421292236936]], [[0.282057962251543]], [[0.2820205498217346]]], "count": [226]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8705882352941177]], [[0.8784313725490196]], [[0.8784313725490196]]], "mean": [[[0.49775901855948873]], [[0.4944762403117589]], [[0.5030915918358494]]], "std": [[[0.18055913278984603]], [[0.18269275514526034]], [[0.18500848307280873]]], "count": [226]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[0.996078431372549]], [[1.0]]], "mean": [[[0.4961237717985424]], [[0.48874067506796226]], [[0.48752603262912836]]], "std": [[[0.16650588484077508]], [[0.16509273972467547]], [[0.16448441213081513]]], "count": [226]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8549019607843137]], [[0.8823529411764706]], [[0.8745098039215686]]], "mean": [[[0.442965147637226]], [[0.44634062301174154]], [[0.4659517512941755]]], "std": [[[0.20428099732049818]], [[0.20511464027972073]], [[0.20779630612008074]]], "count": [226]}, "timestamp": {"min": [0.0], "max": [45.9], "mean": [22.95], "std": [13.259807690913169], "count": [1378]}, "frame_index": {"min": [0], "max": [1377], "mean": [688.5], "std": [397.794230727395], "count": [1378]}, "episode_index": {"min": [29], "max": [29], "mean": [29.0], "std": [0.0], "count": [1378]}, "index": {"min": [37434], "max": [38811], "mean": [38122.5], "std": [397.794230727395], "count": [1378]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1378]}}} +{"episode_index": 30, "stats": {"action": {"min": [-37.834861755371094, -99.24654388427734, -52.791648864746094, 26.91484832763672, -58.434051513671875, 0.0, -1000.0, -1550.0, -1650.0, -1000.0, -1750.0, -1300.0, -2.3486242294311523, -4.18585205078125, -5.356332302093506, -2.738555908203125, -3.1529178619384766, -3.3387622833251953], "max": [37.174312591552734, 50.523231506347656, 100.0, 100.0, 1.4713610410690308, 30.863191604614258, 1600.0, 2200.0, 1750.0, 2050.0, 1250.0, 1650.0, 3.8899080753326416, 6.195060729980469, 5.2655487060546875, 5.819423675537109, 2.1544933319091797, 4.315960884094238], "mean": [-7.0903401374816895, -1.219186544418335, 21.866008758544922, 55.69805908203125, -30.651620864868164, 20.30255126953125, -0.4888888895511627, -0.31111112236976624, -0.4888888895511627, -2.5333333015441895, 0.6666666865348816, -0.35555556416511536, 0.0018266929546371102, -0.0006696913042105734, 0.00040335761150345206, -0.005629252176731825, 0.0018683949019759893, -0.002678248565644026], "std": [20.116573333740234, 27.682031631469727, 36.02420425415039, 16.597875595092773, 13.22289752960205, 9.530492782592773, 318.4016418457031, 485.51202392578125, 443.14727783203125, 337.64654541015625, 331.3765563964844, 296.34027099609375, 0.7824624180793762, 1.3549692630767822, 1.3515195846557617, 0.979522168636322, 0.5849590301513672, 0.8080655932426453], "count": [1125]}, "observation.state": {"min": [-37.90386199951172, -96.45471954345703, -50.47618865966797, 27.740863800048828, -57.87036895751953, 1.408450722694397, -950.0, -1600.0, -1600.0, -950.0, -1600.0, -1100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [36.64302444458008, 50.674373626708984, 99.18367004394531, 99.25249481201172, 0.8744856119155884, 30.5835018157959, 1400.0, 2400.0, 1700.0, 1800.0, 1300.0, 1600.0, 1452.0, 1700.0, 1460.0, 1556.0, 1396.0, 1456.0], "mean": [-7.272481441497803, -0.17711815237998962, 23.162694931030273, 55.897518157958984, -30.759872436523438, 21.02155113220215, 0.7111111283302307, 4.355555534362793, -0.17777778208255768, -6.44444465637207, 1.3777778148651123, 0.4888888895511627, 605.7706909179688, 399.7120056152344, 387.3244323730469, 354.1724548339844, 611.9964599609375, 369.85955810546875], "std": [20.0927791595459, 27.803762435913086, 35.487266540527344, 16.40973472595215, 13.105433464050293, 8.10634994506836, 294.4964599609375, 512.3950805664062, 430.3177185058594, 312.289306640625, 316.7188720703125, 288.5550842285156, 521.6626586914062, 468.4855651855469, 457.9598693847656, 479.06591796875, 521.7489013671875, 463.5201721191406], "count": [1125]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5642759542820565]], [[0.5642055307088472]], [[0.5558928422528806]]], "std": [[[0.1742054828504258]], [[0.1802451908725598]], [[0.18012629607901165]]], "count": [194]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6489351142948588]], [[0.6404757534027357]], [[0.6234260526160635]]], "std": [[[0.2815634644390664]], [[0.284435880593088]], [[0.284217548449573]]], "count": [194]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9215686274509803]], [[0.9215686274509803]], [[0.9254901960784314]]], "mean": [[[0.4998635989404353]], [[0.4970712426723266]], [[0.5068106049120679]]], "std": [[[0.1796387392370767]], [[0.1819031900368299]], [[0.18430931180378027]]], "count": [194]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[0.9921568627450981]]], "mean": [[[0.49765643424466005]], [[0.4919869712704669]], [[0.489570730998585]]], "std": [[[0.16842990192777418]], [[0.16776104470900163]], [[0.1671164271803408]]], "count": [194]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8509803921568627]], [[0.8431372549019608]], [[0.8470588235294118]]], "mean": [[[0.4450496144548885]], [[0.4493025655279294]], [[0.4678390080688633]]], "std": [[[0.20464100534664556]], [[0.20622881710974483]], [[0.2092354511008399]]], "count": [194]}, "timestamp": {"min": [0.0], "max": [37.46666666666667], "mean": [18.733333333333334], "std": [10.825313270635977], "count": [1125]}, "frame_index": {"min": [0], "max": [1124], "mean": [562.0], "std": [324.7593981190793], "count": [1125]}, "episode_index": {"min": [30], "max": [30], "mean": [30.0], "std": [0.0], "count": [1125]}, "index": {"min": [38812], "max": [39936], "mean": [39374.0], "std": [324.7593981190793], "count": [1125]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1125]}}} +{"episode_index": 31, "stats": {"action": {"min": [-34.38532257080078, -97.65592193603516, -15.297322273254395, 19.298246383666992, -66.6841812133789, 0.16286644339561462, -1100.0, -1300.0, -1500.0, -1400.0, -1700.0, -1450.0, -2.642202377319336, -3.6835556030273438, -4.448478698730469, -4.107830047607422, -3.0478200912475586, -3.908794403076172], "max": [33.28440475463867, 34.3658447265625, 100.0, 81.94266510009766, -1.366263747215271, 31.59609031677246, 1150.0, 1650.0, 1350.0, 1950.0, 1700.0, 1900.0, 2.935779571533203, 4.771869659423828, 4.266908645629883, 6.076168060302734, 2.9427223205566406, 5.130293846130371], "mean": [-5.971066951751709, 2.3000152111053467, 23.54873275756836, 43.954505920410156, -42.34842300415039, 19.290830612182617, -0.2120441049337387, 0.38167938590049744, 0.508905827999115, -6.106870174407959, 0.04240882024168968, -0.16963528096675873, 0.0014940019464120269, 7.11332613718696e-05, 0.0020020236261188984, -0.01263010036200285, 0.0008914075442589819, -0.0008979072445072234], "std": [19.431415557861328, 23.428518295288086, 27.466230392456055, 13.407382011413574, 15.07257080078125, 9.1655855178833, 278.4034118652344, 416.36090087890625, 364.93865966796875, 314.9259948730469, 418.6216735839844, 312.9451904296875, 0.6868119239807129, 1.1633009910583496, 1.1106090545654297, 0.918254554271698, 0.7334964275360107, 0.8565079569816589], "count": [1179]}, "observation.state": {"min": [-34.43656539916992, -96.30057525634766, -12.471654891967773, 20.34883689880371, -66.71810913085938, 1.3413816690444946, -1000.0, -1350.0, -1250.0, -1250.0, -1500.0, -1400.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [32.70291519165039, 34.64354705810547, 99.90929412841797, 80.56478118896484, -1.903292179107666, 31.321260452270508, 1100.0, 1800.0, 1300.0, 1300.0, 1350.0, 1650.0, 1372.0, 1512.0, 1360.0, 1416.0, 1456.0, 1524.0], "mean": [-6.215550899505615, 3.526886463165283, 24.96879005432129, 44.202972412109375, -42.40093994140625, 19.912506103515625, 0.0, 3.3927056789398193, 0.0, -9.838846206665039, -0.8905852437019348, 1.7811704874038696, 634.7955932617188, 357.3163757324219, 345.74725341796875, 330.56488037109375, 580.0610961914062, 401.46563720703125], "std": [19.42082977294922, 23.583070755004883, 27.256620407104492, 13.290610313415527, 15.039922714233398, 7.977425575256348, 259.44384765625, 433.9362487792969, 349.3653564453125, 281.8294372558594, 404.73919677734375, 306.64263916015625, 518.5477905273438, 438.0653991699219, 429.9046630859375, 469.4454650878906, 526.6028442382812, 476.1424865722656], "count": [1179]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5588031889165285]], [[0.5571509171869411]], [[0.5451968801824213]]], "std": [[[0.1756425797792637]], [[0.18092029251169353]], [[0.1794074079252096]]], "count": [201]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6429848012795499]], [[0.6351791563018242]], [[0.6186526405960394]]], "std": [[[0.28561717550671184]], [[0.28778188720117537]], [[0.28660814296995907]]], "count": [201]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9647058823529412]], [[0.9568627450980393]], [[0.9568627450980393]]], "mean": [[[0.4962796414170975]], [[0.4938028413894579]], [[0.5043369650928365]]], "std": [[[0.18316096497756953]], [[0.1831001389138571]], [[0.18244012096569723]]], "count": [201]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4850384230806751]], [[0.48419976303124895]], [[0.4819573222531135]]], "std": [[[0.1685177203328514]], [[0.1688687243629776]], [[0.16713676320175838]]], "count": [201]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8745098039215686]], [[0.8823529411764706]], [[0.8823529411764706]]], "mean": [[[0.44551310949338274]], [[0.4490821454410952]], [[0.46901447927844436]]], "std": [[[0.20299215231465922]], [[0.20453224350647076]], [[0.20687880055889135]]], "count": [201]}, "timestamp": {"min": [0.0], "max": [39.266666666666666], "mean": [19.633333333333333], "std": [11.344928708784705], "count": [1179]}, "frame_index": {"min": [0], "max": [1178], "mean": [589.0], "std": [340.3478612635412], "count": [1179]}, "episode_index": {"min": [31], "max": [31], "mean": [31.0], "std": [0.0], "count": [1179]}, "index": {"min": [39937], "max": [41115], "mean": [40526.0], "std": [340.3478612635412], "count": [1179]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1179]}}} +{"episode_index": 32, "stats": {"action": {"min": [-35.33945083618164, -100.0, -50.885154724121094, 19.383825302124023, -55.28113555908203, 0.0, -1200.0, -1750.0, -1800.0, -2200.0, -2400.0, -1650.0, -2.8623857498168945, -4.939308166503906, -5.356332778930664, -6.418487548828125, -4.308984756469727, -4.641694068908691], "max": [38.128440856933594, 51.527835845947266, 100.0, 97.00470733642578, 1.4188123941421509, 25.162866592407227, 1350.0, 1600.0, 2250.0, 2250.0, 1400.0, 1800.0, 3.4495420455932617, 4.520720481872559, 7.0812530517578125, 6.504066467285156, 2.36468505859375, 5.0488600730896], "mean": [-2.8169515132904053, 7.598912715911865, 7.7080302238464355, 61.44102096557617, -33.09346008300781, 15.363835334777832, 0.10000000149011612, 0.8999999761581421, -1.0499999523162842, -3.0, 3.5999999046325684, -0.5, -0.00029357869061641395, 0.0004188918974250555, -0.0021788214799016714, -0.008729133754968643, 0.011297949589788914, -0.0004885995876975358], "std": [20.786401748657227, 26.79998016357422, 32.4297981262207, 14.343774795532227, 14.615533828735352, 8.696661949157715, 331.8966064453125, 476.73785400390625, 415.2666320800781, 333.62451171875, 390.2483825683594, 321.1148681640625, 0.8168712258338928, 1.3312140703201294, 1.2607184648513794, 0.9614809155464172, 0.6801920533180237, 0.8737595677375793], "count": [1000]}, "observation.state": {"min": [-35.224586486816406, -96.37764739990234, -50.47618865966797, 21.6777400970459, -55.195472717285156, 1.3413816690444946, -1100.0, -1850.0, -1700.0, -1750.0, -2200.0, -1500.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [37.43104934692383, 51.59922790527344, 99.72789001464844, 96.34551239013672, 1.183127522468567, 25.016767501831055, 1200.0, 1750.0, 2100.0, 1900.0, 1150.0, 1500.0, 1420.0, 1484.0, 1564.0, 1584.0, 1348.0, 1488.0], "mean": [-3.014251232147217, 9.000908851623535, 9.115735054016113, 61.6110954284668, -33.1477165222168, 16.48811149597168, 0.6000000238418579, 1.5, 0.25, -10.350000381469727, 0.6000000238418579, 0.75, 641.1480102539062, 407.8160095214844, 302.2080078125, 428.4960021972656, 559.2559814453125, 454.8080139160156], "std": [20.774341583251953, 26.70918083190918, 32.27629852294922, 14.098733901977539, 14.520832061767578, 6.830199718475342, 307.2447204589844, 497.04864501953125, 401.8862609863281, 295.0775146484375, 376.0113525390625, 270.62286376953125, 516.4603881835938, 454.9587707519531, 412.5301818847656, 502.3769226074219, 528.6923828125, 468.0638427734375], "count": [1000]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5657526171485543]], [[0.5636396770337136]], [[0.5507703613695949]]], "std": [[[0.17592649490731116]], [[0.18189125850906182]], [[0.18070061249268585]]], "count": [177]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6457207324784904]], [[0.6365508889996676]], [[0.6186489916823603]]], "std": [[[0.2823388621391099]], [[0.28499126387704315]], [[0.2845593896278244]]], "count": [177]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9215686274509803]], [[0.8980392156862745]], [[0.9254901960784314]]], "mean": [[[0.4961670197740113]], [[0.4947518774694435]], [[0.5048405062590008]]], "std": [[[0.18152346248228657]], [[0.18219285669866708]], [[0.18194827921042436]]], "count": [177]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[0.996078431372549]], [[0.9882352941176471]]], "mean": [[[0.4979364556792585]], [[0.49623726736457296]], [[0.4942365553801558]]], "std": [[[0.17099718816792797]], [[0.17150916240023983]], [[0.17033478841526858]]], "count": [177]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9490196078431372]], [[0.9294117647058824]], [[0.9254901960784314]]], "mean": [[[0.4452686996879731]], [[0.4490346010579373]], [[0.4682805287840183]]], "std": [[[0.20288062647969757]], [[0.2041035099082358]], [[0.20639457367581887]]], "count": [177]}, "timestamp": {"min": [0.0], "max": [33.3], "mean": [16.65], "std": [9.622499675240316], "count": [1000]}, "frame_index": {"min": [0], "max": [999], "mean": [499.5], "std": [288.6749902572095], "count": [1000]}, "episode_index": {"min": [32], "max": [32], "mean": [32.0], "std": [0.0], "count": [1000]}, "index": {"min": [41116], "max": [42115], "mean": [41615.5], "std": [288.6749902572095], "count": [1000]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1000]}}} +{"episode_index": 33, "stats": {"action": {"min": [-36.220184326171875, -100.0, -12.119836807250977, 25.802310943603516, -77.45664978027344, 0.16286644339561462, -1250.0, -1350.0, -1500.0, -950.0, -2100.0, -1350.0, -3.009174346923828, -3.9347000122070312, -4.539264678955078, -2.652973175048828, -3.7835006713867188, -3.6644954681396484], "max": [37.688072204589844, 26.4127254486084, 100.0, 77.06461334228516, 0.9458749294281006, 36.482086181640625, 1150.0, 1950.0, 1400.0, 1700.0, 2400.0, 1800.0, 2.935779571533203, 5.441608428955078, 4.448478698730469, 4.878047943115234, 4.151340484619141, 4.9674272537231445], "mean": [-7.161864280700684, -6.17215633392334, 31.571914672851562, 47.63395309448242, -40.779197692871094, 17.674158096313477, -0.09132420271635056, -0.456620991230011, 0.4109589159488678, 3.378995418548584, -2.968036413192749, 0.31963470578193665, 0.0030162150505930185, -7.616504444740713e-05, -0.00016579475777689368, 0.010472784750163555, -0.002399486256763339, -0.001189890899695456], "std": [22.439531326293945, 23.913820266723633, 25.314306259155273, 10.652194023132324, 18.129789352416992, 11.344684600830078, 315.5990905761719, 444.1753845214844, 410.04766845703125, 286.04864501953125, 471.20263671875, 309.20062255859375, 0.7766485810279846, 1.239033818244934, 1.2491495609283447, 0.8170797824859619, 0.8313129544258118, 0.8441420197486877], "count": [1095]}, "observation.state": {"min": [-36.17021179199219, -96.37764739990234, -8.480725288391113, 26.578073501586914, -77.52057647705078, 1.2072434425354004, -1150.0, -1450.0, -1400.0, -800.0, -1850.0, -1350.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [37.43104934692383, 27.013486862182617, 99.27437591552734, 76.32890319824219, 1.2345678806304932, 36.01609802246094, 1000.0, 2050.0, 1300.0, 1600.0, 1950.0, 1800.0, 1356.0, 1584.0, 1348.0, 1464.0, 1612.0, 1564.0], "mean": [-7.353724002838135, -5.016433238983154, 33.05845642089844, 47.80277633666992, -40.81598663330078, 18.44145393371582, -0.5479452013969421, 1.0045661926269531, -0.27397260069847107, -1.5068492889404297, -1.4155250787734985, -1.1415525674819946, 642.052978515625, 467.9013671875, 338.92236328125, 369.05206298828125, 583.0064086914062, 392.1424560546875], "std": [22.4172420501709, 23.761905670166016, 24.934518814086914, 10.459096908569336, 18.09516143798828, 10.259407043457031, 291.4137268066406, 469.7747497558594, 397.0379638671875, 267.71484375, 459.8387145996094, 305.011962890625, 515.96923828125, 475.5265197753906, 426.63348388671875, 482.9585876464844, 529.6780395507812, 464.5561828613281], "count": [1095]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.555118475877193]], [[0.5529087644048848]], [[0.5387830581355348]]], "std": [[[0.1760656595306053]], [[0.18148130293843845]], [[0.18064312184855083]]], "count": [190]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6452069616443068]], [[0.6357154702012384]], [[0.6173383814929481]]], "std": [[[0.2819449771888981]], [[0.28465022868800277]], [[0.2838725131416232]]], "count": [190]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9215686274509803]], [[0.9137254901960784]], [[0.9176470588235294]]], "mean": [[[0.4977498194014448]], [[0.4961702904626763]], [[0.5073747430770554]]], "std": [[[0.18225727309665107]], [[0.18270814447698103]], [[0.18278121973403716]]], "count": [190]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49185272940316477]], [[0.49016839310285515]], [[0.48951474565703473]]], "std": [[[0.16979907431424085]], [[0.17013318053272955]], [[0.1694481389597864]]], "count": [190]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8392156862745098]], [[0.8784313725490196]], [[0.9490196078431372]]], "mean": [[[0.4465548116615067]], [[0.45049768554351566]], [[0.46975395489336086]]], "std": [[[0.20300698206922838]], [[0.20387831677937562]], [[0.20647750865834277]]], "count": [190]}, "timestamp": {"min": [0.0], "max": [36.46666666666667], "mean": [18.233333333333334], "std": [10.536638018872088], "count": [1095]}, "frame_index": {"min": [0], "max": [1094], "mean": [547.0], "std": [316.0991405661627], "count": [1095]}, "episode_index": {"min": [33], "max": [33], "mean": [33.0], "std": [0.0], "count": [1095]}, "index": {"min": [42116], "max": [43210], "mean": [42663.0], "std": [316.0991405661627], "count": [1095]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1095]}}} +{"episode_index": 34, "stats": {"action": {"min": [-33.724769592285156, -100.0, -9.94098949432373, 17.672229766845703, -65.79085540771484, 0.0, -1100.0, -1800.0, -1850.0, -1150.0, -2150.0, -2200.0, -2.788990020751953, -4.939300537109375, -5.719472885131836, -3.4231948852539062, -3.783498764038086, -5.3745927810668945], "max": [37.541282653808594, 31.268312454223633, 100.0, 82.6272964477539, 6.200735569000244, 30.29315948486328, 1350.0, 1650.0, 1750.0, 2200.0, 1550.0, 1700.0, 3.3761472702026367, 4.688152313232422, 5.2655487060546875, 6.589649200439453, 2.732527732849121, 4.641693592071533], "mean": [1.738631010055542, 6.572367191314697, 15.835988998413086, 46.182376861572266, -38.202552795410156, 16.590953826904297, -1.4413518905639648, -0.2982107400894165, -0.09940357506275177, -6.212723731994629, 3.876739501953125, -0.596421480178833, -0.0028453064151108265, -0.0006656646728515625, 0.001714744372293353, -0.01684374175965786, 0.005484694615006447, -0.0008094747900031507], "std": [21.145856857299805, 21.40909767150879, 20.270586013793945, 12.617752075195312, 15.54971981048584, 8.625309944152832, 343.6521301269531, 443.2896728515625, 406.6725769042969, 367.510009765625, 400.7514343261719, 298.0043029785156, 0.8427789211273193, 1.238319993019104, 1.2357962131500244, 1.0628644227981567, 0.7051382064819336, 0.8026317954063416], "count": [1006]}, "observation.state": {"min": [-33.569740295410156, -96.37764739990234, -7.029478549957275, 18.43853759765625, -65.53498077392578, 1.2072434425354004, -1150.0, -1850.0, -1650.0, -1050.0, -1950.0, -1500.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [37.509849548339844, 31.560693740844727, 99.18367004394531, 80.98006439208984, 6.018518447875977, 30.114017486572266, 1200.0, 1850.0, 1600.0, 1850.0, 1500.0, 1600.0, 1408.0, 1536.0, 1432.0, 1608.0, 1452.0, 1436.0], "mean": [1.584346055984497, 7.898503303527832, 17.28689956665039, 46.41334915161133, -38.28135299682617, 17.400402069091797, -1.0934393405914307, 1.5407555103302002, 0.3976143002510071, -12.773360252380371, 3.7773358821868896, 0.24850894510746002, 625.6302490234375, 386.6918640136719, 331.2405700683594, 335.99603271484375, 546.3101196289062, 592.5646362304688], "std": [21.083250045776367, 21.26299476623535, 20.169025421142578, 12.501221656799316, 15.465690612792969, 7.0893378257751465, 317.417724609375, 463.94293212890625, 388.38720703125, 333.49798583984375, 380.0130615234375, 267.9674987792969, 517.9620361328125, 450.86895751953125, 425.3614807128906, 471.46710205078125, 529.7962646484375, 479.9380798339844], "count": [1006]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5533106502900786]], [[0.5498291531266064]], [[0.5365386798211794]]], "std": [[[0.17359643739540653]], [[0.18009485874724787]], [[0.17848377682834463]]], "count": [178]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6468869382022472]], [[0.6373046788940295]], [[0.6188143841338033]]], "std": [[[0.2825198104521457]], [[0.2851666444766732]], [[0.28440467338018327]]], "count": [178]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8901960784313725]], [[0.8901960784313725]], [[0.8901960784313725]]], "mean": [[[0.49573353161489314]], [[0.49183413081993094]], [[0.5010671070628626]]], "std": [[[0.1817939606156942]], [[0.18341317863425527]], [[0.18536322666897234]]], "count": [178]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[0.996078431372549]], [[0.9882352941176471]]], "mean": [[[0.4908991598277888]], [[0.4883465498090622]], [[0.48815577265550414]]], "std": [[[0.1717424167511564]], [[0.17257655340384992]], [[0.17221170090907403]]], "count": [178]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8980392156862745]], [[0.9058823529411765]], [[0.9333333333333333]]], "mean": [[[0.4419732308419623]], [[0.4455887011639862]], [[0.46384647407652196]]], "std": [[[0.20489986688772127]], [[0.20545908158971674]], [[0.20663871919538124]]], "count": [178]}, "timestamp": {"min": [0.0], "max": [33.5], "mean": [16.75], "std": [9.680234730854641], "count": [1006]}, "frame_index": {"min": [0], "max": [1005], "mean": [502.5], "std": [290.40704192563925], "count": [1006]}, "episode_index": {"min": [34], "max": [34], "mean": [34.0], "std": [0.0], "count": [1006]}, "index": {"min": [43211], "max": [44216], "mean": [43713.5], "std": [290.40704192563925], "count": [1006]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1006]}}} +{"episode_index": 35, "stats": {"action": {"min": [-35.633026123046875, -99.9162826538086, -10.576486587524414, 24.090715408325195, -66.05359649658203, 0.0, -1600.0, -1650.0, -1550.0, -1050.0, -2400.0, -1700.0, -4.110091686248779, -4.604434967041016, -4.811622619628906, -2.9097137451171875, -4.36153507232666, -4.7231268882751465], "max": [38.78899002075195, 22.059438705444336, 100.0, 80.4022216796875, 3.3631107807159424, 24.185667037963867, 1550.0, 1700.0, 1600.0, 1750.0, 1950.0, 1600.0, 3.743119239807129, 4.771871566772461, 4.811622619628906, 5.134788513183594, 3.415660858154297, 4.315960884094238], "mean": [-9.334617614746094, -2.8807601928710938, 26.721675872802734, 49.408973693847656, -37.094703674316406, 14.303319931030273, 1.7429194450378418, 1.797385573387146, 0.21786493062973022, -7.2984747886657715, -5.392157077789307, 0.8714597225189209, 0.004797020461410284, 0.0024624825455248356, 0.0016812426038086414, -0.017899038270115852, -0.0111622903496027, 3.246440338777745e-10], "std": [22.105899810791016, 20.377676010131836, 20.57065773010254, 13.421441078186035, 19.605487823486328, 7.483457088470459, 347.4339294433594, 403.3271179199219, 353.26806640625, 304.6863098144531, 483.6397399902344, 291.6669006347656, 0.8592644333839417, 1.1267030239105225, 1.0768171548843384, 0.8816654086112976, 0.8483978509902954, 0.7874718904495239], "count": [918]}, "observation.state": {"min": [-35.3821907043457, -96.53179168701172, -7.301587104797363, 24.916942596435547, -66.15225982666016, 1.0731053352355957, -1400.0, -1650.0, -1450.0, -900.0, -2100.0, -1250.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [38.29787063598633, 22.00385284423828, 99.72789001464844, 78.98670959472656, 3.600823163986206, 23.809524536132812, 1400.0, 1850.0, 1450.0, 1600.0, 1900.0, 1450.0, 1452.0, 1544.0, 1384.0, 1504.0, 1580.0, 1472.0], "mean": [-9.515156745910645, -1.650402307510376, 28.164281845092773, 49.695648193359375, -37.10023498535156, 15.221160888671875, 0.8714597225189209, 3.5403048992156982, -0.16339869797229767, -13.779956817626953, -5.882352828979492, 1.3071895837783813, 640.45751953125, 351.25054931640625, 346.1612243652344, 354.62310791015625, 570.997802734375, 528.6187133789062], "std": [22.15180206298828, 20.51307487487793, 20.418745040893555, 13.27588939666748, 19.675931930541992, 5.820577144622803, 320.26519775390625, 418.2224426269531, 341.4413757324219, 272.5008850097656, 463.29071044921875, 251.8299102783203, 517.3868408203125, 435.55072021484375, 429.50262451171875, 474.1702575683594, 530.5808715820312, 480.7170715332031], "count": [918]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5573957730431529]], [[0.5508930587546264]], [[0.5389954930014174]]], "std": [[[0.17529933071772122]], [[0.1816051811847765]], [[0.1803441753540342]]], "count": [166]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6474423933479013]], [[0.6375642434935822]], [[0.618211031626506]]], "std": [[[0.28262692076268736]], [[0.2849829293636328]], [[0.28364903133390335]]], "count": [166]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9333333333333333]], [[0.8941176470588236]], [[0.8941176470588236]]], "mean": [[[0.4760698480195291]], [[0.4732673918714072]], [[0.48528959096188673]]], "std": [[[0.1771829612628941]], [[0.1759276699615925]], [[0.17498348254762755]]], "count": [166]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5011748427533664]], [[0.49844200822899437]], [[0.49941996540081895]]], "std": [[[0.17360522448829974]], [[0.1741621592181814]], [[0.1744322825297341]]], "count": [166]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8509803921568627]], [[0.9137254901960784]], [[0.9137254901960784]]], "mean": [[[0.44204248489054254]], [[0.44517368862705725]], [[0.46415764528703046]]], "std": [[[0.20398720877182994]], [[0.2052545122630312]], [[0.2082541681140309]]], "count": [166]}, "timestamp": {"min": [0.0], "max": [30.566666666666666], "mean": [15.283333333333331], "std": [8.833453877584203], "count": [918]}, "frame_index": {"min": [0], "max": [917], "mean": [458.5], "std": [265.0036163275261], "count": [918]}, "episode_index": {"min": [35], "max": [35], "mean": [35.0], "std": [0.0], "count": [918]}, "index": {"min": [44217], "max": [45134], "mean": [44675.5], "std": [265.0036163275261], "count": [918]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [918]}}} +{"episode_index": 36, "stats": {"action": {"min": [-32.91743087768555, -99.66513061523438, -7.671357154846191, 20.154043197631836, -67.8927993774414, 0.16286644339561462, -1300.0, -1300.0, -1550.0, -1000.0, -1850.0, -1450.0, -3.2293577194213867, -3.7672653198242188, -4.90240478515625, -2.738555908203125, -3.3105621337890625, -4.071660995483398], "max": [37.76146697998047, 21.473419189453125, 100.0, 85.70817565917969, 2.6274304389953613, 35.097721099853516, 1250.0, 1750.0, 1300.0, 1850.0, 2000.0, 1750.0, 3.009174346923828, 4.939304351806641, 3.9945526123046875, 5.477108001708984, 3.573305130004883, 4.885993957519531], "mean": [-3.161872386932373, -9.358412742614746, 39.44314956665039, 46.02495574951172, -47.34824752807617, 19.899873733520508, -2.0572450160980225, 2.0125224590301514, -0.1788908839225769, -2.72808575630188, 2.9069766998291016, 0.9391770958900452, -0.007090018130838871, 0.00029963115230202675, 0.0009744128910824656, -0.0008420278900302947, 0.004183207638561726, 0.0005827043787576258], "std": [21.348344802856445, 20.544950485229492, 22.043081283569336, 15.046309471130371, 17.06610870361328, 10.366314888000488, 332.222900390625, 436.0517883300781, 394.4493713378906, 313.4142761230469, 434.5943603515625, 327.69580078125, 0.8188885450363159, 1.2191754579544067, 1.2010492086410522, 0.9123031497001648, 0.767003059387207, 0.8923479914665222], "count": [1118]}, "observation.state": {"min": [-32.93932342529297, -96.45471954345703, -4.217687129974365, 20.182723999023438, -67.79835510253906, 1.2072434425354004, -1150.0, -1450.0, -1400.0, -900.0, -1500.0, -1600.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [37.19464111328125, 21.926782608032227, 99.63719177246094, 84.21926879882812, 2.366255044937134, 34.80885314941406, 1150.0, 1850.0, 1200.0, 1400.0, 1650.0, 1700.0, 1384.0, 1556.0, 1332.0, 1464.0, 1520.0, 1480.0], "mean": [-3.249925374984741, -8.302541732788086, 40.89216232299805, 46.230960845947266, -47.45634460449219, 20.80779457092285, -2.996422290802002, 3.0858676433563232, 0.4472271800041199, -7.737030506134033, 3.577817440032959, 2.9516994953155518, 554.0, 343.5992736816406, 358.3255920410156, 362.6261291503906, 584.3255615234375, 484.52593994140625], "std": [21.30765724182129, 20.560815811157227, 21.697505950927734, 14.887110710144043, 16.943416595458984, 8.617814064025879, 306.8638000488281, 459.721923828125, 380.7825012207031, 281.3768310546875, 422.300537109375, 316.4748229980469, 524.2215576171875, 444.1566162109375, 437.55413818359375, 480.35089111328125, 530.1513061523438, 481.550537109375], "count": [1118]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5567874652883605]], [[0.5531837367503133]], [[0.5408920838413085]]], "std": [[[0.17583755748150956]], [[0.1814695873210118]], [[0.17996760897898081]]], "count": [193]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6481398646246063]], [[0.6378918573690271]], [[0.6181316153188391]]], "std": [[[0.2829834285752636]], [[0.2852447328359803]], [[0.28378377897594625]]], "count": [193]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8431372549019608]], [[0.8274509803921568]], [[0.8274509803921568]]], "mean": [[[0.4783275000846625]], [[0.47635050607030377]], [[0.48800294308137765]]], "std": [[[0.17273345842482443]], [[0.17252465585209953]], [[0.17251080413695863]]], "count": [193]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[0.996078431372549]], [[1.0]]], "mean": [[[0.4847609733228352]], [[0.4826609953350943]], [[0.48584338171797214]]], "std": [[[0.1648402120806175]], [[0.16523190479719474]], [[0.16495163380254144]]], "count": [193]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9215686274509803]], [[0.8823529411764706]], [[0.9176470588235294]]], "mean": [[[0.44431487795895563]], [[0.44743519612076266]], [[0.4661060842730875]]], "std": [[[0.2029905237522317]], [[0.20389603040588974]], [[0.20638531127838813]]], "count": [193]}, "timestamp": {"min": [0.0], "max": [37.233333333333334], "mean": [18.616666666666664], "std": [10.75795571245351], "count": [1118]}, "frame_index": {"min": [0], "max": [1117], "mean": [558.5], "std": [322.7386713736053], "count": [1118]}, "episode_index": {"min": [36], "max": [36], "mean": [36.0], "std": [0.0], "count": [1118]}, "index": {"min": [45135], "max": [46252], "mean": [45693.5], "std": [322.7386713736053], "count": [1118]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1118]}}} +{"episode_index": 37, "stats": {"action": {"min": [-37.174312591552734, -100.0, -18.837947845458984, 27.68506622314453, -63.8465576171875, 0.0, -1400.0, -1650.0, -1600.0, -1200.0, -1650.0, -2250.0, -3.4495415687561035, -4.604434967041016, -5.083978652954102, -3.337615966796875, -2.8376235961914062, -6.188924789428711], "max": [39.30275344848633, 37.212223052978516, 100.0, 81.00128173828125, -1.8917498588562012, 38.02931594848633, 1600.0, 1800.0, 1450.0, 2200.0, 1800.0, 1900.0, 4.0366973876953125, 5.106739044189453, 4.266914367675781, 6.247325897216797, 3.1529159545898438, 5.293159484863281], "mean": [-3.3294427394866943, -4.523118495941162, 25.852964401245117, 55.71158981323242, -34.69340515136719, 19.33854866027832, 2.212918758392334, 1.3157894611358643, 0.11961722373962402, -0.11961722373962402, 5.263157844543457, 0.23923444747924805, 0.007901323027908802, 0.0017025230918079615, 0.00010851809929590672, -0.0010236940579488873, 0.007794293574988842, -0.001071486622095108], "std": [20.40705108642578, 27.954879760742188, 32.4344596862793, 12.618412017822266, 15.25307559967041, 11.543023109436035, 439.5700988769531, 492.58612060546875, 455.127685546875, 388.11590576171875, 485.87939453125, 386.30853271484375, 1.0839126110076904, 1.3739427328109741, 1.387955904006958, 1.1044994592666626, 0.8547182083129883, 1.046441674232483], "count": [836]}, "observation.state": {"min": [-37.27344512939453, -96.45471954345703, -17.732425689697266, 28.23920249938965, -63.683128356933594, 1.2072434425354004, -1200.0, -1700.0, -1500.0, -1000.0, -1600.0, -2000.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [38.8494873046875, 37.109825134277344, 99.72789001464844, 80.14949798583984, -2.0061728954315186, 37.625755310058594, 1400.0, 1950.0, 1300.0, 1900.0, 1500.0, 1600.0, 1476.0, 1572.0, 1356.0, 1564.0, 1496.0, 1516.0], "mean": [-3.5370471477508545, -3.4368679523468018, 27.014209747314453, 55.80409240722656, -34.77659225463867, 20.233116149902344, 1.8540669679641724, -1.2559808492660522, 0.5980861186981201, -1.0765550136566162, 4.665071964263916, -2.2727272510528564, 648.296630859375, 406.1722412109375, 499.27752685546875, 354.0430603027344, 566.0382690429688, 378.583740234375], "std": [20.358457565307617, 28.050018310546875, 32.160919189453125, 12.36740493774414, 15.141061782836914, 10.15285587310791, 407.1864318847656, 520.7771606445312, 438.1198425292969, 356.725830078125, 470.20916748046875, 383.748046875, 521.393798828125, 469.9146423339844, 485.0128173828125, 484.9237976074219, 534.648681640625, 460.7674255371094], "count": [836]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5634926984503479]], [[0.5601908918406072]], [[0.5470917944866118]]], "std": [[[0.17395985117512722]], [[0.18000096113742492]], [[0.17833101280170674]]], "count": [155]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6463823002319207]], [[0.6359961733080329]], [[0.6164414018026566]]], "std": [[[0.28267243895130084]], [[0.2849883980360584]], [[0.2833111377249195]]], "count": [155]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9333333333333333]], [[0.8627450980392157]], [[0.8588235294117647]]], "mean": [[[0.49634816308243723]], [[0.4943660881825849]], [[0.5052862929580434]]], "std": [[[0.1821757727100841]], [[0.181699708364526]], [[0.18080347405031444]]], "count": [155]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[0.996078431372549]], [[1.0]]], "mean": [[[0.4807887492093612]], [[0.4780418893632722]], [[0.48135961285051654]]], "std": [[[0.16545031430075435]], [[0.16649179421801258]], [[0.1664053455753239]]], "count": [155]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8431372549019608]], [[0.8470588235294118]], [[0.9490196078431372]]], "mean": [[[0.44337076217583804]], [[0.44627403410288846]], [[0.46355362376133247]]], "std": [[[0.20266503466840546]], [[0.20365237934074662]], [[0.20611576177868893]]], "count": [155]}, "timestamp": {"min": [0.0], "max": [27.833333333333332], "mean": [13.916666666666666], "std": [8.044407995620311], "count": [836]}, "frame_index": {"min": [0], "max": [835], "mean": [417.5], "std": [241.33223986860935], "count": [836]}, "episode_index": {"min": [37], "max": [37], "mean": [37.0], "std": [0.0], "count": [836]}, "index": {"min": [46253], "max": [47088], "mean": [46670.5], "std": [241.33223986860935], "count": [836]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [836]}}} +{"episode_index": 38, "stats": {"action": {"min": [-34.89908218383789, -100.0, -18.384021759033203, 18.014549255371094, -45.717288970947266, 0.0, -2050.0, -1750.0, -1800.0, -950.0, -1950.0, -1650.0, -4.917431354522705, -4.939305305480957, -5.719473838806152, -2.9097137451171875, -3.573305130004883, -4.560260772705078], "max": [37.541282653808594, 28.505651473999023, 99.90921783447266, 86.90628814697266, 4.939568996429443, 31.921823501586914, 1450.0, 1600.0, 1550.0, 1900.0, 1400.0, 1650.0, 3.596330165863037, 4.437002658843994, 4.811622619628906, 5.562686920166016, 2.5223331451416016, 4.315960884094238], "mean": [-2.927809238433838, -4.75373649597168, 28.067211151123047, 55.070655822753906, -28.891498565673828, 17.487689971923828, -2.3153252601623535, -1.1576626300811768, 2.8114664554595947, -2.2601983547210693, 0.4410143196582794, -0.4410143196582794, -0.0067972904071211815, -0.0028613468166440725, 0.013112249784171581, -0.002453216351568699, -0.00017381148063577712, 1.971487695318075e-10], "std": [22.817781448364258, 23.061508178710938, 25.590280532836914, 14.00175952911377, 13.195026397705078, 9.905363082885742, 441.9060974121094, 511.1228942871094, 469.0947265625, 323.7275695800781, 400.24072265625, 344.68670654296875, 1.0881211757659912, 1.4272578954696655, 1.4262715578079224, 0.9312621355056763, 0.7068142890930176, 0.9405074119567871], "count": [907]}, "observation.state": {"min": [-34.751773834228516, -96.45471954345703, -16.099773406982422, 18.687707901000977, -45.47325134277344, 1.2072434425354004, -1700.0, -1900.0, -1650.0, -900.0, -1550.0, -1500.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [37.19464111328125, 28.7861270904541, 98.73015594482422, 85.6312255859375, 4.269547462463379, 30.046947479248047, 1300.0, 1600.0, 1550.0, 1750.0, 1200.0, 1500.0, 1436.0, 1472.0, 1424.0, 1536.0, 1424.0, 1472.0], "mean": [-3.011423349380493, -3.40936279296875, 29.31717872619629, 55.22573471069336, -28.946216583251953, 18.43567657470703, -3.362734317779541, 0.7717750668525696, -1.0474090576171875, -1.3781697750091553, 2.7012128829956055, -0.4410143196582794, 599.2767333984375, 393.8919372558594, 395.5501708984375, 280.0397033691406, 503.28997802734375, 382.478515625], "std": [22.759479522705078, 23.016979217529297, 25.282669067382812, 13.811683654785156, 13.098342895507812, 8.334480285644531, 404.034423828125, 537.5114135742188, 452.5700988769531, 300.41375732421875, 378.60528564453125, 306.2914123535156, 525.888916015625, 456.36541748046875, 463.93780517578125, 445.7878112792969, 527.9758911132812, 458.7373046875], "count": [907]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5647617102396514]], [[0.5636847172707466]], [[0.5538588445731828]]], "std": [[[0.17540006429266505]], [[0.18253697926109255]], [[0.18192125633460948]]], "count": [165]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6425852297484651]], [[0.6356714188453159]], [[0.620754259506833]]], "std": [[[0.28072155539944893]], [[0.28382415007929657]], [[0.2842939837356364]]], "count": [165]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9333333333333333]], [[0.8509803921568627]], [[0.8509803921568627]]], "mean": [[[0.49848421964745493]], [[0.49624062066745894]], [[0.5064732397504457]]], "std": [[[0.18183278663432495]], [[0.18190610806235613]], [[0.18171452044941683]]], "count": [165]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[0.9921568627450981]], [[0.9921568627450981]]], "mean": [[[0.48989383417508414]], [[0.48711361408199644]], [[0.48988286170528816]]], "std": [[[0.16923390948651237]], [[0.17007623538395714]], [[0.16943710510302323]]], "count": [165]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8509803921568627]], [[0.8509803921568627]], [[0.9333333333333333]]], "mean": [[[0.4449783942364825]], [[0.4477656974153298]], [[0.46608213260051495]]], "std": [[[0.2031162664095484]], [[0.2042773520161539]], [[0.2072835679932209]]], "count": [165]}, "timestamp": {"min": [0.0], "max": [30.2], "mean": [15.1], "std": [8.727606264670234], "count": [907]}, "frame_index": {"min": [0], "max": [906], "mean": [453.0], "std": [261.828187940107], "count": [907]}, "episode_index": {"min": [38], "max": [38], "mean": [38.0], "std": [0.0], "count": [907]}, "index": {"min": [47089], "max": [47995], "mean": [47542.0], "std": [261.828187940107], "count": [907]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [907]}}} +{"episode_index": 39, "stats": {"action": {"min": [-35.412845611572266, -98.40937805175781, -18.6563777923584, 14.163457870483398, -69.1014175415039, 0.0, -1150.0, -1450.0, -1550.0, -1150.0, -2050.0, -2200.0, -2.8623852729797363, -4.018421173095703, -4.811618804931641, -3.2520313262939453, -3.6258544921875, -5.537458896636963], "max": [37.541282653808594, 28.924236297607422, 100.0, 83.8254165649414, 0.0525486059486866, 33.9576530456543, 1350.0, 1800.0, 1600.0, 2250.0, 1850.0, 1800.0, 3.3027524948120117, 5.0230255126953125, 4.993186950683594, 7.702182769775391, 3.2054672241210938, 4.9674272537231445], "mean": [0.4784289002418518, 0.05746909976005554, 25.540538787841797, 51.697540283203125, -39.402435302734375, 18.55199432373047, 3.2714412212371826, 1.7683465480804443, 2.7409372329711914, -5.305039882659912, 1.8567639589309692, 0.7957559823989868, 0.00999358855187893, -0.000443934986833483, 0.010756107047200203, -0.008853089064359665, 0.003577583935111761, -7.20008320058696e-05], "std": [21.363662719726562, 20.0827579498291, 22.71879768371582, 15.243599891662598, 18.38119125366211, 9.323010444641113, 341.26397705078125, 411.8071594238281, 387.0546569824219, 312.09588623046875, 420.6799621582031, 312.3158264160156, 0.8425198793411255, 1.1552703380584717, 1.1795018911361694, 0.9253994822502136, 0.737581193447113, 0.8480606079101562], "count": [1131]}, "observation.state": {"min": [-35.3821907043457, -96.45471954345703, -16.099773406982422, 14.950165748596191, -68.98148345947266, 1.2072434425354004, -1050.0, -1600.0, -1450.0, -1000.0, -1750.0, -1700.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [37.115840911865234, 29.556840896606445, 99.27437591552734, 83.22258758544922, -0.41152262687683105, 33.936954498291016, 1200.0, 1750.0, 1450.0, 1600.0, 1750.0, 1650.0, 1408.0, 1544.0, 1400.0, 1492.0, 1532.0, 1516.0], "mean": [0.41261616349220276, 1.189498782157898, 26.961612701416016, 51.99021530151367, -39.49881362915039, 19.33519744873047, 1.4146772623062134, 5.968169689178467, 0.663129985332489, -10.212201118469238, 1.8567639589309692, 0.5747126340866089, 540.9655151367188, 355.9893798828125, 367.6569519042969, 286.14324951171875, 618.8470458984375, 333.94873046875], "std": [21.385879516601562, 20.193012237548828, 22.410785675048828, 15.058394432067871, 18.358875274658203, 7.970247268676758, 315.64398193359375, 428.247314453125, 373.9551696777344, 278.1529846191406, 404.4790344238281, 286.08587646484375, 522.994140625, 444.9162292480469, 439.5624694824219, 442.75347900390625, 523.1895141601562, 444.3794860839844], "count": [1131]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5598190904139434]], [[0.5586838182922742]], [[0.5489201409837439]]], "std": [[[0.17777807080673855]], [[0.18429240937480595]], [[0.18368659638500232]]], "count": [195]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6447958459024635]], [[0.6379350668258758]], [[0.6229782973018266]]], "std": [[[0.28157998110020876]], [[0.2846395369439045]], [[0.28530049021511966]]], "count": [195]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9019607843137255]], [[0.8784313725490196]], [[0.8980392156862745]]], "mean": [[[0.4970137998575499]], [[0.4946849809368192]], [[0.5060831636500754]]], "std": [[[0.18138443781538405]], [[0.1815083150537933]], [[0.18147325875119477]]], "count": [195]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5043836098541981]], [[0.5013925255572315]], [[0.5031566302161891]]], "std": [[[0.17072807794455766]], [[0.17089445344883422]], [[0.17094398652091297]]], "count": [195]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8392156862745098]], [[0.8549019607843137]], [[0.9450980392156862]]], "mean": [[[0.4438210868107927]], [[0.44656302580861407]], [[0.4645535057399028]]], "std": [[[0.20322225873696595]], [[0.20432236159244022]], [[0.20686686929374884]]], "count": [195]}, "timestamp": {"min": [0.0], "max": [37.666666666666664], "mean": [18.833333333333332], "std": [10.88304832024285], "count": [1131]}, "frame_index": {"min": [0], "max": [1130], "mean": [565.0], "std": [326.4914496072855], "count": [1131]}, "episode_index": {"min": [39], "max": [39], "mean": [39.0], "std": [0.0], "count": [1131]}, "index": {"min": [47996], "max": [49126], "mean": [48561.0], "std": [326.4914496072855], "count": [1131]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1131]}}} +{"episode_index": 40, "stats": {"action": {"min": [-36.51375961303711, -100.0, 2.1334543228149414, 0.8130081295967102, -77.9295883178711, 0.0, -1150.0, -1350.0, -1550.0, -1550.0, -2150.0, -2450.0, -2.788991928100586, -3.7672691345214844, -4.90240478515625, -4.535730361938477, -3.8360443115234375, -6.514657974243164], "max": [36.220184326171875, 17.287567138671875, 100.0, 78.43389129638672, -1.3137152194976807, 44.46253967285156, 1650.0, 1300.0, 1600.0, 3000.0, 1350.0, 2500.0, 4.183485984802246, 3.51611328125, 4.90240478515625, 8.643558502197266, 2.417236328125, 6.921823501586914], "mean": [-2.2863292694091797, -5.431407928466797, 39.66803741455078, 37.1158561706543, -40.55265426635742, 19.212255477905273, -4.957983016967773, -1.9747898578643799, 1.1764706373214722, -0.9663865566253662, -0.6302521228790283, 0.3781512677669525, -0.010916697792708874, -0.0019696757663041353, 0.0034330831840634346, 0.0007910784333944321, 0.0012364387512207031, -2.0035175740673594e-09], "std": [18.98447036743164, 18.370651245117188, 17.785903930664062, 19.78028106689453, 17.077415466308594, 11.655587196350098, 358.2411193847656, 337.8903503417969, 339.3434753417969, 412.8310546875, 432.037841796875, 359.8987731933594, 0.8839626908302307, 0.9353334307670593, 1.0297818183898926, 1.182254672050476, 0.7610487937927246, 0.9850826859474182], "count": [1190]}, "observation.state": {"min": [-36.56422424316406, -96.37764739990234, 5.306122303009033, 1.6611295938491821, -77.57201385498047, 1.2072434425354004, -1050.0, -1450.0, -1250.0, -1300.0, -1950.0, -1850.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [35.77620315551758, 17.53371810913086, 99.81859588623047, 78.07308959960938, -0.05144032835960388, 44.39973068237305, 1400.0, 1400.0, 1400.0, 2500.0, 1350.0, 2350.0, 1472.0, 1420.0, 1384.0, 1748.0, 1436.0, 1724.0], "mean": [-2.3931386470794678, -4.289178848266602, 41.06390380859375, 37.259220123291016, -40.59070587158203, 19.89586639404297, -4.495798110961914, 0.08403361588716507, 0.42016807198524475, -5.462184906005859, -1.0084034204483032, -0.16806723177433014, 597.146240234375, 350.0773010253906, 346.5310974121094, 310.1680603027344, 655.0184936523438, 392.41009521484375], "std": [18.932506561279297, 18.3470516204834, 17.600162506103516, 19.494461059570312, 17.073768615722656, 10.502313613891602, 329.9399719238281, 351.01287841796875, 309.05096435546875, 371.358642578125, 419.9571533203125, 357.31243896484375, 521.7316284179688, 435.20703125, 429.40850830078125, 463.1849365234375, 516.9624633789062, 473.3099670410156], "count": [1190]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5521684958017861]], [[0.5521509718986605]], [[0.5423144949605254]]], "std": [[[0.1746816793055911]], [[0.18027838705614257]], [[0.17923470730779625]]], "count": [202]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.648738590403158]], [[0.637934866004983]], [[0.6177314174432149]]], "std": [[[0.2818147000158633]], [[0.2843865324908158]], [[0.28322288394789036]]], "count": [202]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9294117647058824]], [[0.8901960784313725]], [[0.9019607843137255]]], "mean": [[[0.49839205069403997]], [[0.49646669740503463]], [[0.5080053195576911]]], "std": [[[0.18166719148092608]], [[0.1808815133422797]], [[0.17976687959584306]]], "count": [202]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[0.996078431372549]], [[1.0]]], "mean": [[[0.49345542127742187]], [[0.49074376739144504]], [[0.4935911766728143]]], "std": [[[0.168913629611445]], [[0.1694564884713106]], [[0.1688158023705012]]], "count": [202]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8431372549019608]], [[0.8509803921568627]], [[0.9450980392156862]]], "mean": [[[0.44412106467999746]], [[0.4478164070083479]], [[0.46536276734291077]]], "std": [[[0.20345137624990195]], [[0.20465496817761658]], [[0.206850203337879]]], "count": [202]}, "timestamp": {"min": [0.0], "max": [39.63333333333333], "mean": [19.81666666666667], "std": [11.450776295857754], "count": [1190]}, "frame_index": {"min": [0], "max": [1189], "mean": [594.5], "std": [343.52328887573253], "count": [1190]}, "episode_index": {"min": [40], "max": [40], "mean": [40.0], "std": [0.0], "count": [1190]}, "index": {"min": [49127], "max": [50316], "mean": [49721.5], "std": [343.52328887573253], "count": [1190]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1190]}}} +{"episode_index": 41, "stats": {"action": {"min": [-32.47706604003906, -100.0, -27.37176513671875, 29.482242584228516, -74.35627746582031, 0.0, -1200.0, -1300.0, -1350.0, -1850.0, -2150.0, -1650.0, -2.935779571533203, -3.683551788330078, -4.176122665405273, -5.220367431640625, -3.8360519409179688, -4.478827476501465], "max": [40.25688171386719, 36.040184020996094, 100.0, 92.3833999633789, -1.8392012119293213, 35.097721099853516, 1450.0, 2050.0, 2150.0, 2300.0, 1550.0, 2150.0, 3.9633026123046875, 5.860195159912109, 6.627326965332031, 6.76080322265625, 2.785076141357422, 5.618891716003418], "mean": [0.6812048554420471, 6.771451473236084, 11.452771186828613, 59.962890625, -38.174259185791016, 20.841800689697266, -4.651162624359131, -0.9883720874786377, 2.4418604373931885, 0.930232584476471, 0.4651162922382355, -1.6279069185256958, -0.007766159251332283, -0.001946719828993082, 0.010556500405073166, 0.001293652574531734, -0.000977646792307496, -0.0003787581226788461], "std": [20.597854614257812, 20.859647750854492, 23.183191299438477, 12.386160850524902, 16.802751541137695, 11.954011917114258, 407.7256774902344, 499.3500061035156, 449.40533447265625, 432.09735107421875, 420.0492858886719, 387.8939514160156, 1.0068060159683228, 1.3918060064315796, 1.3645093441009521, 1.2338379621505737, 0.7389020919799805, 1.0634651184082031], "count": [860]}, "observation.state": {"min": [-32.2301025390625, -96.45471954345703, -24.44444465637207, 30.897010803222656, -74.485595703125, 1.2072434425354004, -1100.0, -1400.0, -1250.0, -1550.0, -1850.0, -1500.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [39.79511260986328, 36.493255615234375, 99.90929412841797, 91.69435119628906, -1.491769552230835, 34.80885314941406, 1250.0, 2150.0, 2000.0, 1800.0, 1400.0, 1800.0, 1436.0, 1632.0, 1544.0, 1552.0, 1468.0, 1556.0], "mean": [0.6119910478591919, 8.214810371398926, 12.814105987548828, 60.06479263305664, -38.25535202026367, 21.580677032470703, -2.965116262435913, 2.5, 1.2209302186965942, -7.034883499145508, -0.8720930218696594, -0.9883720874786377, 545.1162719726562, 412.1441955566406, 358.52557373046875, 443.641845703125, 649.2744140625, 388.8930358886719], "std": [20.57355499267578, 20.97942543029785, 22.737009048461914, 12.09986686706543, 16.773122787475586, 10.743638038635254, 376.7823486328125, 520.39990234375, 432.8996887207031, 386.0351257324219, 406.318603515625, 392.3559875488281, 526.6761474609375, 454.9609375, 442.2034912109375, 511.6739196777344, 518.7340698242188, 470.33612060546875], "count": [860]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5675170702510962]], [[0.5664201337180442]], [[0.5574507748510796]]], "std": [[[0.17476719976062405]], [[0.18297793652501457]], [[0.18350827553046747]]], "count": [158]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6457238083788368]], [[0.6387297832898983]], [[0.6240342516753536]]], "std": [[[0.2825481441476888]], [[0.2856245062411596]], [[0.2862005794705112]]], "count": [158]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8980392156862745]], [[0.8352941176470589]], [[0.8352941176470589]]], "mean": [[[0.4939634757383966]], [[0.49198931962025316]], [[0.5033638051212046]]], "std": [[[0.18369667178092713]], [[0.1829505108372141]], [[0.1816327497695937]]], "count": [158]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4905296638433855]], [[0.48792664898237775]], [[0.4910837017560189]]], "std": [[[0.16993682842361424]], [[0.17041353042966895]], [[0.16974641626068912]]], "count": [158]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8784313725490196]], [[0.8549019607843137]], [[0.9725490196078431]]], "mean": [[[0.4429886680938198]], [[0.44657966461901216]], [[0.4638935348928601]]], "std": [[[0.20252859019808442]], [[0.20380872377400874]], [[0.20617928257639564]]], "count": [158]}, "timestamp": {"min": [0.0], "max": [28.633333333333333], "mean": [14.316666666666665], "std": [8.275348263903393], "count": [860]}, "frame_index": {"min": [0], "max": [859], "mean": [429.5], "std": [248.26044791710177], "count": [860]}, "episode_index": {"min": [41], "max": [41], "mean": [41.0], "std": [0.0], "count": [860]}, "index": {"min": [50317], "max": [51176], "mean": [50746.5], "std": [248.26044791710177], "count": [860]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [860]}}} +{"episode_index": 42, "stats": {"action": {"min": [-32.33027648925781, -97.32105255126953, -44.16704559326172, 9.370988845825195, -75.30215454101562, 0.0, -1250.0, -1950.0, -1900.0, -1100.0, -2050.0, -2050.0, -3.155963897705078, -5.441612243652344, -6.082614421844482, -3.252033233642578, -3.6784019470214844, -4.641694068908691], "max": [42.311927795410156, 44.830474853515625, 100.0, 100.0, -2.6274304389953613, 29.967426300048828, 1300.0, 1900.0, 1550.0, 1750.0, 2550.0, 1750.0, 3.3761463165283203, 5.4416046142578125, 4.811618804931641, 5.990589141845703, 4.414085388183594, 4.723127365112305], "mean": [-6.544656276702881, -3.447871685028076, 30.321474075317383, 56.60123825073242, -47.86549377441406, 17.238372802734375, -0.8143322467803955, 2.809446334838867, 0.5700325965881348, -8.672638893127441, 0.3664495050907135, 0.2850162982940674, -0.002091869944706559, 0.0023860621731728315, 0.0014786114916205406, -0.020279908552765846, 0.00017116764502134174, -0.00019894093566108495], "std": [19.24711799621582, 19.624069213867188, 30.65691375732422, 16.932096481323242, 20.881696701049805, 7.905417442321777, 310.803955078125, 443.8046875, 458.7682189941406, 343.3287353515625, 474.3134765625, 296.556396484375, 0.7692186236381531, 1.2424983978271484, 1.3965059518814087, 1.0045968294143677, 0.836237907409668, 0.8022156953811646], "count": [1228]}, "observation.state": {"min": [-32.30890655517578, -96.45471954345703, -41.587303161621094, 9.717607498168945, -75.1028823852539, 1.2072434425354004, -1200.0, -2100.0, -1700.0, -1150.0, -1850.0, -1350.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [41.92277526855469, 44.508670806884766, 99.27437591552734, 99.16943359375, -2.8292181491851807, 29.778671264648438, 1150.0, 2000.0, 1500.0, 1700.0, 2150.0, 1550.0, 1408.0, 1604.0, 1404.0, 1516.0, 1676.0, 1484.0], "mean": [-6.6483845710754395, -2.2935595512390137, 31.615966796875, 56.7811164855957, -47.936279296875, 17.595001220703125, -0.447882741689682, 8.876221656799316, -0.447882741689682, -11.441368103027344, 0.447882741689682, -0.40716612339019775, 593.2247314453125, 312.63519287109375, 375.5179138183594, 382.4104309082031, 633.837158203125, 426.4397277832031], "std": [19.153884887695312, 20.09808349609375, 30.272552490234375, 16.740549087524414, 20.829910278320312, 7.203140735626221, 288.7086181640625, 456.67724609375, 439.1719055175781, 325.1481018066406, 459.5457458496094, 293.41253662109375, 519.8995361328125, 426.0905456542969, 454.4826354980469, 491.35601806640625, 524.0140991210938, 491.4051818847656], "count": [1228]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5651355567790723]], [[0.5655261783255976]], [[0.5574068114363298]]], "std": [[[0.1758061960037027]], [[0.18275178139222586]], [[0.18287594127005327]]], "count": [207]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6445970258675129]], [[0.6376467075558081]], [[0.6227221906475956]]], "std": [[[0.28171642303321404]], [[0.2845870337347636]], [[0.28508462323956135]]], "count": [207]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9529411764705882]], [[0.8470588235294118]], [[0.8509803921568627]]], "mean": [[[0.4973992789144643]], [[0.49530513423163147]], [[0.5062875876195889]]], "std": [[[0.18252146917365086]], [[0.18198764805340253]], [[0.18125181991636946]]], "count": [207]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.490196540210287]], [[0.487804696133687]], [[0.490499544141328]]], "std": [[[0.16859592290172662]], [[0.16860686525072838]], [[0.1684284827511348]]], "count": [207]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8352941176470589]], [[0.8745098039215686]], [[0.9568627450980393]]], "mean": [[[0.4433719777162073]], [[0.44811855482933916]], [[0.46582544362350414]]], "std": [[[0.20298201925544174]], [[0.20414651018339441]], [[0.20580765331863465]]], "count": [207]}, "timestamp": {"min": [0.0], "max": [40.9], "mean": [20.45], "std": [11.816431591455839], "count": [1228]}, "frame_index": {"min": [0], "max": [1227], "mean": [613.5], "std": [354.49294774367513], "count": [1228]}, "episode_index": {"min": [42], "max": [42], "mean": [42.0], "std": [0.0], "count": [1228]}, "index": {"min": [51177], "max": [52404], "mean": [51790.5], "std": [354.49294774367513], "count": [1228]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1228]}}} +{"episode_index": 43, "stats": {"action": {"min": [-32.99082565307617, -100.0, -38.62914276123047, 25.28883171081543, -62.585391998291016, 0.16286644339561462, -850.0, -1600.0, -1550.0, -1100.0, -2550.0, -1150.0, -2.1284408569335938, -4.520717620849609, -4.720836639404297, -3.4231948852539062, -4.5191802978515625, -3.094463348388672], "max": [33.871559143066406, 37.12850570678711, 100.0, 93.15361785888672, -1.2611665725708008, 32.410423278808594, 1050.0, 1550.0, 1550.0, 2100.0, 1750.0, 1950.0, 2.495412826538086, 4.269565582275391, 4.6300506591796875, 5.905006408691406, 3.047819137573242, 5.3745927810668945], "mean": [-1.417732834815979, 4.505587577819824, 17.293249130249023, 55.47352981567383, -40.317630767822266, 18.989810943603516, -3.1849913597106934, -0.13089005649089813, 0.6108202338218689, 1.6579406261444092, -1.9197207689285278, -0.3926701545715332, -0.008645936846733093, -0.002191387116909027, -0.0004754590627271682, 0.0014188577188178897, -0.002934652380645275, 3.1206620620949366e-10], "std": [21.258846282958984, 26.111825942993164, 34.478641510009766, 17.030757904052734, 13.759904861450195, 10.001140594482422, 237.58250427246094, 386.27459716796875, 376.9706115722656, 300.5543212890625, 382.10772705078125, 306.3780517578125, 0.5826500654220581, 1.0804399251937866, 1.144676923751831, 0.8628354668617249, 0.6685779690742493, 0.8310448527336121], "count": [1146]}, "observation.state": {"min": [-32.93932342529297, -96.22350311279297, -36.14512634277344, 25.91362190246582, -62.2427978515625, 1.2072434425354004, -800.0, -1700.0, -1450.0, -1050.0, -2100.0, -1150.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [33.569740295410156, 37.957611083984375, 99.18367004394531, 92.52491760253906, -2.520576238632202, 32.12609100341797, 900.0, 1600.0, 1400.0, 1350.0, 1700.0, 1850.0, 1332.0, 1484.0, 1372.0, 1492.0, 1508.0, 1464.0], "mean": [-1.5210976600646973, 5.749396324157715, 18.680448532104492, 55.627384185791016, -40.368709564208984, 19.858871459960938, -3.795811414718628, 0.26178011298179626, 0.7417103052139282, -5.58464241027832, 0.4363001883029938, 0.5235602259635925, 586.06982421875, 284.5654602050781, 320.2408447265625, 359.870849609375, 572.8516845703125, 358.5898742675781], "std": [21.26936912536621, 26.174945831298828, 34.28605651855469, 16.86444664001465, 13.786059379577637, 8.507428169250488, 221.23573303222656, 405.513671875, 357.5373840332031, 264.5912780761719, 361.479248046875, 294.4949035644531, 518.5350341796875, 401.60693359375, 420.30010986328125, 482.05242919921875, 524.6671752929688, 451.8373718261719], "count": [1146]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5675144286881418]], [[0.5675019080548885]], [[0.5595040151477257]]], "std": [[[0.1755640111631957]], [[0.1832523965685824]], [[0.18272297966415077]]], "count": [196]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6480803727741096]], [[0.6371508290816327]], [[0.6166449340152729]]], "std": [[[0.2819763140245554]], [[0.2844202866270931]], [[0.28326928903941634]]], "count": [196]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9372549019607843]], [[0.8941176470588236]], [[0.8941176470588236]]], "mean": [[[0.497437247815793]], [[0.4952868074313058]], [[0.5059221782462985]]], "std": [[[0.18080673142220324]], [[0.18077984135660716]], [[0.18005777519885924]]], "count": [196]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48203681576797386]], [[0.4800284676370548]], [[0.4830497323929572]]], "std": [[[0.1656301844057822]], [[0.1660251745479525]], [[0.1656118358439691]]], "count": [196]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[0.9411764705882353]], [[0.9568627450980393]]], "mean": [[[0.4420958539665866]], [[0.44667252317593703]], [[0.4644340361144458]]], "std": [[[0.20272382414598022]], [[0.20409270824299863]], [[0.20544578193993066]]], "count": [196]}, "timestamp": {"min": [0.0], "max": [38.166666666666664], "mean": [19.083333333333332], "std": [11.027385943220667], "count": [1146]}, "frame_index": {"min": [0], "max": [1145], "mean": [572.5], "std": [330.82157829662], "count": [1146]}, "episode_index": {"min": [43], "max": [43], "mean": [43.0], "std": [0.0], "count": [1146]}, "index": {"min": [52405], "max": [53550], "mean": [52977.5], "std": [330.82157829662], "count": [1146]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1146]}}} +{"episode_index": 44, "stats": {"action": {"min": [-36.880733489990234, -94.39096069335938, -70.04085540771484, 14.676936149597168, -71.5186538696289, 0.0, -1600.0, -1500.0, -2100.0, -1150.0, -2000.0, -1450.0, -3.889908790588379, -4.18585205078125, -6.536539077758789, -3.1664505004882812, -3.415660858154297, -3.9902281761169434], "max": [37.39449691772461, 58.64378356933594, 100.0, 100.0, -0.3152916431427002, 23.534202575683594, 1400.0, 1600.0, 1300.0, 2450.0, 2150.0, 1600.0, 3.5229358673095703, 4.520721435546875, 3.994556427001953, 7.103122711181641, 3.888599395751953, 4.071661472320557], "mean": [-3.9074509143829346, 6.761474132537842, 12.542512893676758, 55.7911262512207, -33.29547119140625, 14.164478302001953, 1.869918704032898, -0.8130081295967102, 0.0, -8.780488014221191, 3.0081300735473633, 0.6504064798355103, 0.0027448346372693777, -0.003811329137533903, 0.006568970624357462, -0.02170805260539055, 0.004913082346320152, 6.620612839469686e-05], "std": [21.34755516052246, 23.34464454650879, 35.75034713745117, 21.55484390258789, 19.594165802001953, 7.614935874938965, 347.8504333496094, 410.8719482421875, 402.591796875, 367.5904541015625, 443.0682678222656, 243.59124755859375, 0.8577961325645447, 1.1494946479797363, 1.224376916885376, 1.0771127939224243, 0.7829241752624512, 0.6606739163398743], "count": [1230]}, "observation.state": {"min": [-36.72182846069336, -95.29865264892578, -68.34467315673828, 15.448505401611328, -71.50205993652344, 1.2072434425354004, -1400.0, -1600.0, -1850.0, -1050.0, -1800.0, -1050.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [36.800628662109375, 58.843929290771484, 99.36508178710938, 99.16943359375, -0.7716049551963806, 23.205902099609375, 1200.0, 1600.0, 1250.0, 1950.0, 2150.0, 1550.0, 1428.0, 1492.0, 1336.0, 1648.0, 1672.0, 1368.0], "mean": [-4.121103763580322, 7.992968559265137, 13.836629867553711, 56.05109405517578, -33.39607620239258, 15.188586235046387, 0.3658536672592163, 3.9024391174316406, 0.8536585569381714, -14.227642059326172, 1.7479674816131592, -0.6504064798355103, 682.6276245117188, 384.28619384765625, 351.3918762207031, 300.6796875, 525.938232421875, 596.4194946289062], "std": [21.392513275146484, 23.42359161376953, 35.48404312133789, 21.300479888916016, 19.534948348999023, 5.763477325439453, 322.6191711425781, 432.25323486328125, 387.0844421386719, 341.2693176269531, 432.3243408203125, 200.3840789794922, 507.0772705078125, 451.3106994628906, 443.0137939453125, 454.9613952636719, 531.134033203125, 469.1564636230469], "count": [1230]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5581672527706736]], [[0.5575621733999558]], [[0.5474150455069307]]], "std": [[[0.17555915653082022]], [[0.1828418892533136]], [[0.1826123788211148]]], "count": [207]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6453683673549935]], [[0.6382928655157716]], [[0.6232533597376149]]], "std": [[[0.281637775351123]], [[0.28472173467870726]], [[0.2850769611721196]]], "count": [207]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9490196078431372]], [[0.9019607843137255]], [[0.9137254901960784]]], "mean": [[[0.49640335993495627]], [[0.4945247505604496]], [[0.5054378414006505]]], "std": [[[0.18272398025805017]], [[0.18205697480889904]], [[0.18061464582545322]]], "count": [207]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4934456650011051]], [[0.4906934804316252]], [[0.4935585058097313]]], "std": [[[0.17164886009213473]], [[0.1723294599202469]], [[0.17161251635381258]]], "count": [207]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9176470588235294]], [[0.9215686274509803]], [[0.9647058823529412]]], "mean": [[[0.44370475553345334]], [[0.44819939870070413]], [[0.46540745082251905]]], "std": [[[0.20228972570611656]], [[0.20346379892663333]], [[0.20494190072581253]]], "count": [207]}, "timestamp": {"min": [0.0], "max": [40.96666666666667], "mean": [20.483333333333334], "std": [11.835676606799494], "count": [1230]}, "frame_index": {"min": [0], "max": [1229], "mean": [614.5], "std": [355.07029820398475], "count": [1230]}, "episode_index": {"min": [44], "max": [44], "mean": [44.0], "std": [0.0], "count": [1230]}, "index": {"min": [53551], "max": [54780], "mean": [54165.5], "std": [355.07029820398475], "count": [1230]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1230]}}} +{"episode_index": 45, "stats": {"action": {"min": [-34.09174346923828, -99.9162826538086, -32.54652786254883, 32.30637741088867, -66.05359649658203, 0.0, -1300.0, -1700.0, -1350.0, -1100.0, -1950.0, -2150.0, -3.2293577194213867, -4.604434967041016, -4.176122665405273, -2.9952964782714844, -3.4682083129882812, -5.7003254890441895], "max": [38.128440856933594, 31.686899185180664, 100.0, 93.75267791748047, -0.2627430260181427, 37.703582763671875, 1150.0, 1750.0, 1600.0, 1900.0, 2000.0, 1650.0, 2.862384796142578, 4.855587005615234, 4.811622619628906, 5.477108001708984, 3.5207557678222656, 4.478827476501465], "mean": [5.818662166595459, -0.33240780234336853, 26.10821533203125, 52.13569259643555, -40.43412780761719, 22.294715881347656, 1.5182186365127563, 0.6578947305679321, -0.9109311699867249, -5.212550640106201, 0.2530364394187927, -0.6578947305679321, 0.00044572437764145434, -0.0006778076058253646, 0.00018376955995336175, -0.009874590672552586, -0.0011169180506840348, -0.0006593795260414481], "std": [19.318124771118164, 20.7941951751709, 24.92133903503418, 12.570816040039062, 18.050899505615234, 11.703786849975586, 334.1219177246094, 437.7630920410156, 398.267822265625, 301.9762268066406, 447.54461669921875, 348.53924560546875, 0.8218166828155518, 1.2248491048812866, 1.2124797105789185, 0.8659381866455078, 0.7881089448928833, 0.9493973255157471], "count": [988]}, "observation.state": {"min": [-33.96375274658203, -96.45471954345703, -29.705215454101562, 32.97342300415039, -65.84362030029297, 1.2072434425354004, -1200.0, -1700.0, -1300.0, -1050.0, -1650.0, -1850.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [37.509849548339844, 32.33140563964844, 99.27437591552734, 93.02325439453125, -0.15432098507881165, 37.4245491027832, 1050.0, 1850.0, 1500.0, 1550.0, 1750.0, 1600.0, 1364.0, 1524.0, 1404.0, 1504.0, 1560.0, 1516.0], "mean": [5.661391258239746, 0.8385642766952515, 27.627153396606445, 52.368202209472656, -40.49517822265625, 23.013538360595703, -0.9109311699867249, 3.6437246799468994, -0.5566801428794861, -8.29959487915039, -1.3663967847824097, -1.2651821374893188, 655.7327880859375, 338.61944580078125, 369.9919128417969, 344.611328125, 552.9271240234375, 430.757080078125], "std": [19.28392791748047, 20.774890899658203, 24.637102127075195, 12.38754940032959, 18.011066436767578, 10.38419246673584, 308.4157409667969, 453.6380615234375, 380.133056640625, 272.2711181640625, 434.9833679199219, 342.45068359375, 511.25531005859375, 436.61376953125, 437.8922119140625, 472.33172607421875, 530.1460571289062, 480.5323181152344], "count": [988]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5586061499647208]], [[0.5572923061033125]], [[0.5476201920398841]]], "std": [[[0.17596144037404615]], [[0.1840591742172897]], [[0.18374151179163678]]], "count": [176]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6443747760230986]], [[0.6372600905655823]], [[0.6220306511809269]]], "std": [[[0.2820797280708394]], [[0.28505368886386323]], [[0.28536310523519354]]], "count": [176]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9450980392156862]], [[0.9176470588235294]], [[0.9411764705882353]]], "mean": [[[0.4974887988339275]], [[0.49560135128862154]], [[0.5063388341131907]]], "std": [[[0.18238576732992598]], [[0.18178287765663298]], [[0.1804262103635615]]], "count": [176]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4853028016841206]], [[0.4829787024658348]], [[0.48562160901292334]]], "std": [[[0.164729981398764]], [[0.16484131992447776]], [[0.16424934853322917]]], "count": [176]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9294117647058824]], [[0.9254901960784314]], [[0.9411764705882353]]], "mean": [[[0.4440581341911765]], [[0.4486972749090167]], [[0.465656585385101]]], "std": [[[0.20260336815268293]], [[0.20372348929883405]], [[0.20533650781721924]]], "count": [176]}, "timestamp": {"min": [0.0], "max": [32.9], "mean": [16.450000000000003], "std": [9.507029562966084], "count": [988]}, "frame_index": {"min": [0], "max": [987], "mean": [493.5], "std": [285.21088688898254], "count": [988]}, "episode_index": {"min": [45], "max": [45], "mean": [45.0], "std": [0.0], "count": [988]}, "index": {"min": [54781], "max": [55768], "mean": [55274.5], "std": [285.21088688898254], "count": [988]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [988]}}} +{"episode_index": 46, "stats": {"action": {"min": [-33.3577995300293, -100.0, -23.195642471313477, 37.098846435546875, -66.47399139404297, 0.16286644339561462, -1150.0, -1300.0, -1450.0, -1000.0, -2550.0, -1450.0, -2.9357805252075195, -3.599832534790039, -4.448478698730469, -2.8241348266601562, -4.624277114868164, -3.6644949913024902], "max": [34.972476959228516, 35.95646667480469, 100.0, 80.1454849243164, -0.9984235167503357, 30.130292892456055, 1400.0, 1450.0, 1550.0, 1800.0, 1500.0, 2400.0, 3.5229358673095703, 4.0184173583984375, 4.7208356857299805, 5.134788513183594, 2.627431869506836, 6.433225631713867], "mean": [5.090949058532715, 3.8623886108398438, 16.526506423950195, 61.0240592956543, -41.115692138671875, 18.021011352539062, -2.991452932357788, -2.896486282348633, -0.047483380883932114, 0.5698005557060242, -0.7597340941429138, 0.902184247970581, -0.006342730950564146, -0.005247020162642002, -8.631432137917727e-05, 0.002844532486051321, -0.0007485526148229837, 7.733493112027645e-05], "std": [19.25959014892578, 22.374631881713867, 26.752553939819336, 10.829529762268066, 16.866779327392578, 10.162776947021484, 326.02764892578125, 428.9324645996094, 442.7076110839844, 298.4918212890625, 419.37188720703125, 353.4677734375, 0.7992722392082214, 1.2011531591415405, 1.3495155572891235, 0.8609243631362915, 0.7366862893104553, 0.9693267941474915], "count": [1053]}, "observation.state": {"min": [-33.018123626708984, -95.1445083618164, -20.181406021118164, 37.541526794433594, -66.35802459716797, 1.2072434425354004, -1100.0, -1400.0, -1350.0, -850.0, -1950.0, -1300.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [34.83057403564453, 36.18497085571289, 99.36508178710938, 79.40199279785156, -1.080246925354004, 29.778671264648438, 1200.0, 1400.0, 1450.0, 1250.0, 1650.0, 1950.0, 1412.0, 1416.0, 1400.0, 1456.0, 1484.0, 1600.0], "mean": [4.952343463897705, 5.183284759521484, 17.85603904724121, 61.09431457519531, -41.138580322265625, 18.56499481201172, -3.9886040687561035, 1.7094017267227173, 0.3323836624622345, -3.7511870861053467, -1.4245014190673828, -0.47483381628990173, 624.869873046875, 385.13958740234375, 361.7663879394531, 338.9097900390625, 525.181396484375, 421.3333435058594], "std": [19.20236587524414, 22.393136978149414, 26.495458602905273, 10.689238548278809, 16.840145111083984, 9.287981033325195, 298.7364196777344, 451.3100891113281, 425.36187744140625, 267.76568603515625, 396.54583740234375, 357.1540832519531, 517.47314453125, 449.2081298828125, 447.0043029785156, 478.3010559082031, 528.150634765625, 483.42401123046875], "count": [1053]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5703183110880221]], [[0.5687018539979397]], [[0.5617678550813441]]], "std": [[[0.17633637583036785]], [[0.18431902093695043]], [[0.1838411841268882]]], "count": [184]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.646213582738349]], [[0.6387098441052146]], [[0.6232082112283319]]], "std": [[[0.28203322878214243]], [[0.2850469028283349]], [[0.2855237756763722]]], "count": [184]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9176470588235294]], [[0.9254901960784314]], [[0.9254901960784314]]], "mean": [[[0.49703817113348964]], [[0.49471280459647626]], [[0.5050163876012361]]], "std": [[[0.1811405505034808]], [[0.1813757502927901]], [[0.1808993770566844]]], "count": [184]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[0.996078431372549]], [[1.0]]], "mean": [[[0.48552445541169365]], [[0.4828877433219665]], [[0.48546481710890876]]], "std": [[[0.16542216711879063]], [[0.1660700923617414]], [[0.16583456922754716]]], "count": [184]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.984313725490196]], [[0.9725490196078431]], [[0.9725490196078431]]], "mean": [[[0.44338115853225346]], [[0.4477650666471299]], [[0.46484245568698496]]], "std": [[[0.20447113635189365]], [[0.20594168244661656]], [[0.2079007754235804]]], "count": [184]}, "timestamp": {"min": [0.0], "max": [35.06666666666667], "mean": [17.533333333333335], "std": [10.132492655186452], "count": [1053]}, "frame_index": {"min": [0], "max": [1052], "mean": [526.0], "std": [303.9747796555936], "count": [1053]}, "episode_index": {"min": [46], "max": [46], "mean": [46.0], "std": [0.0], "count": [1053]}, "index": {"min": [55769], "max": [56821], "mean": [56295.0], "std": [303.9747796555936], "count": [1053]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1053]}}} +{"episode_index": 47, "stats": {"action": {"min": [-33.43119430541992, -100.0, -14.298683166503906, 16.388532638549805, -56.85759353637695, 0.0, -1250.0, -1700.0, -1900.0, -1300.0, -1850.0, -2700.0, -3.0825681686401367, -4.771873474121094, -5.8102569580078125, -3.7655105590820312, -3.205463409423828, -6.351791858673096], "max": [38.56880569458008, 31.686899185180664, 99.63685607910156, 72.7856216430664, 0.7882291078567505, 40.63517761230469, 1100.0, 2150.0, 1450.0, 1950.0, 1800.0, 1900.0, 2.6422019004821777, 5.943909168243408, 4.357696533203125, 5.562686920166016, 3.205465316772461, 5.211726188659668], "mean": [5.585768699645996, -1.1572344303131104, 27.27340316772461, 48.051822662353516, -37.065059661865234, 20.37802505493164, 2.750491142272949, -0.4420432150363922, -1.5717092752456665, -0.2946954667568207, 1.326129674911499, -0.34381139278411865, 0.004974666051566601, -0.002220318652689457, -0.002229398349300027, 0.0005884601268917322, 0.0025809728540480137, -0.0003999670734629035], "std": [18.530628204345703, 26.151399612426758, 26.58355712890625, 13.610260963439941, 12.441544532775879, 11.573092460632324, 345.49090576171875, 445.76373291015625, 377.057861328125, 364.7198486328125, 329.84326171875, 349.082763671875, 0.8485379815101624, 1.2432652711868286, 1.1471675634384155, 1.0442864894866943, 0.5844717025756836, 0.9365885853767395], "count": [1018]}, "observation.state": {"min": [-33.33333206176758, -96.45471954345703, -11.56462574005127, 17.35880470275879, -56.6872444152832, 1.2072434425354004, -1100.0, -1800.0, -1800.0, -1100.0, -1700.0, -1800.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [38.061466217041016, 30.944124221801758, 99.18367004394531, 72.42524719238281, 0.6687242984771729, 39.70489501953125, 1000.0, 2250.0, 1350.0, 1700.0, 1300.0, 1650.0, 1344.0, 1624.0, 1356.0, 1516.0, 1444.0, 1536.0], "mean": [5.405620574951172, -0.018454935401678085, 28.44823455810547, 48.24845886230469, -37.09084701538086, 21.270565032958984, 3.045186758041382, -0.5893909335136414, -0.04911591485142708, -4.61689567565918, 2.062868356704712, -0.7367386817932129, 615.8507080078125, 352.13360595703125, 432.9351806640625, 310.48724365234375, 470.38507080078125, 425.7642517089844], "std": [18.485118865966797, 25.927213668823242, 26.365299224853516, 13.393684387207031, 12.361510276794434, 10.121813774108887, 318.4336853027344, 465.2245178222656, 360.26544189453125, 333.9775695800781, 312.872802734375, 332.88433837890625, 521.146240234375, 444.3815612792969, 471.2241516113281, 460.53558349609375, 519.7927856445312, 468.7367858886719], "count": [1018]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5566432121459695]], [[0.5543631286310821]], [[0.5456096064814815]]], "std": [[[0.1745498920648885]], [[0.1821772984655039]], [[0.18226650407138073]]], "count": [180]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6431186535493827]], [[0.6368588541666667]], [[0.6225598833514888]]], "std": [[[0.2855649867379088]], [[0.2876861165624997]], [[0.286898353432221]]], "count": [180]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8313725490196079]], [[0.796078431372549]], [[0.807843137254902]]], "mean": [[[0.4972304715867829]], [[0.49513760779774874]], [[0.5056703136347132]]], "std": [[[0.1803680216494452]], [[0.17989123011779004]], [[0.178325715236194]]], "count": [180]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[0.996078431372549]], [[1.0]]], "mean": [[[0.49339509350036315]], [[0.4917933131354394]], [[0.49392972948438635]]], "std": [[[0.1664453967401958]], [[0.16712537593268023]], [[0.1671223533645442]]], "count": [180]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.984313725490196]], [[0.9764705882352941]], [[0.9647058823529412]]], "mean": [[[0.4425880423928831]], [[0.44667235271423383]], [[0.4634286560457516]]], "std": [[[0.20482591812207748]], [[0.20672270918126637]], [[0.20882058749263424]]], "count": [180]}, "timestamp": {"min": [0.0], "max": [33.9], "mean": [16.95], "std": [9.795704841068524], "count": [1018]}, "frame_index": {"min": [0], "max": [1017], "mean": [508.5], "std": [293.87114523205577], "count": [1018]}, "episode_index": {"min": [47], "max": [47], "mean": [47.0], "std": [0.0], "count": [1018]}, "index": {"min": [56822], "max": [57839], "mean": [57330.5], "std": [293.87114523205577], "count": [1018]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1018]}}} +{"episode_index": 48, "stats": {"action": {"min": [-33.3577995300293, -97.57220458984375, -24.012710571289062, 23.66281509399414, -67.20967102050781, 0.0, -1300.0, -1400.0, -1650.0, -1300.0, -1300.0, -2200.0, -3.3027524948120117, -3.8509864807128906, -4.90240478515625, -3.679931640625, -2.3121414184570312, -6.026059150695801], "max": [37.834861755371094, 39.13771438598633, 100.0, 77.40692901611328, 0.3152916431427002, 30.37459373474121, 1350.0, 1650.0, 1300.0, 1900.0, 1800.0, 1600.0, 3.3761463165283203, 4.6881561279296875, 3.9945526123046875, 5.562686920166016, 3.205465316772461, 4.315961837768555], "mean": [-2.4855287075042725, -1.3342217206954956, 28.50761604309082, 48.44942855834961, -42.07598114013672, 19.16484260559082, -3.2170119285583496, 2.9989094734191895, 3.925845146179199, -5.72519063949585, -0.9814612865447998, -0.9269356727600098, -0.008083785884082317, 0.006116889882832766, 0.012969317846000195, -0.012598988600075245, 0.00011460654059192166, -0.000444018718553707], "std": [21.82578468322754, 21.180286407470703, 25.979358673095703, 13.936898231506348, 18.72574806213379, 9.840901374816895, 350.5065612792969, 446.9381103515625, 378.8376159667969, 314.5718078613281, 409.7951965332031, 355.4471130371094, 0.8637206554412842, 1.2474056482315063, 1.148363709449768, 0.9090330004692078, 0.7199543118476868, 0.9673990607261658], "count": [917]}, "observation.state": {"min": [-33.33333206176758, -96.45471954345703, -23.53741455078125, 24.335548400878906, -67.18106842041016, 1.2072434425354004, -1200.0, -1500.0, -1500.0, -1050.0, -1250.0, -1950.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [37.115840911865234, 38.65125274658203, 99.81859588623047, 77.07640838623047, 0.46296295523643494, 30.114017486572266, 1200.0, 1750.0, 1200.0, 1400.0, 1800.0, 1500.0, 1408.0, 1540.0, 1324.0, 1516.0, 1544.0, 1496.0], "mean": [-2.582855463027954, -0.4355835020542145, 29.676517486572266, 48.72807312011719, -42.15775680541992, 20.04313850402832, -3.2170119285583496, 7.360959529876709, 0.38167938590049744, -15.594328880310059, 0.7088331580162048, 0.21810251474380493, 606.94873046875, 415.6597595214844, 378.77862548828125, 312.2006530761719, 568.1875610351562, 471.31951904296875], "std": [21.784252166748047, 21.407854080200195, 25.732505798339844, 13.723944664001465, 18.678695678710938, 8.220500946044922, 322.7945251464844, 466.7375183105469, 366.23028564453125, 262.136962890625, 401.023681640625, 335.1539306640625, 519.84619140625, 476.4192199707031, 454.9501037597656, 457.3284606933594, 528.3338623046875, 479.6987609863281], "count": [917]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5536254072663201]], [[0.5523851976533586]], [[0.5442606319887393]]], "std": [[[0.1769945212875632]], [[0.18349952074923298]], [[0.18252629271614007]]], "count": [166]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6399999323273486]], [[0.6345522125265769]], [[0.6213161186412316]]], "std": [[[0.28854245728866706]], [[0.2906297751225043]], [[0.28915644434155074]]], "count": [166]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9294117647058824]], [[0.8627450980392157]], [[0.8470588235294118]]], "mean": [[[0.49757259552917554]], [[0.49525140882156077]], [[0.5053510549551147]]], "std": [[[0.1800217838882697]], [[0.18018398881536193]], [[0.179617252393266]]], "count": [166]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48181566584967317]], [[0.479087281724939]], [[0.48113909067643124]]], "std": [[[0.16689402776368167]], [[0.16703689340067637]], [[0.16708619345122067]]], "count": [166]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9607843137254902]], [[0.9490196078431372]], [[0.9607843137254902]]], "mean": [[[0.4466000706256398]], [[0.4510786183951492]], [[0.46929721090243326]]], "std": [[[0.20495461464337406]], [[0.20657864114184002]], [[0.20827579662466703]]], "count": [166]}, "timestamp": {"min": [0.0], "max": [30.533333333333335], "mean": [15.266666666666666], "std": [8.823831367382311], "count": [917]}, "frame_index": {"min": [0], "max": [916], "mean": [458.0], "std": [264.7149410214694], "count": [917]}, "episode_index": {"min": [48], "max": [48], "mean": [48.0], "std": [0.0], "count": [917]}, "index": {"min": [57840], "max": [58756], "mean": [58298.0], "std": [264.7149410214694], "count": [917]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [917]}}} +{"episode_index": 49, "stats": {"action": {"min": [-35.266056060791016, -96.5676040649414, -30.27689552307129, 21.60890007019043, -79.40094757080078, 0.0, -1450.0, -1400.0, -1600.0, -1150.0, -1800.0, -2350.0, -3.743119239807129, -3.850982666015625, -4.811620712280273, -3.423187255859375, -3.205465316772461, -6.758957386016846], "max": [34.23853302001953, 37.71452331542969, 100.0, 94.18057250976562, 0.3152916431427002, 26.79153060913086, 1100.0, 1600.0, 1400.0, 2200.0, 2150.0, 1650.0, 2.9357805252075195, 4.437004089355469, 4.357696533203125, 6.332904815673828, 3.993692398071289, 4.641694068908691], "mean": [-7.007847309112549, -2.9330332279205322, 29.516387939453125, 53.645198822021484, -44.13074493408203, 17.021154403686523, -2.4048097133636475, 1.2024048566818237, 2.65531063079834, -6.062124252319336, 0.05010019987821579, 0.30060121417045593, -0.00661874795332551, 0.000838919950183481, 0.00918766763061285, -0.013977479189634323, 0.0017375809838995337, -0.00016319166752509773], "std": [21.11614418029785, 19.31233787536621, 27.50332260131836, 15.668095588684082, 17.6226749420166, 9.704079627990723, 368.1651611328125, 432.5184631347656, 459.8885192871094, 317.9676513671875, 485.4626159667969, 341.75787353515625, 0.9100204706192017, 1.21298348903656, 1.4010719060897827, 0.9306602478027344, 0.8546746969223022, 0.9212464690208435], "count": [998]}, "observation.state": {"min": [-34.672969818115234, -96.37764739990234, -26.349206924438477, 22.425249099731445, -79.42386627197266, 1.2072434425354004, -1250.0, -1450.0, -1500.0, -1050.0, -1450.0, -1800.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [33.96375274658203, 37.5722541809082, 99.81859588623047, 93.68770599365234, 0.3600822985172272, 26.224010467529297, 1050.0, 1650.0, 1350.0, 1450.0, 2100.0, 1450.0, 1364.0, 1492.0, 1368.0, 1512.0, 1628.0, 1444.0], "mean": [-7.161993503570557, -1.8867782354354858, 30.686155319213867, 53.9471549987793, -44.23454284667969, 18.142147064208984, -2.4048097133636475, 5.410821437835693, 0.6012024283409119, -14.028056144714355, 0.6012024283409119, -1.102204442024231, 648.0040283203125, 381.14630126953125, 402.8897705078125, 345.2224426269531, 600.28857421875, 366.03607177734375], "std": [21.075220108032227, 19.710479736328125, 27.03423309326172, 15.411211967468262, 17.58186149597168, 7.926751136779785, 340.5972900390625, 453.241455078125, 444.4657897949219, 277.1867370605469, 473.8078308105469, 304.85919189453125, 516.4752807617188, 456.7980041503906, 469.0866394042969, 470.2964782714844, 531.0009155273438, 445.57391357421875], "count": [998]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5594815991839297]], [[0.5570076656604261]], [[0.547961960184262]]], "std": [[[0.17767048890626275]], [[0.18570437117403982]], [[0.18565695958502915]]], "count": [177]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.640557823058602]], [[0.6345040249621506]], [[0.6206339257689893]]], "std": [[[0.28679742039007516]], [[0.28881499903043373]], [[0.2874988444480013]]], "count": [177]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9607843137254902]], [[0.8705882352941177]], [[0.8705882352941177]]], "mean": [[[0.49945902223883903]], [[0.49732867600901]], [[0.5075541581274695]]], "std": [[[0.17966966700272163]], [[0.1795610462622684]], [[0.17874787321316302]]], "count": [177]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.49024948995605777]], [[0.48874418988405155]], [[0.49090602844245046]]], "std": [[[0.16795665171824506]], [[0.1684954293805341]], [[0.16861654321450362]]], "count": [177]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9725490196078431]], [[0.9647058823529412]], [[0.9647058823529412]]], "mean": [[[0.44796739065211777]], [[0.45261489836047414]], [[0.47077470828255974]]], "std": [[[0.2051741811926152]], [[0.2065836837608701]], [[0.20834464575480705]]], "count": [177]}, "timestamp": {"min": [0.0], "max": [33.233333333333334], "mean": [16.616666666666667], "std": [9.603254656625534], "count": [998]}, "frame_index": {"min": [0], "max": [997], "mean": [498.5], "std": [288.097639698766], "count": [998]}, "episode_index": {"min": [49], "max": [49], "mean": [49.0], "std": [0.0], "count": [998]}, "index": {"min": [58757], "max": [59754], "mean": [59255.5], "std": [288.097639698766], "count": [998]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [998]}}} +{"episode_index": 50, "stats": {"action": {"min": [-29.981651306152344, -99.58141326904297, -65.22923278808594, 27.770647048950195, -18.970046997070312, 0.16286644339561462, -950.0, -1350.0, -1900.0, -2250.0, -700.0, -1700.0, -2.422018051147461, -3.850982666015625, -5.719472885131836, -6.76080322265625, -1.1560688018798828, -4.478826999664307], "max": [37.834861755371094, 53.03474426269531, 100.0, 86.90628814697266, 3.3105623722076416, 36.80781936645508, 900.0, 2150.0, 1650.0, 1500.0, 1000.0, 2300.0, 2.2018346786499023, 6.1113433837890625, 5.083977699279785, 4.4501495361328125, 1.8392014503479004, 6.270357131958008], "mean": [0.4968293607234955, 23.364116668701172, -17.345163345336914, 69.04866027832031, -8.174698829650879, 16.566848754882812, 0.7587253451347351, 1.0622154474258423, 0.5690439939498901, 0.07587253302335739, 2.996965169906616, -2.352048635482788, 0.0035639104899019003, -0.0006351441843435168, 0.003030762542039156, 0.00045451914775185287, 0.003707906696945429, -0.008897105231881142], "std": [19.968807220458984, 22.927648544311523, 28.084888458251953, 9.745296478271484, 5.278470039367676, 9.411237716674805, 249.75537109375, 355.70135498046875, 361.36614990234375, 247.107666015625, 150.695068359375, 244.92935180664062, 0.6156129837036133, 0.9944854378700256, 1.0956838130950928, 0.7101008892059326, 0.2640816867351532, 0.6486756205558777], "count": [1318]}, "observation.state": {"min": [-29.86603546142578, -96.53179168701172, -62.267574310302734, 28.488372802734375, -18.672840118408203, 1.2072434425354004, -950.0, -1450.0, -1750.0, -1900.0, -500.0, -1400.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [37.588653564453125, 54.142581939697266, 99.90929412841797, 86.2126235961914, 3.137860059738159, 34.80885314941406, 800.0, 2350.0, 1550.0, 1300.0, 900.0, 2600.0, 1308.0, 1704.0, 1424.0, 1420.0, 1316.0, 1808.0], "mean": [0.36668074131011963, 25.29281997680664, -15.847980499267578, 69.2287826538086, -8.242918014526367, 17.413530349731445, 0.8345978856086731, 1.32776939868927, -0.6069802641868591, -4.779969692230225, 2.010622262954712, 0.30349013209342957, 479.0622253417969, 245.20484924316406, 277.00152587890625, 404.0030212402344, 493.92108154296875, 307.96661376953125], "std": [19.983139038085938, 23.01634407043457, 27.67557716369629, 9.591849327087402, 5.252264022827148, 8.28912353515625, 233.13943481445312, 372.370849609375, 348.60369873046875, 224.90887451171875, 137.01275634765625, 246.00717163085938, 523.0682373046875, 330.5298767089844, 387.78515625, 494.54315185546875, 518.193115234375, 420.76416015625], "count": [1318]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5774040913383702]], [[0.5756621525903939]], [[0.565843843691911]]], "std": [[[0.1812299905817474]], [[0.1911102206888702]], [[0.1917893404595214]]], "count": [218]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6374784171313785]], [[0.6365917674791629]], [[0.6286335540714757]]], "std": [[[0.2903051809081893]], [[0.29308998754270016]], [[0.2940069522176582]]], "count": [218]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9058823529411765]], [[0.9058823529411765]], [[0.9058823529411765]]], "mean": [[[0.4705459437024045]], [[0.4684355877480962]], [[0.48089368497781376]]], "std": [[[0.17780419612296175]], [[0.1765936351574793]], [[0.17514586905860363]]], "count": [218]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47363599943035317]], [[0.4722129026878335]], [[0.4764532720963003]]], "std": [[[0.19175680660935082]], [[0.19210635790659977]], [[0.19010736892668909]]], "count": [218]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9490196078431372]], [[0.9490196078431372]], [[0.9882352941176471]]], "mean": [[[0.4397834564445044]], [[0.44300468459555076]], [[0.45950781296845955]]], "std": [[[0.20105327230911094]], [[0.20458147588510817]], [[0.20738412380269539]]], "count": [218]}, "timestamp": {"min": [0.0], "max": [43.9], "mean": [21.950000000000003], "std": [12.682457262779254], "count": [1318]}, "frame_index": {"min": [0], "max": [1317], "mean": [658.5], "std": [380.4737178833776], "count": [1318]}, "episode_index": {"min": [50], "max": [50], "mean": [50.0], "std": [0.0], "count": [1318]}, "index": {"min": [59755], "max": [61072], "mean": [60413.5], "std": [380.4737178833776], "count": [1318]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1318]}}} +{"episode_index": 51, "stats": {"action": {"min": [-30.348623275756836, -90.53997802734375, -58.874263763427734, 31.792896270751953, -60.4308967590332, 0.0, -1150.0, -1250.0, -1250.0, -1500.0, -1850.0, -1300.0, -2.7889904975891113, -3.6835556030273438, -3.9945526123046875, -4.278987884521484, -3.205463409423828, -3.7459285259246826], "max": [39.59632873535156, 51.9464225769043, 99.63685607910156, 81.3436050415039, 13.242249488830566, 26.30293083190918, 1150.0, 1200.0, 1400.0, 1650.0, 1250.0, 1250.0, 2.8623857498168945, 3.2649688720703125, 4.357694149017334, 4.878047943115234, 2.2070412635803223, 3.745929718017578], "mean": [-0.7418054938316345, 3.405019998550415, 13.780097961425781, 62.51023483276367, -9.686697006225586, 14.996214866638184, -0.22179974615573883, 0.8871989846229553, 4.182509422302246, -4.182509422302246, 0.3168567717075348, -0.41191381216049194, -0.0003720931417774409, -0.001538418116979301, 0.011621484532952309, -0.009653488174080849, -0.00229775276966393, 5.160478031029925e-05], "std": [21.985614776611328, 26.53464698791504, 39.69381332397461, 10.91713809967041, 17.729129791259766, 6.579822540283203, 245.35903930664062, 336.70526123046875, 379.5982666015625, 204.95602416992188, 252.99185180664062, 169.005126953125, 0.6032207012176514, 0.9402754306793213, 1.1554670333862305, 0.5983909368515015, 0.445995032787323, 0.4601583182811737], "count": [1578]}, "observation.state": {"min": [-30.338850021362305, -95.83815002441406, -57.09750747680664, 32.641197204589844, -60.28806686401367, 1.2072434425354004, -1000.0, -1350.0, -1250.0, -1400.0, -1650.0, -1150.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [39.0070915222168, 52.138729095458984, 98.45805358886719, 80.98006439208984, 12.91152286529541, 25.687458038330078, 1000.0, 1250.0, 1300.0, 1100.0, 1200.0, 1150.0, 1372.0, 1400.0, 1352.0, 1360.0, 1380.0, 1352.0], "mean": [-0.8964372873306274, 4.785907745361328, 15.01457691192627, 62.71139144897461, -9.716349601745605, 15.748157501220703, -0.3802281320095062, 4.942965984344482, 0.44359949231147766, -7.287705898284912, -0.22179974615573883, 0.7921419739723206, 571.7034301757812, 367.6578063964844, 360.83905029296875, 373.29278564453125, 477.2902526855469, 337.5639953613281], "std": [21.98261070251465, 27.107728958129883, 39.06057357788086, 10.779814720153809, 17.682519912719727, 5.469914436340332, 226.1710968017578, 355.6195983886719, 371.7993469238281, 183.87318420410156, 243.35577392578125, 157.25181579589844, 522.6114501953125, 432.0372619628906, 445.2716979980469, 482.7501220703125, 517.80517578125, 440.5063171386719], "count": [1578]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5767638766339869]], [[0.5742669076797385]], [[0.5657857745098039]]], "std": [[[0.18293511045217847]], [[0.18986617179371107]], [[0.18976960676628343]]], "count": [250]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6410007099673203]], [[0.6356262777777778]], [[0.6218190874183006]]], "std": [[[0.29166903527380444]], [[0.2931446162085874]], [[0.2917972785744469]]], "count": [250]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8666666666666667]], [[0.8627450980392157]], [[0.8627450980392157]]], "mean": [[[0.47458146732026146]], [[0.4723038611111111]], [[0.4848790465686274]]], "std": [[[0.17407144682232742]], [[0.1731417315495846]], [[0.1723237111351284]]], "count": [250]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4776684714052287]], [[0.47566911274509804]], [[0.4803148137254902]]], "std": [[[0.19111224177888625]], [[0.1908677908487167]], [[0.18905563130437106]]], "count": [250]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9607843137254902]], [[0.9450980392156862]], [[0.9764705882352941]]], "mean": [[[0.4455384297385621]], [[0.4486039640522876]], [[0.4656182418300654]]], "std": [[[0.20184285139633096]], [[0.20558090567800966]], [[0.20861560549331576]]], "count": [250]}, "timestamp": {"min": [0.0], "max": [52.56666666666667], "mean": [26.28333333333333], "std": [15.184309030731058], "count": [1578]}, "frame_index": {"min": [0], "max": [1577], "mean": [788.5], "std": [455.5292709219317], "count": [1578]}, "episode_index": {"min": [51], "max": [51], "mean": [51.0], "std": [0.0], "count": [1578]}, "index": {"min": [61073], "max": [62650], "mean": [61861.5], "std": [455.5292709219317], "count": [1578]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1578]}}} +{"episode_index": 52, "stats": {"action": {"min": [-39.44954299926758, -90.62369537353516, -59.60054397583008, 34.10354995727539, -14.240673065185547, 1.8729641437530518, -900.0, -750.0, -1100.0, -800.0, -900.0, -800.0, -2.275228500366211, -2.092926025390625, -3.5406265258789062, -2.2250747680664062, -1.5764589309692383, -2.3615636825561523], "max": [33.94495391845703, 54.03934860229492, 86.20063781738281, 83.99657440185547, 10.562270164489746, 23.61563491821289, 650.0, 1400.0, 1150.0, 650.0, 700.0, 1300.0, 1.6146793365478516, 3.8509864807128906, 3.449840545654297, 1.8827590942382812, 1.2611665725708008, 3.3387622833251953], "mean": [1.5635555982589722, 24.497785568237305, -12.404645919799805, 53.67941665649414, -1.5642122030258179, 15.011531829833984, 2.4260354042053223, 23.165679931640625, -14.526627540588379, -1.952662706375122, 2.5443787574768066, 3.2248520851135254, 0.005428594537079334, 0.06102931499481201, -0.044533200562000275, -0.004608143121004105, 0.004353136755526066, 0.009492511861026287], "std": [18.716772079467773, 16.91187286376953, 21.60818862915039, 10.886975288391113, 6.926722526550293, 6.401555061340332, 194.0225067138672, 225.91070556640625, 206.36502075195312, 154.52490234375, 130.52804565429688, 142.0889434814453, 0.4764069616794586, 0.6280661225318909, 0.6241552829742432, 0.4398265779018402, 0.22838884592056274, 0.3895759880542755], "count": [1690]}, "observation.state": {"min": [-38.92829132080078, -95.76107788085938, -57.27891159057617, 34.55149459838867, -13.78600788116455, 1.408450722694397, -800.0, -850.0, -1050.0, -850.0, -800.0, -750.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [33.569740295410156, 54.52793884277344, 94.8299331665039, 83.63787078857422, 10.185185432434082, 23.809524536132812, 600.0, 1550.0, 1050.0, 550.0, 650.0, 1200.0, 1256.0, 1456.0, 1300.0, 1212.0, 1240.0, 1396.0], "mean": [1.3048545122146606, 25.768165588378906, -10.873462677001953, 53.87425994873047, -1.6344660520553589, 15.503812789916992, 1.5976331233978271, 25.355030059814453, -15.088757514953613, -2.366863965988159, 3.5798816680908203, 3.7573964595794678, 668.8662719726562, 224.3668670654297, 274.30059814453125, 411.92425537109375, 492.72900390625, 417.8414306640625], "std": [18.756818771362305, 17.609460830688477, 21.929534912109375, 10.869058609008789, 6.969261169433594, 5.69111442565918, 177.6505889892578, 236.97958374023438, 198.86602783203125, 147.69569396972656, 114.34320831298828, 139.2147979736328, 507.8386535644531, 341.22271728515625, 379.4034729003906, 492.0024719238281, 517.0027465820312, 475.0050354003906], "count": [1690]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5614873560165511]], [[0.5591012264221278]], [[0.5478168101841497]]], "std": [[[0.18001440169267655]], [[0.18642042170069562]], [[0.18438825379234078]]], "count": [263]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6384578098983573]], [[0.6339622691915803]], [[0.6195309548882925]]], "std": [[[0.2913626478363727]], [[0.293640853697019]], [[0.29253890064420596]]], "count": [263]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9333333333333333]], [[0.9215686274509803]], [[0.9372549019607843]]], "mean": [[[0.4698558806443997]], [[0.4665122440294242]], [[0.47504535167996226]]], "std": [[[0.17069900856610185]], [[0.1725622235869261]], [[0.17382791148906063]]], "count": [263]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4837630532567907]], [[0.4763941799311613]], [[0.47236783111533587]]], "std": [[[0.19239833469372328]], [[0.19088807137592123]], [[0.1863791092139711]]], "count": [263]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9568627450980393]], [[0.9529411764705882]], [[0.9647058823529412]]], "mean": [[[0.443618801100922]], [[0.4466748971768682]], [[0.4616696542844007]]], "std": [[[0.19863267990963882]], [[0.20199438268887912]], [[0.20523222692438453]]], "count": [263]}, "timestamp": {"min": [0.0], "max": [56.3], "mean": [28.15], "std": [16.26202973527939], "count": [1690]}, "frame_index": {"min": [0], "max": [1689], "mean": [844.5], "std": [487.86089205838175], "count": [1690]}, "episode_index": {"min": [52], "max": [52], "mean": [52.0], "std": [0.0], "count": [1690]}, "index": {"min": [62651], "max": [64340], "mean": [63495.5], "std": [487.86089205838175], "count": [1690]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1690]}}} +{"episode_index": 53, "stats": {"action": {"min": [-40.18348693847656, -99.16282653808594, -41.443485260009766, 41.12109375, -73.88333892822266, 0.0, -950.0, -900.0, -1250.0, -850.0, -1750.0, -1400.0, -2.348623752593994, -2.5952301025390625, -3.8129825592041016, -2.3962326049804688, -3.047819137573242, -3.583061933517456], "max": [47.37614822387695, 42.31896209716797, 95.36994934082031, 83.56867980957031, 10.562270164489746, 29.315961837768555, 1050.0, 1500.0, 1750.0, 1450.0, 1300.0, 1250.0, 2.7155961990356445, 4.269569396972656, 5.265546798706055, 4.022254943847656, 2.2595901489257812, 3.501628875732422], "mean": [4.001012325286865, -5.644294261932373, 24.401165008544922, 64.24097442626953, -18.778493881225586, 15.781888961791992, 0.5263158082962036, 1.7105263471603394, 0.7565789222717285, -4.2434210777282715, 1.1513158082962036, 0.09868421405553818, 0.00043456084677018225, 0.0042960792779922485, 0.00447955634444952, -0.010415961034595966, 0.0017285739304497838, -0.00032144642318598926], "std": [26.343414306640625, 27.437524795532227, 37.51182556152344, 8.456902503967285, 24.050331115722656, 8.184774398803711, 256.012451171875, 376.6669921875, 431.7130432128906, 203.029296875, 321.187255859375, 209.75779724121094, 0.6330578923225403, 1.0491759777069092, 1.3147486448287964, 0.586002767086029, 0.565686821937561, 0.5725228190422058], "count": [1520]}, "observation.state": {"min": [-39.79511260986328, -96.6088638305664, -39.13832092285156, 42.27574920654297, -73.7139892578125, 1.2072434425354004, -950.0, -1000.0, -1150.0, -750.0, -1500.0, -1250.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [46.88731384277344, 42.81310272216797, 97.55101776123047, 82.89036560058594, 10.185185432434082, 29.175050735473633, 1000.0, 1600.0, 1650.0, 1150.0, 1200.0, 1250.0, 1360.0, 1508.0, 1436.0, 1396.0, 1408.0, 1420.0], "mean": [3.879758834838867, -4.423740863800049, 25.769420623779297, 64.493408203125, -18.850343704223633, 16.708450317382812, -0.625, 2.3684210777282715, -0.7565789222717285, -6.677631378173828, 0.46052631735801697, 0.09868421405553818, 507.9605407714844, 437.5315856933594, 385.7579040527344, 337.618408203125, 552.4315795898438, 393.5105285644531], "std": [26.360408782958984, 28.07678985595703, 37.13924026489258, 8.251039505004883, 24.042926788330078, 6.925835132598877, 240.09527587890625, 399.5724792480469, 421.5933837890625, 185.64303588867188, 313.5688171386719, 203.74368286132812, 522.1598510742188, 462.3470764160156, 450.64312744140625, 468.05560302734375, 527.3253784179688, 452.596923828125], "count": [1520]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5702263626644074]], [[0.5739590452607656]], [[0.5669260057761102]]], "std": [[[0.18560633014399247]], [[0.19390097567965756]], [[0.19273558840823346]]], "count": [243]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6430402049880309]], [[0.6390305817800371]], [[0.6291154793364534]]], "std": [[[0.2826996897301752]], [[0.2866216358073675]], [[0.2894732993635624]]], "count": [243]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.807843137254902]], [[0.7843137254901961]], [[0.803921568627451]]], "mean": [[[0.463285245030797]], [[0.460679977272116]], [[0.4698934504357299]]], "std": [[[0.16817631141479358]], [[0.16847554857429434]], [[0.16880755482433318]]], "count": [243]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4852026135385567]], [[0.4785802233787891]], [[0.4767932846835579]]], "std": [[[0.1888492912881113]], [[0.18724261118715582]], [[0.18426518485148638]]], "count": [243]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9176470588235294]], [[0.9215686274509803]], [[0.9333333333333333]]], "mean": [[[0.4333248330710885]], [[0.4382501538166707]], [[0.4567396270408026]]], "std": [[[0.19365115835065058]], [[0.19626744481855066]], [[0.19987593265254217]]], "count": [243]}, "timestamp": {"min": [0.0], "max": [50.63333333333333], "mean": [25.316666666666663], "std": [14.626203654172649], "count": [1520]}, "frame_index": {"min": [0], "max": [1519], "mean": [759.5], "std": [438.78610962517945], "count": [1520]}, "episode_index": {"min": [53], "max": [53], "mean": [53.0], "std": [0.0], "count": [1520]}, "index": {"min": [64341], "max": [65860], "mean": [65100.5], "std": [438.78610962517945], "count": [1520]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1520]}}} +{"episode_index": 54, "stats": {"action": {"min": [-32.11009216308594, -90.03767395019531, -56.15070343017578, 44.03080749511719, -39.831844329833984, 0.6514657735824585, -850.0, -1150.0, -1200.0, -900.0, -1200.0, -800.0, -2.0550460815429688, -3.264965057373047, -3.5406265258789062, -2.5673980712890625, -2.364686965942383, -2.1986961364746094], "max": [34.165138244628906, 44.74675750732422, 96.82251739501953, 78.26273345947266, -1.6290068626403809, 28.2573299407959, 1000.0, 1500.0, 1450.0, 1250.0, 850.0, 1550.0, 2.4220190048217773, 4.18585205078125, 4.6300506591796875, 3.5087738037109375, 1.471360206604004, 4.234527587890625], "mean": [0.16007797420024872, 12.74489974975586, 2.1873230934143066, 61.90140914916992, -21.751264572143555, 17.82672119140625, 1.7528483867645264, 3.5056967735290527, 2.7607362270355225, -3.0236635208129883, -1.928133249282837, -0.48203331232070923, 0.004245401360094547, 0.0035951065365225077, 0.012253182008862495, -0.006225351709872484, -0.0033620053436607122, -0.00028548017144203186], "std": [20.381576538085938, 19.291812896728516, 24.330495834350586, 6.7032246589660645, 11.85159683227539, 8.909004211425781, 275.33160400390625, 366.2609558105469, 359.6900939941406, 191.45257568359375, 212.36111450195312, 234.09449768066406, 0.6785022616386414, 1.0180704593658447, 1.094649076461792, 0.5581342577934265, 0.3737906515598297, 0.6361649036407471], "count": [1141]}, "observation.state": {"min": [-31.75728988647461, -95.91522216796875, -53.015872955322266, 45.0166130065918, -39.557613372802734, 1.2072434425354004, -800.0, -1300.0, -1050.0, -700.0, -1050.0, -850.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [33.64854049682617, 45.587669372558594, 96.55329132080078, 77.90697479248047, -1.7489712238311768, 27.833667755126953, 900.0, 1550.0, 1450.0, 800.0, 850.0, 1350.0, 1328.0, 1496.0, 1388.0, 1304.0, 1300.0, 1448.0], "mean": [0.03763342648744583, 14.512235641479492, 3.766160726547241, 62.123844146728516, -21.774734497070312, 18.335691452026367, 1.3584574460983276, 6.748466491699219, 0.2191060483455658, -7.142857074737549, -1.446099877357483, -0.5696757435798645, 517.1077880859375, 369.4197998046875, 323.8492431640625, 363.7300720214844, 486.2716979980469, 468.673095703125], "std": [20.405818939208984, 19.64295768737793, 24.100887298583984, 6.58864688873291, 11.841240882873535, 7.919172286987305, 257.1328430175781, 383.6424865722656, 351.9909973144531, 170.2568359375, 202.33221435546875, 233.37234497070312, 523.9173583984375, 415.7270812988281, 409.2883605957031, 478.1692199707031, 516.4287719726562, 491.1112976074219], "count": [1141]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5734318654545152]], [[0.5753396410647593]], [[0.5673542396125116]]], "std": [[[0.17521860224629568]], [[0.1861115537980919]], [[0.18600803643462116]]], "count": [196]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.641470606992797]], [[0.6373251644407762]], [[0.6274129995748299]]], "std": [[[0.2825285059108537]], [[0.2865348536126305]], [[0.28949000960109234]]], "count": [196]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9137254901960784]], [[0.8980392156862745]], [[0.9019607843137255]]], "mean": [[[0.4758657535931039]], [[0.4734753057472989]], [[0.4816889276543951]]], "std": [[[0.17747548751207887]], [[0.1773765613397321]], [[0.17657247719801972]]], "count": [196]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4800415978891557]], [[0.47344566055588905]], [[0.4731764664199013]]], "std": [[[0.19443418123267536]], [[0.19342415232415452]], [[0.19154825794857597]]], "count": [196]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9215686274509803]], [[0.9176470588235294]], [[0.9294117647058824]]], "mean": [[[0.44408259241196474]], [[0.4477517590369481]], [[0.46366133849373087]]], "std": [[[0.1997704359735223]], [[0.20193574363914227]], [[0.2042480298694351]]], "count": [196]}, "timestamp": {"min": [0.0], "max": [38.0], "mean": [19.0], "std": [10.979273402390726], "count": [1141]}, "frame_index": {"min": [0], "max": [1140], "mean": [570.0], "std": [329.3782020717218], "count": [1141]}, "episode_index": {"min": [54], "max": [54], "mean": [54.0], "std": [0.0], "count": [1141]}, "index": {"min": [65861], "max": [67001], "mean": [66431.0], "std": [329.3782020717218], "count": [1141]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1141]}}} +{"episode_index": 55, "stats": {"action": {"min": [-33.0642204284668, -99.41397857666016, -53.154788970947266, 29.39666175842285, -38.51812744140625, 0.732899010181427, -900.0, -900.0, -1550.0, -1250.0, -1150.0, -1350.0, -2.2752294540405273, -2.4277942180633545, -4.811618804931641, -3.5943527221679688, -1.9968466758728027, -3.6644954681396484], "max": [35.04587173461914, 49.351192474365234, 100.0, 83.14077758789062, -3.7834997177124023, 34.36482238769531, 1050.0, 1850.0, 1650.0, 1200.0, 1050.0, 1550.0, 2.568807601928711, 5.357887268066406, 4.993190765380859, 3.3376121520996094, 1.7341041564941406, 4.234526634216309], "mean": [-2.666271209716797, 29.035661697387695, -28.499670028686523, 68.58523559570312, -24.935331344604492, 18.52315330505371, 1.310741662979126, 2.781329870223999, 1.470588207244873, -2.941176414489746, 1.5984654426574707, -0.4475703239440918, 0.005443565547466278, 0.005727492272853851, 0.005862789694219828, -0.0067303916439414024, 0.0022175235208123922, -1.676856986598807e-09], "std": [20.414955139160156, 21.863245010375977, 24.614721298217773, 8.856098175048828, 8.0661039352417, 9.504948616027832, 253.52890014648438, 316.1019287109375, 254.10739135742188, 174.16461181640625, 182.2552032470703, 240.58282470703125, 0.6250396370887756, 0.8809887170791626, 0.7681233286857605, 0.5013584494590759, 0.3217368423938751, 0.6571108102798462], "count": [1564]}, "observation.state": {"min": [-33.096927642822266, -96.53179168701172, -50.3854866027832, 30.64784049987793, -38.32304382324219, 1.2072434425354004, -900.0, -950.0, -1500.0, -1150.0, -850.0, -1350.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [34.51536560058594, 50.057804107666016, 99.90929412841797, 82.72425079345703, -5.915637969970703, 34.205230712890625, 950.0, 2000.0, 1500.0, 1050.0, 650.0, 1600.0, 1356.0, 1604.0, 1408.0, 1328.0, 1276.0, 1516.0], "mean": [-2.8611085414886475, 30.97890853881836, -27.2586669921875, 68.81599426269531, -25.011632919311523, 19.189146041870117, 1.694373369216919, 3.0370843410491943, 0.031969308853149414, -4.731457710266113, -0.7992327213287354, -0.2237851619720459, 562.8388671875, 239.48593139648438, 179.94117736816406, 368.34271240234375, 553.0818481445312, 543.2915649414062], "std": [20.383031845092773, 22.07349395751953, 24.492813110351562, 8.716909408569336, 8.027012825012207, 8.34807300567627, 236.9793701171875, 327.6790771484375, 247.19329833984375, 161.36557006835938, 168.24485778808594, 244.15457153320312, 525.7901000976562, 323.3152160644531, 311.901611328125, 478.79345703125, 519.1510009765625, 485.2044982910156], "count": [1564]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5674568220601413]], [[0.5666718535868648]], [[0.5592160362969112]]], "std": [[[0.17576464862844784]], [[0.18573607311880005]], [[0.1860256028306021]]], "count": [248]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6437177534656335]], [[0.6383811867488931]], [[0.6261442059350621]]], "std": [[[0.28375465926774635]], [[0.28736398773086386]], [[0.28970104029219435]]], "count": [248]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9333333333333333]], [[0.9294117647058824]], [[0.9411764705882353]]], "mean": [[[0.4675841651512756]], [[0.4648099576019924]], [[0.47424774091424204]]], "std": [[[0.17795084258687072]], [[0.17780869218952153]], [[0.1773518898565485]]], "count": [248]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4752604537278621]], [[0.4742522944997892]], [[0.4775225348539953]]], "std": [[[0.1967332511495685]], [[0.19737454974550692]], [[0.19531466012573803]]], "count": [248]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.984313725490196]], [[1.0]], [[1.0]]], "mean": [[[0.4404637813290639]], [[0.44382388849356946]], [[0.45934894927393]]], "std": [[[0.19912932521962864]], [[0.2017715156419229]], [[0.20456581943771102]]], "count": [248]}, "timestamp": {"min": [0.0], "max": [52.1], "mean": [26.049999999999997], "std": [15.049593940627695], "count": [1564]}, "frame_index": {"min": [0], "max": [1563], "mean": [781.5], "std": [451.4878182188308], "count": [1564]}, "episode_index": {"min": [55], "max": [55], "mean": [55.0], "std": [0.0], "count": [1564]}, "index": {"min": [67002], "max": [68565], "mean": [67783.5], "std": [451.4878182188308], "count": [1564]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1564]}}} +{"episode_index": 56, "stats": {"action": {"min": [-33.724769592285156, -99.33026123046875, -34.08987808227539, 54.214805603027344, -17.28849220275879, 0.48859935998916626, -1000.0, -1000.0, -1600.0, -800.0, -1000.0, -1150.0, -2.495412826538086, -2.8463783264160156, -4.811622619628906, -2.3106536865234375, -1.8917500972747803, -3.1758956909179688], "max": [36.220184326171875, 39.30514907836914, 100.0, 88.18998718261719, 19.915922164916992, 29.8045597076416, 1400.0, 1700.0, 1400.0, 1000.0, 1250.0, 1650.0, 3.376148223876953, 4.855587005615234, 4.539264678955078, 2.9097137451171875, 2.2070417404174805, 4.315960884094238], "mean": [-2.9673306941986084, 17.2136173248291, -8.947258949279785, 68.33148956298828, -4.2410888671875, 16.066743850708008, 4.8913044929504395, 3.58695650100708, 0.39855071902275085, -3.007246494293213, -1.6666666269302368, 0.036231882870197296, 0.01180692482739687, 0.007643981371074915, 0.0006579302134923637, -0.005767338443547487, -0.003541317768394947, -0.00023603832232765853], "std": [22.74155616760254, 19.865337371826172, 21.391735076904297, 6.565502643585205, 8.590585708618164, 8.773118019104004, 308.3025817871094, 360.4954833984375, 302.2708435058594, 168.61611938476562, 197.29354858398438, 251.06661987304688, 0.761689305305481, 1.0077131986618042, 0.9216801524162292, 0.4833693504333496, 0.3477087914943695, 0.6815944314002991], "count": [1380]}, "observation.state": {"min": [-33.569740295410156, -96.53179168701172, -31.8820858001709, 54.9833869934082, -17.026748657226562, 1.2743124961853027, -1000.0, -1100.0, -1450.0, -700.0, -950.0, -1100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [35.460994720458984, 39.65317916870117, 99.45578002929688, 87.7076416015625, 17.952674865722656, 29.376256942749023, 1300.0, 1850.0, 1350.0, 1100.0, 900.0, 1550.0, 1440.0, 1576.0, 1364.0, 1340.0, 1356.0, 1468.0], "mean": [-3.123831033706665, 19.065176010131836, -7.229464054107666, 68.54350280761719, -4.2125163078308105, 17.196014404296875, 4.094202995300293, 4.782608509063721, 0.5072463750839233, -4.275362491607666, -1.8115942478179932, 0.47101449966430664, 519.9826049804688, 348.657958984375, 272.7652282714844, 317.95941162109375, 375.22027587890625, 539.431884765625], "std": [22.718538284301758, 20.18080711364746, 21.253812789916992, 6.421361446380615, 8.517017364501953, 6.82461404800415, 289.20684814453125, 376.37432861328125, 291.8078308105469, 155.88609313964844, 183.24899291992188, 229.55056762695312, 526.1635131835938, 402.0703430175781, 369.41534423828125, 459.56182861328125, 491.3918151855469, 471.5753173828125], "count": [1380]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5773935856975534]], [[0.5739568665408642]], [[0.5648356442318816]]], "std": [[[0.18037710025581613]], [[0.18927413097432702]], [[0.1889803424859175]]], "count": [226]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.643707926644109]], [[0.6384284570391578]], [[0.6277988072256927]]], "std": [[[0.28408127936830807]], [[0.2878981260707718]], [[0.291240957771562]]], "count": [226]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8705882352941177]], [[0.8705882352941177]], [[0.8705882352941177]]], "mean": [[[0.471017549995662]], [[0.4695949565113656]], [[0.4779762963444965]]], "std": [[[0.1757597101653083]], [[0.17616661742088918]], [[0.17540643313699736]]], "count": [226]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47521053939643704]], [[0.4735363661504425]], [[0.47721824751286945]]], "std": [[[0.19496814774716312]], [[0.19626020847415113]], [[0.19541867538256139]]], "count": [226]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9254901960784314]], [[0.9215686274509803]], [[0.9411764705882353]]], "mean": [[[0.4440160922407311]], [[0.4472845026100411]], [[0.46302305566400603]]], "std": [[[0.19903916554874326]], [[0.20140226765999938]], [[0.20371466820426407]]], "count": [226]}, "timestamp": {"min": [0.0], "max": [45.96666666666667], "mean": [22.983333333333334], "std": [13.279052704946267], "count": [1380]}, "frame_index": {"min": [0], "max": [1379], "mean": [689.5], "std": [398.371581148388], "count": [1380]}, "episode_index": {"min": [56], "max": [56], "mean": [56.0], "std": [0.0], "count": [1380]}, "index": {"min": [68566], "max": [69945], "mean": [69255.5], "std": [398.371581148388], "count": [1380]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1380]}}} +{"episode_index": 57, "stats": {"action": {"min": [-31.009174346923828, -99.49769592285156, -63.9582405090332, 24.689773559570312, -20.91434669494629, 0.0, -950.0, -1150.0, -1350.0, -1100.0, -700.0, -1100.0, -2.3486242294311523, -3.0975303649902344, -4.26690673828125, -3.166454315185547, -1.156069278717041, -3.1758954524993896], "max": [40.18348693847656, 55.04395294189453, 100.0, 90.24390411376953, 10.141880989074707, 43.403907775878906, 950.0, 2100.0, 1750.0, 1550.0, 850.0, 1650.0, 2.348623275756836, 5.692760467529297, 5.265546798706055, 4.535732269287109, 1.4713611602783203, 4.560260772705078], "mean": [0.36182311177253723, 7.244919300079346, 10.267865180969238, 61.37471008300781, -4.944036483764648, 17.991254806518555, -1.5250544548034668, 3.4858388900756836, 0.14524328708648682, -7.0806097984313965, 2.360203266143799, 0.43572986125946045, -0.00266501447185874, 0.009788354858756065, 0.0002637432480696589, -0.01690465770661831, 0.003510876093059778, -1.904578272871049e-09], "std": [22.62841033935547, 24.35188102722168, 31.539953231811523, 9.917287826538086, 8.206587791442871, 11.7438325881958, 272.0541076660156, 366.00201416015625, 390.2773742675781, 185.37362670898438, 173.04689025878906, 274.4897155761719, 0.6715715527534485, 1.0248773097991943, 1.1891429424285889, 0.5416398644447327, 0.30307915806770325, 0.7490730285644531], "count": [1377]}, "observation.state": {"min": [-31.12687110900879, -96.53179168701172, -63.26530456542969, 25.581396102905273, -20.88477325439453, 1.2743124961853027, -850.0, -1250.0, -1300.0, -1000.0, -550.0, -1000.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [39.55870819091797, 54.91329574584961, 99.81859588623047, 89.95016479492188, 9.979423522949219, 42.79007339477539, 850.0, 2000.0, 1650.0, 850.0, 800.0, 1450.0, 1316.0, 1632.0, 1456.0, 1360.0, 1292.0, 1468.0], "mean": [0.2493959218263626, 8.747992515563965, 11.573713302612305, 61.48283767700195, -5.004125595092773, 19.373083114624023, -0.5446622967720032, 6.100217819213867, 0.14524328708648682, -11.47421932220459, 3.812636137008667, -0.14524328708648682, 511.7472839355469, 356.8017578125, 340.1249084472656, 508.37762451171875, 488.3892517089844, 408.5664367675781], "std": [22.631319046020508, 24.6921443939209, 31.328271865844727, 9.735177040100098, 8.13797664642334, 9.867284774780273, 251.99551391601562, 384.31341552734375, 379.556396484375, 162.72903442382812, 163.43807983398438, 261.3160705566406, 523.8724975585938, 423.416748046875, 433.4251403808594, 510.1427307128906, 517.5016479492188, 445.223388671875], "count": [1377]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5771008806177338]], [[0.5726551031363872]], [[0.5635116855370467]]], "std": [[[0.1824134726478999]], [[0.19043072596724978]], [[0.19073510110249772]]], "count": [226]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6402895455564231]], [[0.6364193562380704]], [[0.6273413008271155]]], "std": [[[0.28940041142194733]], [[0.29245642114090076]], [[0.29448181883393343]]], "count": [226]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9176470588235294]], [[0.9450980392156862]], [[0.9372549019607843]]], "mean": [[[0.46908163337237546]], [[0.4704189956402915]], [[0.47861712378535487]]], "std": [[[0.17487940868944213]], [[0.17565219443439392]], [[0.17464108162892575]]], "count": [226]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47880075391144655]], [[0.47743938161547805]], [[0.4826577366750535]]], "std": [[[0.19453727011183106]], [[0.19578095523558242]], [[0.19436010821211144]]], "count": [226]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9254901960784314]], [[0.9254901960784314]], [[0.9254901960784314]]], "mean": [[[0.4439156418098213]], [[0.4475867142764185]], [[0.46443054651801724]]], "std": [[[0.200206369500214]], [[0.20234737067326253]], [[0.2043304364794247]]], "count": [226]}, "timestamp": {"min": [0.0], "max": [45.86666666666667], "mean": [22.93333333333333], "std": [13.250185183891107], "count": [1377]}, "frame_index": {"min": [0], "max": [1376], "mean": [688.0], "std": [397.5055555167332], "count": [1377]}, "episode_index": {"min": [57], "max": [57], "mean": [57.0], "std": [0.0], "count": [1377]}, "index": {"min": [69946], "max": [71322], "mean": [70634.0], "std": [397.5055555167332], "count": [1377]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1377]}}} +{"episode_index": 58, "stats": {"action": {"min": [-40.47706604003906, -97.90707397460938, -51.70222473144531, 26.059049606323242, -75.35470581054688, 0.6514657735824585, -1150.0, -1450.0, -1800.0, -1000.0, -1650.0, -1400.0, -2.7889909744262695, -4.102134704589844, -5.265546798706055, -2.9097137451171875, -2.8901729583740234, -3.8273611068725586], "max": [40.11009216308594, 45.583927154541016, 100.0, 82.45613861083984, -2.2595901489257812, 33.713356018066406, 1300.0, 1800.0, 1700.0, 1550.0, 1850.0, 1400.0, 3.15596342086792, 4.939308166503906, 5.2655487060546875, 4.4501495361328125, 3.258014678955078, 3.9902286529541016], "mean": [1.4198174476623535, -3.579338550567627, 26.030630111694336, 61.77935028076172, -42.539405822753906, 19.24246597290039, -1.2323943376541138, -0.39612674713134766, 6.1619720458984375, 0.17605634033679962, -1.3204225301742554, -0.13204225897789001, -0.0028427387587726116, -0.006190239451825619, 0.017341922968626022, 0.0008286825614050031, -0.002035339130088687, -0.0007168430020101368], "std": [25.696487426757812, 23.789011001586914, 35.09592056274414, 11.485692024230957, 16.73932647705078, 9.829134941101074, 318.61669921875, 431.28326416015625, 510.9415283203125, 271.253173828125, 365.7322998046875, 276.7191162109375, 0.7861031889915466, 1.2036317586898804, 1.555473804473877, 0.7805899381637573, 0.640116810798645, 0.7520740628242493], "count": [1136]}, "observation.state": {"min": [-40.50433349609375, -96.45471954345703, -48.662132263183594, 26.91029930114746, -75.1028823852539, 1.3413816690444946, -1050.0, -1550.0, -1500.0, -950.0, -1500.0, -1400.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [39.716312408447266, 46.743736267089844, 99.90929412841797, 81.89368438720703, -2.4176955223083496, 32.9309196472168, 1200.0, 1800.0, 1600.0, 1250.0, 1700.0, 1350.0, 1396.0, 1580.0, 1432.0, 1420.0, 1560.0, 1440.0], "mean": [1.288516879081726, -2.2183141708374023, 27.22824478149414, 61.86378860473633, -42.60218048095703, 19.918859481811523, -0.5281690359115601, 2.9049296379089355, 1.0563380718231201, -4.533450603485107, -1.5404930114746094, -0.044014085084199905, 578.7042236328125, 401.32745361328125, 499.0457763671875, 422.9401550292969, 546.2816772460938, 300.03521728515625], "std": [25.684377670288086, 24.317501068115234, 34.35173797607422, 11.32137393951416, 16.694726943969727, 8.832721710205078, 298.2630310058594, 461.6466369628906, 500.52215576171875, 247.94732666015625, 355.20477294921875, 284.34417724609375, 523.7874145507812, 452.7245788574219, 487.0694274902344, 502.5890808105469, 528.1203002929688, 429.5317077636719], "count": [1136]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5664995338947545]], [[0.5646849788419641]], [[0.5576513428020781]]], "std": [[[0.1788235670080013]], [[0.18763022752416106]], [[0.1883247743041499]]], "count": [195]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.642696101474778]], [[0.6376766654097537]], [[0.6276737441344059]]], "std": [[[0.28475547930895373]], [[0.28835099946040094]], [[0.29133637869308254]]], "count": [195]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9254901960784314]], [[0.8274509803921568]], [[0.792156862745098]]], "mean": [[[0.47453987975532097]], [[0.4757124591503268]], [[0.4826474589408413]]], "std": [[[0.16655864525741962]], [[0.16802623682086368]], [[0.1677212726011011]]], "count": [195]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4747321026059997]], [[0.47429727564102564]], [[0.47949912016088486]]], "std": [[[0.18995175665275735]], [[0.190827400422469]], [[0.18980986034875216]]], "count": [195]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8784313725490196]], [[0.8588235294117647]], [[0.8823529411764706]]], "mean": [[[0.44409429361488184]], [[0.4477682723730518]], [[0.4644350479721803]]], "std": [[[0.20126697395219656]], [[0.20373622773379169]], [[0.20548525926107575]]], "count": [195]}, "timestamp": {"min": [0.0], "max": [37.833333333333336], "mean": [18.916666666666668], "std": [10.931160861398839], "count": [1136]}, "frame_index": {"min": [0], "max": [1135], "mean": [567.5], "std": [327.9348258419651], "count": [1136]}, "episode_index": {"min": [58], "max": [58], "mean": [58.0], "std": [0.0], "count": [1136]}, "index": {"min": [71323], "max": [72458], "mean": [71890.5], "std": [327.9348258419651], "count": [1136]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1136]}}} +{"episode_index": 59, "stats": {"action": {"min": [-53.24770736694336, -99.41397857666016, -66.22787475585938, 28.369705200195312, -85.0761947631836, 0.40716612339019775, -1100.0, -1050.0, -1550.0, -1300.0, -1500.0, -1500.0, -2.642202377319336, -2.9300975799560547, -4.720836639404297, -3.679931640625, -2.627429962158203, -4.153095245361328], "max": [49.43119430541992, 54.12306594848633, 100.0, 99.40093994140625, 4.571728706359863, 26.058631896972656, 1250.0, 1400.0, 1700.0, 1350.0, 1050.0, 1450.0, 3.082569122314453, 3.9347007274627686, 5.2655487060546875, 3.851093292236328, 1.9442977905273438, 3.827362060546875], "mean": [1.6559020280838013, -6.189899921417236, 25.037656784057617, 68.77643585205078, -40.12735366821289, 18.623573303222656, -1.6071428060531616, 5.0, -0.5803571343421936, -8.660714149475098, 0.4017857015132904, 0.4464285671710968, -0.00425950950011611, 0.011212093755602837, 0.0007295369869098067, -0.021547770127654076, -0.001689055934548378, -0.00029083320987410843], "std": [30.61276626586914, 29.066293716430664, 43.0904541015625, 13.590302467346191, 20.720844268798828, 7.607569694519043, 333.4635925292969, 440.56378173828125, 564.3043212890625, 267.2301940917969, 324.679931640625, 237.9217987060547, 0.8231418132781982, 1.2300468683242798, 1.7248361110687256, 0.7744795083999634, 0.5754619836807251, 0.652936577796936], "count": [1120]}, "observation.state": {"min": [-53.27029037475586, -96.53179168701172, -64.08163452148438, 29.23587989807129, -85.08230590820312, 1.3413816690444946, -1050.0, -1100.0, -1500.0, -1250.0, -1350.0, -1450.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [49.251380920410156, 54.52793884277344, 99.5464859008789, 98.67109680175781, 4.218107223510742, 25.8886661529541, 1150.0, 1450.0, 1600.0, 1150.0, 1100.0, 1400.0, 1380.0, 1380.0, 1432.0, 1364.0, 1372.0, 1428.0], "mean": [1.5506399869918823, -5.1483635902404785, 26.202190399169922, 69.01117706298828, -40.18082046508789, 19.055036544799805, -0.9821428656578064, 8.080357551574707, 0.1339285671710968, -11.830357551574707, 1.0714285373687744, 0.8035714030265808, 541.2463989257812, 520.5428466796875, 562.3214111328125, 339.7642822265625, 556.8107299804688, 298.60357666015625], "std": [30.662155151367188, 29.693212509155273, 42.33407974243164, 13.212648391723633, 20.74370002746582, 6.925682067871094, 310.9871520996094, 473.7806091308594, 552.0234375, 253.38902282714844, 324.8670654296875, 244.7644805908203, 525.8035888671875, 487.2143859863281, 494.1891784667969, 473.3149719238281, 526.1732788085938, 439.22119140625], "count": [1120]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5664984411510718]], [[0.5653009086406584]], [[0.5582573518828948]]], "std": [[[0.18023908885581563]], [[0.18800183753169425]], [[0.18823758935859797]]], "count": [193]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6405141206525787]], [[0.6354619579481188]], [[0.6253190920366419]]], "std": [[[0.2841359124613461]], [[0.28762219892998653]], [[0.29044384661186645]]], "count": [193]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9372549019607843]], [[0.8862745098039215]], [[0.8352941176470589]]], "mean": [[[0.5003957846523757]], [[0.5021262212570693]], [[0.5091896176216602]]], "std": [[[0.17435894528958149]], [[0.17458550174591952]], [[0.1725071770918719]]], "count": [193]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4742575233245284]], [[0.47380734616817366]], [[0.47838586431982116]]], "std": [[[0.18826417601611026]], [[0.18888183918810234]], [[0.18800381965190174]]], "count": [193]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9333333333333333]], [[0.9294117647058824]], [[0.9411764705882353]]], "mean": [[[0.4460980730807004]], [[0.45015849779030787]], [[0.46637677685495615]]], "std": [[[0.2003913116960787]], [[0.20305012592779423]], [[0.20513133511310838]]], "count": [193]}, "timestamp": {"min": [0.0], "max": [37.3], "mean": [18.65], "std": [10.777200729111227], "count": [1120]}, "frame_index": {"min": [0], "max": [1119], "mean": [559.5], "std": [323.3160218733368], "count": [1120]}, "episode_index": {"min": [59], "max": [59], "mean": [59.0], "std": [0.0], "count": [1120]}, "index": {"min": [72459], "max": [73578], "mean": [73018.5], "std": [323.3160218733368], "count": [1120]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1120]}}} +{"episode_index": 60, "stats": {"action": {"min": [-39.2293586730957, -99.49769592285156, -72.58283996582031, 35.98630905151367, -30.951129913330078, 0.16286644339561462, -1150.0, -1200.0, -1450.0, -850.0, -1050.0, -1350.0, -2.7889909744262695, -3.432403564453125, -4.630046844482422, -2.3962364196777344, -1.8392009735107422, -3.745929718017578], "max": [38.422019958496094, 62.411048889160156, 100.0, 78.26273345947266, 3.625854015350342, 38.76221466064453, 1300.0, 1900.0, 1350.0, 1350.0, 800.0, 1850.0, 3.3761467933654785, 5.609046936035156, 4.085338592529297, 3.9366683959960938, 1.4713611602783203, 5.048860549926758], "mean": [-10.49584674835205, 14.513185501098633, -3.4994492530822754, 60.17108917236328, -12.536515235900879, 19.57962989807129, 0.7990867495536804, 1.1035007238388062, 0.0, -0.38051751255989075, -1.2937594652175903, -0.9512937664985657, 0.003183756023645401, 0.0020389643032103777, 0.0002764784439932555, -0.0008466769941151142, -0.0019195816712453961, -0.00024789333110675216], "std": [21.83332633972168, 31.462610244750977, 39.38688278198242, 12.50843620300293, 8.420844078063965, 10.952275276184082, 315.5730895996094, 361.8985290527344, 336.4061279296875, 183.4468231201172, 177.1426544189453, 251.07928466796875, 0.773853600025177, 1.011198878288269, 1.026275396347046, 0.5274800658226013, 0.309669554233551, 0.6834567785263062], "count": [1314]}, "observation.state": {"min": [-39.0070915222168, -96.53179168701172, -71.60997772216797, 36.461795806884766, -30.658435821533203, 1.2743124961853027, -1050.0, -1350.0, -1400.0, -750.0, -950.0, -1250.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [37.90386199951172, 62.312137603759766, 99.90929412841797, 78.07308959960938, 2.6234567165374756, 38.43058395385742, 1150.0, 1950.0, 1300.0, 1150.0, 800.0, 1850.0, 1404.0, 1620.0, 1348.0, 1364.0, 1304.0, 1588.0], "mean": [-10.613553047180176, 16.02406120300293, -2.475177764892578, 60.26277542114258, -12.570652961730957, 20.36952781677246, 1.6362252235412598, 1.560121774673462, 0.07610350102186203, -2.435312032699585, -1.4079147577285767, -0.11415524780750275, 533.6134033203125, 363.19635009765625, 356.41400146484375, 373.2511291503906, 479.04412841796875, 411.6955871582031], "std": [21.77651023864746, 31.26167106628418, 39.636619567871094, 12.4656343460083, 8.371199607849121, 9.698066711425781, 290.4015808105469, 382.1470031738281, 327.7674560546875, 171.3769073486328, 163.4621124267578, 253.54029846191406, 524.525634765625, 425.80352783203125, 450.0213928222656, 486.6327209472656, 515.2389526367188, 467.9399108886719], "count": [1314]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.569736271324279]], [[0.567739172025844]], [[0.5558864182331954]]], "std": [[[0.1821019451816469]], [[0.19000537906936021]], [[0.19031593277775344]]], "count": [218]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6417962229042994]], [[0.6367751000629609]], [[0.6263142942000959]]], "std": [[[0.28271399726724383]], [[0.28634056500473504]], [[0.2894592196784587]]], "count": [218]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9294117647058824]], [[0.9372549019607843]], [[0.9333333333333333]]], "mean": [[[0.49307091447052825]], [[0.4936422065194579]], [[0.499578201827367]]], "std": [[[0.17826696908110595]], [[0.18105978316532192]], [[0.18181643120829116]]], "count": [218]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4739464353975535]], [[0.4715364705132818]], [[0.47573526694699286]]], "std": [[[0.19650085943349033]], [[0.19815728774693853]], [[0.1963759431083843]]], "count": [218]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9411764705882353]], [[0.9333333333333333]], [[0.9372549019607843]]], "mean": [[[0.44399957463872397]], [[0.44647292865923127]], [[0.4625356516459795]]], "std": [[[0.19968722453497298]], [[0.20336873643263953]], [[0.20566098025208762]]], "count": [218]}, "timestamp": {"min": [0.0], "max": [43.766666666666666], "mean": [21.883333333333336], "std": [12.643967233720886], "count": [1314]}, "frame_index": {"min": [0], "max": [1313], "mean": [656.5], "std": [379.31901701162656], "count": [1314]}, "episode_index": {"min": [60], "max": [60], "mean": [60.0], "std": [0.0], "count": [1314]}, "index": {"min": [73579], "max": [74892], "mean": [74235.5], "std": [379.31901701162656], "count": [1314]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1314]}}} +{"episode_index": 61, "stats": {"action": {"min": [-31.52293586730957, -90.87483978271484, -45.07489776611328, 49.5934944152832, -23.279033660888672, 0.24429967999458313, -1350.0, -1250.0, -1700.0, -1100.0, -1600.0, -1350.0, -3.3761472702026367, -3.516116142272949, -5.2655487060546875, -3.166454315185547, -2.6799793243408203, -3.827361583709717], "max": [36.733943939208984, 50.69066619873047, 100.0, 89.13136291503906, 6.358381271362305, 36.07491683959961, 1350.0, 1600.0, 1300.0, 1250.0, 1000.0, 1250.0, 3.5229358673095703, 4.437004089355469, 3.994548797607422, 3.679931640625, 1.8392009735107422, 3.501628875732422], "mean": [-4.613819599151611, 11.936540603637695, 1.0436538457870483, 64.41594696044922, -9.214510917663574, 17.539949417114258, -1.129568099975586, 1.760797381401062, 4.219269275665283, -2.9235880374908447, -0.6976743936538696, 0.23255814611911774, -0.0022920500487089157, 0.0003338202368468046, 0.012185121886432171, -0.008358960039913654, -0.0006983206258155406, -0.0025430975947529078], "std": [21.35120391845703, 22.24642562866211, 28.861488342285156, 7.404574394226074, 6.557612895965576, 10.171380043029785, 307.224853515625, 360.744140625, 392.74517822265625, 197.7984619140625, 183.6893310546875, 265.9933166503906, 0.7603484392166138, 1.00188410282135, 1.1955116987228394, 0.5719619989395142, 0.3184635639190674, 0.7189315557479858], "count": [1505]}, "observation.state": {"min": [-31.52088165283203, -95.83815002441406, -45.306121826171875, 50.415283203125, -22.99382781982422, 1.2743124961853027, -1300.0, -1350.0, -1550.0, -900.0, -1050.0, -1200.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [36.48542022705078, 49.98073196411133, 96.37187957763672, 88.3720932006836, 5.96707820892334, 35.74782180786133, 1250.0, 1700.0, 1250.0, 1100.0, 950.0, 1350.0, 1412.0, 1520.0, 1340.0, 1380.0, 1320.0, 1428.0], "mean": [-4.678351402282715, 13.636125564575195, 2.391514539718628, 64.53131103515625, -9.258472442626953, 18.67074203491211, -1.295681118965149, 2.6910297870635986, 0.4651162922382355, -3.156146287918091, -0.09966777265071869, 0.7641196250915527, 507.96014404296875, 358.4425354003906, 352.7574768066406, 338.6285705566406, 501.2969970703125, 476.7255859375], "std": [21.334306716918945, 22.5120849609375, 28.54224967956543, 7.281283855438232, 6.487502574920654, 8.42054271697998, 285.6470642089844, 380.4091491699219, 379.3282165527344, 187.8668670654297, 163.77496337890625, 247.50733947753906, 523.0945434570312, 415.2519226074219, 437.16851806640625, 474.15484619140625, 517.7405395507812, 468.8973083496094], "count": [1505]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.57932665331001]], [[0.5759600385105633]], [[0.5642983788951266]]], "std": [[[0.18027145302164016]], [[0.1900538527289012]], [[0.19058858049925184]]], "count": [241]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6395477271648632]], [[0.635827161812166]], [[0.6269947954804329]]], "std": [[[0.29006306681364535]], [[0.2924943891746421]], [[0.29390710249721774]]], "count": [241]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9294117647058824]], [[0.9372549019607843]], [[0.9372549019607843]]], "mean": [[[0.4913235616169012]], [[0.49520681375939035]], [[0.5023298585686004]]], "std": [[[0.1786377621608597]], [[0.1802786363358862]], [[0.17882566374099226]]], "count": [241]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.479827038924145]], [[0.4770752684891384]], [[0.4798908940823909]]], "std": [[[0.19400992886489543]], [[0.1957517992721027]], [[0.19568492241123397]]], "count": [241]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9686274509803922]], [[0.9568627450980393]], [[0.9607843137254902]]], "mean": [[[0.44456746298104305]], [[0.4462433030266048]], [[0.46120857232934664]]], "std": [[[0.20020154838134122]], [[0.20372066857101273]], [[0.20580730649608514]]], "count": [241]}, "timestamp": {"min": [0.0], "max": [50.13333333333333], "mean": [25.066666666666663], "std": [14.481866055327416], "count": [1505]}, "frame_index": {"min": [0], "max": [1504], "mean": [752.0], "std": [434.4559816598225], "count": [1505]}, "episode_index": {"min": [61], "max": [61], "mean": [61.0], "std": [0.0], "count": [1505]}, "index": {"min": [74893], "max": [76397], "mean": [75645.0], "std": [434.4559816598225], "count": [1505]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1505]}}} +{"episode_index": 62, "stats": {"action": {"min": [-33.724769592285156, -99.24654388427734, -52.065364837646484, 42.2336311340332, -62.53284454345703, 0.0, -750.0, -1100.0, -1500.0, -950.0, -2050.0, -1650.0, -1.908257007598877, -3.1812477111816406, -4.539264678955078, -2.8241348266601562, -3.625852584838867, -4.560258865356445], "max": [36.220184326171875, 49.93721389770508, 98.81979370117188, 98.03166198730469, 7.041513442993164, 55.37459182739258, 850.0, 1550.0, 1850.0, 1050.0, 1450.0, 1950.0, 2.1284408569335938, 4.269569396972656, 5.901044845581055, 3.08087158203125, 2.5748825073242188, 5.374593734741211], "mean": [-0.9616825580596924, 19.406435012817383, -13.46470832824707, 70.36140441894531, -9.329610824584961, 22.22922134399414, -0.7666099071502686, 14.650766372680664, -4.741623878479004, -0.5678591728210449, -16.46791648864746, 3.747870445251465, -0.0027090616058558226, 0.039980754256248474, -0.014950381591916084, -0.0021382796112447977, -0.03055637702345848, 0.012023077346384525], "std": [21.793922424316406, 26.11274528503418, 35.249324798583984, 12.714686393737793, 16.055206298828125, 14.051292419433594, 204.11859130859375, 309.51824951171875, 335.3643798828125, 220.9616241455078, 286.4018859863281, 319.8903503417969, 0.5013432502746582, 0.8637147545814514, 1.0183489322662354, 0.6320286989212036, 0.5038594007492065, 0.8741391897201538], "count": [1761]}, "observation.state": {"min": [-33.41213607788086, -96.22350311279297, -50.29478454589844, 42.85714340209961, -62.345680236816406, 1.2743124961853027, -700.0, -1150.0, -1450.0, -950.0, -1650.0, -1700.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [35.77620315551758, 49.595375061035156, 99.36508178710938, 97.34219360351562, 6.6872429847717285, 54.32595443725586, 800.0, 1600.0, 1750.0, 1000.0, 1350.0, 2000.0, 1304.0, 1520.0, 1492.0, 1312.0, 1460.0, 1624.0], "mean": [-1.0801995992660522, 21.083593368530273, -12.261726379394531, 70.39855194091797, -9.342779159545898, 23.666418075561523, -1.2492902278900146, 15.105053901672363, -4.9687676429748535, -2.7257239818573, -17.433277130126953, 4.741623878479004, 570.72119140625, 302.1374206542969, 292.0635986328125, 437.3651428222656, 537.6309204101562, 381.35150146484375], "std": [21.7165470123291, 26.536073684692383, 35.19709777832031, 12.613517761230469, 15.801487922668457, 11.885319709777832, 190.4026641845703, 321.856201171875, 319.6074523925781, 212.24876403808594, 279.0831604003906, 317.24578857421875, 519.6926879882812, 382.18701171875, 411.2674865722656, 505.8131103515625, 523.3502807617188, 439.1672058105469], "count": [1761]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5755569385657092]], [[0.5701940683561247]], [[0.5559256226937269]]], "std": [[[0.17766180788509245]], [[0.1861946454734484]], [[0.18666433035068655]]], "count": [271]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.644275260473193]], [[0.6390086553071413]], [[0.6284976341859007]]], "std": [[[0.2842987665119123]], [[0.2879193110143775]], [[0.2909985524239569]]], "count": [271]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8235294117647058]], [[0.8392156862745098]], [[0.8549019607843137]]], "mean": [[[0.49179595362130096]], [[0.49339517235245883]], [[0.5006351325277959]]], "std": [[[0.18243880775561094]], [[0.18303089869137146]], [[0.18066206888211098]]], "count": [271]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4748898618949425]], [[0.47380329977932134]], [[0.4787931318283771]]], "std": [[[0.1934270994616762]], [[0.19498802858553863]], [[0.1939224742027431]]], "count": [271]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9529411764705882]], [[0.9490196078431372]], [[0.9607843137254902]]], "mean": [[[0.4439389606396064]], [[0.4457450498034392]], [[0.4615082068651569]]], "std": [[[0.19943007599474336]], [[0.20313720316255993]], [[0.20525777375703272]]], "count": [271]}, "timestamp": {"min": [0.0], "max": [58.666666666666664], "mean": [29.333333333333332], "std": [16.945227668601586], "count": [1761]}, "frame_index": {"min": [0], "max": [1760], "mean": [880.0], "std": [508.3568300580476], "count": [1761]}, "episode_index": {"min": [62], "max": [62], "mean": [62.0], "std": [0.0], "count": [1761]}, "index": {"min": [76398], "max": [78158], "mean": [77278.0], "std": [508.3568300580476], "count": [1761]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1761]}}} +{"episode_index": 63, "stats": {"action": {"min": [-32.03669738769531, -95.81414794921875, -56.24148941040039, 46.42704391479492, -57.5932731628418, 0.16286644339561462, -1000.0, -1250.0, -1350.0, -800.0, -1550.0, -1450.0, -2.568807601928711, -3.4323997497558594, -4.176120758056641, -2.139495849609375, -2.679981231689453, -3.827361583709717], "max": [33.50458526611328, 51.19296646118164, 100.0, 93.6670913696289, 5.622701168060303, 27.850162506103516, 850.0, 1400.0, 1450.0, 950.0, 1550.0, 1550.0, 2.0550456047058105, 3.934703826904297, 4.448482513427734, 3.5943527221679688, 2.785076141357422, 4.234527587890625], "mean": [3.816225051879883, 22.563968658447266, -17.506622314453125, 67.38595581054688, -31.28426170349121, 14.234553337097168, -2.283653736114502, -1.3621795177459717, 2.283653736114502, -3.485576868057251, 3.485576868057251, 0.28044870495796204, -0.0072923945263028145, -0.008586259558796883, 0.011930126696825027, -0.008983135223388672, 0.006315939128398895, -0.0002610047231428325], "std": [19.857881546020508, 20.7220516204834, 25.99359893798828, 11.02329158782959, 14.479930877685547, 8.046319007873535, 260.1645202636719, 346.788330078125, 326.7419738769531, 179.32443237304688, 291.2767028808594, 256.903564453125, 0.6409968137741089, 0.9640172719955444, 0.9924747943878174, 0.5222688913345337, 0.5124310255050659, 0.7029078006744385], "count": [1248]}, "observation.state": {"min": [-31.993696212768555, -95.29865264892578, -53.10657501220703, 46.84385299682617, -57.51028823852539, 1.2072434425354004, -950.0, -1350.0, -1300.0, -850.0, -1450.0, -1150.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [33.096927642822266, 51.44508743286133, 99.36508178710938, 93.27242279052734, 5.092592716217041, 27.766599655151367, 750.0, 1600.0, 1400.0, 800.0, 1550.0, 1400.0, 1284.0, 1456.0, 1364.0, 1260.0, 1504.0, 1460.0], "mean": [3.6588728427886963, 24.708988189697266, -15.959379196166992, 67.59001159667969, -31.356109619140625, 15.348198890686035, -2.2035255432128906, 2.644230842590332, 0.08012820780277252, -7.011218070983887, 3.245192289352417, -0.9615384340286255, 605.375, 294.01922607421875, 298.68267822265625, 337.3782043457031, 521.2532348632812, 526.4615478515625], "std": [19.795366287231445, 20.831024169921875, 25.62405776977539, 10.870838165283203, 14.381291389465332, 6.129687786102295, 241.93894958496094, 361.46722412109375, 315.16796875, 166.40097045898438, 284.3038635253906, 220.11798095703125, 519.60546875, 357.2253112792969, 397.2995910644531, 468.9117736816406, 524.5841064453125, 473.2583312988281], "count": [1248]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5690293501970166]], [[0.5656898346858679]], [[0.5578245281765019]]], "std": [[[0.17773387256486278]], [[0.18757854574588997]], [[0.18697402492488877]]], "count": [209]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.638735143618851]], [[0.6337576422115895]], [[0.6209411197892235]]], "std": [[[0.2919928718686415]], [[0.29294869800565293]], [[0.29105540871930696]]], "count": [209]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9450980392156862]], [[0.9294117647058824]], [[0.9411764705882353]]], "mean": [[[0.48540136465271916]], [[0.484075968664978]], [[0.49231295149638804]]], "std": [[[0.17947245865161762]], [[0.17888147821739533]], [[0.1758045885708673]]], "count": [209]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47588826148481717]], [[0.4735806077415017]], [[0.47690874495731306]]], "std": [[[0.1925385264294964]], [[0.19268711114807702]], [[0.19122570240219]]], "count": [209]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8392156862745098]], [[0.8588235294117647]], [[0.8549019607843137]]], "mean": [[[0.4389226270053476]], [[0.4416380220549145]], [[0.4587409720267693]]], "std": [[[0.19879284222804097]], [[0.20269605261032037]], [[0.20460485328938968]]], "count": [209]}, "timestamp": {"min": [0.0], "max": [41.56666666666667], "mean": [20.78333333333333], "std": [12.00888174397353], "count": [1248]}, "frame_index": {"min": [0], "max": [1247], "mean": [623.5], "std": [360.26645231920594], "count": [1248]}, "episode_index": {"min": [63], "max": [63], "mean": [63.0], "std": [0.0], "count": [1248]}, "index": {"min": [78159], "max": [79406], "mean": [78782.5], "std": [360.26645231920594], "count": [1248]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1248]}}} +{"episode_index": 64, "stats": {"action": {"min": [-33.28440475463867, -98.91168212890625, -59.96368408203125, 18.61360740661621, -48.18707275390625, 0.08143322169780731, -1250.0, -1150.0, -1350.0, -1500.0, -1350.0, -1350.0, -3.082569122314453, -3.348682403564453, -4.085338592529297, -4.27899169921875, -2.417236328125, -3.6644954681396484], "max": [37.10091781616211, 53.11845779418945, 100.0, 87.16303253173828, -0.2101944237947464, 28.908794403076172, 1100.0, 1800.0, 1600.0, 1400.0, 1250.0, 1550.0, 2.6422019004821777, 5.106739044189453, 4.90240478515625, 3.9366703033447266, 2.2070417404174805, 4.315960884094238], "mean": [0.49110084772109985, 25.742460250854492, -24.361034393310547, 69.20036315917969, -26.326580047607422, 15.516227722167969, 0.5311077237129211, 3.9833080768585205, 1.2898330688476562, -9.028831481933594, -0.5690439939498901, -0.5311077237129211, 0.0002227404766017571, 0.013021367602050304, 0.007439186330884695, -0.021752074360847473, -0.000598047103267163, -0.00012357160449028015], "std": [22.19671058654785, 22.068395614624023, 28.071805953979492, 11.63330078125, 13.180679321289062, 9.454614639282227, 280.99847412109375, 368.7651062011719, 339.45379638671875, 234.5570068359375, 272.2524108886719, 263.078857421875, 0.6939886808395386, 1.0289205312728882, 1.0319644212722778, 0.6718830466270447, 0.47833532094955444, 0.7165495753288269], "count": [1318]}, "observation.state": {"min": [-33.096927642822266, -96.53179168701172, -57.09750747680664, 19.518272399902344, -47.89094543457031, 1.3413816690444946, -1150.0, -1300.0, -1300.0, -1400.0, -1300.0, -1350.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [36.64302444458008, 53.37186813354492, 99.81859588623047, 87.2923583984375, 1.6460905075073242, 28.839704513549805, 1000.0, 1850.0, 1550.0, 950.0, 1150.0, 1500.0, 1336.0, 1572.0, 1412.0, 1364.0, 1404.0, 1416.0], "mean": [0.31240156292915344, 27.633193969726562, -23.005205154418945, 69.45642852783203, -26.373329162597656, 16.70815086364746, -0.8725341558456421, 6.6388468742370605, 0.15174506604671478, -12.670713424682617, -1.32776939868927, -0.41729894280433655, 584.7860107421875, 314.1456604003906, 246.53717041015625, 307.39605712890625, 508.2427978515625, 646.1608276367188], "std": [22.193700790405273, 22.4744815826416, 27.81952476501465, 11.35495662689209, 13.15177059173584, 7.514521598815918, 262.5185546875, 384.2818908691406, 328.3747253417969, 214.2108917236328, 266.90081787109375, 239.69992065429688, 524.72265625, 384.92327880859375, 372.0339660644531, 456.2631530761719, 523.0647583007812, 454.3584289550781], "count": [1318]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5676660595430832]], [[0.5660208455132818]], [[0.5576714618186724]]], "std": [[[0.1758852600167115]], [[0.18363235747521445]], [[0.18336070495528992]]], "count": [218]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6424117768858308]], [[0.6395469218459555]], [[0.6287210941716136]]], "std": [[[0.2845840457889397]], [[0.28848730385591487]], [[0.29094571017143334]]], "count": [218]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9490196078431372]], [[0.9215686274509803]], [[0.9215686274509803]]], "mean": [[[0.48224940411944595]], [[0.48072170410595433]], [[0.48828062132727706]]], "std": [[[0.17959275948063183]], [[0.17925228636883506]], [[0.17707048270247605]]], "count": [218]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4774491852551418]], [[0.47531186008424775]], [[0.48025704563170835]]], "std": [[[0.1935313423886581]], [[0.19392307836415099]], [[0.19215844092674744]]], "count": [218]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9490196078431372]], [[0.9529411764705882]], [[0.9725490196078431]]], "mean": [[[0.45460783564190205]], [[0.4566727744423457]], [[0.47206295440576845]]], "std": [[[0.20458486272532256]], [[0.20812588521921288]], [[0.2102509744920519]]], "count": [218]}, "timestamp": {"min": [0.0], "max": [43.9], "mean": [21.950000000000003], "std": [12.682457262779254], "count": [1318]}, "frame_index": {"min": [0], "max": [1317], "mean": [658.5], "std": [380.4737178833776], "count": [1318]}, "episode_index": {"min": [64], "max": [64], "mean": [64.0], "std": [0.0], "count": [1318]}, "index": {"min": [79407], "max": [80724], "mean": [80065.5], "std": [380.4737178833776], "count": [1318]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1318]}}} +{"episode_index": 65, "stats": {"action": {"min": [-33.94495391845703, -91.12599182128906, -56.69541549682617, 12.708600997924805, -44.92905807495117, 0.08143322169780731, -1050.0, -1400.0, -1550.0, -1650.0, -1600.0, -1800.0, -2.568807363510132, -3.934701919555664, -4.720836639404297, -4.878049850463867, -2.9952707290649414, -4.885993957519531], "max": [39.74311828613281, 56.13227462768555, 100.0, 92.64013671875, -0.9984235167503357, 40.63517761230469, 1150.0, 1450.0, 1450.0, 1900.0, 1050.0, 1950.0, 2.862384796142578, 4.0184173583984375, 4.6300506591796875, 5.305946350097656, 1.8392009735107422, 5.293159484863281], "mean": [-4.252124786376953, 16.174829483032227, -8.780499458312988, 69.1386947631836, -29.375009536743164, 21.75768280029297, 3.3585619926452637, 4.446547031402588, 3.8789024353027344, -11.069063186645508, -1.6556291580200195, -0.2838221490383148, 0.0071519846096634865, 0.006256951484829187, 0.018208621069788933, -0.028661545366048813, -0.002237168839201331, -0.00023112657072488219], "std": [22.935314178466797, 25.72212791442871, 37.78763198852539, 14.607597351074219, 10.780445098876953, 12.140379905700684, 322.43438720703125, 409.3900451660156, 451.0888977050781, 243.6330108642578, 262.681884765625, 354.79534912109375, 0.7936014533042908, 1.1432503461837769, 1.3719348907470703, 0.7139069437980652, 0.45989763736724854, 0.9653618931770325], "count": [1057]}, "observation.state": {"min": [-33.569740295410156, -95.91522216796875, -56.009071350097656, 13.787375450134277, -44.75308609008789, 1.3413816690444946, -1000.0, -1500.0, -1500.0, -1550.0, -1300.0, -1850.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [39.40110397338867, 55.761077880859375, 99.72789001464844, 92.44186401367188, -0.8744856119155884, 40.375587463378906, 1100.0, 1600.0, 1400.0, 1000.0, 1000.0, 1800.0, 1372.0, 1504.0, 1380.0, 1400.0, 1336.0, 1580.0], "mean": [-4.361104965209961, 18.07306480407715, -7.174805164337158, 69.3373031616211, -29.444469451904297, 22.67414093017578, 2.459791898727417, 8.798486709594727, 2.459791898727417, -18.68495750427246, -0.8987700939178467, -0.42573320865631104, 525.5856323242188, 373.89971923828125, 351.5421142578125, 439.0387878417969, 546.3235473632812, 519.0198974609375], "std": [22.84402847290039, 26.240625381469727, 37.48280715942383, 14.230443954467773, 10.771886825561523, 10.553979873657227, 299.6438293457031, 432.6210021972656, 439.8160400390625, 213.83941650390625, 251.8733367919922, 351.5705871582031, 525.5797119140625, 417.2403259277344, 429.1619567871094, 502.0422668457031, 523.70068359375, 483.60357666015625], "count": [1057]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5704923158452571]], [[0.5689523538244127]], [[0.5591656730259672]]], "std": [[[0.17751941091314175]], [[0.1842621338062198]], [[0.18496211067390347]]], "count": [185]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.642394989842784]], [[0.6395663155802862]], [[0.6289872471736443]]], "std": [[[0.28521615225032965]], [[0.28920096027532105]], [[0.291758361559421]]], "count": [185]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9372549019607843]], [[0.8862745098039215]], [[0.8980392156862745]]], "mean": [[[0.48505058956014835]], [[0.4836086590266737]], [[0.4912085419978802]]], "std": [[[0.1769608527361438]], [[0.17665126723699787]], [[0.17461280338429258]]], "count": [185]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4772641063857976]], [[0.47544634561031623]], [[0.47912765522875816]]], "std": [[[0.19454575066774002]], [[0.19489026167322343]], [[0.1926469481505814]]], "count": [185]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8705882352941177]], [[0.8705882352941177]], [[0.8705882352941177]]], "mean": [[[0.4559932266825649]], [[0.4591563747571101]], [[0.47586229906376964]]], "std": [[[0.2048731283126284]], [[0.20815988700297372]], [[0.2096906288577038]]], "count": [185]}, "timestamp": {"min": [0.0], "max": [35.2], "mean": [17.6], "std": [10.170982690423225], "count": [1057]}, "frame_index": {"min": [0], "max": [1056], "mean": [528.0], "std": [305.12948071269676], "count": [1057]}, "episode_index": {"min": [65], "max": [65], "mean": [65.0], "std": [0.0], "count": [1057]}, "index": {"min": [80725], "max": [81781], "mean": [81253.0], "std": [305.12948071269676], "count": [1057]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1057]}}} +{"episode_index": 66, "stats": {"action": {"min": [-32.91743087768555, -96.9861831665039, -67.49886322021484, 35.04492950439453, -41.82869338989258, 0.6514657735824585, -1350.0, -1550.0, -1750.0, -1800.0, -1350.0, -1250.0, -3.3761472702026367, -4.437004089355469, -5.356330871582031, -4.963630676269531, -2.4697842597961426, -3.420194625854492], "max": [41.28440475463867, 53.45332717895508, 100.0, 84.85237121582031, -2.4697844982147217, 31.921823501586914, 1250.0, 1600.0, 2000.0, 1500.0, 1350.0, 1400.0, 3.082569122314453, 4.604438781738281, 6.082614898681641, 4.535732269287109, 2.3121376037597656, 3.6644954681396484], "mean": [-0.6066644787788391, 1.7446753978729248, 15.81352710723877, 65.43740844726562, -22.30079460144043, 17.256816864013672, -2.5557620525360107, 0.5111523866653442, 0.0, -7.8531599044799805, -0.3252788186073303, -0.6505576372146606, -0.006138949654996395, -0.0017116469098255038, 0.0016030308324843645, -0.014873065054416656, 0.0011720898328348994, -0.0003784064610954374], "std": [23.682451248168945, 24.392881393432617, 36.779972076416016, 12.116147994995117, 10.378582954406738, 9.428389549255371, 302.9683532714844, 435.2946472167969, 520.494384765625, 277.6456604003906, 223.7259521484375, 258.6590576171875, 0.7481862306594849, 1.2183386087417603, 1.5866913795471191, 0.8016992807388306, 0.39056360721588135, 0.706493616104126], "count": [1076]}, "observation.state": {"min": [-32.624114990234375, -96.6088638305664, -64.53514862060547, 36.046512603759766, -41.66666793823242, 1.3413816690444946, -1250.0, -1650.0, -1600.0, -1500.0, -950.0, -1200.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [40.58313751220703, 54.52793884277344, 99.72789001464844, 84.63455200195312, -3.6522634029388428, 31.52246856689453, 1150.0, 1550.0, 1850.0, 900.0, 1000.0, 1350.0, 1380.0, 1508.0, 1516.0, 1296.0, 1360.0, 1388.0], "mean": [-0.6639585494995117, 3.2446584701538086, 17.206295013427734, 65.58450317382812, -22.357345581054688, 18.039630889892578, -2.8810408115386963, 3.7174720764160156, -0.6040892004966736, -9.34014892578125, -0.13940520584583282, 0.13940520584583282, 486.6208190917969, 448.35687255859375, 472.2639465332031, 439.4200744628906, 517.3792114257812, 496.1784362792969], "std": [23.633562088012695, 24.810569763183594, 36.234920501708984, 11.915817260742188, 10.34643268585205, 8.173510551452637, 281.84033203125, 463.7315673828125, 506.295654296875, 252.82586669921875, 209.8690948486328, 254.41722106933594, 522.2845458984375, 458.3998107910156, 477.1371154785156, 504.85687255859375, 520.6937866210938, 482.310302734375], "count": [1076]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5740841699870679]], [[0.5730839111268393]], [[0.56510753512635]]], "std": [[[0.1773573825759607]], [[0.18481039116611586]], [[0.18500254240231456]]], "count": [187]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6372633908287023]], [[0.6354190029621475]], [[0.6256222945283283]]], "std": [[[0.28752171685787314]], [[0.2907860817435425]], [[0.29221470252043785]]], "count": [187]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9333333333333333]], [[0.8352941176470589]], [[0.8352941176470589]]], "mean": [[[0.48478734031491383]], [[0.48769123654363705]], [[0.49598094919786095]]], "std": [[[0.17463837729983925]], [[0.1751365732209808]], [[0.1728961093900925]]], "count": [187]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47296888871413095]], [[0.47235520538429276]], [[0.4780471147460767]]], "std": [[[0.18941310872172945]], [[0.18967119334000693]], [[0.18773408992512855]]], "count": [187]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8745098039215686]], [[0.8784313725490196]], [[0.8901960784313725]]], "mean": [[[0.45780945593478034]], [[0.461840456904687]], [[0.47819933002167]]], "std": [[[0.20407455856357803]], [[0.20776714714776384]], [[0.20935629778983667]]], "count": [187]}, "timestamp": {"min": [0.0], "max": [35.833333333333336], "mean": [17.916666666666664], "std": [10.353810356042304], "count": [1076]}, "frame_index": {"min": [0], "max": [1075], "mean": [537.5], "std": [310.61431068126916], "count": [1076]}, "episode_index": {"min": [66], "max": [66], "mean": [66.0], "std": [0.0], "count": [1076]}, "index": {"min": [81782], "max": [82857], "mean": [82319.5], "std": [310.61431068126916], "count": [1076]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1076]}}} +{"episode_index": 67, "stats": {"action": {"min": [-61.61467742919922, -99.24654388427734, -72.2197036743164, 33.24775314331055, -83.70993041992188, 0.24429967999458313, -1200.0, -1450.0, -1750.0, -1400.0, -2050.0, -1350.0, -2.9357798099517822, -4.0184173583984375, -5.265546798706055, -4.107826232910156, -3.6258544921875, -3.7459278106689453], "max": [41.94495391845703, 52.951026916503906, 100.0, 93.58151245117188, 2.2070415019989014, 41.2052116394043, 1450.0, 2050.0, 1850.0, 1850.0, 1600.0, 2100.0, 3.669724702835083, 5.692760467529297, 5.53790283203125, 5.049205780029297, 2.8376235961914062, 5.781759262084961], "mean": [3.5148634910583496, 15.947179794311523, -8.278525352478027, 70.02789306640625, -19.52732276916504, 17.699939727783203, 0.5917159914970398, 1.360946774482727, 0.0, -3.2544379234313965, -1.952662706375122, -0.5917159914970398, 0.001954273320734501, 0.0007429743418470025, 0.00010736905824160203, -0.004962616600096226, -0.0018345352727919817, -0.00033729535061866045], "std": [30.041597366333008, 25.837688446044922, 38.46607208251953, 11.133543014526367, 23.215791702270508, 11.60380744934082, 298.06512451171875, 351.99029541015625, 409.3349914550781, 249.6590576171875, 328.55401611328125, 290.5299377441406, 0.7340006232261658, 0.9830703139305115, 1.2483841180801392, 0.718627393245697, 0.576605498790741, 0.7894236445426941], "count": [1690]}, "observation.state": {"min": [-61.38691711425781, -96.22350311279297, -69.43310546875, 34.13621139526367, -83.43621063232422, 1.2072434425354004, -1100.0, -1500.0, -1700.0, -1300.0, -1800.0, -1450.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [41.21355438232422, 53.680152893066406, 99.63719177246094, 93.02325439453125, 1.7489712238311768, 41.0462760925293, 1350.0, 2150.0, 1750.0, 950.0, 1600.0, 2100.0, 1448.0, 1636.0, 1460.0, 1368.0, 1544.0, 1652.0], "mean": [3.45719051361084, 17.763017654418945, -7.084068775177002, 70.14790344238281, -19.54775619506836, 18.9811954498291, 0.976331353187561, 2.248520612716675, 0.3550295829772949, -6.272189140319824, 0.05917159840464592, 0.7396449446678162, 465.7917175292969, 353.33489990234375, 330.0970458984375, 415.0816650390625, 524.5845947265625, 443.6757507324219], "std": [30.00666046142578, 26.131006240844727, 38.12427520751953, 10.8738431930542, 23.234338760375977, 9.777067184448242, 276.9128112792969, 371.7679138183594, 398.766357421875, 229.3529510498047, 322.3940734863281, 281.533203125, 518.1417236328125, 406.2222900390625, 436.5352783203125, 499.0793762207031, 522.9329223632812, 459.316162109375], "count": [1690]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5686115747471359]], [[0.566575995924352]], [[0.5600841953701633]]], "std": [[[0.17577140295866453]], [[0.1849402901091621]], [[0.18396322672121562]]], "count": [263]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.642611555331892]], [[0.6390535643281394]], [[0.6276190954360198]]], "std": [[[0.2850599229848846]], [[0.2890784469649956]], [[0.29201704871263123]]], "count": [263]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8980392156862745]], [[0.8666666666666667]], [[0.8823529411764706]]], "mean": [[[0.47732316906483757]], [[0.4755352557531251]], [[0.485140178061085]]], "std": [[[0.17560606193365969]], [[0.17443332933959724]], [[0.17248086528662096]]], "count": [263]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4836657766718855]], [[0.4827632520688884]], [[0.4872332594000845]]], "std": [[[0.19066744413706285]], [[0.19190918228619347]], [[0.18974308130883338]]], "count": [263]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9764705882352941]], [[0.9803921568627451]], [[0.9764705882352941]]], "mean": [[[0.4445706132421283]], [[0.44741140125251616]], [[0.4634796303026914]]], "std": [[[0.20118472949040084]], [[0.20437815838138987]], [[0.20682320575582003]]], "count": [263]}, "timestamp": {"min": [0.0], "max": [56.3], "mean": [28.15], "std": [16.26202973527939], "count": [1690]}, "frame_index": {"min": [0], "max": [1689], "mean": [844.5], "std": [487.86089205838175], "count": [1690]}, "episode_index": {"min": [67], "max": [67], "mean": [67.0], "std": [0.0], "count": [1690]}, "index": {"min": [82858], "max": [84547], "mean": [83702.5], "std": [487.86089205838175], "count": [1690]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1690]}}} +{"episode_index": 68, "stats": {"action": {"min": [-38.128440856933594, -99.49769592285156, -70.04085540771484, 32.3919563293457, -95.6910171508789, 0.24429967999458313, -1100.0, -1600.0, -1600.0, -1950.0, -1300.0, -1400.0, -2.6422019004821777, -4.269569396972656, -4.811622619628906, -5.477108001708984, -2.2595901489257812, -3.6644952297210693], "max": [36.51375961303711, 53.11845779418945, 100.0, 95.37869262695312, 0.7356805205345154, 34.934852600097656, 1400.0, 2250.0, 2050.0, 1750.0, 1500.0, 1500.0, 3.522935390472412, 6.446208953857422, 6.536540985107422, 5.0492095947265625, 2.8376235961914062, 4.315960884094238], "mean": [-4.3089823722839355, 0.5816004872322083, 13.599725723266602, 69.84283447265625, -27.73952865600586, 17.859952926635742, 1.345755696296692, 0.10351967066526413, 5.244996547698975, -2.415458917617798, -1.1387163400650024, -3.0710835456848145, 0.002532589714974165, -0.00034659248194657266, 0.014410349540412426, -0.001122163375839591, -0.001885803765617311, -0.010115928016602993], "std": [23.008577346801758, 30.917236328125, 47.26597213745117, 12.84464168548584, 22.14529037475586, 9.423759460449219, 294.34429931640625, 460.5392150878906, 519.2763061523438, 264.4266052246094, 321.0252685546875, 251.30113220214844, 0.7247232794761658, 1.284773826599121, 1.5838006734848022, 0.7609811425209045, 0.5657395720481873, 0.6754617094993591], "count": [1449]}, "observation.state": {"min": [-37.74625778198242, -96.6088638305664, -67.0748291015625, 33.13953399658203, -95.37036895751953, 1.3413816690444946, -1100.0, -1550.0, -1500.0, -1700.0, -1200.0, -1200.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [36.09141159057617, 53.98843765258789, 99.81859588623047, 95.01660919189453, 0.15432098507881165, 34.741783142089844, 1250.0, 2350.0, 2050.0, 1350.0, 1500.0, 1400.0, 1444.0, 1700.0, 1560.0, 1424.0, 1508.0, 1460.0], "mean": [-4.5620341300964355, 1.7796872854232788, 14.751477241516113, 69.96589660644531, -27.829492568969727, 18.771432876586914, 0.828157365322113, 2.9675638675689697, 2.553485155105591, -4.140786647796631, -0.4140786826610565, -0.5521048903465271, 698.8157348632812, 454.2553405761719, 406.82952880859375, 384.6790771484375, 559.0724487304688, 442.4955139160156], "std": [22.991456985473633, 31.454675674438477, 46.50347900390625, 12.64611530303955, 22.144227981567383, 7.930511474609375, 273.07080078125, 494.8099365234375, 509.8177185058594, 246.1504669189453, 315.2109375, 242.04269409179688, 501.857421875, 476.1153564453125, 473.606689453125, 491.5574645996094, 526.5242919921875, 471.811279296875], "count": [1449]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5733615571406625]], [[0.5730751520515613]], [[0.5644887270613373]]], "std": [[[0.1786407352656742]], [[0.18609342742277268]], [[0.18566968047136007]]], "count": [234]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6410207085148875]], [[0.6372993835889056]], [[0.6258882709066532]]], "std": [[[0.284533030226419]], [[0.2882540837608608]], [[0.29085599561687225]]], "count": [234]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8823529411764706]], [[0.8627450980392157]], [[0.8745098039215686]]], "mean": [[[0.48993283371040725]], [[0.48812744487039833]], [[0.4948192140103905]]], "std": [[[0.17382942650240646]], [[0.1762037365074203]], [[0.17762437715620066]]], "count": [234]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.476638546729233]], [[0.4755974578934138]], [[0.4805530172895369]]], "std": [[[0.18999688875621976]], [[0.19093513222418207]], [[0.1902162316728599]]], "count": [234]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8431372549019608]], [[0.8392156862745098]], [[0.8509803921568627]]], "mean": [[[0.4467622714862298]], [[0.44932363590022906]], [[0.4654820811337355]]], "std": [[[0.20166661668784133]], [[0.20501334886635825]], [[0.20773999378627084]]], "count": [234]}, "timestamp": {"min": [0.0], "max": [48.266666666666666], "mean": [24.133333333333333], "std": [13.943005680534144], "count": [1449]}, "frame_index": {"min": [0], "max": [1448], "mean": [724.0], "std": [418.2901704160243], "count": [1449]}, "episode_index": {"min": [68], "max": [68], "mean": [68.0], "std": [0.0], "count": [1449]}, "index": {"min": [84548], "max": [85996], "mean": [85272.0], "std": [418.2901704160243], "count": [1449]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1449]}}} +{"episode_index": 69, "stats": {"action": {"min": [-35.33945083618164, -98.99539184570312, -57.33091354370117, 45.40008544921875, -69.83709716796875, 0.40716612339019775, -850.0, -1300.0, -2000.0, -1600.0, -1250.0, -1100.0, -2.1284403800964355, -6.613646507263184, -5.991828918457031, -4.621307373046875, -2.1019444465637207, -3.0944626331329346], "max": [37.834861755371094, 51.36040115356445, 100.0, 98.5451431274414, 7.724645137786865, 21.41693878173828, 1400.0, 2150.0, 2200.0, 1300.0, 1350.0, 1550.0, 3.4495413303375244, 6.027626037597656, 7.262825012207031, 4.8780517578125, 2.3646888732910156, 4.071660995483398], "mean": [-4.428833961486816, 9.252303123474121, -0.2227950096130371, 71.20233154296875, -24.9743595123291, 13.926373481750488, 0.5443235039710999, 2.566096305847168, 0.349922239780426, -1.6718506813049316, 2.993779182434082, -0.3110419809818268, 0.0005136399995535612, 0.005272955633699894, 0.006212359294295311, -0.0019298689439892769, 0.005189481656998396, -0.0005699062021449208], "std": [24.027769088745117, 30.956199645996094, 44.12862014770508, 12.018531799316406, 19.63153839111328, 7.248969078063965, 292.9969482421875, 428.6319580078125, 470.9544372558594, 242.7310791015625, 276.08905029296875, 243.9545135498047, 0.7218511700630188, 1.2100598812103271, 1.4442472457885742, 0.7110158801078796, 0.48667821288108826, 0.6623565554618835], "count": [1286]}, "observation.state": {"min": [-35.224586486816406, -96.53179168701172, -54.64852523803711, 46.26245880126953, -69.59876251220703, 1.2072434425354004, -750.0, -1950.0, -1800.0, -1500.0, -1000.0, -1450.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [37.27344512939453, 51.522159576416016, 98.63945770263672, 98.00664520263672, 7.561728477478027, 21.0596923828125, 1250.0, 2200.0, 2150.0, 1250.0, 1300.0, 1300.0, 1428.0, 1660.0, 1592.0, 1360.0, 1460.0, 1444.0], "mean": [-4.632851600646973, 10.763885498046875, 1.1342064142227173, 71.36449432373047, -25.070220947265625, 15.037575721740723, 0.19440124928951263, 5.054432392120361, -0.19440124928951263, -5.404354572296143, 1.7496111392974854, 0.19440124928951263, 593.6640625, 337.5707702636719, 431.3219299316406, 373.2939453125, 605.4214477539062, 460.6220703125], "std": [24.043603897094727, 31.451173782348633, 43.682308197021484, 11.85153865814209, 19.611291885375977, 5.367278099060059, 270.74493408203125, 456.3559875488281, 461.26153564453125, 230.43992614746094, 267.0454406738281, 207.7379913330078, 523.180908203125, 423.20166015625, 465.58404541015625, 486.01312255859375, 519.718505859375, 466.082763671875], "count": [1286]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5705320116364303]], [[0.5696358614318001]], [[0.5595177972863601]]], "std": [[[0.18031486652758136]], [[0.18671984004561434]], [[0.18629377335378441]]], "count": [214]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6381406603139699]], [[0.6358007394936168]], [[0.6261030977032558]]], "std": [[[0.289874307023805]], [[0.29259053222075976]], [[0.29363763242060015]]], "count": [214]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8980392156862745]], [[0.8980392156862745]], [[0.8980392156862745]]], "mean": [[[0.4826379000977338]], [[0.4848679095275182]], [[0.4927728939511942]]], "std": [[[0.1761972965209781]], [[0.17634888023642042]], [[0.17411251423348242]]], "count": [214]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4874959952049356]], [[0.48573359904709545]], [[0.48976421530450187]]], "std": [[[0.19498691057680664]], [[0.19642609186982712]], [[0.19558157720338315]]], "count": [214]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8784313725490196]], [[0.8862745098039215]], [[0.8862745098039215]]], "mean": [[[0.44536522948353796]], [[0.44858904942428685]], [[0.46466522547492517]]], "std": [[[0.2006246767380564]], [[0.20349507486434554]], [[0.20564218136063384]]], "count": [214]}, "timestamp": {"min": [0.0], "max": [42.833333333333336], "mean": [21.416666666666664], "std": [12.374537028376725], "count": [1286]}, "frame_index": {"min": [0], "max": [1285], "mean": [642.5], "std": [371.23611085130176], "count": [1286]}, "episode_index": {"min": [69], "max": [69], "mean": [69.0], "std": [0.0], "count": [1286]}, "index": {"min": [85997], "max": [87282], "mean": [86639.5], "std": [371.23611085130176], "count": [1286]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1286]}}} +{"episode_index": 70, "stats": {"action": {"min": [-35.04587173461914, -93.63750457763672, -67.7712173461914, 35.216087341308594, -53.17919158935547, 0.0, -1050.0, -1200.0, -1850.0, -950.0, -2100.0, -1350.0, -2.568807601928711, -3.6835498809814453, -5.628688335418701, -2.738555908203125, -3.5207557678222656, -3.7459285259246826], "max": [40.84403610229492, 56.299705505371094, 100.0, 91.4420166015625, 4.624277591705322, 29.641693115234375, 1700.0, 1600.0, 1700.0, 1500.0, 1450.0, 1500.0, 4.1100921630859375, 4.604434967041016, 5.2655487060546875, 4.364570617675781, 2.5748825073242188, 4.153094291687012], "mean": [1.2085955142974854, 12.996142387390137, -3.074712038040161, 69.57486724853516, -14.287296295166016, 16.132905960083008, 0.09132420271635056, 1.3698630332946777, 3.6986300945281982, -6.757990837097168, -0.13698630034923553, -0.31963470578193665, -0.0008713685092516243, -0.002599150175228715, 0.009866200387477875, -0.014927617274224758, 0.0010557707864791155, 7.436773739755154e-05], "std": [23.41414451599121, 22.71560287475586, 31.727895736694336, 12.230292320251465, 16.47041130065918, 9.59456729888916, 310.3172912597656, 432.0785827636719, 508.8960266113281, 280.54046630859375, 276.65234375, 287.4901123046875, 0.7622824311256409, 1.2053964138031006, 1.5539445877075195, 0.8159396052360535, 0.4872051477432251, 0.7794771194458008], "count": [1095]}, "observation.state": {"min": [-34.83057403564453, -96.45471954345703, -66.16780090332031, 36.046512603759766, -53.24074172973633, 1.2072434425354004, -950.0, -1300.0, -1700.0, -950.0, -1700.0, -1300.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [40.34672927856445, 56.30057907104492, 99.81859588623047, 90.86378479003906, 4.320987701416016, 28.50436019897461, 1400.0, 1750.0, 1650.0, 1450.0, 1350.0, 1350.0, 1488.0, 1528.0, 1456.0, 1440.0, 1472.0, 1428.0], "mean": [1.048245906829834, 14.671727180480957, -1.715529441833496, 69.6922836303711, -14.343064308166504, 17.433740615844727, -0.6849315166473389, 2.968036413192749, 1.5981734991073608, -11.232876777648926, 0.6849315166473389, -0.04566210135817528, 566.743408203125, 440.8328857421875, 354.9771728515625, 426.66302490234375, 561.7388305664062, 460.588134765625], "std": [23.440778732299805, 23.05945587158203, 31.308517456054688, 11.99474811553955, 16.426305770874023, 7.579770565032959, 285.5767822265625, 449.9292297363281, 495.1532897949219, 266.7362365722656, 265.4652404785156, 253.61770629882812, 524.823486328125, 448.63739013671875, 446.9992980957031, 503.1590881347656, 522.4328002929688, 461.0404968261719], "count": [1095]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5727395994582043]], [[0.5694638125644994]], [[0.55877198249914]]], "std": [[[0.1797806955572428]], [[0.18822372617837826]], [[0.18724394271297196]]], "count": [190]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6385965277777778]], [[0.6361896241830065]], [[0.6266151294289646]]], "std": [[[0.29171739693012044]], [[0.2941357701729091]], [[0.2948458961197868]]], "count": [190]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8549019607843137]], [[0.8666666666666667]], [[0.8549019607843137]]], "mean": [[[0.47950235423116616]], [[0.4843647306071551]], [[0.4924999591503268]]], "std": [[[0.1750730130519582]], [[0.1756318752048538]], [[0.1729650104669007]]], "count": [190]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4767717965256278]], [[0.4753372355521156]], [[0.4786221792225662]]], "std": [[[0.1921747229265238]], [[0.193239241853573]], [[0.19296442326466068]]], "count": [190]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8509803921568627]], [[0.8313725490196079]], [[0.8470588235294118]]], "mean": [[[0.4454901004041968]], [[0.44796493163054696]], [[0.46473215944272445]]], "std": [[[0.199625069371867]], [[0.20291900037831814]], [[0.20560332011715485]]], "count": [190]}, "timestamp": {"min": [0.0], "max": [36.46666666666667], "mean": [18.233333333333334], "std": [10.536638018872088], "count": [1095]}, "frame_index": {"min": [0], "max": [1094], "mean": [547.0], "std": [316.0991405661627], "count": [1095]}, "episode_index": {"min": [70], "max": [70], "mean": [70.0], "std": [0.0], "count": [1095]}, "index": {"min": [87283], "max": [88377], "mean": [87830.0], "std": [316.0991405661627], "count": [1095]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1095]}}} +{"episode_index": 71, "stats": {"action": {"min": [-33.94495391845703, -100.0, -88.65184020996094, 15.618313789367676, -33.42091369628906, 0.16286644339561462, -1050.0, -1400.0, -1650.0, -1500.0, -1650.0, -1250.0, -2.5688071250915527, -4.0184173583984375, -4.993194580078125, -4.27899169921875, -2.8376245498657227, -3.4201955795288086], "max": [49.65137481689453, 64.00167083740234, 100.0, 100.0, 21.860219955444336, 35.99348449707031, 1000.0, 1500.0, 1600.0, 1850.0, 1150.0, 1900.0, 2.422018527984619, 4.3532867431640625, 4.90240478515625, 5.305950164794922, 1.996847152709961, 5.3745927810668945], "mean": [6.490527153015137, 14.68933391571045, -11.539790153503418, 74.2076187133789, -6.306615352630615, 16.562541961669922, 0.7830853462219238, -1.252936601638794, 0.7047768235206604, -2.466718912124634, 2.89741587638855, 3.6805012226104736, 0.0027012887876480818, -0.0041955458000302315, 0.005829622037708759, -0.009181229397654533, 0.003703496651723981, 0.010585679672658443], "std": [28.151809692382812, 26.888959884643555, 43.86229705810547, 15.73361873626709, 14.579977989196777, 9.798922538757324, 263.0971374511719, 421.9576416015625, 521.55517578125, 307.67462158203125, 222.10311889648438, 278.937255859375, 0.6479255557060242, 1.171895146369934, 1.587702751159668, 0.8866786360740662, 0.38757094740867615, 0.7701776027679443], "count": [1277]}, "observation.state": {"min": [-33.569740295410156, -96.53179168701172, -87.39228820800781, 16.44518280029297, -32.6131706237793, 1.3413816690444946, -950.0, -1450.0, -1500.0, -1350.0, -1450.0, -1300.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [49.48778533935547, 64.00770568847656, 99.81859588623047, 99.50166320800781, 21.862140655517578, 35.74782180786133, 850.0, 1650.0, 1550.0, 1650.0, 900.0, 1750.0, 1324.0, 1504.0, 1424.0, 1496.0, 1336.0, 1500.0], "mean": [6.336126804351807, 16.37289047241211, -10.050106048583984, 74.28594207763672, -6.322653770446777, 17.8023624420166, 1.2137823104858398, 0.15661707520484924, 0.2740798890590668, -6.969459533691406, 2.3884103298187256, 6.342991352081299, 582.1331176757812, 448.6108093261719, 391.0791015625, 431.00079345703125, 461.2059631347656, 492.99609375], "std": [28.2352352142334, 27.296899795532227, 43.33638000488281, 15.551107406616211, 14.532709121704102, 7.819520950317383, 244.94137573242188, 445.0321350097656, 511.11578369140625, 295.6917724609375, 208.22940063476562, 245.22593688964844, 522.9633178710938, 448.6253967285156, 456.9914855957031, 506.0565490722656, 513.4039916992188, 465.5960998535156], "count": [1277]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5746535995658044]], [[0.568987759481727]], [[0.5572406601920894]]], "std": [[[0.1812647159505278]], [[0.18951012297541717]], [[0.18797589404520268]]], "count": [213]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6381468392325632]], [[0.6347791682009267]], [[0.6242970653441345]]], "std": [[[0.2891039550755403]], [[0.2922796965245742]], [[0.294016382309698]]], "count": [213]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9333333333333333]], [[0.9333333333333333]], [[0.9333333333333333]]], "mean": [[[0.4920945248013133]], [[0.49198101449108594]], [[0.5009550902912026]]], "std": [[[0.1779437356930653]], [[0.17725141200322136]], [[0.1744043644690828]]], "count": [213]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47873263217650125]], [[0.4773740602657338]], [[0.4811428137178189]]], "std": [[[0.19094358254669822]], [[0.19211266273986505]], [[0.19138457105053497]]], "count": [213]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8705882352941177]], [[0.8745098039215686]], [[0.8862745098039215]]], "mean": [[[0.431240641013839]], [[0.43482315160023316]], [[0.45194680049249747]]], "std": [[[0.1954294889998312]], [[0.19833624508002937]], [[0.20134955528625814]]], "count": [213]}, "timestamp": {"min": [0.0], "max": [42.53333333333333], "mean": [21.266666666666666], "std": [12.287934461630782], "count": [1277]}, "frame_index": {"min": [0], "max": [1276], "mean": [638.0], "std": [368.6380338489234], "count": [1277]}, "episode_index": {"min": [71], "max": [71], "mean": [71.0], "std": [0.0], "count": [1277]}, "index": {"min": [88378], "max": [89654], "mean": [89016.0], "std": [368.6380338489234], "count": [1277]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1277]}}} +{"episode_index": 72, "stats": {"action": {"min": [-41.65137481689453, -100.0, -57.24012756347656, 44.37312698364258, -75.09195709228516, 0.6514657735824585, -1000.0, -1300.0, -2050.0, -1100.0, -2050.0, -1100.0, -2.568807601928711, -3.683549642562866, -6.264185428619385, -2.9952926635742188, -3.993694305419922, -2.8501625061035156], "max": [36.95412826538086, 45.3327751159668, 99.81842803955078, 97.7749252319336, 9.406200408935547, 34.36482238769531, 1400.0, 1650.0, 1900.0, 1300.0, 1450.0, 1400.0, 3.4495413303375244, 4.771873474121094, 6.082614898681641, 3.936676025390625, 2.6799793243408203, 3.9087953567504883], "mean": [4.355371952056885, -0.6088294386863708, 14.907299995422363, 65.5982666015625, -28.91630744934082, 18.66495132446289, 0.20188425481319427, 0.06729475408792496, -0.3028263747692108, 0.5720053911209106, -0.8748317360877991, -0.20188425481319427, -0.0011853802716359496, 0.00045072214561514556, 6.115067662904039e-05, 0.001151812612079084, -0.0013437713496387005, 0.00010960098734358326], "std": [25.310062408447266, 31.37116050720215, 41.8347282409668, 12.374999046325684, 25.994544982910156, 8.94556999206543, 280.986572265625, 395.4061584472656, 428.9154052734375, 245.99996948242188, 384.7433166503906, 232.21376037597656, 0.6933519244194031, 1.102427363395691, 1.306763768196106, 0.7037213444709778, 0.6762957572937012, 0.6325805187225342], "count": [1486]}, "observation.state": {"min": [-41.371158599853516, -96.53179168701172, -54.195011138916016, 44.102989196777344, -74.8456802368164, 1.877934217453003, -900.0, -1450.0, -1950.0, -900.0, -1900.0, -1150.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [36.406620025634766, 46.35838317871094, 99.27437591552734, 97.17607879638672, 9.207818984985352, 34.272300720214844, 1300.0, 1700.0, 1800.0, 1350.0, 1400.0, 1500.0, 1432.0, 1544.0, 1492.0, 1400.0, 1456.0, 1408.0], "mean": [4.279716968536377, 0.6250364184379578, 16.292404174804688, 65.68508911132812, -29.005767822265625, 19.257143020629883, -0.9421265125274658, -0.03364737704396248, 0.3364737629890442, 0.9421265125274658, 0.13458950817584991, -0.03364737704396248, 489.259765625, 389.45086669921875, 338.6702575683594, 366.3337707519531, 659.8276977539062, 376.97442626953125], "std": [25.32659149169922, 31.704795837402344, 41.3111457824707, 12.264235496520996, 25.94529914855957, 8.036304473876953, 260.64599609375, 417.4501037597656, 415.5982360839844, 233.83551025390625, 378.6261901855469, 234.87554931640625, 520.0879516601562, 453.6722106933594, 433.24432373046875, 485.9931945800781, 514.5206298828125, 466.34039306640625], "count": [1486]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.573244979250417]], [[0.5739505394207892]], [[0.5670257079470561]]], "std": [[[0.18450224442261232]], [[0.19244778519272226]], [[0.19122013572784266]]], "count": [239]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6411721283876172]], [[0.6365939781770449]], [[0.6247741884759482]]], "std": [[[0.28561195860271743]], [[0.2891837117168756]], [[0.29166152826371]]], "count": [239]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9176470588235294]], [[0.9215686274509803]], [[0.9333333333333333]]], "mean": [[[0.49371136202040095]], [[0.49535736627286897]], [[0.5025136214004431]]], "std": [[[0.17657904184214987]], [[0.17751323488148654]], [[0.17590751311929614]]], "count": [239]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47741478570158885]], [[0.47556706695928025]], [[0.47897221282166985]]], "std": [[[0.18925615336305707]], [[0.1903145910183714]], [[0.19012431633937402]]], "count": [239]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9215686274509803]], [[0.9294117647058824]], [[0.9294117647058824]]], "mean": [[[0.4651423423100063]], [[0.4693041608554161]], [[0.4845596439412585]]], "std": [[[0.20802133874312592]], [[0.21149527859386508]], [[0.21404421188487105]]], "count": [239]}, "timestamp": {"min": [0.0], "max": [49.5], "mean": [24.75], "std": [14.299038429209148], "count": [1486]}, "frame_index": {"min": [0], "max": [1485], "mean": [742.5], "std": [428.9711528762744], "count": [1486]}, "episode_index": {"min": [72], "max": [72], "mean": [72.0], "std": [0.0], "count": [1486]}, "index": {"min": [89655], "max": [91140], "mean": [90397.5], "std": [428.9711528762744], "count": [1486]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1486]}}} +{"episode_index": 73, "stats": {"action": {"min": [-33.0642204284668, -99.24654388427734, -48.252384185791016, 50.44929504394531, -18.286914825439453, 0.32573288679122925, -1200.0, -1150.0, -1600.0, -900.0, -800.0, -1150.0, -2.8623855113983154, -3.3486814498901367, -4.811620712280273, -2.6529693603515625, -1.3137149810791016, -3.2573294639587402], "max": [39.66972351074219, 44.160736083984375, 92.73717498779297, 88.960205078125, 11.613242149353027, 33.9576530456543, 1200.0, 2450.0, 1550.0, 900.0, 700.0, 1500.0, 2.935779571533203, 6.948513031005859, 4.811620712280273, 2.567394256591797, 1.2611665725708008, 4.234527587890625], "mean": [4.421604633331299, 7.864084720611572, 3.8575680255889893, 70.91618347167969, -4.520542621612549, 19.3225040435791, -1.2339584827423096, -0.19743336737155914, 3.4057254791259766, -4.047383785247803, -0.19743336737155914, -0.6910167932510376, -0.000652051530778408, -0.0006609254633076489, 0.013174164108932018, -0.007434374187141657, -0.0006743682315573096, -0.0014469872694462538], "std": [22.631999969482422, 24.338951110839844, 32.889427185058594, 9.593000411987305, 8.352334022521973, 9.398214340209961, 320.5152587890625, 504.2511291503906, 532.1971435546875, 219.99795532226562, 187.7805633544922, 279.48828125, 0.7904258966445923, 1.4100624322891235, 1.6220993995666504, 0.6332484483718872, 0.33113348484039307, 0.7557337880134583], "count": [1013]}, "observation.state": {"min": [-32.93932342529297, -96.53179168701172, -45.850341796875, 50.415283203125, -18.05555534362793, 1.3413816690444946, -1050.0, -1300.0, -1550.0, -850.0, -750.0, -1200.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [39.0070915222168, 44.89402770996094, 89.38775634765625, 88.5382080078125, 11.574073791503906, 33.735748291015625, 1100.0, 2500.0, 1550.0, 800.0, 650.0, 1600.0, 1388.0, 1748.0, 1412.0, 1276.0, 1256.0, 1504.0], "mean": [4.222567081451416, 9.539726257324219, 5.230018138885498, 70.9359130859375, -4.606476306915283, 19.999895095825195, 0.49358341097831726, 1.974333643913269, -0.7403751015663147, -5.873642444610596, -0.8884501457214355, -0.3455083966255188, 614.8035278320312, 490.1717529296875, 439.2852783203125, 511.703857421875, 587.751220703125, 433.7295227050781], "std": [22.62982940673828, 24.66904640197754, 32.38691329956055, 9.403803825378418, 8.282819747924805, 8.196945190429688, 297.04803466796875, 531.1237182617188, 522.595947265625, 209.055908203125, 180.43238830566406, 279.57318115234375, 521.0847778320312, 459.9548034667969, 472.5211181640625, 514.5254516601562, 517.22998046875, 479.9500427246094], "count": [1013]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5836880089093366]], [[0.5794276538594954]], [[0.5661263601343703]]], "std": [[[0.1810121366830766]], [[0.18889130700112522]], [[0.18825193491510564]]], "count": [179]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6437424291178296]], [[0.6388278859495381]], [[0.6266531143882134]]], "std": [[[0.2858545287352833]], [[0.2896718610665692]], [[0.2924462904432519]]], "count": [179]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8274509803921568]], [[0.8274509803921568]], [[0.8274509803921568]]], "mean": [[[0.4953168063314711]], [[0.49778324113630557]], [[0.5029871540329353]]], "std": [[[0.1685998651713642]], [[0.17387174985088247]], [[0.17655263258889023]]], "count": [179]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48240377505750903]], [[0.4812020198908241]], [[0.4851861273140541]]], "std": [[[0.1918781814225485]], [[0.19318752699056863]], [[0.19240909285790933]]], "count": [179]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9568627450980393]], [[0.9568627450980393]], [[0.9921568627450981]]], "mean": [[[0.4659679957644138]], [[0.469562049284332]], [[0.48443704357907036]]], "std": [[[0.20903380797379764]], [[0.21291297892594843]], [[0.21593334585846236]]], "count": [179]}, "timestamp": {"min": [0.0], "max": [33.733333333333334], "mean": [16.866666666666667], "std": [9.747592295308394], "count": [1013]}, "frame_index": {"min": [0], "max": [1012], "mean": [506.0], "std": [292.4277688592518], "count": [1013]}, "episode_index": {"min": [73], "max": [73], "mean": [73.0], "std": [0.0], "count": [1013]}, "index": {"min": [91141], "max": [92153], "mean": [91647.0], "std": [292.4277688592518], "count": [1013]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1013]}}} +{"episode_index": 74, "stats": {"action": {"min": [-32.18348693847656, -98.57681274414062, -76.48661041259766, 37.95464324951172, -73.35785675048828, 0.40716612339019775, -950.0, -1500.0, -1800.0, -1050.0, -2050.0, -1000.0, -2.42201828956604, -4.18585205078125, -5.628688335418701, -2.9952926635742188, -3.57330322265625, -2.7687301635742188], "max": [35.04587173461914, 59.06237030029297, 100.0, 100.0, -3.7309510707855225, 35.26058578491211, 850.0, 1450.0, 2000.0, 1500.0, 1850.0, 1950.0, 2.0550460815429688, 4.102134704589844, 6.082614898681641, 4.364570617675781, 3.205465316772461, 5.293159484863281], "mean": [-0.17876237630844116, 12.845717430114746, -8.868505477905273, 76.61708068847656, -47.879425048828125, 17.655481338500977, -0.8159564733505249, 3.0825023651123047, 0.09066183120012283, -6.5729827880859375, 20.489574432373047, -1.3145965337753296, -0.003593203378841281, 0.004706008359789848, 0.00032900122459977865, -0.016991816461086273, 0.033634915947914124, -0.0013289183843880892], "std": [20.131765365600586, 36.54973220825195, 54.158485412597656, 14.232961654663086, 12.322052955627441, 10.906386375427246, 283.6655578613281, 468.13671875, 579.8092041015625, 243.20327758789062, 373.5114440917969, 298.96258544921875, 0.6988548636436462, 1.3047003746032715, 1.768818736076355, 0.708212673664093, 0.6564649939537048, 0.8226886987686157], "count": [1103]}, "observation.state": {"min": [-31.75728988647461, -96.53179168701172, -73.6961441040039, 39.03654479980469, -73.09671020507812, 1.2072434425354004, -900.0, -1650.0, -1700.0, -950.0, -1800.0, -1050.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [34.751773834228516, 59.15221405029297, 99.27437591552734, 99.50166320800781, -4.269547462463379, 35.01005935668945, 750.0, 1550.0, 1850.0, 950.0, 1650.0, 1950.0, 1304.0, 1476.0, 1524.0, 1308.0, 1532.0, 1572.0], "mean": [-0.33085930347442627, 14.442481994628906, -7.330929756164551, 76.74745178222656, -48.023956298828125, 18.619964599609375, -0.8159564733505249, 5.621033668518066, -1.3145965337753296, -11.33272933959961, 20.308250427246094, -0.6346328258514404, 610.857666015625, 421.2330017089844, 392.4750671386719, 363.47052001953125, 529.0117797851562, 554.3934936523438], "std": [20.168170928955078, 37.15495300292969, 53.6174201965332, 13.984139442443848, 12.077336311340332, 9.43754768371582, 265.66802978515625, 494.2189636230469, 564.5944213867188, 223.3900604248047, 358.2989501953125, 275.2881164550781, 519.697998046875, 452.1755065917969, 460.24859619140625, 485.67730712890625, 530.793701171875, 476.6388244628906], "count": [1103]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5677179629487048]], [[0.5706787568866989]], [[0.5637810863874345]]], "std": [[[0.17893562705042348]], [[0.18720957323543228]], [[0.18743877332521355]]], "count": [191]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6378781931184341]], [[0.6355145925298566]], [[0.6261606044468399]]], "std": [[[0.2911826153963822]], [[0.29301758383300536]], [[0.29329362198059133]]], "count": [191]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9490196078431372]], [[0.8705882352941177]], [[0.8470588235294118]]], "mean": [[[0.47116343398179517]], [[0.47360163120658383]], [[0.4809558149830613]]], "std": [[[0.17362723715319056]], [[0.17373873020332173]], [[0.17102692895893137]]], "count": [191]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47034063708380386]], [[0.4696442923810013]], [[0.47483196027101937]]], "std": [[[0.1884339783861094]], [[0.18947949943835465]], [[0.1886043415329106]]], "count": [191]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[0.9725490196078431]], [[0.9725490196078431]]], "mean": [[[0.46185398487492724]], [[0.46618783578003625]], [[0.48270995341854017]]], "std": [[[0.20889217158017948]], [[0.2122544126729646]], [[0.21397030111628695]]], "count": [191]}, "timestamp": {"min": [0.0], "max": [36.733333333333334], "mean": [18.366666666666664], "std": [10.613618086632329], "count": [1103]}, "frame_index": {"min": [0], "max": [1102], "mean": [551.0], "std": [318.40854259896986], "count": [1103]}, "episode_index": {"min": [74], "max": [74], "mean": [74.0], "std": [0.0], "count": [1103]}, "index": {"min": [92154], "max": [93256], "mean": [92705.0], "std": [318.40854259896986], "count": [1103]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1103]}}} +{"episode_index": 75, "stats": {"action": {"min": [-33.0642204284668, -100.0, -63.141170501708984, 12.023962020874023, -74.82921600341797, 0.16286644339561462, -1050.0, -1550.0, -1700.0, -2600.0, -1600.0, -1650.0, -2.5688066482543945, -4.269569396972656, -5.265546798706055, -7.531024932861328, -2.8901748657226562, -4.56026029586792], "max": [38.05504608154297, 48.26287078857422, 99.63685607910156, 99.57209777832031, -0.7356805205345154, 35.097721099853516, 1150.0, 1700.0, 2300.0, 1950.0, 1500.0, 1850.0, 2.7889909744262695, 4.771869659423828, 6.89968204498291, 5.648265838623047, 2.6799774169921875, 5.048860549926758], "mean": [-5.578056335449219, 14.623350143432617, -9.998701095581055, 73.11785125732422, -40.26095962524414, 18.193754196166992, -0.052966102957725525, 0.15889830887317657, -0.15889830887317657, -0.15889830887317657, 1.2711864709854126, -0.741525411605835, -0.0012439752463251352, 0.0010641672415658832, 0.00048083774163387716, 0.0021757513750344515, 0.003952282015234232, 0.00017252942780032754], "std": [20.888957977294922, 27.4675350189209, 41.18706130981445, 17.550479888916016, 15.948454856872559, 9.829289436340332, 336.39178466796875, 488.02081298828125, 658.6754150390625, 454.40692138671875, 382.5347595214844, 340.1912841796875, 0.8254138231277466, 1.359639286994934, 2.008937358856201, 1.2999581098556519, 0.6713055968284607, 0.9335215091705322], "count": [944]}, "observation.state": {"min": [-32.624114990234375, -96.37764739990234, -60.453514099121094, 13.122923851013184, -74.53704071044922, 1.2072434425354004, -950.0, -1600.0, -1600.0, -2250.0, -1500.0, -1500.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [37.43104934692383, 49.210018157958984, 99.36508178710938, 98.83721160888672, -1.2860082387924194, 34.80885314941406, 1050.0, 1900.0, 2150.0, 1750.0, 1350.0, 1450.0, 1364.0, 1548.0, 1584.0, 1532.0, 1456.0, 1492.0], "mean": [-5.729102611541748, 16.562891006469727, -8.572683334350586, 73.17837524414062, -40.32743835449219, 18.93489646911621, -0.31779661774635315, 0.052966102957725525, 0.31779661774635315, -2.8072032928466797, 3.9194915294647217, 1.5360169410705566, 542.4873046875, 432.38983154296875, 478.7076416015625, 508.5974426269531, 630.3135375976562, 489.16949462890625], "std": [20.898357391357422, 27.719663619995117, 40.59776306152344, 17.230375289916992, 15.836334228515625, 8.622118949890137, 312.63946533203125, 517.9945678710938, 641.584716796875, 434.90460205078125, 373.9827880859375, 350.082275390625, 528.8264770507812, 440.7163391113281, 488.3160400390625, 523.8236083984375, 519.0418701171875, 487.7713928222656], "count": [944]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5660834390618993]], [[0.5694209474721261]], [[0.5619047361591696]]], "std": [[[0.17785194485950118]], [[0.18582106082223868]], [[0.1860156349739524]]], "count": [170]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6346683823529412]], [[0.6326151263936947]], [[0.6238892829680892]]], "std": [[[0.29199292189182835]], [[0.2940034882360846]], [[0.29409872030899553]]], "count": [170]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9803921568627451]], [[0.9294117647058824]], [[0.9294117647058824]]], "mean": [[[0.47128095083621685]], [[0.47376743920607456]], [[0.4809499831795463]]], "std": [[[0.17300787972478046]], [[0.17327675963769412]], [[0.17072353111956362]]], "count": [170]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4743668144463668]], [[0.472902354863514]], [[0.47700977748942713]]], "std": [[[0.1923799273487775]], [[0.19364323185910987]], [[0.19335220843679346]]], "count": [170]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9568627450980393]], [[0.9568627450980393]], [[0.9568627450980393]]], "mean": [[[0.46391674356016915]], [[0.4678958789888505]], [[0.48361354286812763]]], "std": [[[0.20812670630143235]], [[0.2110865238836617]], [[0.21262397245146103]]], "count": [170]}, "timestamp": {"min": [0.0], "max": [31.433333333333334], "mean": [15.716666666666667], "std": [9.08363913858317], "count": [944]}, "frame_index": {"min": [0], "max": [943], "mean": [471.5], "std": [272.5091741574951], "count": [944]}, "episode_index": {"min": [75], "max": [75], "mean": [75.0], "std": [0.0], "count": [944]}, "index": {"min": [93257], "max": [94200], "mean": [93728.5], "std": [272.5091741574951], "count": [944]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [944]}}} +{"episode_index": 76, "stats": {"action": {"min": [-32.91743087768555, -97.57220458984375, -70.3132095336914, 25.97347068786621, -72.46453094482422, 1.8729641437530518, -950.0, -1250.0, -1550.0, -1600.0, -1650.0, -1250.0, -2.2752294540405273, -3.432403564453125, -4.720834732055664, -4.535728454589844, -2.837625503540039, -3.4201955795288086], "max": [35.633026123046875, 57.63917922973633, 100.0, 94.95079040527344, 0.2627430260181427, 21.986970901489258, 1200.0, 1450.0, 2050.0, 1650.0, 1350.0, 1250.0, 3.1559629440307617, 4.102134704589844, 6.17340087890625, 5.0492095947265625, 2.5223312377929688, 3.3387622833251953], "mean": [-3.635275363922119, 5.426756858825684, 13.604960441589355, 64.19793701171875, -40.17801284790039, 14.491617202758789, 0.0, -1.2288786172866821, 3.8018434047698975, -2.8801844120025635, 0.9984639286994934, 1.2672810554504395, -0.0013528952840715647, -0.007265667896717787, 0.012062916532158852, -0.005192629061639309, 0.0029866357799619436, 0.0008756270399317145], "std": [18.048776626586914, 21.41777801513672, 33.684532165527344, 13.455490112304688, 18.223169326782227, 5.984155178070068, 300.9132080078125, 442.033203125, 539.754638671875, 311.6550598144531, 312.5298767089844, 225.5642852783203, 0.7402299046516418, 1.2337231636047363, 1.6392766237258911, 0.9063478708267212, 0.551222026348114, 0.6081262826919556], "count": [1302]}, "observation.state": {"min": [-32.624114990234375, -95.83815002441406, -69.3424072265625, 27.242525100708008, -72.2736587524414, 1.9450033903121948, -900.0, -1350.0, -1450.0, -1500.0, -1400.0, -1100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [35.06698226928711, 57.764930725097656, 99.72789001464844, 94.51827239990234, 0.15432098507881165, 21.79745101928711, 1100.0, 1500.0, 1900.0, 1200.0, 1200.0, 1250.0, 1384.0, 1464.0, 1520.0, 1412.0, 1420.0, 1392.0], "mean": [-3.812875747680664, 6.846740245819092, 14.671672821044922, 64.34593963623047, -40.216426849365234, 15.102636337280273, 0.5376344323158264, 2.572964668273926, 0.19201229512691498, -7.9493088722229, 3.225806474685669, 0.11520737409591675, 583.65283203125, 492.1413269042969, 391.93548583984375, 427.3702087402344, 538.884765625, 495.89862060546875], "std": [17.990276336669922, 21.59951400756836, 33.13840103149414, 13.189959526062012, 18.148136138916016, 4.919826030731201, 281.03033447265625, 468.91278076171875, 527.498291015625, 292.45587158203125, 304.5872802734375, 209.41265869140625, 525.403564453125, 468.6700134277344, 471.9440002441406, 503.5960388183594, 522.7427978515625, 485.55450439453125], "count": [1302]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5690823631535947]], [[0.5720160183672235]], [[0.5649258635167029]]], "std": [[[0.17949463300208468]], [[0.18958651053173436]], [[0.19022505726658065]]], "count": [216]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6425064366603123]], [[0.6383812059353062]], [[0.6269602197939361]]], "std": [[[0.28646249558205705]], [[0.29015842286540466]], [[0.29281162075750977]]], "count": [216]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9098039215686274]], [[0.8509803921568627]], [[0.8509803921568627]]], "mean": [[[0.47435801712660375]], [[0.47679624901658196]], [[0.4837320564028081]]], "std": [[[0.17343603991579618]], [[0.17407717010906582]], [[0.17216330508953792]]], "count": [216]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47524011759410556]], [[0.4739262228425321]], [[0.4785034230513193]]], "std": [[[0.19289203166876825]], [[0.19387981042380686]], [[0.1924337865721171]]], "count": [216]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.996078431372549]], [[0.984313725490196]], [[0.9882352941176471]]], "mean": [[[0.4651613335148874]], [[0.4692329821396151]], [[0.4849190448362987]]], "std": [[[0.21088732566618776]], [[0.21422268340240866]], [[0.21598002701201344]]], "count": [216]}, "timestamp": {"min": [0.0], "max": [43.36666666666667], "mean": [21.68333333333333], "std": [12.528497146136113], "count": [1302]}, "frame_index": {"min": [0], "max": [1301], "mean": [650.5], "std": [375.8549143840834], "count": [1302]}, "episode_index": {"min": [76], "max": [76], "mean": [76.0], "std": [0.0], "count": [1302]}, "index": {"min": [94201], "max": [95502], "mean": [94851.5], "std": [375.8549143840834], "count": [1302]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1302]}}} +{"episode_index": 77, "stats": {"action": {"min": [-35.7064208984375, -98.99539184570312, -53.881072998046875, 39.837398529052734, -59.85286331176758, 1.302931547164917, -1150.0, -1200.0, -1550.0, -1400.0, -1450.0, -1350.0, -2.862384796142578, -3.516115427017212, -4.720832824707031, -4.022251129150391, -2.627431869506836, -3.827362060546875], "max": [38.56880569458008, 44.07701873779297, 100.0, 85.19469451904297, -2.6274304389953613, 35.83061981201172, 1200.0, 1800.0, 1700.0, 1500.0, 1150.0, 1500.0, 2.935779571533203, 5.0230255126953125, 5.53790283203125, 4.450153350830078, 1.996847152709961, 4.071661949157715], "mean": [3.965533971786499, 17.456422805786133, -12.231634140014648, 66.12310791015625, -32.58837890625, 19.572031021118164, 0.29910269379615784, 2.741774559020996, 0.9471585154533386, -1.7447657585144043, -1.8444665670394897, 0.9471585154533386, 0.0035123941488564014, 0.0007513242308050394, 0.005068846512585878, -0.0027303649112582207, -0.00020956588559783995, 0.0038971060421317816], "std": [21.015825271606445, 23.73311996459961, 26.582563400268555, 10.307696342468262, 15.31010913848877, 10.079668045043945, 339.2044677734375, 419.5674133300781, 415.1435852050781, 261.10369873046875, 329.08001708984375, 305.8111267089844, 0.8349477648735046, 1.1710741519927979, 1.2578017711639404, 0.7617330551147461, 0.579098105430603, 0.8361173272132874], "count": [1003]}, "observation.state": {"min": [-35.3821907043457, -96.53179168701172, -51.11111068725586, 40.780731201171875, -59.670780181884766, 2.6827633380889893, -1050.0, -1350.0, -1450.0, -1300.0, -1300.0, -1350.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [38.061466217041016, 45.04816818237305, 99.90929412841797, 84.88372039794922, -2.932098865509033, 35.47954559326172, 1050.0, 1850.0, 1700.0, 1150.0, 1150.0, 1600.0, 1384.0, 1592.0, 1456.0, 1404.0, 1360.0, 1500.0], "mean": [3.8805618286132812, 19.34861946105957, -10.799385070800781, 66.28520202636719, -32.61323928833008, 20.213640213012695, 0.9471585154533386, 2.6919243335723877, 1.0967098474502563, -8.524426460266113, 0.29910269379615784, 1.0967098474502563, 533.048828125, 401.49151611328125, 286.50848388671875, 364.8733825683594, 544.9212646484375, 615.6091918945312], "std": [20.992521286010742, 23.931976318359375, 26.252790451049805, 10.118853569030762, 15.246121406555176, 8.840767860412598, 317.04833984375, 434.9601135253906, 402.4329833984375, 237.19325256347656, 314.8294372558594, 309.1624755859375, 525.4171752929688, 428.470703125, 399.2012939453125, 484.2671813964844, 524.041748046875, 481.740478515625], "count": [1003]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5585364824300506]], [[0.5607802723617537]], [[0.553736916629948]]], "std": [[[0.17577678558403909]], [[0.18524771908632198]], [[0.18518081526984623]]], "count": [178]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6412778397407651]], [[0.6366518781669971]], [[0.6251267223415583]]], "std": [[[0.28631647445787745]], [[0.2901450200897193]], [[0.29270819605240306]]], "count": [178]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[0.9372549019607843]], [[0.9372549019607843]]], "mean": [[[0.4690697404898289]], [[0.4716391803444224]], [[0.4783174639237718]]], "std": [[[0.17456258133402172]], [[0.17537359973214992]], [[0.17294772082023072]]], "count": [178]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4804551353547037]], [[0.4790454670632298]], [[0.483320629773445]]], "std": [[[0.1928131381173656]], [[0.1941075709455669]], [[0.19397882328348065]]], "count": [178]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9372549019607843]], [[0.9372549019607843]], [[0.9490196078431372]]], "mean": [[[0.46022111262576193]], [[0.46425223869978705]], [[0.47979051231915987]]], "std": [[[0.21244906103180589]], [[0.2157034445508268]], [[0.21768340637651193]]], "count": [178]}, "timestamp": {"min": [0.0], "max": [33.4], "mean": [16.700000000000003], "std": [9.651367203090393], "count": [1003]}, "frame_index": {"min": [0], "max": [1002], "mean": [501.0], "std": [289.5410160927118], "count": [1003]}, "episode_index": {"min": [77], "max": [77], "mean": [77.0], "std": [0.0], "count": [1003]}, "index": {"min": [95503], "max": [96505], "mean": [96004.0], "std": [289.5410160927118], "count": [1003]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1003]}}} +{"episode_index": 78, "stats": {"action": {"min": [-33.94495391845703, -98.57681274414062, -45.2564697265625, 34.18913269042969, -60.11560821533203, 0.32573288679122925, -1000.0, -1250.0, -1200.0, -1800.0, -1350.0, -1300.0, -2.4220190048217773, -3.599832534790039, -3.6314163208007812, -5.0492095947265625, -2.4697837829589844, -3.5830612182617188], "max": [36.2935791015625, 45.165340423583984, 100.0, 92.3833999633789, -4.414083003997803, 31.27035903930664, 1150.0, 1350.0, 2100.0, 1850.0, 1000.0, 1200.0, 2.8623857498168945, 3.7672672271728516, 6.445756912231445, 5.562686920166016, 1.786651611328125, 3.2573280334472656], "mean": [-2.9973397254943848, 16.701173782348633, -6.625105857849121, 60.75246810913086, -31.090707778930664, 20.036134719848633, 0.7057546377182007, 1.8458197116851807, -0.5428881645202637, -5.700325965881348, 0.6514657735824585, -2.551574468612671, -0.0004781502648256719, 0.0036360237281769514, 0.001084297662600875, -0.0088274534791708, -0.0006846698233857751, -0.00689662666991353], "std": [18.751014709472656, 23.855209350585938, 25.72089958190918, 14.221026420593262, 17.721603393554688, 8.513303756713867, 341.4566955566406, 413.4303283691406, 406.7958984375, 295.2893981933594, 279.3751220703125, 271.44561767578125, 0.843993604183197, 1.1511868238449097, 1.2445224523544312, 0.864402174949646, 0.4931739866733551, 0.7390854358673096], "count": [921]}, "observation.state": {"min": [-33.80614471435547, -96.53179168701172, -42.58503341674805, 35.13288879394531, -59.72222137451172, 1.3413816690444946, -900.0, -1350.0, -1150.0, -1600.0, -1250.0, -1050.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [36.09141159057617, 45.125240325927734, 99.72789001464844, 91.86046600341797, -4.423868179321289, 31.321260452270508, 1050.0, 1450.0, 2000.0, 950.0, 1050.0, 1150.0, 1384.0, 1408.0, 1544.0, 1360.0, 1360.0, 1388.0], "mean": [-3.2204537391662598, 18.493974685668945, -5.475307464599609, 60.88276672363281, -31.145673751831055, 20.382308959960938, -0.05428881570696831, 5.863192081451416, -0.16286644339561462, -10.912052154541016, -0.9771987199783325, -1.954397439956665, 609.255126953125, 389.88055419921875, 308.52984619140625, 504.555908203125, 546.9576416015625, 480.5950012207031], "std": [18.79507827758789, 24.08712387084961, 25.53826332092285, 14.115669250488281, 17.690258026123047, 7.857363700866699, 318.9754943847656, 428.3874206542969, 396.8217468261719, 268.22900390625, 269.3717956542969, 283.4685974121094, 525.1817016601562, 429.5733337402344, 424.3151550292969, 512.49755859375, 522.7715454101562, 498.8945617675781], "count": [921]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5619352960745176]], [[0.5618092711635553]], [[0.5540669836796994]]], "std": [[[0.1760443338036734]], [[0.18307635285215]], [[0.1827697348020146]]], "count": [167]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6383135860631678]], [[0.6351243799166374]], [[0.6249225703005753]]], "std": [[[0.29118176241724414]], [[0.29405652710241365]], [[0.2952154522663466]]], "count": [167]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9176470588235294]], [[0.9254901960784314]], [[0.9254901960784314]]], "mean": [[[0.4738913924601777]], [[0.47635998713357597]], [[0.4833915196567649]]], "std": [[[0.17481227208171107]], [[0.17522307029136905]], [[0.17264099502416777]]], "count": [167]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4718539648643889]], [[0.4707090598215334]], [[0.4751136538198114]]], "std": [[[0.1931113659703425]], [[0.19427895843415857]], [[0.19333865337877473]]], "count": [167]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9176470588235294]], [[0.9176470588235294]], [[0.9176470588235294]]], "mean": [[[0.44094664103166215]], [[0.4436653029724864]], [[0.4589655700853196]]], "std": [[[0.20221651867158816]], [[0.2049089809023845]], [[0.2075098838271943]]], "count": [167]}, "timestamp": {"min": [0.0], "max": [30.666666666666668], "mean": [15.333333333333334], "std": [8.862321408115413], "count": [921]}, "frame_index": {"min": [0], "max": [920], "mean": [460.0], "std": [265.86964224346235], "count": [921]}, "episode_index": {"min": [78], "max": [78], "mean": [78.0], "std": [0.0], "count": [921]}, "index": {"min": [96506], "max": [97426], "mean": [96966.0], "std": [265.86964224346235], "count": [921]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [921]}}} +{"episode_index": 79, "stats": {"action": {"min": [-30.788990020751953, -97.99079132080078, -64.32138061523438, 31.2794189453125, -58.17130661010742, 0.5700325965881348, -1000.0, -1200.0, -1500.0, -1850.0, -1300.0, -950.0, -2.495412826538086, -3.264965057373047, -4.720834732055664, -5.220367431640625, -2.207040786743164, -2.524430274963379], "max": [39.08256912231445, 49.43490982055664, 100.0, 100.0, -4.624277591705322, 29.315961837768555, 1250.0, 1500.0, 2150.0, 1750.0, 1000.0, 1500.0, 3.082569122314453, 4.269561767578125, 6.627326965332031, 5.049205780029297, 1.8391990661621094, 4.234527587890625], "mean": [-5.502602577209473, 8.031722068786621, 3.1210155487060547, 69.73149871826172, -34.760963439941406, 15.957196235656738, -1.2725344896316528, -0.26511135697364807, 0.37115588784217834, -0.3181336224079132, 0.1590668112039566, -0.26511135697364807, 0.00031130234128795564, -0.0017754442524164915, 0.00019276155217085034, -0.00036299898056313396, -0.0009473262471146882, -0.0002590653602965176], "std": [20.360288619995117, 27.173160552978516, 41.543148040771484, 15.957523345947266, 16.486513137817383, 6.796506881713867, 298.3399658203125, 464.346435546875, 632.9852905273438, 354.93011474609375, 277.9498291015625, 235.169677734375, 0.7354528903961182, 1.292448878288269, 1.926568627357483, 1.0155423879623413, 0.4904261529445648, 0.6355495452880859], "count": [943]}, "observation.state": {"min": [-30.732860565185547, -96.53179168701172, -61.54195022583008, 32.225914001464844, -57.71604919433594, 1.3413816690444946, -950.0, -1250.0, -1450.0, -1550.0, -1000.0, -1000.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [38.61308288574219, 49.74951934814453, 99.90929412841797, 99.4186019897461, -4.886831283569336, 28.97384262084961, 1150.0, 1550.0, 2100.0, 1550.0, 1050.0, 1450.0, 1392.0, 1488.0, 1564.0, 1484.0, 1360.0, 1468.0], "mean": [-5.615421295166016, 9.74776554107666, 4.366483688354492, 69.7857437133789, -34.80536651611328, 16.197895050048828, -0.37115588784217834, 3.393425226211548, 1.0074231624603271, -4.9310712814331055, -0.3181336224079132, 1.4846235513687134, 550.0487670898438, 409.12408447265625, 451.9151611328125, 483.0880126953125, 534.3499755859375, 459.1219482421875], "std": [20.333377838134766, 27.52621078491211, 40.89577865600586, 15.768351554870605, 16.499282836914062, 6.325822830200195, 277.3766784667969, 490.8216552734375, 618.1259765625, 334.7012023925781, 270.3142395019531, 243.1427001953125, 523.6631469726562, 441.49786376953125, 488.6228942871094, 516.2909545898438, 521.5972290039062, 499.337158203125], "count": [943]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.567777615580546]], [[0.5669684784698193]], [[0.5594210207612457]]], "std": [[[0.17826051521316705]], [[0.18709564288170435]], [[0.18678518780353787]]], "count": [170]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6386141303825451]], [[0.6355987168396771]], [[0.625526791378316]]], "std": [[[0.28951706318748727]], [[0.292223644506297]], [[0.29343836070366597]]], "count": [170]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9058823529411765]], [[0.8980392156862745]], [[0.9098039215686274]]], "mean": [[[0.4771748702422145]], [[0.4799584967320261]], [[0.4872237516820454]]], "std": [[[0.17401809865778903]], [[0.17405257451014136]], [[0.17131735843965545]]], "count": [170]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4836945477700884]], [[0.4824034085447904]], [[0.4867452662437524]]], "std": [[[0.19558003823876124]], [[0.1970234843105935]], [[0.19629168954546344]]], "count": [170]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9411764705882353]], [[0.9333333333333333]], [[0.9450980392156862]]], "mean": [[[0.44237926158208385]], [[0.4464884851980008]], [[0.4629044454056132]]], "std": [[[0.20058590807262952]], [[0.20343534673256558]], [[0.2060550139774368]]], "count": [170]}, "timestamp": {"min": [0.0], "max": [31.4], "mean": [15.700000000000003], "std": [9.074016628691938], "count": [943]}, "frame_index": {"min": [0], "max": [942], "mean": [471.0], "std": [272.2204988607581], "count": [943]}, "episode_index": {"min": [79], "max": [79], "mean": [79.0], "std": [0.0], "count": [943]}, "index": {"min": [97427], "max": [98369], "mean": [97898.0], "std": [272.2204988607581], "count": [943]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [943]}}} +{"episode_index": 80, "stats": {"action": {"min": [-31.52293586730957, -100.0, -63.867454528808594, 18.528026580810547, -55.38623046875, 0.08143322169780731, -1400.0, -1550.0, -1500.0, -2000.0, -1850.0, -1400.0, -3.4495415687561035, -4.437002182006836, -4.720835208892822, -5.905006408691406, -3.3105621337890625, -3.9902281761169434], "max": [39.00917434692383, 52.113853454589844, 100.0, 93.75267791748047, 23.594324111938477, 24.429967880249023, 1450.0, 1500.0, 2150.0, 2250.0, 1400.0, 1750.0, 3.5963306427001953, 4.269561767578125, 6.536540985107422, 6.504066467285156, 2.469785690307617, 4.9674272537231445], "mean": [9.734798431396484, 3.605008125305176, 10.949706077575684, 68.69840240478516, -25.356252670288086, 14.773884773254395, -0.7337526082992554, -0.3668763041496277, -0.5241090059280396, 0.10482180118560791, -0.7861635088920593, -0.15723270177841187, -0.002461869502440095, 0.0011409143917262554, -6.397814900083176e-08, -8.970536873675883e-05, -0.0012668963754549623, 0.0005975176463834941], "std": [21.991222381591797, 27.81460952758789, 38.08408737182617, 14.99872875213623, 19.986347198486328, 9.204107284545898, 329.74371337890625, 486.5995788574219, 596.6844482421875, 388.9861755371094, 382.938720703125, 320.65093994140625, 0.8130569458007812, 1.361550211906433, 1.8200362920761108, 1.1165493726730347, 0.6715603470802307, 0.8739538192749023], "count": [954]}, "observation.state": {"min": [-31.284475326538086, -96.53179168701172, -61.36054611206055, 19.518272399902344, -55.04115295410156, 1.3413816690444946, -1250.0, -1650.0, -1450.0, -1850.0, -1600.0, -1450.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [38.455474853515625, 52.83237075805664, 99.81859588623047, 93.35548400878906, 23.251028060913086, 24.211938858032227, 1300.0, 1550.0, 1950.0, 1850.0, 1350.0, 1700.0, 1432.0, 1488.0, 1540.0, 1592.0, 1452.0, 1500.0], "mean": [9.594542503356934, 5.12960147857666, 12.196235656738281, 68.69620513916016, -25.418983459472656, 16.159391403198242, 1.7819706201553345, -1.3102725744247437, 0.10482180118560791, -7.127882480621338, 0.5241090059280396, 0.7337526082992554, 626.6666870117188, 530.5450439453125, 399.2746276855469, 547.03564453125, 671.6519775390625, 488.1425476074219], "std": [22.005197525024414, 28.068559646606445, 37.51636505126953, 14.70811653137207, 19.954349517822266, 7.116636753082275, 306.17694091796875, 520.00390625, 581.8941040039062, 360.9935607910156, 370.2648010253906, 286.66949462890625, 516.7823486328125, 471.87664794921875, 472.539794921875, 521.0740966796875, 510.1900939941406, 460.86187744140625], "count": [954]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5668679122233689]], [[0.5622090798551389]], [[0.5522190796640294]]], "std": [[[0.18107470484867533]], [[0.1894019240006404]], [[0.1890437098562546]]], "count": [171]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.641334241103849]], [[0.6366767608359133]], [[0.6248396459217215]]], "std": [[[0.2850619771091455]], [[0.2890086827350773]], [[0.2918895544618993]]], "count": [171]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8509803921568627]], [[0.8627450980392157]], [[0.8627450980392157]]], "mean": [[[0.4783450889615105]], [[0.48082748896342165]], [[0.48765118201276614]]], "std": [[[0.1738860518069595]], [[0.17467874320223503]], [[0.17237588921320987]]], "count": [171]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4772720659901387]], [[0.4768675407541184]], [[0.4828575158620953]]], "std": [[[0.18981714761228546]], [[0.19076087391418328]], [[0.1894398474032987]]], "count": [171]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9372549019607843]], [[0.9372549019607843]], [[0.9372549019607843]]], "mean": [[[0.4420310421683293]], [[0.44462420092305927]], [[0.45967172151511676]]], "std": [[[0.20287769553890508]], [[0.20535798737440417]], [[0.2081069794621419]]], "count": [171]}, "timestamp": {"min": [0.0], "max": [31.766666666666666], "mean": [15.883333333333335], "std": [9.17986423687232], "count": [954]}, "frame_index": {"min": [0], "max": [953], "mean": [476.5], "std": [275.3959271061696], "count": [954]}, "episode_index": {"min": [80], "max": [80], "mean": [80.0], "std": [0.0], "count": [954]}, "index": {"min": [98370], "max": [99323], "mean": [98846.5], "std": [275.3959271061696], "count": [954]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [954]}}} +{"episode_index": 81, "stats": {"action": {"min": [-32.99082565307617, -100.0, -41.1711311340332, 21.780059814453125, -81.50289154052734, 0.0, -1250.0, -1500.0, -1500.0, -1500.0, -1500.0, -1600.0, -3.009174346923828, -4.269573211669922, -4.5392608642578125, -4.535728454589844, -2.6274309158325195, -4.397394180297852], "max": [36.880733489990234, 43.74215316772461, 100.0, 90.4150619506836, -4.571728706359863, 34.690555572509766, 1200.0, 1750.0, 1950.0, 2250.0, 2250.0, 1750.0, 2.9357805252075195, 5.023021697998047, 5.991830825805664, 6.332904815673828, 3.941150665283203, 4.641694068908691], "mean": [-8.513622283935547, 5.051567554473877, 12.491056442260742, 62.147369384765625, -44.62423324584961, 18.0434627532959, 0.3216911852359772, 0.8272058963775635, -0.689338207244873, -0.41360294818878174, 0.9191176295280457, -0.873161792755127, -0.0008095196099020541, 0.00015400437405332923, 0.00025031145196408033, 0.0022024160716682673, 0.0017870388692244887, -0.0005987731274217367], "std": [21.600017547607422, 26.995084762573242, 38.0228385925293, 15.772912979125977, 17.415504455566406, 9.436537742614746, 308.2615966796875, 460.826416015625, 533.7952880859375, 345.54302978515625, 428.3648681640625, 329.8301086425781, 0.7601612210273743, 1.2883919477462769, 1.6274393796920776, 0.9917544722557068, 0.7570165991783142, 0.9004883766174316], "count": [1088]}, "observation.state": {"min": [-32.624114990234375, -96.45471954345703, -39.31972885131836, 22.840532302856445, -81.17283630371094, 1.2072434425354004, -1050.0, -1650.0, -1400.0, -1350.0, -1350.0, -1700.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [36.24901580810547, 43.73795700073242, 99.81859588623047, 89.95016479492188, -5.1954731941223145, 34.33937072753906, 1050.0, 1950.0, 1850.0, 1900.0, 2100.0, 1600.0, 1388.0, 1564.0, 1496.0, 1584.0, 1672.0, 1440.0], "mean": [-8.482904434204102, 6.547232627868652, 13.650233268737793, 62.234474182128906, -44.67234802246094, 19.00139808654785, 0.2757352888584137, 2.0220587253570557, 0.13786764442920685, -6.939338207244873, 0.78125, -0.5974264740943909, 454.8419189453125, 446.3676452636719, 459.2169189453125, 385.0625, 600.5147094726562, 410.33087158203125], "std": [21.506460189819336, 27.27927017211914, 37.366546630859375, 15.664791107177734, 17.3205509185791, 7.889236927032471, 287.0118408203125, 487.30767822265625, 517.0816650390625, 314.0845031738281, 419.0118713378906, 307.09576416015625, 513.6292724609375, 460.9585266113281, 483.416748046875, 496.6309509277344, 525.9028930664062, 466.3798522949219], "count": [1088]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5688363484282601]], [[0.5653165784832451]], [[0.5543089607756683]]], "std": [[[0.17921329496647434]], [[0.18622881524197712]], [[0.18687513571103828]]], "count": [189]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6429526068143306]], [[0.6382945477573745]], [[0.6266515728204862]]], "std": [[[0.28549173713964493]], [[0.2892360875656811]], [[0.2919895582286222]]], "count": [189]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9254901960784314]], [[0.9254901960784314]], [[0.9254901960784314]]], "mean": [[[0.47595129595047897]], [[0.4783588546529723]], [[0.4848846331742574]]], "std": [[[0.1756216033910307]], [[0.17635941579890546]], [[0.17438399942057187]]], "count": [189]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.46857080177750116]], [[0.46769264187156345]], [[0.4731256786665284]]], "std": [[[0.1933768767624057]], [[0.194408332090939]], [[0.19349282548727367]]], "count": [189]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9372549019607843]], [[0.9254901960784314]], [[0.9372549019607843]]], "mean": [[[0.4397857737230695]], [[0.4447564700262821]], [[0.4607270950046685]]], "std": [[[0.20169910810783734]], [[0.2051065783287188]], [[0.2078826464692385]]], "count": [189]}, "timestamp": {"min": [0.0], "max": [36.233333333333334], "mean": [18.116666666666667], "std": [10.469280459197439], "count": [1088]}, "frame_index": {"min": [0], "max": [1087], "mean": [543.5], "std": [314.07841377592314], "count": [1088]}, "episode_index": {"min": [81], "max": [81], "mean": [81.0], "std": [0.0], "count": [1088]}, "index": {"min": [99324], "max": [100411], "mean": [99867.5], "std": [314.07841377592314], "count": [1088]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1088]}}} +{"episode_index": 82, "stats": {"action": {"min": [-32.25688171386719, -100.0, -70.13163757324219, 27.5994873046875, -57.750919342041016, 1.0586318969726562, -1150.0, -1450.0, -1650.0, -1300.0, -1550.0, -1050.0, -2.8623852729797363, -3.934701919555664, -5.1747612953186035, -3.7655105590820312, -2.785076141357422, -2.7687301635742188], "max": [34.38532257080078, 50.523231506347656, 100.0, 97.94608306884766, 2.9427220821380615, 27.361562728881836, 1050.0, 1950.0, 1950.0, 1650.0, 1450.0, 1250.0, 2.642202377319336, 5.4416046142578125, 5.901044845581055, 4.706890106201172, 2.5223331451416016, 3.4201955795288086], "mean": [0.5962497591972351, 10.527134895324707, 0.7423868775367737, 68.09382629394531, -34.041080474853516, 17.308271408081055, -1.805728554725647, -4.358654975891113, 6.03985071182251, 1.120797038078308, 2.1793274879455566, 9.526774406433105, -0.004478613846004009, -0.013240206055343151, 0.022385507822036743, 0.0010657589882612228, 0.003337462432682514, 0.024845752865076065], "std": [18.5574893951416, 25.035505294799805, 35.8315544128418, 15.001686096191406, 15.510265350341797, 7.4461565017700195, 352.4149475097656, 513.235595703125, 640.4375, 390.1235656738281, 368.2344055175781, 264.4573974609375, 0.8661966323852539, 1.4280009269714355, 1.9453110694885254, 1.1180447340011597, 0.6458801031112671, 0.7194963693618774], "count": [803]}, "observation.state": {"min": [-32.15129852294922, -96.53179168701172, -67.4376449584961, 28.571428298950195, -57.76749038696289, 1.3413816690444946, -1100.0, -1500.0, -1600.0, -1150.0, -1450.0, -1100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [34.200157165527344, 51.44508743286133, 99.81859588623047, 97.17607879638672, 2.160493850708008, 26.96177101135254, 950.0, 2150.0, 1850.0, 1600.0, 1400.0, 1250.0, 1348.0, 1612.0, 1520.0, 1480.0, 1436.0, 1412.0], "mean": [0.4321867823600769, 12.258696556091309, 1.9178146123886108, 68.13055419921875, -34.09809875488281, 17.820878982543945, 0.12453299760818481, -1.2453299760818481, 0.06226649880409241, -4.7322540283203125, 2.241594076156616, 11.581568717956543, 662.6998901367188, 514.9140625, 459.9551696777344, 556.41845703125, 563.45703125, 427.2478332519531], "std": [18.4896183013916, 25.2240047454834, 35.15847396850586, 14.755850791931152, 15.457995414733887, 6.6033430099487305, 329.2883605957031, 547.1915283203125, 629.4135131835938, 375.4569396972656, 359.5458068847656, 262.7280578613281, 511.758056640625, 463.4129943847656, 492.0014953613281, 519.0272827148438, 525.8063354492188, 480.0146179199219], "count": [803]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.570047704248366]], [[0.566796531862745]], [[0.5531742946623094]]], "std": [[[0.17928753681586837]], [[0.18757909095086298]], [[0.18795285612912352]]], "count": [150]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.642819561546841]], [[0.637895769335512]], [[0.6260962295751633]]], "std": [[[0.2854784191105166]], [[0.289206024425326]], [[0.29194328673563047]]], "count": [150]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9490196078431372]], [[0.9137254901960784]], [[0.9254901960784314]]], "mean": [[[0.4734032475490196]], [[0.4763972181372549]], [[0.48461781590413944]]], "std": [[[0.17504726338895152]], [[0.17622469548550657]], [[0.1750801107161794]]], "count": [150]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4791033986928105]], [[0.47762526960784313]], [[0.48220881672113286]]], "std": [[[0.1920790812351618]], [[0.19304488479756193]], [[0.19239420223609405]]], "count": [150]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9254901960784314]], [[0.9254901960784314]], [[0.9254901960784314]]], "mean": [[[0.4388699332788671]], [[0.4438333510348584]], [[0.4594389460784314]]], "std": [[[0.20098613087008163]], [[0.20455692706186465]], [[0.20753075667895304]]], "count": [150]}, "timestamp": {"min": [0.0], "max": [26.733333333333334], "mean": [13.366666666666665], "std": [7.726865111055353], "count": [803]}, "frame_index": {"min": [0], "max": [802], "mean": [401.0], "std": [231.80595333166056], "count": [803]}, "episode_index": {"min": [82], "max": [82], "mean": [82.0], "std": [0.0], "count": [803]}, "index": {"min": [100412], "max": [101214], "mean": [100813.0], "std": [231.80595333166056], "count": [803]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [803]}}} +{"episode_index": 83, "stats": {"action": {"min": [-30.788990020751953, -97.23733520507812, -93.82659912109375, 36.499786376953125, -36.99422073364258, 0.5700325965881348, -1000.0, -1150.0, -1500.0, -1150.0, -1600.0, -1350.0, -2.422018527984619, -3.1812477111816406, -4.811620712280273, -3.2520294189453125, -2.837625503540039, -3.7459287643432617], "max": [36.220184326171875, 63.080787658691406, 100.0, 99.91442108154297, 1.4713610410690308, 31.514657974243164, 1350.0, 1400.0, 1450.0, 1250.0, 1500.0, 1800.0, 3.4495410919189453, 4.01841926574707, 4.720836639404297, 3.7655105590820312, 2.5748815536499023, 4.967426300048828], "mean": [-0.2735927402973175, 16.996814727783203, -12.869532585144043, 75.95532989501953, -22.62510108947754, 18.464412689208984, 3.197674512863159, 4.844961166381836, 1.7441860437393188, -6.928294658660889, -0.8720930218696594, 3.1492247581481934, 0.004693847149610519, 0.010221514850854874, 0.00994064286351204, -0.01791205070912838, -0.0002036747318925336, 0.008600989356637001], "std": [20.353374481201172, 27.065080642700195, 41.814247131347656, 15.798782348632812, 10.384242057800293, 10.920354843139648, 297.485595703125, 474.34710693359375, 575.0311279296875, 311.5943603515625, 242.46177673339844, 315.3628234863281, 0.7329561710357666, 1.322904348373413, 1.7518467903137207, 0.8954580426216125, 0.42448699474334717, 0.8513458967208862], "count": [1032]}, "observation.state": {"min": [-30.811662673950195, -96.53179168701172, -91.11111450195312, 37.37541580200195, -36.62551498413086, 2.1462106704711914, -950.0, -1250.0, -1400.0, -1050.0, -1200.0, -1400.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [35.61859893798828, 63.314064025878906, 99.72789001464844, 99.4186019897461, 1.2860082387924194, 31.455398559570312, 1200.0, 1550.0, 1450.0, 1200.0, 1250.0, 1600.0, 1424.0, 1460.0, 1392.0, 1388.0, 1428.0, 1532.0], "mean": [-0.4425777494907379, 18.613277435302734, -11.724306106567383, 76.06671905517578, -22.604278564453125, 19.563350677490234, 3.391472816467285, 6.25, 1.5988372564315796, -9.932170867919922, 0.5813953280448914, 4.408914566040039, 552.779052734375, 504.9806213378906, 472.531005859375, 480.22479248046875, 390.0658874511719, 465.3410949707031], "std": [20.322683334350586, 27.50965118408203, 41.30986404418945, 15.491870880126953, 10.325963973999023, 9.204300880432129, 278.532958984375, 502.5147705078125, 565.0548095703125, 302.7499694824219, 228.41824340820312, 298.5130615234375, 526.9837036132812, 463.5155944824219, 489.381591796875, 512.9982299804688, 497.4315490722656, 469.7626037597656], "count": [1032]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.575402864190548]], [[0.5710386736425339]], [[0.556137924881491]]], "std": [[[0.1791973048022434]], [[0.18648174302340095]], [[0.18574467708191414]]], "count": [182]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6442021834374775]], [[0.6390963805393952]], [[0.6269996745493068]]], "std": [[[0.2857837993960583]], [[0.2895893651706096]], [[0.29260236315822863]]], "count": [182]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9568627450980393]], [[0.8784313725490196]], [[0.8784313725490196]]], "mean": [[[0.4737255867090426]], [[0.475886237026862]], [[0.48416145047762693]]], "std": [[[0.17575832787949255]], [[0.17642904674561508]], [[0.1749619484321621]]], "count": [182]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47243351491237523]], [[0.4711074817747612]], [[0.47632488620448177]]], "std": [[[0.19170917576745072]], [[0.19301237858117165]], [[0.1920439707749694]]], "count": [182]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9294117647058824]], [[0.9294117647058824]], [[0.9333333333333333]]], "mean": [[[0.4387687594268477]], [[0.4436539864343173]], [[0.4592383342760181]]], "std": [[[0.20136435893861426]], [[0.2046799968060932]], [[0.20762635840543123]]], "count": [182]}, "timestamp": {"min": [0.0], "max": [34.36666666666667], "mean": [17.183333333333334], "std": [9.930419967994341], "count": [1032]}, "frame_index": {"min": [0], "max": [1031], "mean": [515.5], "std": [297.91259903983024], "count": [1032]}, "episode_index": {"min": [83], "max": [83], "mean": [83.0], "std": [0.0], "count": [1032]}, "index": {"min": [101215], "max": [102246], "mean": [101730.5], "std": [297.91259903983024], "count": [1032]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1032]}}} +{"episode_index": 84, "stats": {"action": {"min": [-32.33027648925781, -100.0, -69.40535736083984, 31.707317352294922, -45.55964279174805, 4.7231268882751465, -950.0, -1550.0, -2200.0, -1650.0, -1750.0, -1350.0, -2.2752304077148438, -4.437004089355469, -6.627326488494873, -4.8780517578125, -3.100368022918701, -3.7459287643432617], "max": [42.018348693847656, 53.03474426269531, 99.81842803955078, 99.14420318603516, 0.4203888475894928, 29.967426300048828, 1000.0, 1750.0, 1850.0, 1450.0, 950.0, 1250.0, 2.422018051147461, 4.939308166503906, 5.53790283203125, 4.193408966064453, 1.7341041564941406, 3.5830612182617188], "mean": [5.770717144012451, 14.979464530944824, -5.657334327697754, 70.84882354736328, -25.100976943969727, 18.859487533569336, -0.36086606979370117, -1.7241379022598267, 0.8821170926094055, 0.6415396928787231, 0.0400962308049202, -1.4434642791748047, 0.00047086263657547534, -0.004296416882425547, 0.006188372150063515, -0.0028823998291045427, -0.001643459778279066, -0.003656985703855753], "std": [20.012603759765625, 25.160980224609375, 37.86381149291992, 14.539551734924316, 11.604629516601562, 8.54071044921875, 272.09454345703125, 430.4259948730469, 543.2710571289062, 311.0429382324219, 258.4769592285156, 220.21580505371094, 0.6698724031448364, 1.2006285190582275, 1.6516294479370117, 0.886355996131897, 0.4557074308395386, 0.5975139141082764], "count": [1247]}, "observation.state": {"min": [-31.993696212768555, -96.6859359741211, -66.71202087402344, 32.47508239746094, -45.37036895751953, 6.975184440612793, -850.0, -1700.0, -2100.0, -1550.0, -1550.0, -1250.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [41.21355438232422, 53.680152893066406, 99.5464859008789, 98.25581359863281, 0.2572016417980194, 29.71160316467285, 900.0, 1900.0, 1750.0, 1450.0, 950.0, 1200.0, 1328.0, 1552.0, 1472.0, 1416.0, 1344.0, 1404.0], "mean": [5.655237674713135, 16.471973419189453, -4.436904430389404, 70.98866271972656, -25.1449031829834, 19.354061126708984, 2.2052927017211914, -0.24057738482952118, 0.0, -4.009623050689697, 0.36086606979370117, -3.728949546813965, 555.1275024414062, 407.92620849609375, 452.7762756347656, 393.7481994628906, 570.4827880859375, 571.2974853515625], "std": [19.992830276489258, 25.2443904876709, 37.309906005859375, 14.398032188415527, 11.552634239196777, 7.595493316650391, 252.4001922607422, 459.6602478027344, 531.4027099609375, 302.81341552734375, 251.654052734375, 221.91339111328125, 523.0545043945312, 448.626953125, 483.0532531738281, 496.17193603515625, 520.0326538085938, 488.4256286621094], "count": [1247]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5752170495590581]], [[0.5704259223426212]], [[0.5564029712762298]]], "std": [[[0.17938473199822758]], [[0.18732123343829787]], [[0.18603450371133157]]], "count": [209]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6428936247146386]], [[0.6377511932404542]], [[0.6253806349094663]]], "std": [[[0.28545484889108996]], [[0.28930773445354435]], [[0.2922756833215392]]], "count": [209]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9254901960784314]], [[0.8901960784313725]], [[0.8823529411764706]]], "mean": [[[0.4740594030475029]], [[0.4760074242815149]], [[0.48381644033211374]]], "std": [[[0.17676482584277092]], [[0.17753872968233597]], [[0.17626985106277968]]], "count": [209]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4748730044250555]], [[0.47337849469931514]], [[0.4780139641382869]]], "std": [[[0.1915233714713458]], [[0.1929058900975827]], [[0.19205437755435956]]], "count": [209]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9490196078431372]], [[0.9254901960784314]], [[0.9450980392156862]]], "mean": [[[0.4397672604528255]], [[0.4423653338727836]], [[0.4580023493448416]]], "std": [[[0.2023039842584658]], [[0.20462828561130153]], [[0.20749508005591333]]], "count": [209]}, "timestamp": {"min": [0.0], "max": [41.53333333333333], "mean": [20.766666666666666], "std": [11.99925923639548], "count": [1247]}, "frame_index": {"min": [0], "max": [1246], "mean": [623.0], "std": [359.97777709186437], "count": [1247]}, "episode_index": {"min": [84], "max": [84], "mean": [84.0], "std": [0.0], "count": [1247]}, "index": {"min": [102247], "max": [103493], "mean": [102870.0], "std": [359.97777709186437], "count": [1247]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1247]}}} +{"episode_index": 85, "stats": {"action": {"min": [-32.7706413269043, -95.98158264160156, -85.29278564453125, 15.019255638122559, -47.87178039550781, 0.40716612339019775, -1350.0, -1550.0, -1650.0, -2200.0, -1200.0, -1150.0, -3.3027524948120117, -4.269569396972656, -5.265544891357422, -6.504062652587891, -2.259589672088623, -3.0130300521850586], "max": [41.50458526611328, 61.322731018066406, 100.0, 100.0, -0.6831318736076355, 24.429967880249023, 1000.0, 1300.0, 2350.0, 1950.0, 1000.0, 1200.0, 2.4220190048217773, 3.6835479736328125, 7.262823104858398, 5.562686920166016, 1.7866535186767578, 3.094463348388672], "mean": [4.734618186950684, 15.27277660369873, -8.654451370239258, 74.13880157470703, -23.4919490814209, 16.06234359741211, -2.4127309322357178, 0.0, 1.3347022533416748, -5.23613977432251, 0.5133470296859741, -3.1314167976379395, -0.004370513372123241, -0.0026644915342330933, 0.007177216000854969, -0.010983034037053585, 0.00032370633562095463, -0.007022988051176071], "std": [21.650808334350586, 26.585580825805664, 41.02001953125, 15.465568542480469, 12.918509483337402, 7.5014495849609375, 349.9512939453125, 508.40863037109375, 655.115234375, 374.60198974609375, 293.9581298828125, 232.6475830078125, 0.8625955581665039, 1.4198788404464722, 1.9971842765808105, 1.0885661840438843, 0.5159910321235657, 0.6331325769424438], "count": [974]}, "observation.state": {"min": [-32.545310974121094, -96.6088638305664, -82.85713958740234, 16.196012496948242, -47.839508056640625, 1.2072434425354004, -1250.0, -1700.0, -1600.0, -2050.0, -900.0, -1150.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [40.898345947265625, 62.157997131347656, 99.81859588623047, 99.25249481201172, -0.7716049551963806, 24.211938858032227, 950.0, 1350.0, 2250.0, 1550.0, 900.0, 1150.0, 1336.0, 1428.0, 1608.0, 1496.0, 1320.0, 1364.0], "mean": [4.605073928833008, 16.983659744262695, -7.435964107513428, 74.35585021972656, -23.54004669189453, 16.844449996948242, -1.74537992477417, 3.5420944690704346, 1.5913758277893066, -15.708418846130371, 0.975359320640564, -3.1314167976379395, 645.9342651367188, 451.49896240234375, 425.05133056640625, 447.5729064941406, 533.0924072265625, 380.18890380859375], "std": [21.595754623413086, 26.87347412109375, 40.34193420410156, 15.050406455993652, 12.836132049560547, 6.372634410858154, 325.20233154296875, 537.6541137695312, 639.4615478515625, 346.2913513183594, 286.03961181640625, 234.53732299804688, 515.4697265625, 458.9985046386719, 485.8555603027344, 508.03326416015625, 523.9874267578125, 455.5240173339844], "count": [974]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5760029510367366]], [[0.5717705680452257]], [[0.5576711378277364]]], "std": [[[0.18010634726298264]], [[0.18786173522453403]], [[0.18706210228085082]]], "count": [174]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.640476431616708]], [[0.6360641339869282]], [[0.6248345752573059]]], "std": [[[0.2883763876252358]], [[0.29168415188279995]], [[0.2937141923746884]]], "count": [174]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[0.9294117647058824]], [[0.9058823529411765]]], "mean": [[[0.47506531134963564]], [[0.47754970043572986]], [[0.48619381057020505]]], "std": [[[0.17399594313821123]], [[0.17403566729826525]], [[0.17134348062527147]]], "count": [174]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.475773995661483]], [[0.47456142476147545]], [[0.47997988270978886]]], "std": [[[0.19227845952050454]], [[0.19354425838486752]], [[0.1924448059062234]]], "count": [174]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9372549019607843]], [[0.9372549019607843]], [[0.9333333333333333]]], "mean": [[[0.43872264010968376]], [[0.4429377676357899]], [[0.45854100462023895]]], "std": [[[0.20106565258328066]], [[0.20449709413627082]], [[0.20745966910030436]]], "count": [174]}, "timestamp": {"min": [0.0], "max": [32.43333333333333], "mean": [16.216666666666665], "std": [9.372314430159596], "count": [974]}, "frame_index": {"min": [0], "max": [973], "mean": [486.5], "std": [281.16943290478787], "count": [974]}, "episode_index": {"min": [85], "max": [85], "mean": [85.0], "std": [0.0], "count": [974]}, "index": {"min": [103494], "max": [104467], "mean": [103980.5], "std": [281.16943290478787], "count": [974]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [974]}}} +{"episode_index": 86, "stats": {"action": {"min": [-31.449541091918945, -100.0, -63.9582405090332, 16.388532638549805, -61.6395149230957, 0.6514657735824585, -1100.0, -1450.0, -1700.0, -2400.0, -1250.0, -1200.0, -2.7889907360076904, -3.9347076416015625, -5.174762725830078, -7.017543792724609, -2.2070417404174805, -3.257328987121582], "max": [34.825687408447266, 61.49016189575195, 100.0, 92.12665557861328, -4.151340007781982, 32.08469009399414, 1000.0, 1800.0, 1800.0, 1900.0, 900.0, 2150.0, 2.422018051147461, 5.106739044189453, 5.447117328643799, 5.562690734863281, 1.6290092468261719, 5.7817583084106445], "mean": [1.2792391777038574, 25.128232955932617, -22.714488983154297, 74.25469207763672, -26.89002799987793, 16.392303466796875, -1.1131725311279297, -2.2263450622558594, 1.948051929473877, -0.04638218879699707, -2.087198495864868, -0.4638218879699707, -0.0008851008606143296, -0.007532873656600714, 0.010442900471389294, 0.0015877456171438098, -0.001657376647926867, -7.554252806585282e-05], "std": [21.002456665039062, 24.36153793334961, 33.42645263671875, 13.684844970703125, 11.671988487243652, 9.82172679901123, 305.9980163574219, 444.28961181640625, 430.4822998046875, 324.011962890625, 227.6107940673828, 282.563232421875, 0.7536189556121826, 1.2375264167785645, 1.311065435409546, 0.9291722178459167, 0.39832010865211487, 0.7723557353019714], "count": [1078]}, "observation.state": {"min": [-31.442079544067383, -96.14643859863281, -64.35374450683594, 17.44186019897461, -61.471195220947266, 1.2072434425354004, -1000.0, -1500.0, -1700.0, -2150.0, -1000.0, -1250.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [34.59416961669922, 60.154144287109375, 99.90929412841797, 92.19268798828125, -3.8580245971679688, 31.589536666870117, 900.0, 2000.0, 1700.0, 1750.0, 850.0, 2000.0, 1340.0, 1576.0, 1460.0, 1552.0, 1312.0, 1628.0], "mean": [1.1275664567947388, 26.841026306152344, -21.777082443237305, 74.4062728881836, -26.89228630065918, 17.547164916992188, -0.649350643157959, 2.040816307067871, 0.41743969917297363, -6.771799564361572, -0.3246753215789795, 1.7161409854888916, 622.71240234375, 431.72540283203125, 316.2597351074219, 430.1038818359375, 493.3098449707031, 438.86456298828125], "std": [20.974740982055664, 24.399940490722656, 33.27204513549805, 13.387636184692383, 11.659503936767578, 8.265625, 284.6479797363281, 465.6130065917969, 424.7636413574219, 293.5302429199219, 217.3318634033203, 284.4602966308594, 518.4329223632812, 445.9814758300781, 442.14007568359375, 505.35626220703125, 516.0146484375, 455.68408203125], "count": [1078]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5752898349499374]], [[0.5717384512759005]], [[0.561458427852524]]], "std": [[[0.18049291988671284]], [[0.18789889541319665]], [[0.18798550992647756]]], "count": [188]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6366458843954248]], [[0.6336275911295369]], [[0.6235961955482547]]], "std": [[[0.29191992661530203]], [[0.2943700109676467]], [[0.2950655851576413]]], "count": [188]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9411764705882353]], [[0.9254901960784314]], [[0.9176470588235294]]], "mean": [[[0.4727503281010986]], [[0.4753526858660131]], [[0.48383179169274093]]], "std": [[[0.1743633814028801]], [[0.17424709375875158]], [[0.17157203124078474]]], "count": [188]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48126967520164093]], [[0.479873770164094]], [[0.48475269759942985]]], "std": [[[0.19586044452049287]], [[0.1969232142689383]], [[0.19561723422732016]]], "count": [188]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9254901960784314]], [[0.9215686274509803]], [[0.9333333333333333]]], "mean": [[[0.44003432024405503]], [[0.442653075458907]], [[0.4585492119055069]]], "std": [[[0.200237767490649]], [[0.2027215632041171]], [[0.20521510753038463]]], "count": [188]}, "timestamp": {"min": [0.0], "max": [35.9], "mean": [17.95], "std": [10.373055373311077], "count": [1078]}, "frame_index": {"min": [0], "max": [1077], "mean": [538.5], "std": [311.19166119933226], "count": [1078]}, "episode_index": {"min": [86], "max": [86], "mean": [86.0], "std": [0.0], "count": [1078]}, "index": {"min": [104468], "max": [105545], "mean": [105006.5], "std": [311.19166119933226], "count": [1078]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1078]}}} +{"episode_index": 87, "stats": {"action": {"min": [-35.55963134765625, -97.40476989746094, -51.33908462524414, 35.558406829833984, -73.9358901977539, 0.48859935998916626, -1050.0, -1400.0, -1450.0, -1450.0, -1650.0, -1100.0, -2.495412826538086, -3.850984573364258, -4.90240478515625, -4.27899169921875, -2.9427223205566406, -3.257328987121582], "max": [34.678897857666016, 53.20217514038086, 100.0, 95.1219482421875, 4.571728706359863, 42.34527587890625, 1100.0, 1900.0, 2200.0, 1050.0, 1600.0, 1950.0, 2.7155961990356445, 5.609039306640625, 6.808897018432617, 3.08087158203125, 2.8376245498657227, 5.3745927810668945], "mean": [0.0014035131316632032, 21.474191665649414, -13.75344181060791, 66.9041748046875, -40.19557571411133, 17.931917190551758, 1.6901408433914185, 1.6901408433914185, 2.2183098793029785, 0.246478870511055, 3.5915493965148926, 3.9084506034851074, 0.0029978009406477213, 0.005011386703699827, 0.008119462057948112, -0.000482140138046816, 0.005328870844095945, 0.007741892710328102], "std": [20.86099624633789, 26.467754364013672, 37.02838897705078, 11.544032096862793, 15.446096420288086, 11.137154579162598, 280.2854309082031, 381.5965576171875, 390.5533447265625, 222.5055389404297, 332.35491943359375, 254.11630249023438, 0.6902601718902588, 1.064074993133545, 1.1894475221633911, 0.6428077816963196, 0.5829354524612427, 0.6981120109558105], "count": [1420]}, "observation.state": {"min": [-35.3821907043457, -96.53179168701172, -48.57143020629883, 36.71096420288086, -73.76543426513672, 1.2743124961853027, -1000.0, -1450.0, -1400.0, -1350.0, -1600.0, -1000.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [34.278961181640625, 51.98458480834961, 98.36734771728516, 94.68438720703125, 4.423868179321289, 41.851104736328125, 1000.0, 2000.0, 2050.0, 950.0, 1400.0, 2050.0, 1364.0, 1584.0, 1568.0, 1336.0, 1476.0, 1636.0], "mean": [-0.17166519165039062, 22.90857696533203, -12.92244815826416, 67.04297637939453, -40.30089569091797, 19.17005157470703, 1.1267606019973755, 4.119718074798584, 0.2112676054239273, -2.007042169570923, 4.330986022949219, 4.47183084487915, 587.0394287109375, 367.2225341796875, 303.3830871582031, 397.1577453613281, 617.5324096679688, 324.1408386230469], "std": [20.8503360748291, 26.63968276977539, 36.899173736572266, 11.40747356414795, 15.334029197692871, 9.541345596313477, 262.1654052734375, 400.4471435546875, 383.08880615234375, 212.80613708496094, 322.802001953125, 248.07960510253906, 523.3285522460938, 433.6961669921875, 437.0516662597656, 493.66778564453125, 521.514892578125, 413.38922119140625], "count": [1420]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5736320319794584]], [[0.5690940665407578]], [[0.554503425360043]]], "std": [[[0.17903359092906507]], [[0.1856955128068462]], [[0.18498759215732705]]], "count": [231]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6425799857821917]], [[0.6382041387261975]], [[0.6264348262032085]]], "std": [[[0.28633649268516387]], [[0.28981232516027106]], [[0.2922276700927994]]], "count": [231]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8705882352941177]], [[0.8509803921568627]], [[0.8509803921568627]]], "mean": [[[0.47671242537419006]], [[0.47840084758650936]], [[0.4832872678111649]]], "std": [[[0.17238633938638093]], [[0.17505566972773745]], [[0.1746986316936984]]], "count": [231]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47705042370483547]], [[0.47547597208075154]], [[0.4793489985640721]]], "std": [[[0.19375410155545464]], [[0.19480340237454505]], [[0.19436833683397192]]], "count": [231]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9019607843137255]], [[0.8980392156862745]], [[0.8862745098039215]]], "mean": [[[0.43720496809835047]], [[0.4426280946722123]], [[0.4580456587938206]]], "std": [[[0.20164787821813135]], [[0.2052744549787744]], [[0.20883669648301176]]], "count": [231]}, "timestamp": {"min": [0.0], "max": [47.3], "mean": [23.65], "std": [13.663952982614918], "count": [1420]}, "frame_index": {"min": [0], "max": [1419], "mean": [709.5], "std": [409.91858947844753], "count": [1420]}, "episode_index": {"min": [87], "max": [87], "mean": [87.0], "std": [0.0], "count": [1420]}, "index": {"min": [105546], "max": [106965], "mean": [106255.5], "std": [409.91858947844753], "count": [1420]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1420]}}} +{"episode_index": 88, "stats": {"action": {"min": [-33.724769592285156, -99.24654388427734, -45.71039581298828, 37.35558319091797, -59.642669677734375, 0.8143322467803955, -950.0, -1150.0, -1450.0, -900.0, -1450.0, -1250.0, -2.3486242294311523, -3.4323978424072266, -4.448479175567627, -2.5673980712890625, -2.469784736633301, -3.338761329650879], "max": [38.56880569458008, 46.588531494140625, 97.45801544189453, 95.37869262695312, 1.4188123941421509, 35.01628494262695, 1350.0, 1250.0, 1700.0, 1200.0, 1800.0, 1400.0, 3.3761472702026367, 3.4323978424072266, 5.265546798706055, 3.4231910705566406, 3.152916431427002, 3.827362060546875], "mean": [4.3652496337890625, 12.63228702545166, 0.6382533311843872, 63.7291374206543, -34.675514221191406, 16.91803741455078, -0.5263158082962036, 0.0, -0.04048582911491394, -1.4979757070541382, -2.793522357940674, 0.8906882405281067, -0.0018422964494675398, -0.00047432593419216573, 0.005880746524780989, -0.002148159546777606, -0.0036167199723422527, 0.00580253079533577], "std": [21.945337295532227, 23.359973907470703, 27.248380661010742, 13.419593811035156, 12.418289184570312, 8.878499984741211, 298.9278259277344, 393.0813903808594, 399.2531433105469, 240.7144775390625, 303.95904541015625, 242.28721618652344, 0.7375324368476868, 1.0996514558792114, 1.2121046781539917, 0.6926211714744568, 0.5341278910636902, 0.6565052270889282], "count": [1235]}, "observation.state": {"min": [-33.490936279296875, -96.53179168701172, -45.850341796875, 37.541526794433594, -59.46501922607422, 3.957075834274292, -900.0, -1250.0, -1300.0, -950.0, -1100.0, -1100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [37.982662200927734, 46.35838317871094, 99.09297180175781, 95.01660919189453, 1.183127522468567, 34.80885314941406, 1200.0, 1250.0, 1650.0, 1150.0, 1650.0, 1450.0, 1416.0, 1372.0, 1428.0, 1372.0, 1520.0, 1464.0], "mean": [4.260864734649658, 14.083467483520508, 1.6739611625671387, 63.81796646118164, -34.737884521484375, 17.874954223632812, -1.093117356300354, 2.429149866104126, -1.093117356300354, -3.2793521881103516, -1.214574933052063, 2.672064781188965, 547.5465698242188, 443.06396484375, 362.953857421875, 480.0194396972656, 532.9781494140625, 515.8218383789062], "std": [21.916166305541992, 23.46363067626953, 27.17597198486328, 13.307466506958008, 12.444856643676758, 7.37615966796875, 278.8359375, 410.8079528808594, 388.9365234375, 231.881103515625, 292.4455261230469, 223.90884399414062, 523.7108154296875, 456.59423828125, 454.09124755859375, 509.8002624511719, 523.626953125, 474.0581359863281], "count": [1235]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5615256626288336]], [[0.5600155179660006]], [[0.5529141636422197]]], "std": [[[0.17787341433581358]], [[0.18637915827129564]], [[0.18605370759349432]]], "count": [208]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6442217823026646]], [[0.6398927902290724]], [[0.6283397043112117]]], "std": [[[0.28707501270951147]], [[0.2907399337276456]], [[0.2931458581394927]]], "count": [208]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9215686274509803]], [[0.8745098039215686]], [[0.8745098039215686]]], "mean": [[[0.4782152974170437]], [[0.48053676568784565]], [[0.48656443152180745]]], "std": [[[0.1729469264688485]], [[0.17435565716736234]], [[0.17246362245087182]]], "count": [208]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47980783076451733]], [[0.4788358834920186]], [[0.48353123036073403]]], "std": [[[0.1922862796856852]], [[0.193522388571752]], [[0.19281095832304126]]], "count": [208]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8784313725490196]], [[0.8705882352941177]], [[0.8745098039215686]]], "mean": [[[0.4387989076640271]], [[0.44420035193564605]], [[0.4598636013700352]]], "std": [[[0.20135172408461932]], [[0.20515742097754494]], [[0.20844185803753576]]], "count": [208]}, "timestamp": {"min": [0.0], "max": [41.13333333333333], "mean": [20.56666666666667], "std": [11.883789145068354], "count": [1235]}, "frame_index": {"min": [0], "max": [1234], "mean": [617.0], "std": [356.5136743520506], "count": [1235]}, "episode_index": {"min": [88], "max": [88], "mean": [88.0], "std": [0.0], "count": [1235]}, "index": {"min": [106966], "max": [108200], "mean": [107583.0], "std": [356.5136743520506], "count": [1235]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1235]}}} +{"episode_index": 89, "stats": {"action": {"min": [-34.532108306884766, -100.0, -94.18974304199219, 10.226786613464355, -67.26221466064453, 0.08143322169780731, -1400.0, -1650.0, -1350.0, -1150.0, -1700.0, -2050.0, -3.3761467933654785, -4.604437828063965, -4.17612361907959, -3.166454315185547, -3.047819137573242, -5.781758785247803], "max": [35.55963134765625, 56.467140197753906, 100.0, 100.0, -2.2070415019989014, 22.638437271118164, 1050.0, 1650.0, 2100.0, 2350.0, 1400.0, 1300.0, 2.7889909744262695, 4.771871566772461, 6.445758819580078, 7.274282455444336, 2.5748825073242188, 3.501628875732422], "mean": [-2.1334922313690186, 25.36888885498047, -26.27992057800293, 71.87909698486328, -32.82035446166992, 14.489550590515137, 5.330151081085205, -0.6762132048606873, 0.0397772490978241, -0.4375497102737427, 1.98886239528656, -2.4264121055603027, 0.017224622890353203, -0.0004662943829316646, 1.2139052429915864e-08, 0.0008169885841198266, 0.0018394090002402663, -0.008875378407537937], "std": [22.074960708618164, 30.135032653808594, 40.54970169067383, 18.985044479370117, 17.808914184570312, 7.47855806350708, 289.2802734375, 439.57659912109375, 401.535888671875, 281.3722229003906, 339.84051513671875, 240.00213623046875, 0.7137153148651123, 1.2269247770309448, 1.2295968532562256, 0.8036797046661377, 0.6001090407371521, 0.6509252786636353], "count": [1257]}, "observation.state": {"min": [-34.200157165527344, -96.6859359741211, -91.65532684326172, 11.378737449645996, -66.87242889404297, 1.2072434425354004, -1250.0, -1700.0, -1300.0, -1000.0, -1550.0, -1700.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [34.98817825317383, 56.53179168701172, 99.90929412841797, 99.50166320800781, -2.314814805984497, 22.468141555786133, 1000.0, 1750.0, 1950.0, 1850.0, 1350.0, 1150.0, 1344.0, 1536.0, 1540.0, 1572.0, 1480.0, 1388.0], "mean": [-2.2900304794311523, 27.086490631103516, -25.02419662475586, 72.04444885253906, -32.843719482421875, 15.698572158813477, 4.614160537719727, 1.3524264097213745, 0.2784407436847687, -6.165473461151123, 0.7557677030563354, -3.4208433628082275, 551.2935791015625, 430.4311828613281, 327.8281555175781, 428.0763854980469, 451.1789855957031, 489.1519470214844], "std": [22.07158660888672, 30.28705406188965, 40.285465240478516, 18.875507354736328, 17.780887603759766, 5.5354413986206055, 268.838134765625, 462.03662109375, 391.7580871582031, 254.2327423095703, 335.5511779785156, 210.239990234375, 525.3683471679688, 447.4749755859375, 427.4226989746094, 499.0308837890625, 518.0011596679688, 462.5791931152344], "count": [1257]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5624998731917727]], [[0.5618318377706533]], [[0.5547001401666513]]], "std": [[[0.17864729096679824]], [[0.1865009391880577]], [[0.18622521728119493]]], "count": [211]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.641166686994703]], [[0.6367777942338073]], [[0.6253469782857851]]], "std": [[[0.2866791606005932]], [[0.2902826540121735]], [[0.2924563579847667]]], "count": [211]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9254901960784314]], [[0.9254901960784314]], [[0.9176470588235294]]], "mean": [[[0.4743127981445343]], [[0.47678784693182175]], [[0.4837312197983459]]], "std": [[[0.17470617303540115]], [[0.17591968118129858]], [[0.1742576857657108]]], "count": [211]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4683723525152557]], [[0.4678496306105381]], [[0.473124843183719]]], "std": [[[0.19235580824875165]], [[0.19323776535077772]], [[0.19200655580733467]]], "count": [211]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9019607843137255]], [[0.8666666666666667]], [[0.8666666666666667]]], "mean": [[[0.4389838527630641]], [[0.4414081075953288]], [[0.45734897817736886]]], "std": [[[0.20205758678035785]], [[0.20529755647000003]], [[0.20866321424511797]]], "count": [211]}, "timestamp": {"min": [0.0], "max": [41.86666666666667], "mean": [20.93333333333333], "std": [12.095484311954637], "count": [1257]}, "frame_index": {"min": [0], "max": [1256], "mean": [628.0], "std": [362.8645293586391], "count": [1257]}, "episode_index": {"min": [89], "max": [89], "mean": [89.0], "std": [0.0], "count": [1257]}, "index": {"min": [108201], "max": [109457], "mean": [108829.0], "std": [362.8645293586391], "count": [1257]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1257]}}} +{"episode_index": 90, "stats": {"action": {"min": [-32.91743087768555, -97.57220458984375, -63.685882568359375, 22.29353904724121, -59.0120849609375, 0.0, -1300.0, -1500.0, -1300.0, -1900.0, -1250.0, -1650.0, -3.2293577194213867, -4.102134704589844, -3.9945526123046875, -5.905006408691406, -2.2595901489257812, -4.7231268882751465], "max": [34.38532257080078, 55.62997055053711, 100.0, 99.91442108154297, 0.2101944237947464, 25.48859977722168, 950.0, 1550.0, 1900.0, 1650.0, 1400.0, 1650.0, 2.3486239910125732, 4.437004089355469, 5.628688812255859, 4.706890106201172, 2.417234420776367, 4.397394180297852], "mean": [0.8866533637046814, 12.22425651550293, 0.4322650134563446, 69.13285827636719, -30.02309226989746, 16.058704376220703, 1.5704584121704102, -4.9235992431640625, 7.852292060852051, -3.8200340270996094, 1.0611205101013184, 0.0, 0.003987452946603298, -0.018264073878526688, 0.025123920291662216, -0.008209267631173134, 0.001962769078090787, -6.912813114468008e-05], "std": [22.39859390258789, 23.38226318359375, 36.77376174926758, 14.459158897399902, 17.116230010986328, 8.48196792602539, 290.1530456542969, 411.0186767578125, 500.9968566894531, 334.7430114746094, 314.95794677734375, 265.8074035644531, 0.7171192169189453, 1.1422494649887085, 1.5270791053771973, 0.9646019339561462, 0.5547930002212524, 0.7197035551071167], "count": [1178]}, "observation.state": {"min": [-32.624114990234375, -91.13680267333984, -63.083900451660156, 23.338871002197266, -59.00205612182617, 1.2072434425354004, -1250.0, -1550.0, -1200.0, -1750.0, -1000.0, -1400.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [34.12135696411133, 55.3757209777832, 99.72789001464844, 99.0033187866211, 0.15432098507881165, 25.15090560913086, 850.0, 1700.0, 1700.0, 1400.0, 1300.0, 1500.0, 1324.0, 1504.0, 1480.0, 1444.0, 1388.0, 1476.0], "mean": [0.7816692590713501, 13.996781349182129, 1.5015289783477783, 69.2996826171875, -30.05846405029297, 17.09589195251465, 2.079796314239502, 1.4431239366531372, 2.6740238666534424, -9.677419662475586, 1.6553480625152588, -1.7402377128601074, 564.8726806640625, 393.1171569824219, 416.3905029296875, 403.14093017578125, 486.9473571777344, 412.332763671875], "std": [22.4067325592041, 23.528804779052734, 36.15910339355469, 14.176027297973633, 17.07044792175293, 6.926942825317383, 270.7240295410156, 437.1264343261719, 495.4623107910156, 315.32672119140625, 306.9839782714844, 240.18011474609375, 523.1854248046875, 429.8045959472656, 476.3050842285156, 499.018310546875, 521.1229248046875, 457.6966247558594], "count": [1178]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5739356587162228]], [[0.5729497955484018]], [[0.565288623264397]]], "std": [[[0.1797145332505056]], [[0.1876160032536212]], [[0.18801027573131165]]], "count": [201]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6377930069830585]], [[0.6346976158830032]], [[0.6244935168926609]]], "std": [[[0.2909485730957059]], [[0.29375248144441035]], [[0.2947472597659107]]], "count": [201]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9411764705882353]], [[0.8823529411764706]], [[0.8823529411764706]]], "mean": [[[0.4768988015396872]], [[0.479799299052125]], [[0.4885122813221474]]], "std": [[[0.17312057355799015]], [[0.17298401302042732]], [[0.1702782415006531]]], "count": [201]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47632446631222974]], [[0.4747791678860599]], [[0.47939040195265503]]], "std": [[[0.19285732314621698]], [[0.19410055000466495]], [[0.19326384459669138]]], "count": [201]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8666666666666667]], [[0.8627450980392157]], [[0.8705882352941177]]], "mean": [[[0.4400152220921536]], [[0.4441915179006926]], [[0.46016071399538255]]], "std": [[[0.20155767086008278]], [[0.20440899664131706]], [[0.20740557436225485]]], "count": [201]}, "timestamp": {"min": [0.0], "max": [39.233333333333334], "mean": [19.616666666666667], "std": [11.335306200834042], "count": [1178]}, "frame_index": {"min": [0], "max": [1177], "mean": [588.5], "std": [340.05918602502123], "count": [1178]}, "episode_index": {"min": [90], "max": [90], "mean": [90.0], "std": [0.0], "count": [1178]}, "index": {"min": [109458], "max": [110635], "mean": [110046.5], "std": [340.05918602502123], "count": [1178]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1178]}}} +{"episode_index": 91, "stats": {"action": {"min": [-40.33027648925781, -93.88865661621094, -55.061279296875, 21.60890007019043, -68.36573791503906, 0.32573288679122925, -1150.0, -1150.0, -1450.0, -2000.0, -1500.0, -1150.0, -2.9357800483703613, -3.3486785888671875, -4.448478698730469, -5.819427490234375, -2.627429962158203, -3.3387622833251953], "max": [36.587154388427734, 48.26287078857422, 100.0, 100.0, -0.2101944237947464, 29.723127365112305, 1200.0, 1450.0, 1950.0, 1400.0, 1400.0, 1600.0, 3.082568645477295, 4.102138519287109, 6.082614421844482, 3.9366722106933594, 2.3121395111083984, 4.397394180297852], "mean": [-7.385363578796387, 15.715038299560547, -6.076106548309326, 67.4373550415039, -31.244840621948242, 15.029623031616211, -0.13550135493278503, 3.568202257156372, 1.8066847324371338, -9.98193359375, -1.5808491706848145, -0.6775068044662476, -0.001591257518157363, 0.008394559845328331, 0.007954929023981094, -0.022651197388768196, -0.0014240788295865059, 7.356327841989696e-05], "std": [23.716936111450195, 23.658004760742188, 31.828632354736328, 14.707911491394043, 17.977006912231445, 9.915553092956543, 347.7861328125, 401.76190185546875, 437.3494873046875, 281.5980529785156, 363.8218078613281, 272.6407165527344, 0.8592991828918457, 1.1195632219314575, 1.3248602151870728, 0.8150685429573059, 0.6411493420600891, 0.7456129789352417], "count": [1107]}, "observation.state": {"min": [-40.189125061035156, -95.99229431152344, -52.56235885620117, 22.674419403076172, -68.20987701416016, 1.3413816690444946, -1100.0, -1200.0, -1400.0, -1800.0, -1400.0, -1150.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [36.09141159057617, 49.055877685546875, 99.72789001464844, 99.4186019897461, -0.05144032835960388, 29.309188842773438, 1150.0, 1500.0, 1850.0, 1050.0, 1250.0, 1500.0, 1392.0, 1464.0, 1488.0, 1372.0, 1436.0, 1476.0], "mean": [-7.479598045349121, 17.40624237060547, -4.890869140625, 67.72315979003906, -31.303146362304688, 16.50010871887207, 0.22583559155464172, 6.007226943969727, 0.9033423662185669, -12.285456657409668, -1.7615176439285278, -1.0840108394622803, 471.3604431152344, 398.03070068359375, 362.189697265625, 374.0921325683594, 495.5447082519531, 423.1436462402344], "std": [23.716442108154297, 23.995248794555664, 31.435562133789062, 14.384760856628418, 17.95831871032715, 7.941351890563965, 324.83404541015625, 419.66998291015625, 424.6405029296875, 262.89306640625, 358.6443786621094, 253.97120666503906, 523.4310913085938, 433.7164306640625, 448.25799560546875, 483.3435974121094, 527.5093994140625, 445.1472473144531], "count": [1107]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5732032014594669]], [[0.5726461509341957]], [[0.5643346069448721]]], "std": [[[0.17886675862470092]], [[0.1861414108847141]], [[0.18659685169843906]]], "count": [191]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6376782083033912]], [[0.6348163988981281]], [[0.6247610165794066]]], "std": [[[0.2904531790495635]], [[0.29301312327873]], [[0.29396228092486393]]], "count": [191]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9215686274509803]], [[0.9215686274509803]], [[0.9215686274509803]]], "mean": [[[0.47414566009649933]], [[0.47711414810252195]], [[0.48590767332238305]]], "std": [[[0.17453870665584933]], [[0.17440617340757786]], [[0.17168889648423713]]], "count": [191]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4794577387674092]], [[0.4774723644475242]], [[0.48191198713342226]]], "std": [[[0.1954634280318144]], [[0.19686955676457313]], [[0.19596305253296822]]], "count": [191]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8823529411764706]], [[0.8784313725490196]], [[0.8980392156862745]]], "mean": [[[0.4392132042825856]], [[0.4435190357338398]], [[0.4594226818345139]]], "std": [[[0.19939184589698167]], [[0.20222331706804753]], [[0.20496359490741597]]], "count": [191]}, "timestamp": {"min": [0.0], "max": [36.86666666666667], "mean": [18.433333333333334], "std": [10.65210812033972], "count": [1107]}, "frame_index": {"min": [0], "max": [1106], "mean": [553.0], "std": [319.5632436101916], "count": [1107]}, "episode_index": {"min": [91], "max": [91], "mean": [91.0], "std": [0.0], "count": [1107]}, "index": {"min": [110636], "max": [111742], "mean": [111189.0], "std": [319.5632436101916], "count": [1107]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1107]}}} +{"episode_index": 92, "stats": {"action": {"min": [-32.69724655151367, -93.13520050048828, -50.885154724121094, 27.941804885864258, -59.43247604370117, 0.32573288679122925, -1300.0, -1250.0, -1500.0, -1750.0, -1450.0, -1000.0, -3.2293577194213867, -3.6835479736328125, -4.539264678955078, -5.134788513183594, -2.5748815536499023, -2.7687296867370605], "max": [35.48624038696289, 46.75596618652344, 100.0, 100.0, -0.6831318736076355, 32.57329177856445, 1350.0, 1250.0, 1750.0, 1200.0, 1350.0, 2050.0, 3.3027522563934326, 3.5998306274414062, 5.356332302093506, 3.4231948852539062, 2.2595901489257812, 5.618893623352051], "mean": [-3.4001896381378174, 6.9540886878967285, 6.264819622039795, 66.73784637451172, -34.48698043823242, 15.87564468383789, 0.7921714782714844, 4.566635608673096, 2.656104326248169, -12.301957130432129, -0.09319664537906647, 0.1397949606180191, 0.00164160062558949, 0.009128556586802006, 0.009899292141199112, -0.0321422703564167, 0.0003917895082850009, 0.00022767941118218005], "std": [22.593164443969727, 24.9034481048584, 33.52451705932617, 14.538743019104004, 14.650430679321289, 8.300074577331543, 350.2515869140625, 447.6539306640625, 506.8538513183594, 295.6863098144531, 376.8028869628906, 253.48904418945312, 0.8662649989128113, 1.2497050762176514, 1.5456862449645996, 0.8511189222335815, 0.6623655557632446, 0.6858536005020142], "count": [1073]}, "observation.state": {"min": [-32.545310974121094, -96.30057525634766, -48.75283432006836, 28.820598602294922, -59.310699462890625, 1.2072434425354004, -1250.0, -1400.0, -1350.0, -1600.0, -1200.0, -1050.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [34.98817825317383, 47.2061653137207, 98.00453186035156, 99.16943359375, -0.8744856119155884, 31.589536666870117, 1200.0, 1300.0, 1700.0, 1050.0, 1250.0, 1950.0, 1420.0, 1420.0, 1448.0, 1356.0, 1420.0, 1604.0], "mean": [-3.499823808670044, 8.619632720947266, 7.545633316040039, 67.02940368652344, -34.537723541259766, 16.692758560180664, 1.7241379022598267, 9.45945930480957, 0.0, -14.492077827453613, 0.6989748477935791, 0.0, 534.546142578125, 477.4314880371094, 384.9468688964844, 424.7269287109375, 562.3448486328125, 336.2162170410156], "std": [22.535764694213867, 25.430280685424805, 33.14087677001953, 14.167485237121582, 14.601913452148438, 7.257185935974121, 325.4917907714844, 472.1623229980469, 498.0243225097656, 281.9145202636719, 367.8882751464844, 248.5653076171875, 525.86181640625, 455.3100891113281, 458.2080078125, 497.3013000488281, 526.7887573242188, 435.0373229980469], "count": [1073]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5681657011289365]], [[0.5678732120076194]], [[0.5605356397015134]]], "std": [[[0.17943138484665272]], [[0.1869852174658255]], [[0.1865986848540626]]], "count": [187]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6394229197249309]], [[0.635177563917724]], [[0.6237591835308098]]], "std": [[[0.287641782536952]], [[0.2908743836703882]], [[0.2929120473223643]]], "count": [187]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9764705882352941]], [[0.9647058823529412]], [[0.9803921568627451]]], "mean": [[[0.47802570143476286]], [[0.4806726903551082]], [[0.48838466193072594]]], "std": [[[0.17094779460765333]], [[0.1726282471097025]], [[0.17197945222810546]]], "count": [187]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47896398784558386]], [[0.4776621316975988]], [[0.4827219415172486]]], "std": [[[0.19406473729995113]], [[0.19542041511234065]], [[0.19399785835368424]]], "count": [187]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8784313725490196]], [[0.8784313725490196]], [[0.8901960784313725]]], "mean": [[[0.4409737415242389]], [[0.44493729029044776]], [[0.4602769411240432]]], "std": [[[0.19968546590740055]], [[0.2028601832020605]], [[0.20634050193648154]]], "count": [187]}, "timestamp": {"min": [0.0], "max": [35.733333333333334], "mean": [17.866666666666664], "std": [10.324942830081165], "count": [1073]}, "frame_index": {"min": [0], "max": [1072], "mean": [536.0], "std": [309.74828490243493], "count": [1073]}, "episode_index": {"min": [92], "max": [92], "mean": [92.0], "std": [0.0], "count": [1073]}, "index": {"min": [111743], "max": [112815], "mean": [112279.0], "std": [309.74828490243493], "count": [1073]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1073]}}} +{"episode_index": 93, "stats": {"action": {"min": [-33.65137481689453, -96.81875610351562, -49.97730255126953, 37.441162109375, -62.11245346069336, 0.16286644339561462, -950.0, -1100.0, -1500.0, -950.0, -1650.0, -1100.0, -2.2752304077148438, -3.2649643421173096, -4.539268493652344, -2.7385520935058594, -2.8901710510253906, -3.013029098510742], "max": [38.9357795715332, 51.19296646118164, 100.0, 78.77620697021484, 1.9968470335006714, 28.420194625854492, 1100.0, 1500.0, 1600.0, 1550.0, 1400.0, 1500.0, 2.7155961990356445, 4.3532867431640625, 4.902406692504883, 4.535728454589844, 2.4697837829589844, 4.15309476852417], "mean": [-1.940581202507019, 6.224809169769287, 15.268723487854004, 57.809478759765625, -35.748294830322266, 12.76422119140625, -0.3784692883491516, -2.018502950668335, 0.9251471757888794, -2.9857022762298584, -2.6072330474853516, -0.7569385766983032, -0.0017901066457852721, -0.00887130107730627, 0.00649013789370656, -0.002951029222458601, -0.0034030661918222904, -0.00020546643645502627], "std": [21.72330093383789, 20.828510284423828, 27.079418182373047, 10.38615894317627, 20.26564598083496, 8.21791934967041, 269.8427429199219, 399.63818359375, 418.1375427246094, 257.38287353515625, 380.42010498046875, 253.78343200683594, 0.6651126742362976, 1.1166936159133911, 1.274002194404602, 0.7429127097129822, 0.6712865233421326, 0.6871019601821899], "count": [1189]}, "observation.state": {"min": [-33.41213607788086, -94.142578125, -50.113380432128906, 38.28903579711914, -61.985595703125, 1.2072434425354004, -850.0, -1250.0, -1400.0, -850.0, -1550.0, -1050.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [38.455474853515625, 50.82851791381836, 99.72789001464844, 78.40531921386719, 1.6975308656692505, 27.900737762451172, 1000.0, 1700.0, 1550.0, 1150.0, 1400.0, 1500.0, 1364.0, 1492.0, 1432.0, 1404.0, 1448.0, 1432.0], "mean": [-2.094459295272827, 7.467657566070557, 16.291019439697266, 58.000938415527344, -35.78788375854492, 14.254672050476074, -0.6307821869850159, 4.0790581703186035, 0.042052146047353745, -6.560134410858154, -1.8923465013504028, 0.21026071906089783, 621.8267211914062, 447.97308349609375, 369.9007568359375, 355.5088195800781, 557.9343872070312, 474.2506408691406], "std": [21.759057998657227, 20.865339279174805, 26.96308135986328, 10.228126525878906, 20.277690887451172, 6.179638862609863, 251.31585693359375, 418.26763916015625, 409.5450744628906, 231.760498046875, 376.6880187988281, 223.95895385742188, 516.4446411132812, 466.251220703125, 459.41900634765625, 477.3970031738281, 527.8072509765625, 452.57366943359375], "count": [1189]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.574142536036692]], [[0.568062129926228]], [[0.5576070949006666]]], "std": [[[0.18276280440702683]], [[0.19224494083661708]], [[0.1928108465251315]]], "count": [202]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.640763792831489]], [[0.6368710586132142]], [[0.6258116526726202]]], "std": [[[0.28932177643593643]], [[0.29237964357490087]], [[0.29413503717953365]]], "count": [202]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9607843137254902]], [[0.8941176470588236]], [[0.9019607843137255]]], "mean": [[[0.4780996691580923]], [[0.48063175030738364]], [[0.48864522968841007]]], "std": [[[0.17255480393503514]], [[0.17311221375316843]], [[0.1713500177651075]]], "count": [202]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4759395374280075]], [[0.4746369909968938]], [[0.47892461516372226]]], "std": [[[0.19471372294525244]], [[0.19566036559806507]], [[0.1950494409676042]]], "count": [202]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8588235294117647]], [[0.8666666666666667]], [[0.8745098039215686]]], "mean": [[[0.4407124547013525]], [[0.4442317046042839]], [[0.46097429099527604]]], "std": [[[0.19991243409792633]], [[0.2032650333261789]], [[0.20682132989566374]]], "count": [202]}, "timestamp": {"min": [0.0], "max": [39.6], "mean": [19.8], "std": [11.441153787970862], "count": [1189]}, "frame_index": {"min": [0], "max": [1188], "mean": [594.0], "std": [343.2346136391259], "count": [1189]}, "episode_index": {"min": [93], "max": [93], "mean": [93.0], "std": [0.0], "count": [1189]}, "index": {"min": [112816], "max": [114004], "mean": [113410.0], "std": [343.2346136391259], "count": [1189]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1189]}}} +{"episode_index": 94, "stats": {"action": {"min": [-29.90825653076172, -99.41397857666016, -43.80390548706055, 23.9195556640625, -72.04414367675781, 0.0, -1000.0, -1350.0, -1700.0, -1750.0, -1550.0, -1700.0, -2.7155961990356445, -4.018421173095703, -5.174760818481445, -5.0492095947265625, -2.7325286865234375, -5.211726188659668], "max": [39.08256912231445, 40.644622802734375, 100.0, 93.8382568359375, 1.4713610410690308, 36.56351852416992, 1100.0, 1850.0, 1600.0, 1500.0, 1800.0, 1550.0, 2.7889909744262695, 5.106739044189453, 4.993190765380859, 4.4501495361328125, 3.1529159545898438, 4.153095245361328], "mean": [0.6648966670036316, 12.93295955657959, 1.4099960327148438, 66.56231689453125, -37.719608306884766, 16.645421981811523, 0.12019230425357819, -3.605769157409668, 4.366987228393555, -2.884615421295166, -3.2852563858032227, -0.2003205120563507, -0.0017642856109887362, -0.013281862251460552, 0.013821559026837349, -0.006103048101067543, -0.002063207561150193, -0.00032625420135445893], "std": [22.09262466430664, 21.838420867919922, 31.339170455932617, 12.167935371398926, 23.512714385986328, 10.566058158874512, 290.0285339355469, 407.2800598144531, 434.66888427734375, 268.5572814941406, 332.1344909667969, 290.9731750488281, 0.7199050784111023, 1.1300822496414185, 1.3216490745544434, 0.7786537408828735, 0.5873429179191589, 0.7945197820663452], "count": [1248]}, "observation.state": {"min": [-29.86603546142578, -93.83429718017578, -41.04308319091797, 25.332225799560547, -71.81069946289062, 1.3413816690444946, -1050.0, -1450.0, -1600.0, -1550.0, -1450.0, -1500.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [38.6918830871582, 41.425819396972656, 99.81859588623047, 93.35548400878906, 1.080246925354004, 36.08316421508789, 1000.0, 1950.0, 1550.0, 1350.0, 1650.0, 1500.0, 1380.0, 1568.0, 1400.0, 1412.0, 1552.0, 1476.0], "mean": [0.48683226108551025, 14.31447982788086, 2.748418092727661, 66.67121124267578, -37.800628662109375, 18.07480239868164, -0.4407051205635071, 1.923076868057251, 2.5641026496887207, -4.046474456787109, -2.764423131942749, -0.6810897588729858, 610.451904296875, 448.5705261230469, 354.2628173828125, 458.9358825683594, 571.2852783203125, 382.775634765625], "std": [22.0633487701416, 22.0457763671875, 30.710769653320312, 11.971719741821289, 23.517274856567383, 8.645186424255371, 271.1148681640625, 432.0663757324219, 426.3197937011719, 256.7391357421875, 326.84173583984375, 273.0502624511719, 520.9669799804688, 462.04937744140625, 438.92156982421875, 508.4718322753906, 525.430419921875, 435.8207092285156], "count": [1248]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5710831388576164]], [[0.5638517078681553]], [[0.5557482858773494]]], "std": [[[0.17791436790738094]], [[0.18720624706624414]], [[0.18734591389128716]]], "count": [209]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6425761914813772]], [[0.6373600996419302]], [[0.6252379327329018]]], "std": [[[0.28572650956009865]], [[0.2896720331203732]], [[0.29266223733533964]]], "count": [209]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9372549019607843]], [[0.8941176470588236]], [[0.8941176470588236]]], "mean": [[[0.46673092672076805]], [[0.4647206273258905]], [[0.4734758263752072]]], "std": [[[0.1749669185147607]], [[0.17437780882540327]], [[0.17305646884796594]]], "count": [209]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4716377454889452]], [[0.47075154505582134]], [[0.4752014866153798]]], "std": [[[0.18953895323869951]], [[0.19064218633366728]], [[0.18966567095293405]]], "count": [209]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9607843137254902]], [[0.9058823529411765]], [[0.8627450980392157]]], "mean": [[[0.44233257008943927]], [[0.4449213936970322]], [[0.4613718307298996]]], "std": [[[0.203818539449388]], [[0.20644874584924933]], [[0.20950721721631618]]], "count": [209]}, "timestamp": {"min": [0.0], "max": [41.56666666666667], "mean": [20.78333333333333], "std": [12.00888174397353], "count": [1248]}, "frame_index": {"min": [0], "max": [1247], "mean": [623.5], "std": [360.26645231920594], "count": [1248]}, "episode_index": {"min": [94], "max": [94], "mean": [94.0], "std": [0.0], "count": [1248]}, "index": {"min": [114005], "max": [115252], "mean": [114628.5], "std": [360.26645231920594], "count": [1248]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1248]}}} +{"episode_index": 95, "stats": {"action": {"min": [-30.42201805114746, -99.49769592285156, -48.161598205566406, 34.9593505859375, -69.57435607910156, 0.40716612339019775, -1000.0, -1500.0, -1650.0, -1550.0, -1600.0, -1300.0, -2.422018527984619, -4.3532867431640625, -5.083976745605469, -4.364570617675781, -2.8901729583740234, -3.583062171936035], "max": [35.926605224609375, 45.24905776977539, 100.0, 93.6670913696289, 2.8901734352111816, 38.680782318115234, 1000.0, 2200.0, 1750.0, 1400.0, 1050.0, 1450.0, 2.495412826538086, 6.362495422363281, 5.447116851806641, 4.107830047607422, 1.8391990661621094, 3.908794403076172], "mean": [0.695966362953186, 12.180108070373535, 2.17480731010437, 64.47120666503906, -43.77201461791992, 19.409791946411133, -0.39335665106773376, -2.360139846801758, 6.031468391418457, 0.5681818127632141, 0.9615384340286255, 1.180069923400879, -0.0012189941480755806, -0.01002526469528675, 0.021982070058584213, -0.00149614829570055, 0.0016536250477656722, 0.0002135497925337404], "std": [20.592496871948242, 24.59934425354004, 35.54805374145508, 15.950859069824219, 17.402671813964844, 10.782588958740234, 268.31060791015625, 471.2109680175781, 479.9371337890625, 272.4643249511719, 319.3614807128906, 295.24969482421875, 0.6584248542785645, 1.3075342178344727, 1.46233332157135, 0.7804632186889648, 0.5607225298881531, 0.8017021417617798], "count": [1144]}, "observation.state": {"min": [-30.338850021362305, -95.91522216796875, -45.124717712402344, 36.37873840332031, -69.23868560791016, 1.3413816690444946, -900.0, -1600.0, -1600.0, -1300.0, -1550.0, -1300.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [35.460994720458984, 45.43352508544922, 99.81859588623047, 93.35548400878906, 1.7489712238311768, 36.48558044433594, 900.0, 2300.0, 1750.0, 1200.0, 1000.0, 1550.0, 1336.0, 1676.0, 1472.0, 1380.0, 1360.0, 1464.0], "mean": [0.6696916818618774, 13.753267288208008, 3.489208221435547, 64.58307647705078, -43.86534881591797, 20.32916831970215, 0.48076921701431274, 1.573426604270935, 2.622377634048462, -4.589160919189453, 0.043706294149160385, 0.3496503531932831, 475.4964904785156, 411.3531494140625, 381.9510498046875, 453.4930114746094, 588.9091186523438, 425.489501953125], "std": [20.57747459411621, 24.857194900512695, 35.14497756958008, 15.806917190551758, 17.335309982299805, 9.502708435058594, 248.6274871826172, 500.9265441894531, 472.0065002441406, 252.98629760742188, 306.6389465332031, 300.6327819824219, 516.9840698242188, 449.57513427734375, 454.5230712890625, 507.82958984375, 524.330322265625, 465.4033508300781], "count": [1144]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5666858326663998]], [[0.5602599435607577]], [[0.5515352891156462]]], "std": [[[0.17698794318765004]], [[0.18614305565670464]], [[0.18606979683100142]]], "count": [196]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6409963443710818]], [[0.6359474227190877]], [[0.6237864354074963]]], "std": [[[0.28662933022197645]], [[0.2902251916385112]], [[0.29284065356689604]]], "count": [196]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9450980392156862]], [[0.8823529411764706]], [[0.8823529411764706]]], "mean": [[[0.4676924342653728]], [[0.466187385370815]], [[0.4727619599923302]]], "std": [[[0.17446861919646386]], [[0.17425639428818146]], [[0.17239770806317237]]], "count": [196]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48490581961951446]], [[0.4833129262121515]], [[0.48712884528811523]]], "std": [[[0.1940467806919919]], [[0.1956757962216149]], [[0.19512714861137373]]], "count": [196]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8705882352941177]], [[0.8705882352941177]], [[0.8627450980392157]]], "mean": [[[0.44346831857743096]], [[0.4461416618730826]], [[0.46172418133920234]]], "std": [[[0.20364723964991438]], [[0.20583826756470497]], [[0.2086254392220395]]], "count": [196]}, "timestamp": {"min": [0.0], "max": [38.1], "mean": [19.049999999999997], "std": [11.00814092690799], "count": [1144]}, "frame_index": {"min": [0], "max": [1143], "mean": [571.5], "std": [330.24422780723967], "count": [1144]}, "episode_index": {"min": [95], "max": [95], "mean": [95.0], "std": [0.0], "count": [1144]}, "index": {"min": [115253], "max": [116396], "mean": [115824.5], "std": [330.24422780723967], "count": [1144]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1144]}}} +{"episode_index": 96, "stats": {"action": {"min": [-40.7706413269043, -98.82796478271484, -58.42033767700195, 27.770647048950195, -60.693641662597656, 0.0, -1350.0, -1300.0, -1700.0, -1350.0, -1350.0, -1600.0, -3.229357957839966, -3.5161170959472656, -5.265547275543213, -3.765514373779297, -2.3121376037597656, -4.234527587890625], "max": [37.10091781616211, 50.43951416015625, 100.0, 93.8382568359375, 23.068838119506836, 32.08469009399414, 1300.0, 1600.0, 1650.0, 1350.0, 1500.0, 1900.0, 3.155963897705078, 4.6881561279296875, 4.993191242218018, 4.193412780761719, 2.6799793243408203, 5.537458419799805], "mean": [2.285447835922241, 12.833928108215332, -0.2593980133533478, 68.21544647216797, -15.22514820098877, 16.341524124145508, 0.7005254030227661, -2.232924699783325, 5.779334545135498, -4.684763431549072, -0.13134850561618805, 0.04378283768892288, 0.0017995205707848072, -0.010556292720139027, 0.018363716080784798, -0.0110908979550004, 0.00032210515928454697, 7.130758604034781e-05], "std": [24.62445068359375, 22.040376663208008, 29.155147552490234, 12.321383476257324, 25.4932918548584, 10.216205596923828, 316.1023254394531, 421.8961181640625, 485.9599304199219, 277.38348388671875, 301.1833801269531, 289.15380859375, 0.7728357911109924, 1.175526738166809, 1.4780645370483398, 0.7981982827186584, 0.5306302309036255, 0.781031608581543], "count": [1142]}, "observation.state": {"min": [-40.66193771362305, -95.83815002441406, -56.009071350097656, 28.820598602294922, -60.39094543457031, 1.2072434425354004, -1200.0, -1400.0, -1650.0, -1250.0, -1200.0, -1400.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [36.56422424316406, 50.75144577026367, 99.72789001464844, 93.35548400878906, 22.839506149291992, 31.656606674194336, 1150.0, 1800.0, 1600.0, 1200.0, 1400.0, 1700.0, 1408.0, 1532.0, 1444.0, 1372.0, 1468.0, 1564.0], "mean": [2.0458946228027344, 14.623844146728516, 1.1720685958862305, 68.39753723144531, -15.330741882324219, 17.56708335876465, 2.276707649230957, 0.6567425727844238, 1.3134851455688477, -8.844133377075195, -0.17513135075569153, 0.0, 677.908935546875, 364.86865234375, 396.616455078125, 386.4693603515625, 623.2504272460938, 467.2119140625], "std": [24.556720733642578, 22.051210403442383, 28.686059951782227, 12.073180198669434, 25.426280975341797, 8.452509880065918, 291.6068115234375, 449.8313903808594, 477.7695007324219, 264.09613037109375, 289.5130615234375, 266.2738342285156, 509.6624450683594, 418.1152038574219, 457.2448425292969, 491.4988098144531, 517.3032836914062, 461.5747985839844], "count": [1142]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.579415006627651]], [[0.5733543511154462]], [[0.5634250200080032]]], "std": [[[0.18302261315253512]], [[0.19233772172884217]], [[0.19246650993891223]]], "count": [196]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6429025516456582]], [[0.637532050320128]], [[0.6249315080198746]]], "std": [[[0.28458798580680156]], [[0.28854426178511616]], [[0.29182189119732854]]], "count": [196]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9215686274509803]], [[0.9176470588235294]], [[0.9176470588235294]]], "mean": [[[0.46775984873115917]], [[0.4661133026127118]], [[0.47239326772375617]]], "std": [[[0.17520767871103765]], [[0.17528801007275405]], [[0.17345116461887486]]], "count": [196]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.47949433210784315]], [[0.47856236452914497]], [[0.4836774355575563]]], "std": [[[0.19366487096556514]], [[0.19559896574551008]], [[0.19452556703040386]]], "count": [196]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8745098039215686]], [[0.8784313725490196]], [[0.8980392156862745]]], "mean": [[[0.44237102445144727]], [[0.4469292196045085]], [[0.46285214815092707]]], "std": [[[0.20260997018523086]], [[0.20606569602158717]], [[0.20954254859805554]]], "count": [196]}, "timestamp": {"min": [0.0], "max": [38.03333333333333], "mean": [19.016666666666666], "std": [10.988895910569603], "count": [1142]}, "frame_index": {"min": [0], "max": [1141], "mean": [570.5], "std": [329.66687731708805], "count": [1142]}, "episode_index": {"min": [96], "max": [96], "mean": [96.0], "std": [0.0], "count": [1142]}, "index": {"min": [116397], "max": [117538], "mean": [116967.5], "std": [329.66687731708805], "count": [1142]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1142]}}} +{"episode_index": 97, "stats": {"action": {"min": [-29.688074111938477, -96.06529998779297, -54.51656723022461, 53.3590087890625, -45.717288970947266, 0.0, -750.0, -1100.0, -1400.0, -1050.0, -1250.0, -1250.0, -1.7614679336547852, -3.1812477111816406, -4.448479175567627, -2.9952926635742188, -2.2070417404174805, -3.501628875732422], "max": [36.220184326171875, 48.84889221191406, 100.0, 93.75267791748047, 11.245402336120605, 26.547231674194336, 1050.0, 1400.0, 1550.0, 1100.0, 1600.0, 1500.0, 2.568807601928711, 4.102134704589844, 4.902406692504883, 3.08087158203125, 2.9427223205566406, 3.908794403076172], "mean": [4.9332275390625, 14.21285343170166, -4.3002495765686035, 72.18672943115234, -9.202701568603516, 13.733945846557617, 0.8662174940109253, 3.320500373840332, 3.2723772525787354, -4.475457191467285, -22.2329158782959, -0.0962463915348053, 0.002754936460405588, 0.004512287676334381, 0.008999789133667946, -0.010872507467865944, -0.040410324931144714, -0.00047025937237776816], "std": [23.40024757385254, 23.064390182495117, 30.43732452392578, 10.120678901672363, 13.714685440063477, 8.61994457244873, 264.3640441894531, 424.3496398925781, 505.9365539550781, 256.73175048828125, 281.13916015625, 293.2099304199219, 0.651646077632904, 1.1839892864227295, 1.5393788814544678, 0.7375697493553162, 0.4920012652873993, 0.793113112449646], "count": [1039]}, "observation.state": {"min": [-29.629629135131836, -96.53179168701172, -52.01813888549805, 53.98670959472656, -45.47325134277344, 1.2743124961853027, -650.0, -1200.0, -1350.0, -1000.0, -950.0, -1250.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [35.6973991394043, 49.13294982910156, 98.36734771728516, 93.27242279052734, 10.751029014587402, 26.089872360229492, 1000.0, 1600.0, 1500.0, 1000.0, 1550.0, 1300.0, 1344.0, 1476.0, 1408.0, 1344.0, 1488.0, 1432.0], "mean": [4.773889064788818, 16.002981185913086, -2.791229248046875, 72.2667007446289, -9.100395202636719, 15.182279586791992, 1.2512030601501465, 6.207892417907715, 0.2887391746044159, -6.496631145477295, -23.2916259765625, -1.3955726623535156, 579.3031616210938, 424.3927001953125, 352.90472412109375, 416.1193542480469, 430.9913330078125, 479.0760498046875], "std": [23.382694244384766, 23.525848388671875, 30.16560935974121, 9.931657791137695, 13.457321166992188, 6.529277801513672, 246.04293823242188, 448.783203125, 493.36767578125, 247.58534240722656, 269.586669921875, 248.02313232421875, 522.4033203125, 437.7824401855469, 438.0023193359375, 502.50836181640625, 505.6732482910156, 457.47491455078125], "count": [1039]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5827673577627772]], [[0.5764480439033537]], [[0.566560931863638]]], "std": [[[0.18146533622548341]], [[0.19097977516496029]], [[0.19012080750932386]]], "count": [183]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6378516007268117]], [[0.6342044314082647]], [[0.6233123616022]]], "std": [[[0.2894071027163515]], [[0.29208228342528225]], [[0.2934634504557569]]], "count": [183]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8784313725490196]], [[0.8392156862745098]], [[0.8549019607843137]]], "mean": [[[0.46406626129504625]], [[0.46722199007107396]], [[0.4747115778688525]]], "std": [[[0.17232850111046835]], [[0.17242022458840675]], [[0.1693303513752346]]], "count": [183]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4808454096574878]], [[0.48161345048037435]], [[0.4854273065555913]]], "std": [[[0.1913006290427642]], [[0.19302169561683905]], [[0.19300327100059314]]], "count": [183]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8745098039215686]], [[0.8705882352941177]], [[0.8823529411764706]]], "mean": [[[0.443003240071074]], [[0.4481358329761777]], [[0.4644165918872103]]], "std": [[[0.20201965205309347]], [[0.20548771161073665]], [[0.20885816132228702]]], "count": [183]}, "timestamp": {"min": [0.0], "max": [34.6], "mean": [17.3], "std": [9.997777530809312], "count": [1039]}, "frame_index": {"min": [0], "max": [1038], "mean": [519.0], "std": [299.93332592427936], "count": [1039]}, "episode_index": {"min": [97], "max": [97], "mean": [97.0], "std": [0.0], "count": [1039]}, "index": {"min": [117539], "max": [118577], "mean": [118058.0], "std": [299.93332592427936], "count": [1039]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1039]}}} +{"episode_index": 98, "stats": {"action": {"min": [-34.60550308227539, -87.94474792480469, -30.82160758972168, 42.40479278564453, -75.56489562988281, 0.32573288679122925, -1050.0, -1350.0, -1700.0, -1000.0, -1650.0, -1050.0, -2.495412826538086, -3.7672653198242188, -5.447118759155273, -2.7385520935058594, -2.9952707290649414, -2.850162982940674], "max": [36.2935791015625, 38.55169677734375, 100.0, 81.94266510009766, 0.0525486059486866, 20.9283390045166, 1200.0, 1350.0, 1550.0, 1200.0, 1450.0, 1500.0, 2.935779571533203, 3.850984573364258, 4.902405738830566, 3.7655105590820312, 2.5748825073242188, 4.071660995483398], "mean": [-3.062089681625366, 2.725703239440918, 17.499374389648438, 59.84412384033203, -39.47941589355469, 13.372740745544434, 0.6499536037445068, 1.8570102453231812, 4.45682430267334, -4.874651908874512, -0.3249768018722534, -0.6963788270950317, 0.0018399750115349889, -0.002642678562551737, 0.017196092754602432, -0.010250505991280079, -0.0017564981244504452, 3.320592967259728e-10], "std": [21.57546043395996, 22.496801376342773, 29.461400985717773, 10.988482475280762, 16.545879364013672, 7.362053871154785, 304.5376892089844, 460.51708984375, 493.0135192871094, 231.9471435546875, 363.57781982421875, 257.2200927734375, 0.7499158978462219, 1.2827425003051758, 1.4996368885040283, 0.6684206128120422, 0.6399160623550415, 0.6971402764320374], "count": [1077]}, "observation.state": {"min": [-34.51536560058594, -95.76107788085938, -29.433107376098633, 42.85714340209961, -75.3600845336914, 1.3413816690444946, -950.0, -1500.0, -1550.0, -900.0, -1350.0, -1050.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [36.327816009521484, 38.574180603027344, 99.63719177246094, 81.56146240234375, 0.0, 21.0596923828125, 1050.0, 1500.0, 1500.0, 1050.0, 1350.0, 1450.0, 1388.0, 1428.0, 1420.0, 1364.0, 1476.0, 1448.0], "mean": [-3.2846639156341553, 4.086101531982422, 18.826980590820312, 59.98812484741211, -39.54304504394531, 14.605021476745605, 1.1606314182281494, 8.54224681854248, 1.8570102453231812, -6.9637885093688965, -3.435468912124634, -1.114206075668335, 673.9795532226562, 484.3045349121094, 413.24420166015625, 435.42803955078125, 532.2525634765625, 493.4261779785156], "std": [21.642738342285156, 22.92137908935547, 28.97234535217285, 10.9077787399292, 16.463970184326172, 5.430988788604736, 282.4986877441406, 491.3520812988281, 481.98809814453125, 217.9875030517578, 352.23980712890625, 209.45346069335938, 509.1544189453125, 470.7687072753906, 466.7943115234375, 502.0066833496094, 528.20263671875, 463.16229248046875], "count": [1077]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5659008884803922]], [[0.5604495213200529]], [[0.5497538894103741]]], "std": [[[0.17995940521080084]], [[0.1873476130105494]], [[0.18669215980977655]]], "count": [188]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6397777017278543]], [[0.635433322686344]], [[0.6242382481139619]]], "std": [[[0.28943966335499144]], [[0.2923755862768959]], [[0.29399297880381686]]], "count": [188]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9372549019607843]], [[0.8980392156862745]], [[0.8823529411764706]]], "mean": [[[0.466307734929078]], [[0.46914875473682377]], [[0.47809115452475315]]], "std": [[[0.1715303689103179]], [[0.17179838263423364]], [[0.17000462404845199]]], "count": [188]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.4885175936065916]], [[0.4873823138297872]], [[0.49227691732721457]]], "std": [[[0.19685751233189142]], [[0.1984557498369178]], [[0.19732207518810788]]], "count": [188]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8666666666666667]], [[0.8666666666666667]], [[0.8666666666666667]]], "mean": [[[0.4450117779602976]], [[0.4491889721092338]], [[0.46396452488353496]]], "std": [[[0.2028036354579681]], [[0.205909322217002]], [[0.2085209366663983]]], "count": [188]}, "timestamp": {"min": [0.0], "max": [35.86666666666667], "mean": [17.933333333333334], "std": [10.363432864680542], "count": [1077]}, "frame_index": {"min": [0], "max": [1076], "mean": [538.0], "std": [310.9029859404163], "count": [1077]}, "episode_index": {"min": [98], "max": [98], "mean": [98.0], "std": [0.0], "count": [1077]}, "index": {"min": [118578], "max": [119654], "mean": [119116.0], "std": [310.9029859404163], "count": [1077]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1077]}}} +{"episode_index": 99, "stats": {"action": {"min": [-31.52293586730957, -99.33026123046875, -39.9001350402832, 46.42704391479492, -69.3641586303711, 0.48859935998916626, -1050.0, -1200.0, -1400.0, -1300.0, -1500.0, -1200.0, -2.6422019004821777, -3.432398557662964, -4.266908645629883, -3.7655105590820312, -2.6799793243408203, -3.257328987121582], "max": [35.55963134765625, 43.5747184753418, 99.18292999267578, 88.27556610107422, 0.2627430260181427, 30.37459373474121, 1500.0, 1450.0, 1800.0, 1350.0, 1300.0, 1700.0, 3.669724941253662, 4.102134704589844, 5.628688812255859, 3.7655105590820312, 2.3121376037597656, 4.885993003845215], "mean": [-7.530032634735107, -0.38553571701049805, 18.809524536132812, 62.815128326416016, -40.6851921081543, 15.250700950622559, -1.510721206665039, 2.6315789222717285, -2.875243663787842, -2.5341131687164307, 25.828460693359375, 0.3411306142807007, -0.005651233717799187, 0.008486013859510422, -0.008759991265833378, -0.008591345511376858, 0.045634325593709946, -7.936933252494782e-05], "std": [22.215194702148438, 27.76089096069336, 35.83795928955078, 11.437134742736816, 17.7484073638916, 8.953380584716797, 346.54400634765625, 467.0552673339844, 515.84033203125, 266.2708740234375, 363.87884521484375, 290.49658203125, 0.8531892895698547, 1.3047102689743042, 1.5728508234024048, 0.7589512467384338, 0.6394891142845154, 0.7911965250968933], "count": [1026]}, "observation.state": {"min": [-31.52088165283203, -96.37764739990234, -38.866214752197266, 46.84385299682617, -69.39300537109375, 1.2743124961853027, -950.0, -1350.0, -1300.0, -1100.0, -1450.0, -1300.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "max": [35.06698226928711, 43.506744384765625, 99.27437591552734, 87.79069519042969, -0.05144032835960388, 30.24815559387207, 1350.0, 1500.0, 1800.0, 1150.0, 1350.0, 1550.0, 1452.0, 1480.0, 1484.0, 1384.0, 1448.0, 1508.0], "mean": [-7.607161998748779, 0.9122318029403687, 20.136940002441406, 63.030372619628906, -40.96295928955078, 16.47641372680664, -1.6081870794296265, 6.2865495681762695, -4.629629611968994, -5.019493103027344, 26.072124481201172, -0.3411306142807007, 530.132568359375, 453.9415283203125, 356.8304138183594, 427.34503173828125, 585.7075805664062, 387.8323669433594], "std": [22.138187408447266, 28.187856674194336, 35.406429290771484, 11.288578033447266, 17.473127365112305, 7.172143459320068, 322.3025207519531, 500.53204345703125, 502.386962890625, 247.5445556640625, 359.255615234375, 261.9043273925781, 525.0128784179688, 471.0900573730469, 450.5919189453125, 498.865478515625, 536.8672485351562, 444.2522277832031], "count": [1026]}, "observation.images.wrist": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.571678665411837]], [[0.5668292562651212]], [[0.5560258041292023]]], "std": [[[0.17908290457841514]], [[0.18604039090976843]], [[0.18553627868352246]]], "count": [181]}, "observation.images.global1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.6403771124471889]], [[0.6357152371537934]], [[0.6240129455096955]]], "std": [[[0.28732622877619124]], [[0.2906269624747605]], [[0.29288106301471745]]], "count": [181]}, "observation.images.global2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.9019607843137255]], [[0.8666666666666667]], [[0.8705882352941177]]], "mean": [[[0.4686603406095403]], [[0.4710577108836168]], [[0.4790512764958654]]], "std": [[[0.16876341001455375]], [[0.17019611552805852]], [[0.16990961869210103]]], "count": [181]}, "observation.images.low_camera1": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.48529818907305095]], [[0.4833208076048099]], [[0.48731736697901995]]], "std": [[[0.1977772117678082]], [[0.19943580928352206]], [[0.19882934005424527]]], "count": [181]}, "observation.images.low_camera2": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[0.8901960784313725]], [[0.8901960784313725]], [[0.8784313725490196]]], "mean": [[[0.44543495874408695]], [[0.4504054465478641]], [[0.46583733479579675]]], "std": [[[0.20261998257484098]], [[0.2058487943887067]], [[0.20919673265871375]]], "count": [181]}, "timestamp": {"min": [0.0], "max": [34.166666666666664], "mean": [17.083333333333332], "std": [9.872684913811815], "count": [1026]}, "frame_index": {"min": [0], "max": [1025], "mean": [512.5], "std": [296.18054741435446], "count": [1026]}, "episode_index": {"min": [99], "max": [99], "mean": [99.0], "std": [0.0], "count": [1026]}, "index": {"min": [119655], "max": [120680], "mean": [120167.5], "std": [296.18054741435446], "count": [1026]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1026]}}} diff --git a/meta/info.json b/meta/info.json new file mode 100644 index 0000000000000000000000000000000000000000..f6e59f258cc65f7ca0f95146382b3656f2cb7058 --- /dev/null +++ b/meta/info.json @@ -0,0 +1,220 @@ +{ + "codebase_version": "v2.1", + "robot_type": "so101_advanced_folloer_joint_delta_control", + "total_episodes": 100, + "total_frames": 120681, + "total_tasks": 1, + "total_videos": 500, + "total_chunks": 1, + "chunks_size": 1000, + "fps": 30, + "splits": { + "train": "0:100" + }, + "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet", + "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4", + "features": { + "action": { + "dtype": "float32", + "shape": [ + 18 + ], + "names": [ + "shoulder_pan.pos", + "shoulder_lift.pos", + "elbow_flex.pos", + "wrist_flex.pos", + "wrist_roll.pos", + "gripper.pos", + "shoulder_pan.vel", + "shoulder_lift.vel", + "elbow_flex.vel", + "wrist_flex.vel", + "wrist_roll.vel", + "gripper.vel", + "shoulder_pan.angle", + "shoulder_lift.angle", + "elbow_flex.angle", + "wrist_flex.angle", + "wrist_roll.angle", + "gripper.angle" + ] + }, + "observation.state": { + "dtype": "float32", + "shape": [ + 18 + ], + "names": [ + "shoulder_pan.pos", + "shoulder_lift.pos", + "elbow_flex.pos", + "wrist_flex.pos", + "wrist_roll.pos", + "gripper.pos", + "shoulder_pan.vel", + "shoulder_lift.vel", + "elbow_flex.vel", + "wrist_flex.vel", + "wrist_roll.vel", + "gripper.vel", + "shoulder_pan.load", + "shoulder_lift.load", + "elbow_flex.load", + "wrist_flex.load", + "wrist_roll.load", + "gripper.load" + ] + }, + "observation.images.wrist": { + "dtype": "video", + "shape": [ + 480, + 640, + 3 + ], + "names": [ + "height", + "width", + "channels" + ], + "info": { + "video.height": 480, + "video.width": 640, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 30, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.global1": { + "dtype": "video", + "shape": [ + 480, + 640, + 3 + ], + "names": [ + "height", + "width", + "channels" + ], + "info": { + "video.height": 480, + "video.width": 640, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 30, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.global2": { + "dtype": "video", + "shape": [ + 480, + 640, + 3 + ], + "names": [ + "height", + "width", + "channels" + ], + "info": { + "video.height": 480, + "video.width": 640, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 30, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.low_camera1": { + "dtype": "video", + "shape": [ + 480, + 640, + 3 + ], + "names": [ + "height", + "width", + "channels" + ], + "info": { + "video.height": 480, + "video.width": 640, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 30, + "video.channels": 3, + "has_audio": false + } + }, + "observation.images.low_camera2": { + "dtype": "video", + "shape": [ + 480, + 640, + 3 + ], + "names": [ + "height", + "width", + "channels" + ], + "info": { + "video.height": 480, + "video.width": 640, + "video.codec": "av1", + "video.pix_fmt": "yuv420p", + "video.is_depth_map": false, + "video.fps": 30, + "video.channels": 3, + "has_audio": false + } + }, + "timestamp": { + "dtype": "float32", + "shape": [ + 1 + ], + "names": null + }, + "frame_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "episode_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + }, + "task_index": { + "dtype": "int64", + "shape": [ + 1 + ], + "names": null + } + } +} \ No newline at end of file diff --git a/meta/tasks.jsonl b/meta/tasks.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..97a2de9531fa6ad16d28cb334109d442386240a7 --- /dev/null +++ b/meta/tasks.jsonl @@ -0,0 +1 @@ +{"task_index": 0, "task": "Sort the dice by color, put the yellow dice on the left plate and the red dice on the right plate."} diff --git a/videos/chunk-000/observation.images.global1/episode_000000.mp4 b/videos/chunk-000/observation.images.global1/episode_000000.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4ea1402686c9b1e5f74b993be9ad50f510bf4841 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000000.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4e8d4979039985b7faa3fdfa600130a4578bcf24e0432899babb1d5d1ca9e43 +size 23860910 diff --git a/videos/chunk-000/observation.images.global1/episode_000001.mp4 b/videos/chunk-000/observation.images.global1/episode_000001.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..282a7a2d9c1d857dfd93e37510c12835634ed748 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000001.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d90939eac51717a72a2710855bee5c8e27433c02f54bde162326124a1091f58 +size 25443629 diff --git a/videos/chunk-000/observation.images.global1/episode_000002.mp4 b/videos/chunk-000/observation.images.global1/episode_000002.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..517616a8554fefe2695dbbc539014d0518d2eed0 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000002.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a553252d890be0edab78eb9274770390a3c02a02fb282e45702ba4bcc300e70d +size 24417317 diff --git a/videos/chunk-000/observation.images.global1/episode_000003.mp4 b/videos/chunk-000/observation.images.global1/episode_000003.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..742cbef52ce149ceaadb3841c8a29c88cb020d5a --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000003.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51503af6e7446cd9a176bb172ddc496c8635896e6163610338d5b313b366fc3b +size 18681286 diff --git a/videos/chunk-000/observation.images.global1/episode_000004.mp4 b/videos/chunk-000/observation.images.global1/episode_000004.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f7236becd7a00e152b627469ed0dbfdfbb35fe46 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000004.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05f92562311f5ceca116298ef6c83164d24c7d9bfb5a59b8a193dc88ce5e5d06 +size 22919735 diff --git a/videos/chunk-000/observation.images.global1/episode_000005.mp4 b/videos/chunk-000/observation.images.global1/episode_000005.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e92d9b653e0ec15fcae8c00472b8eb4b71b5a007 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000005.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e690389526cc003cd2e6938408cb9bae87d33d5a203e8a6f515e1b0524afb4a2 +size 18210203 diff --git a/videos/chunk-000/observation.images.global1/episode_000006.mp4 b/videos/chunk-000/observation.images.global1/episode_000006.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b809d26c2caabc0d4714528f89d2506778c476a0 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000006.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5a6083262bd0f9a970cd9b99593a5c4c4aed59866d3164c04335f47b50ecc3b +size 21715632 diff --git a/videos/chunk-000/observation.images.global1/episode_000007.mp4 b/videos/chunk-000/observation.images.global1/episode_000007.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..19c6e93094265f51dc66b8efec5b4467f85a18bf --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000007.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60ff223b74276a68beaad69f6aa4d15f178b9556cd37dd75430c964b015fa3d0 +size 23071153 diff --git a/videos/chunk-000/observation.images.global1/episode_000008.mp4 b/videos/chunk-000/observation.images.global1/episode_000008.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..96835317ccb7de675083c87336204ff96f13be24 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000008.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f95bb1714fa3e71db0a8a6bbcc194e0358b00b6ec420a9ab93ca4e6dc1055b4e +size 21328758 diff --git a/videos/chunk-000/observation.images.global1/episode_000009.mp4 b/videos/chunk-000/observation.images.global1/episode_000009.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b68141c37445b8ded4c73549fb4aaac464cbbaae --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000009.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dee43049c835d04d2a8c296469fa090cd25b60e816db4d221af2cccf3c642d91 +size 18134068 diff --git a/videos/chunk-000/observation.images.global1/episode_000010.mp4 b/videos/chunk-000/observation.images.global1/episode_000010.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c18534865a565e21d41cb314cd850b5fb1626497 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000010.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f837fc315a28acf74b5541a4700a0049eab4f3784a82326c8dab1d3fbfbe598 +size 22699074 diff --git a/videos/chunk-000/observation.images.global1/episode_000011.mp4 b/videos/chunk-000/observation.images.global1/episode_000011.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..cb8b7c83dccf92cfc9de28d3c016db0703ba2776 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000011.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b69b61a2aa554a85f798468a541852130c4060a62957fb5cc3bb0ce7f9bfab8 +size 21583183 diff --git a/videos/chunk-000/observation.images.global1/episode_000012.mp4 b/videos/chunk-000/observation.images.global1/episode_000012.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..577d42aa6bf120eb6889cdcf9c04fb244a76111d --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000012.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:872a1bb9d928f688586d3499a59499e511184742981b00973d2f549650e8b59b +size 17795585 diff --git a/videos/chunk-000/observation.images.global1/episode_000013.mp4 b/videos/chunk-000/observation.images.global1/episode_000013.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a4b94f868623dadfda84aeae70abd045c60fa524 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000013.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8564b86c82b54df438216bc3e233ccc895cfc90dec966f1f8f4280500991452c +size 13704085 diff --git a/videos/chunk-000/observation.images.global1/episode_000014.mp4 b/videos/chunk-000/observation.images.global1/episode_000014.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..61fa3d5fcf47403c4b4411d86ff68a488ce3b167 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000014.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97024a84c8d5c79aebc821c7b53732c45f2a93160e755476d1557df7ce650362 +size 20015129 diff --git a/videos/chunk-000/observation.images.global1/episode_000015.mp4 b/videos/chunk-000/observation.images.global1/episode_000015.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3b9925b7954f03e97377c628ccde398f1f7ee9c9 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000015.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8322cecb80a97271d50f887b8c5589c8807080b68007af12e52d62c8dd2a6136 +size 17157729 diff --git a/videos/chunk-000/observation.images.global1/episode_000016.mp4 b/videos/chunk-000/observation.images.global1/episode_000016.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6a12efd1c7b96b33f5ddd9ee32a1de371b2244b9 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000016.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e14b368304488b213023b75425ad0cef4b12d043bd061c405a5505552a61dcc +size 17369252 diff --git a/videos/chunk-000/observation.images.global1/episode_000017.mp4 b/videos/chunk-000/observation.images.global1/episode_000017.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..7f6a500155217b8ffb69ddcae93c16f4e18bb678 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000017.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bb383eb7d3f8fc3a023925fc3023f796957f379b159cde56c50e21286b9ba1a +size 21825321 diff --git a/videos/chunk-000/observation.images.global1/episode_000018.mp4 b/videos/chunk-000/observation.images.global1/episode_000018.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..acdbb5ba79c3b114fa0db2bba4f4cf36c3f8aa50 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000018.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:220982f1025aee1cec372ce4059f12b079b5a09efe33e172a9590c69274fed35 +size 25169554 diff --git a/videos/chunk-000/observation.images.global1/episode_000019.mp4 b/videos/chunk-000/observation.images.global1/episode_000019.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..fb2f746f8f8d068c1c3ddb34f73570dd86794a70 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000019.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97fad0a225fb4fa3a7ddb9ff1fc46214111d0d19e3ea407fa3675abf637c0125 +size 15719328 diff --git a/videos/chunk-000/observation.images.global1/episode_000020.mp4 b/videos/chunk-000/observation.images.global1/episode_000020.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..033cfa9bd5849ba34444e425477ef49e335f46c1 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000020.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:837be7dad1187790eb228329cf51ddb06d5897912648e7ccd8d987e2e56b745e +size 15573127 diff --git a/videos/chunk-000/observation.images.global1/episode_000021.mp4 b/videos/chunk-000/observation.images.global1/episode_000021.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..498f3e46e6d4c92447c2adcf35b6f01bc55ee093 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000021.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32bb609c84ac9f96dc2769f645698f9d9163625445f1e710d109ea7461bd0f49 +size 16412430 diff --git a/videos/chunk-000/observation.images.global1/episode_000022.mp4 b/videos/chunk-000/observation.images.global1/episode_000022.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..825e55098d449c3327a392aecd6cff18cbf48e55 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000022.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67392d70c59c0744f707996e51286d501bab3e2a3d3644e9400429b7ca83d3ba +size 20219608 diff --git a/videos/chunk-000/observation.images.global1/episode_000023.mp4 b/videos/chunk-000/observation.images.global1/episode_000023.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..45f52da19fcc3764b3a8c21da177a8ce08bcd424 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000023.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13115cf6cb57504e7b26fdb956e7b13a63ed56fd50070fb3c13ea94286a6dd52 +size 18933603 diff --git a/videos/chunk-000/observation.images.global1/episode_000024.mp4 b/videos/chunk-000/observation.images.global1/episode_000024.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e5ce21a607c544b9a68370c1e2788820eaf147e4 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000024.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c929de4813e0b18a649d77096fb5148a24ef5afea610ffddfc2ea1641817de8 +size 14606169 diff --git a/videos/chunk-000/observation.images.global1/episode_000025.mp4 b/videos/chunk-000/observation.images.global1/episode_000025.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..04ee72d57c819ca74f383dd1f76e8d21e08f40d6 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000025.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:627971998cc5dda344dca4b3cc1a8b2c5a94af7aea08be10dd02d71a0aea49d9 +size 16003823 diff --git a/videos/chunk-000/observation.images.global1/episode_000026.mp4 b/videos/chunk-000/observation.images.global1/episode_000026.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..7698090817af2f9dde712f32e78a808b11276d7f --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000026.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9ba267c4d8190b1effd82f23f2e5dcbe4ce04f089f4e65b30c5f2c8608d8227 +size 17018639 diff --git a/videos/chunk-000/observation.images.global1/episode_000027.mp4 b/videos/chunk-000/observation.images.global1/episode_000027.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..624514407f4c67b38054cc07e3a37f77051b77d3 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000027.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d846399bd64129ceb839d0316c32dfa583c7e9c589a9732940b50fe829452ce +size 15127876 diff --git a/videos/chunk-000/observation.images.global1/episode_000028.mp4 b/videos/chunk-000/observation.images.global1/episode_000028.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..7ff96bb20d2cb9b063a6c1bfc8d6424cd26271c3 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000028.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71c4e0e3ba4119d385d49b64226f9d2a92fa14653f92fa85274d47b2d840dd40 +size 19911338 diff --git a/videos/chunk-000/observation.images.global1/episode_000029.mp4 b/videos/chunk-000/observation.images.global1/episode_000029.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..44f1bf20eda7fb4d42e79f6b378b27d050b0a475 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000029.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:221f0a34b9a791ec22f33d6c8f75ea48462b1e39cdc117356263444f78c50de6 +size 20161819 diff --git a/videos/chunk-000/observation.images.global1/episode_000030.mp4 b/videos/chunk-000/observation.images.global1/episode_000030.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..598986b3d1b84128f07487b8f192640d25d2815a --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000030.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d42f05398aa4a759465857561efc27245b37462d9726f39338d94829b50bdce6 +size 16332436 diff --git a/videos/chunk-000/observation.images.global1/episode_000031.mp4 b/videos/chunk-000/observation.images.global1/episode_000031.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ae2998d833c62fdadeea6468abbd02819e6f760b --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000031.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f156a8a61c58c624b7197a4258b7f86ac3d9bee219c3d7c2ac322456f382b3c9 +size 17147415 diff --git a/videos/chunk-000/observation.images.global1/episode_000032.mp4 b/videos/chunk-000/observation.images.global1/episode_000032.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..292dd8173027ffc245175c78dcd7841dd787ca22 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000032.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d99b5d4c493b5ccf0cc390096527c10836f3e6a8d0c796ebf747a1770a1a707 +size 14979170 diff --git a/videos/chunk-000/observation.images.global1/episode_000033.mp4 b/videos/chunk-000/observation.images.global1/episode_000033.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..cae3151228895285e907f2731e735af3a65a7d5d --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000033.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa0653436b852e833eed33efced758d1491a4bcb641d2ba59fe44f4d6a9f9336 +size 16399963 diff --git a/videos/chunk-000/observation.images.global1/episode_000034.mp4 b/videos/chunk-000/observation.images.global1/episode_000034.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..69a4342dce3b0852a2b6661f207580ca2109babc --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000034.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1d79833a081f2e59e0555b9e45534c3053bbb46d92c09d555f8d995ea2e30b3 +size 15114979 diff --git a/videos/chunk-000/observation.images.global1/episode_000035.mp4 b/videos/chunk-000/observation.images.global1/episode_000035.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..18eefafc49207369373c12fef1dd7ee5238b1500 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000035.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9506e089ae487d7f34adf1152ed9b94c4727969ad33541f6659843dde87d4fbd +size 13881628 diff --git a/videos/chunk-000/observation.images.global1/episode_000036.mp4 b/videos/chunk-000/observation.images.global1/episode_000036.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..79697528c211044d99f1e9ff5ab37f0d5aef458f --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000036.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cb6f1d0285c563e750d96563ec0fb416595be79118f8c620e5485eae7f4aa5c +size 16241240 diff --git a/videos/chunk-000/observation.images.global1/episode_000037.mp4 b/videos/chunk-000/observation.images.global1/episode_000037.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b0f767bc85c20173aa8d2223b92374a7a28d23c8 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000037.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bda3b59be39cc26d22c8b0cbcbf3322fe9455ff91d585d6ba432ddcaedb6cea +size 12180874 diff --git a/videos/chunk-000/observation.images.global1/episode_000038.mp4 b/videos/chunk-000/observation.images.global1/episode_000038.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c7cf12f2625d034965ef0beb65e72ea76543187d --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000038.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75503cafd647961c7925edd60ea3479df1ef4a9d5cb249e8ea2782221bf06294 +size 13546972 diff --git a/videos/chunk-000/observation.images.global1/episode_000039.mp4 b/videos/chunk-000/observation.images.global1/episode_000039.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4279700c45bcd0523906ca1d0fb9c88f0e7dbce1 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000039.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18d594719a9371a3e2693e505f0d703611c0b2887c5866c5f3d12299b1461615 +size 16474993 diff --git a/videos/chunk-000/observation.images.global1/episode_000040.mp4 b/videos/chunk-000/observation.images.global1/episode_000040.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..12efd8397c4be0a403fc66b82bae4310da19b75b --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000040.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcd61c4fd35fb70f94f6900e752bb7f74eefdffdabb87f5debbfda9499c6ef7a +size 17256643 diff --git a/videos/chunk-000/observation.images.global1/episode_000041.mp4 b/videos/chunk-000/observation.images.global1/episode_000041.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4b896fa98b1c3d400f0abece15aaef3f8d8a30ba --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000041.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42305df4daf913329c8e8134f5d3a465149c99ae4b3ba22916fb1a86ff340506 +size 12876331 diff --git a/videos/chunk-000/observation.images.global1/episode_000042.mp4 b/videos/chunk-000/observation.images.global1/episode_000042.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b4d2cba491031d8d09e1cac723c87e8a5db2b5b7 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000042.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0da406f18af5702d421011234956b043722d6c07bdfb4793cd8004bb2960189f +size 17726746 diff --git a/videos/chunk-000/observation.images.global1/episode_000043.mp4 b/videos/chunk-000/observation.images.global1/episode_000043.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..61ff7bd66834029b1bec05b884dabb317d3088cd --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000043.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cfa0a7caec3f1c6e9bf07263a11ba765f8b2dd7df56efad0880c6be7b985361 +size 16537581 diff --git a/videos/chunk-000/observation.images.global1/episode_000044.mp4 b/videos/chunk-000/observation.images.global1/episode_000044.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..99b2ebf00cde02e0085c7025b7ecb871256d24a9 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000044.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:086b458e8396fc0af1e7eec0ecb7641204c00f302efd43b04636ef093537165e +size 18406432 diff --git a/videos/chunk-000/observation.images.global1/episode_000045.mp4 b/videos/chunk-000/observation.images.global1/episode_000045.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..883178cb69ffcb7af922d7440f1b904585687ce0 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000045.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a920c997b8f924fe08b579fcfe82ca973e8f35b02cdc54c8d37ac26917ca031 +size 14303284 diff --git a/videos/chunk-000/observation.images.global1/episode_000046.mp4 b/videos/chunk-000/observation.images.global1/episode_000046.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c92142145f256a326cdfec4b63d9242c3c10f2af --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000046.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a6dca3a63a5beb6c5eba3d2bca4c20debd8b541e314be2285b0e3178cec12a5 +size 15892925 diff --git a/videos/chunk-000/observation.images.global1/episode_000047.mp4 b/videos/chunk-000/observation.images.global1/episode_000047.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..7308c718d2dc4bf26300ea27c12e4d1646d6f617 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000047.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fd45a82087904815de6d35944a9fb495eea966369642b5136c205ee7df1ecb5 +size 15366146 diff --git a/videos/chunk-000/observation.images.global1/episode_000048.mp4 b/videos/chunk-000/observation.images.global1/episode_000048.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..140822060b5636f39b8795dbb3e0fc915e7f4094 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000048.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9e6531a792b80b76f1d6a1b605b592b086c714ffd28d7b3b10b500aaaa88a4f +size 13838154 diff --git a/videos/chunk-000/observation.images.global1/episode_000049.mp4 b/videos/chunk-000/observation.images.global1/episode_000049.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..7df0864c3c16effb60313028487002cc9b85dbee --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000049.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:694a90811fd7a1400ef4077c07b6dfe92ec959b1cc1b80287d97e8731dc792c7 +size 14791710 diff --git a/videos/chunk-000/observation.images.global1/episode_000050.mp4 b/videos/chunk-000/observation.images.global1/episode_000050.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b888f8db8032348f35cdbd7b5371fa7f49d0d801 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000050.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bba30648a136e408b494d441fd39086113504e4baf0363b82ec0f80d8bd94f7 +size 19809081 diff --git a/videos/chunk-000/observation.images.global1/episode_000051.mp4 b/videos/chunk-000/observation.images.global1/episode_000051.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4f1163a7ce7214b35e802be876cd911c41f85de4 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000051.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:332fe04aeaa32992e92318fa1a1714a2a37c5b97e0bb02982fa09a07f9e4ab87 +size 22658259 diff --git a/videos/chunk-000/observation.images.global1/episode_000052.mp4 b/videos/chunk-000/observation.images.global1/episode_000052.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..33652252300ad57cda97c2daf36ad6d6e897153c --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000052.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f7a828ff70701f8fffe59cd08a7b3414488351ecc0f1600d8e1537c39701783 +size 24893780 diff --git a/videos/chunk-000/observation.images.global1/episode_000053.mp4 b/videos/chunk-000/observation.images.global1/episode_000053.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..21a948fc8f2b0ef91551e51a99c9d77db51f4b6c --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000053.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:758876b5b9bc13536ab330af310a7ce932dd0e8dd884af882209ebf141af040a +size 22779261 diff --git a/videos/chunk-000/observation.images.global1/episode_000054.mp4 b/videos/chunk-000/observation.images.global1/episode_000054.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2beb0d2ecebb827458f16e0811050a32f35c0f05 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000054.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ffea1de39c461876c2902aa785d07dfe192b7727ade41e3cb7ac30ad7a5b2b5 +size 16589348 diff --git a/videos/chunk-000/observation.images.global1/episode_000055.mp4 b/videos/chunk-000/observation.images.global1/episode_000055.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..950c6599896c33dea82b396a68ea69fc03290d26 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000055.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91417d4c5fa214c5627431120957b77a661dcc5cc4d0f5672084f2d7be356afa +size 23004871 diff --git a/videos/chunk-000/observation.images.global1/episode_000056.mp4 b/videos/chunk-000/observation.images.global1/episode_000056.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a5cbe847e10d41d2d328eea4a5fc78585b3624e7 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000056.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f438796d9ec4c1c202d040649bf95c2c9adb778a89e606bc2b2a3c7807e7882 +size 20079173 diff --git a/videos/chunk-000/observation.images.global1/episode_000057.mp4 b/videos/chunk-000/observation.images.global1/episode_000057.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..80686bc669a0a4281638a7048cfbfbd19c560de4 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000057.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56aeee73493d9c298b2dc03dd691fa27370f06ffd4b80e74730902a9152c0063 +size 20852941 diff --git a/videos/chunk-000/observation.images.global1/episode_000058.mp4 b/videos/chunk-000/observation.images.global1/episode_000058.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0693d40073aad509a71c9d8e5cc995a77d889082 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000058.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:765cbc4e63d823f4c1eedfbd4763dad806d367c590baf0edd546283b19a742cf +size 16424529 diff --git a/videos/chunk-000/observation.images.global1/episode_000059.mp4 b/videos/chunk-000/observation.images.global1/episode_000059.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ae479f0a9e8d88430116472f9d560e2596da8b30 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000059.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b702881bca84ac5b2d1a48ae3c7b0b9da484029bbb7e66f6bbdaf7b5e5ee974 +size 16604626 diff --git a/videos/chunk-000/observation.images.global1/episode_000060.mp4 b/videos/chunk-000/observation.images.global1/episode_000060.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2a5576e80ec330745d205c846e11c1032c50636b --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000060.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de05cd4c2e89806e225b101ad7618e7b24dd8aec85be1261df2104441cc10b5d +size 19564331 diff --git a/videos/chunk-000/observation.images.global1/episode_000061.mp4 b/videos/chunk-000/observation.images.global1/episode_000061.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..45c3f80cb57a1280e45538e963d451bbafb1ce20 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000061.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dc3483f77bd091dcb07b23868a7689840176198132b0f1488b6fe5c5c3e0906 +size 22713675 diff --git a/videos/chunk-000/observation.images.global1/episode_000062.mp4 b/videos/chunk-000/observation.images.global1/episode_000062.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..40b96d0bdee453c909c7e55ab6e638540287e652 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000062.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0702acc2d21c820606737610cba0b6e60a2b039a06c39b3fcc741d958fa1b0e +size 25854240 diff --git a/videos/chunk-000/observation.images.global1/episode_000063.mp4 b/videos/chunk-000/observation.images.global1/episode_000063.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..7fc527ea431d51b3b440531921006cc818de9e11 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000063.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73656153731a3386b4110ee6d0b5b82cca2dafae4478d60c6976e031154f0cbb +size 18178738 diff --git a/videos/chunk-000/observation.images.global1/episode_000064.mp4 b/videos/chunk-000/observation.images.global1/episode_000064.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..602005c8052e21e9ca80c36befe00bb7cf63e614 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000064.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3470375c5cab327fc7ac2c8c98cdebe27e7cf1a47df896f16d2458cf078d8f90 +size 19078847 diff --git a/videos/chunk-000/observation.images.global1/episode_000065.mp4 b/videos/chunk-000/observation.images.global1/episode_000065.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..47e6001c66b1b9dcbc2d5746adbe3a2b14c30aec --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000065.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b07c9adf788b3b053cea8e74b70b5fd09fb68632df76e3a355ab213ba556d7b +size 15316092 diff --git a/videos/chunk-000/observation.images.global1/episode_000066.mp4 b/videos/chunk-000/observation.images.global1/episode_000066.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6a8955d5e925114bed9fb426915fbbb268216ff8 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000066.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d8bd5f1d30125f4f8bff2e18c6ffdb6f7d805e57fbc5b25badcda795c9cf493 +size 16140607 diff --git a/videos/chunk-000/observation.images.global1/episode_000067.mp4 b/videos/chunk-000/observation.images.global1/episode_000067.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..425ae23812fc1fe3aa372322cc47b853eeacacbd --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000067.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b759acaef4c23e050b0d1462ee5342ce3a2fbb967bdd9ea7ac90896c56d60c7 +size 25316753 diff --git a/videos/chunk-000/observation.images.global1/episode_000068.mp4 b/videos/chunk-000/observation.images.global1/episode_000068.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e55fbefb58cfcb0acfa2bc2cd4bfced9e11d3bd4 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000068.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2de59a07b66f0637bad9e4acb3a4f188c8bd83b44820716ea0f4b9a3dcd7ea3b +size 20827578 diff --git a/videos/chunk-000/observation.images.global1/episode_000069.mp4 b/videos/chunk-000/observation.images.global1/episode_000069.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f2b10564eda392fd28b6b0edd882feefe4752016 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000069.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94ac798ceda553fbb5dae534366ebf0f1cbdb3ee3e2c3a7ef33d4a28a6c44bf6 +size 18436481 diff --git a/videos/chunk-000/observation.images.global1/episode_000070.mp4 b/videos/chunk-000/observation.images.global1/episode_000070.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e0b38994692b1b4ca173c835c65da94f61d3b2ca --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000070.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ccc7def68df37e3e83444a0a4aa6171a0171410dbe44307348f4fe603d0ca28 +size 16217775 diff --git a/videos/chunk-000/observation.images.global1/episode_000071.mp4 b/videos/chunk-000/observation.images.global1/episode_000071.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c65847358b3b3821cfb5954905bc4a811d30870b --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000071.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:117923fb7e871893c8556ee999d0b5c82c08c05ca21efe4e14df938ed6a558f7 +size 19281174 diff --git a/videos/chunk-000/observation.images.global1/episode_000072.mp4 b/videos/chunk-000/observation.images.global1/episode_000072.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..aea94ce642bf3a096e39dd4c52ce3b4629e9e759 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000072.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e57ecebafca4f8147c255795a9a55ebc5d3cb93f83b9db65c0eebfca54dc85c8 +size 22236694 diff --git a/videos/chunk-000/observation.images.global1/episode_000073.mp4 b/videos/chunk-000/observation.images.global1/episode_000073.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1e9219514fb5955193d9eda0fabebba98c3478a0 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000073.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aff7ac1d609671a004dc5846f341460e0f176ae2354d47b452dbbcb17fd1bedc +size 14559608 diff --git a/videos/chunk-000/observation.images.global1/episode_000074.mp4 b/videos/chunk-000/observation.images.global1/episode_000074.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..636c964b9fad4cc92499fd89b2b98c3413ffeed4 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000074.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8813f12c8d26ef574fc69ae8b151032ca315c7955ae913f7ab641668414e6a3e +size 15825960 diff --git a/videos/chunk-000/observation.images.global1/episode_000075.mp4 b/videos/chunk-000/observation.images.global1/episode_000075.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8bbec14e9fc1566813b56c43ca341bb82922c713 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000075.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25447055f2232441c74e9bc3a43870045f9f1a5cf3e02c77d5b74aac2ccf21aa +size 14071487 diff --git a/videos/chunk-000/observation.images.global1/episode_000076.mp4 b/videos/chunk-000/observation.images.global1/episode_000076.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..486f4c42536abb8e8a8c0ed0b6b3b52bfba56e49 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000076.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:725c0e4ec66c0aa7dd1fd64e9106956ba9b5f4f40486a37e58f91c22e69030c3 +size 18750854 diff --git a/videos/chunk-000/observation.images.global1/episode_000077.mp4 b/videos/chunk-000/observation.images.global1/episode_000077.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6dab151bfcd1352b9034534977dd0f027602874c --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000077.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e644339169da9634e05120d7811a51472ee4fe45fd776e3df9db1853d73c3213 +size 14631816 diff --git a/videos/chunk-000/observation.images.global1/episode_000078.mp4 b/videos/chunk-000/observation.images.global1/episode_000078.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9d96f3a248fad19c6a6ef9f8b8364d60e480f891 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000078.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce51dcf2c6463137ac2922517eaacbcb5d6949636db280d3db9eae460bbb5832 +size 13703073 diff --git a/videos/chunk-000/observation.images.global1/episode_000079.mp4 b/videos/chunk-000/observation.images.global1/episode_000079.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d1e40139c3d658c5bbb176036faf68914242427b --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000079.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2809cb6be02cadf3749a671eba2c5add96a76d49ceb5b3c7fb21dd2aa3236ad +size 13994148 diff --git a/videos/chunk-000/observation.images.global1/episode_000080.mp4 b/videos/chunk-000/observation.images.global1/episode_000080.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..323123ee243a896fc6acaec8f1d31524f1e23277 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000080.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57552c665b831533ed13494fb463fcea4d9d93cd1e9a86174cbe038df14401ed +size 13782585 diff --git a/videos/chunk-000/observation.images.global1/episode_000081.mp4 b/videos/chunk-000/observation.images.global1/episode_000081.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ef54e64360db3c5a4ccd5132b01e681390a1bb1d --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000081.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65a3460027bd51c6d33008bc9157268a932ec164a33f6ce14e18b5d9855c79c2 +size 15642557 diff --git a/videos/chunk-000/observation.images.global1/episode_000082.mp4 b/videos/chunk-000/observation.images.global1/episode_000082.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..147285cd44cd963df18f4fdddeb2a629bd34b0c3 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000082.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f6c737dae8fac11449bfa8cf002bf9af09443e62ceb6d208728bd1aa572f4dd +size 11556818 diff --git a/videos/chunk-000/observation.images.global1/episode_000083.mp4 b/videos/chunk-000/observation.images.global1/episode_000083.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..db8c2f485715d49836108380ecc483e3996b0487 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000083.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64546774eeb30b93487511799f73c97be228e16eb704dc13f83c48ade74bdd8b +size 15528987 diff --git a/videos/chunk-000/observation.images.global1/episode_000084.mp4 b/videos/chunk-000/observation.images.global1/episode_000084.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c32843b583e66a68824aed382e589ab70cb79349 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000084.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:568df98cf0f18d5cd108d83febab271c3a97f248381fcab92d8c88d024a89591 +size 18115884 diff --git a/videos/chunk-000/observation.images.global1/episode_000085.mp4 b/videos/chunk-000/observation.images.global1/episode_000085.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..fd9239390fcd19a84d97923c3b21453adc80dcac --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000085.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d63becfca967de458c32e14d856df5ba65e8f0a9179443f480093a088eb538f +size 14658415 diff --git a/videos/chunk-000/observation.images.global1/episode_000086.mp4 b/videos/chunk-000/observation.images.global1/episode_000086.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..dc8fcaf675d5eb15412e1f66978cb5ba989cc460 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000086.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef8311e2504d95ff1b7c26bb73d2ba0f98da05222c3a783a2d8bef1ef75bbab5 +size 15468250 diff --git a/videos/chunk-000/observation.images.global1/episode_000087.mp4 b/videos/chunk-000/observation.images.global1/episode_000087.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8c0615becc5160e53b23f27b17f9242f4ea0336b --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000087.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39f048c51c595c0d3dc06f1f93bbb9bbf89013efb10d7d080308bcd0abecfaa3 +size 20454831 diff --git a/videos/chunk-000/observation.images.global1/episode_000088.mp4 b/videos/chunk-000/observation.images.global1/episode_000088.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..dd5c232305e88d9c48253b85a9e469390f3e1b32 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000088.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d548d24f8778a5b5b8558b8b6e2a74b92cf30e7fc6103247782e367bde619b8 +size 17766851 diff --git a/videos/chunk-000/observation.images.global1/episode_000089.mp4 b/videos/chunk-000/observation.images.global1/episode_000089.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0322230d1e5c6de49c3eb06901b0f374314b1d08 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000089.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a40efca9c09e4b5629d2276706c1960de10aa11785e5ad2d87cf13f5af8faec +size 18755514 diff --git a/videos/chunk-000/observation.images.global1/episode_000090.mp4 b/videos/chunk-000/observation.images.global1/episode_000090.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8455f349dd1433edd0ab9c7dfe7b822db142d06d --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000090.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18c2f7a83a61fa0b32fb73451746c179a505544857adc66e2a5d0d51e6c901cf +size 17558649 diff --git a/videos/chunk-000/observation.images.global1/episode_000091.mp4 b/videos/chunk-000/observation.images.global1/episode_000091.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..09ca38f88d05ecf62f4e1439e00a5a5a59d892ea --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000091.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6558883f67d6e4ed2408f25349b0eb51252c78f9832425a6ed54bb9388ff89ef +size 15782686 diff --git a/videos/chunk-000/observation.images.global1/episode_000092.mp4 b/videos/chunk-000/observation.images.global1/episode_000092.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..56f2b5332b88287d7d5797ffc799a53b7b021cec --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000092.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c9c7844b21c2b031907828d82fc56aef1cbe93327018b4cb159dd9701d4be26 +size 16002152 diff --git a/videos/chunk-000/observation.images.global1/episode_000093.mp4 b/videos/chunk-000/observation.images.global1/episode_000093.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..71c1c450f1d33c0df3b0740548664c818132d68b --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000093.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38656b23e7bc7d26f9a66e3677941d95a8594ee2e37e5b3dbf4c0344f79f2529 +size 17703947 diff --git a/videos/chunk-000/observation.images.global1/episode_000094.mp4 b/videos/chunk-000/observation.images.global1/episode_000094.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1c4489db8552da07bfd7550338cc1045411fa576 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000094.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fab0072ba3930b5152205bce29d8d7dac6c7086248c98c96ee78a934480aacb7 +size 18803960 diff --git a/videos/chunk-000/observation.images.global1/episode_000095.mp4 b/videos/chunk-000/observation.images.global1/episode_000095.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b05a7b8d209c5e0627912be86c64401e4283c1ef --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000095.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:465fa3053d8e761e26415dedb494816158ee48e5a793c588672870ebe8159318 +size 16525808 diff --git a/videos/chunk-000/observation.images.global1/episode_000096.mp4 b/videos/chunk-000/observation.images.global1/episode_000096.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..bca01591dbae476d79dc67a66d81a85a2730bb6b --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000096.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bddb12aff2cd8525f5929eaa79daa8be2af3265c7c768c078b9d9135716ecb94 +size 17099781 diff --git a/videos/chunk-000/observation.images.global1/episode_000097.mp4 b/videos/chunk-000/observation.images.global1/episode_000097.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6e57702d8c8fa4db4453666e79274dd82ed5bb0d --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000097.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:873891f8de2e2e007915487cdb33d18692213e0fa7e92f2dac78b6da0db442ab +size 15459675 diff --git a/videos/chunk-000/observation.images.global1/episode_000098.mp4 b/videos/chunk-000/observation.images.global1/episode_000098.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1b57bba6688a4de0f4440abac20f46615620d3a4 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000098.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba09ffc158d34545d716ad1db7d6f6da9d2c639b7949d4e3e86ce15345e9bebd +size 15959837 diff --git a/videos/chunk-000/observation.images.global1/episode_000099.mp4 b/videos/chunk-000/observation.images.global1/episode_000099.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0d9d00bebba7c586ab2f2b37a978e4c8b8177d00 --- /dev/null +++ b/videos/chunk-000/observation.images.global1/episode_000099.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7639ba0e43f6d9b00ee4550368dabcbcd3b8b0fda51bd9fecfab4df3a467de28 +size 15167726 diff --git a/videos/chunk-000/observation.images.global2/episode_000000.mp4 b/videos/chunk-000/observation.images.global2/episode_000000.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f28da01f99d2afe7376da7412ebae7370ffc773b --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000000.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:022cffb18ba749755647d3cc03c7e81da597e648e95536609cf12afd7c191651 +size 10516440 diff --git a/videos/chunk-000/observation.images.global2/episode_000001.mp4 b/videos/chunk-000/observation.images.global2/episode_000001.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..499f84b0caf7ce469c0f552c67b621f5c1593d53 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000001.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c56b2b51398acea1bdf48631ba7217d16c5b4d52af4fc4f1ba232a3f29fdd2f +size 9958794 diff --git a/videos/chunk-000/observation.images.global2/episode_000002.mp4 b/videos/chunk-000/observation.images.global2/episode_000002.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..66aac6a33a3c819700efd44e02c200829019943a --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000002.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:931f5ab78192dd10f3577506fe22378defa2d0ffa1ce946edd18d7096d557629 +size 10634159 diff --git a/videos/chunk-000/observation.images.global2/episode_000003.mp4 b/videos/chunk-000/observation.images.global2/episode_000003.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3d847b8006e3bd42ee44f82f70d21192209054b6 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000003.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee0f474518f32e917f95c13481a26b29d3ded6a82eda758598caf99ac199d14f +size 7635591 diff --git a/videos/chunk-000/observation.images.global2/episode_000004.mp4 b/videos/chunk-000/observation.images.global2/episode_000004.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0f61a3c36abb83eef9003748002684c42cb30bde --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000004.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b951773f5cd5d101605293ceec4697bd8d195ba9f65ad06cb1d1e79a7877d32a +size 9247322 diff --git a/videos/chunk-000/observation.images.global2/episode_000005.mp4 b/videos/chunk-000/observation.images.global2/episode_000005.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c18481acb2fbd3310328f9549dca83c722b81735 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000005.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcc6513c4bfcb94ce11d38de649caee7a6933fa76698246459306ef1ccf3dc59 +size 7070142 diff --git a/videos/chunk-000/observation.images.global2/episode_000006.mp4 b/videos/chunk-000/observation.images.global2/episode_000006.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..942c7a89cc0ad9a1ab39515263b895dcb67ecc62 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000006.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c3a8bc6d461c24da0d90e1ce3d9c3f6240dee790c88cd5e6e403a5418652b67 +size 8159250 diff --git a/videos/chunk-000/observation.images.global2/episode_000007.mp4 b/videos/chunk-000/observation.images.global2/episode_000007.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d5797ffdb108670c6e5e5f7ee59893d35c888af8 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000007.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9406d2b7ea3196f76c250bca96766c8f877158ea36b98c2251617de68569f68a +size 8588207 diff --git a/videos/chunk-000/observation.images.global2/episode_000008.mp4 b/videos/chunk-000/observation.images.global2/episode_000008.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..7a640f20c6f1070f32f387d37256e34380a93e2c --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000008.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:498780a7c63ae9d8a4e76fa925b3ac0c6780b3a2bb00563ecf795d249ed41618 +size 7869821 diff --git a/videos/chunk-000/observation.images.global2/episode_000009.mp4 b/videos/chunk-000/observation.images.global2/episode_000009.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6cba0247ad86127508376f272a2f395725b38e3e --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000009.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be73ef0da59b51a7d68a83568fe02af38aaf2e783c17325f634ffee5e6fd8a5e +size 6557393 diff --git a/videos/chunk-000/observation.images.global2/episode_000010.mp4 b/videos/chunk-000/observation.images.global2/episode_000010.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a93816af90d5e3b6a0080670eeea7d9e75f5d231 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000010.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fef56802b92b9ec8de8e121830bfc05a16d93f80c98fb61a32fbb16c6ae21dc +size 8252066 diff --git a/videos/chunk-000/observation.images.global2/episode_000011.mp4 b/videos/chunk-000/observation.images.global2/episode_000011.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e663d5032e05771a22788c68b073092396fd404f --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000011.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5da7d0b248e0f8e12cdff05c771b062d46920573062312d38dec3cc8c54a3398 +size 7387825 diff --git a/videos/chunk-000/observation.images.global2/episode_000012.mp4 b/videos/chunk-000/observation.images.global2/episode_000012.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1e7d9b8b3eb16de62a5313d8f4ef797e96ce6fbf --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000012.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d2c1a3700d4771a13c70e9c1bcb89a5d8d69a7f018eaa413080616d86569b31 +size 6193671 diff --git a/videos/chunk-000/observation.images.global2/episode_000013.mp4 b/videos/chunk-000/observation.images.global2/episode_000013.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2d82b8d7a4db84611663efb21487c300339e3424 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000013.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ce2bf09ce5bb6945129134eed8371ad95a746a52f2a9a15e0bbb8a6bf538f5e +size 5062179 diff --git a/videos/chunk-000/observation.images.global2/episode_000014.mp4 b/videos/chunk-000/observation.images.global2/episode_000014.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..31f15ba076c3a0a3c2cd7d9cc233c4683c45b868 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000014.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b194a04003118e7bd8338a8387546124f658dc188dbed20b0a4694bd719a4e5e +size 8889337 diff --git a/videos/chunk-000/observation.images.global2/episode_000015.mp4 b/videos/chunk-000/observation.images.global2/episode_000015.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..181094f358d84efbae618f482a2d72c14ed76143 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000015.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d819becb2d83dd1d8f86e57df5e822b9eaf8168c0883b69dd64077470702492 +size 6623960 diff --git a/videos/chunk-000/observation.images.global2/episode_000016.mp4 b/videos/chunk-000/observation.images.global2/episode_000016.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2756c7f17e20e04b77dbb498771982a53cd57216 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000016.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4d80c4b2a3db88c8892735ba476641e9d30e838c711dd9f153a461bae8093c1 +size 6505171 diff --git a/videos/chunk-000/observation.images.global2/episode_000017.mp4 b/videos/chunk-000/observation.images.global2/episode_000017.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c0ee331b9b7aa36933f7d69b8a0076a4eeac401f --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000017.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68ff09f676df5d6b5fb1fc9a52777ec376daf6bf7de7f1592406bd64888b48d6 +size 7981546 diff --git a/videos/chunk-000/observation.images.global2/episode_000018.mp4 b/videos/chunk-000/observation.images.global2/episode_000018.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4ffc74dd886c52c85d450245a1ed9b640ebbb798 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000018.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c22009b8a349c3ea1b487b0d276d46c8ab3e8ddc44674cb4fee436f9cbad6ba +size 8401228 diff --git a/videos/chunk-000/observation.images.global2/episode_000019.mp4 b/videos/chunk-000/observation.images.global2/episode_000019.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..7327c0831e5e0fee2e5b714ac792ecd9b902ff51 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000019.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4123d4719527c83387b93513f1420b71fb89d599fb9a41ab22ffb6e2c01903f +size 5494307 diff --git a/videos/chunk-000/observation.images.global2/episode_000020.mp4 b/videos/chunk-000/observation.images.global2/episode_000020.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..bd776c73d3a9e059259a764466524da65f21806a --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000020.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:065d00c7a85dc65f20eb5dc8f0d904c19082db2880e6694ff0182af0d0cdab55 +size 5350078 diff --git a/videos/chunk-000/observation.images.global2/episode_000021.mp4 b/videos/chunk-000/observation.images.global2/episode_000021.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9fbd1579cdff872191838375fa9bcb89ae403a9a --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000021.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f6d5ab056cad7b6cde247f10154d7c227bda8effa5e8f2c891a5bd1a2d824b8 +size 5847019 diff --git a/videos/chunk-000/observation.images.global2/episode_000022.mp4 b/videos/chunk-000/observation.images.global2/episode_000022.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..87675829653b5a1272da587cf06a2af9e77a4a16 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000022.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86c6de0cf4ba0f801024de4571ee0f808b9a3780bf9d67599c951154e0262087 +size 7121054 diff --git a/videos/chunk-000/observation.images.global2/episode_000023.mp4 b/videos/chunk-000/observation.images.global2/episode_000023.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..44274823df995ebf34c3f384cc5d24903047bd1e --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000023.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77c2e3dea2cf2996301bee7c8812de15bdd995d109e6a1731c7a474ac82a8157 +size 6596922 diff --git a/videos/chunk-000/observation.images.global2/episode_000024.mp4 b/videos/chunk-000/observation.images.global2/episode_000024.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ae80aa397b40eaf1a2de6750da59112c00658bdc --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000024.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b26e2fa39c7d000196a0a5b92de1a7e2324841ddb48b8304f9544542749214c +size 4986873 diff --git a/videos/chunk-000/observation.images.global2/episode_000025.mp4 b/videos/chunk-000/observation.images.global2/episode_000025.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5498d186f42f64c253f7cffda2579972eef0c619 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000025.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7af90fd12aa9489f9353058cdb79c7fda6c493e5fb00a93e72ca44ec6d7b06f3 +size 5578845 diff --git a/videos/chunk-000/observation.images.global2/episode_000026.mp4 b/videos/chunk-000/observation.images.global2/episode_000026.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..010dc59e8efa662c72be5fd34b11d7c6088e5555 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000026.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd9b648e4a567eced35edfe408f9f73983302d8fae0bd036114b2bbf52489af6 +size 5873452 diff --git a/videos/chunk-000/observation.images.global2/episode_000027.mp4 b/videos/chunk-000/observation.images.global2/episode_000027.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ca36bba7baa9556dd168871b481fb754380bb817 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000027.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b228f5630c64bd487e537939c6b8b25f9aba97cae58c97e2768e811db19bd3e9 +size 5269383 diff --git a/videos/chunk-000/observation.images.global2/episode_000028.mp4 b/videos/chunk-000/observation.images.global2/episode_000028.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..64e224ab7b7a91d67c503378e5eeb31db4d69772 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000028.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32886ef35b92b24f4194315cb4f9b9856496571b5a58409371bd5e183952ba1a +size 8751190 diff --git a/videos/chunk-000/observation.images.global2/episode_000029.mp4 b/videos/chunk-000/observation.images.global2/episode_000029.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2a3c9cd8417fb0682f190f2075c3373618fac36a --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000029.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da7ccb235bb645ed2a62aa952b57672a8c7e134aca0115c7f337dd932c920c94 +size 8417966 diff --git a/videos/chunk-000/observation.images.global2/episode_000030.mp4 b/videos/chunk-000/observation.images.global2/episode_000030.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..81b6c90390acb015239fce12b512d341b56aae1b --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000030.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8109f8783bfb5c66cf4f8d26606cffb750e0d9d743be0d90ea394eae8478590 +size 6536795 diff --git a/videos/chunk-000/observation.images.global2/episode_000031.mp4 b/videos/chunk-000/observation.images.global2/episode_000031.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8589db84e3849a250599508643343c833ebc0528 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000031.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bdbe43679b2ee32b07746ba63186052d05cee11864b0210f85cdca4ac340d8a +size 6783483 diff --git a/videos/chunk-000/observation.images.global2/episode_000032.mp4 b/videos/chunk-000/observation.images.global2/episode_000032.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..326fbed0d4b0b8396cf7f6905a62db13b044fc29 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000032.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f9d831f8183e1f60c7890cb470349334e4f23bf09566820f551a7f70c0e7ac7 +size 5975003 diff --git a/videos/chunk-000/observation.images.global2/episode_000033.mp4 b/videos/chunk-000/observation.images.global2/episode_000033.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1f28c19219f9cd97057488ddefc1ef9417abc752 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000033.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9cf860b12ba91b40e0b3fbd0595141dbd34438c4c512f7be4029caaf8758bdd +size 6350414 diff --git a/videos/chunk-000/observation.images.global2/episode_000034.mp4 b/videos/chunk-000/observation.images.global2/episode_000034.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0eec29d6158fa9bf84cb4136acceac53621a197d --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000034.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b611a2a4b4d8bf390c1c9ad03eab32aa830e5eb354bf37ed6afdd18a26bf6ff +size 5769129 diff --git a/videos/chunk-000/observation.images.global2/episode_000035.mp4 b/videos/chunk-000/observation.images.global2/episode_000035.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..755a7bf683e8e15579186753f799377e7d723f40 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000035.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:594b11bfb1da1c0d2a0dd3910d8eaf2ea7b1b220ba2f5287df9fee29cd1564da +size 5810592 diff --git a/videos/chunk-000/observation.images.global2/episode_000036.mp4 b/videos/chunk-000/observation.images.global2/episode_000036.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..cf46021a6827eff3b5a238a33df9a96e6f83474b --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000036.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70352c53a5720d93fbd93591ce671ebaab7535ff912a4180882f11ef9f93c129 +size 4912975 diff --git a/videos/chunk-000/observation.images.global2/episode_000037.mp4 b/videos/chunk-000/observation.images.global2/episode_000037.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2d5216366a22d3fd86fb4b558dabcb40b4f8aea1 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000037.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:406f37d4c4c42ca207b55235cdc5bc06dac636e24a41d8f017501436e0ff7c11 +size 4664743 diff --git a/videos/chunk-000/observation.images.global2/episode_000038.mp4 b/videos/chunk-000/observation.images.global2/episode_000038.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5c0de4cac924e97da1fc472deb073be212ec7a5a --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000038.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3f2788ff76303e680baa5ffd1baebdad16617f775043d49ffbac477963da0a1 +size 5377972 diff --git a/videos/chunk-000/observation.images.global2/episode_000039.mp4 b/videos/chunk-000/observation.images.global2/episode_000039.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..016af6d5af847aabd84f783d2b89ee272bcab13a --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000039.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32f069adf0a43a05404ee1cbf707766cbddbe687b72211e04bf7707140523a9f +size 6391974 diff --git a/videos/chunk-000/observation.images.global2/episode_000040.mp4 b/videos/chunk-000/observation.images.global2/episode_000040.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e01f93d7f8df138d461b4cc58b1e24b662462eb8 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000040.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beba6919bd65dcdbab37140f0fca6aeb44dbc58cf37ec4777fe6c91c19e5ce77 +size 6541592 diff --git a/videos/chunk-000/observation.images.global2/episode_000041.mp4 b/videos/chunk-000/observation.images.global2/episode_000041.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..272f337a28a17c311ba64909bac66f1c8634c7b9 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000041.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a535c77b4b206849e5443f9fe63f00e0736df3c0595e169f17b9cca533d65c9 +size 4914338 diff --git a/videos/chunk-000/observation.images.global2/episode_000042.mp4 b/videos/chunk-000/observation.images.global2/episode_000042.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ea0012827f8c5ea28bf1530f5feac490a38b664f --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000042.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38ec747bc68524e348794bbb376377265f788c8ef10a3b61b91ffb142ed0fd26 +size 6594236 diff --git a/videos/chunk-000/observation.images.global2/episode_000043.mp4 b/videos/chunk-000/observation.images.global2/episode_000043.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..7f4387a120ebb4ae507f6c1c88073321e725de56 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000043.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8118ae61d50dcb1170be2296d6fe43e03b653936e2f7b10ecabe33ba6a809744 +size 6153594 diff --git a/videos/chunk-000/observation.images.global2/episode_000044.mp4 b/videos/chunk-000/observation.images.global2/episode_000044.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a92e8dcb0d2df0bf3e2598b7f69a92f0e1e5aed5 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000044.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0c9204976eb8bc3de9d077460a5b5bed150c6e3d243efcfe183dd3f7896778d +size 6872657 diff --git a/videos/chunk-000/observation.images.global2/episode_000045.mp4 b/videos/chunk-000/observation.images.global2/episode_000045.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..7fb5126e7170b8b0ff45edabbbe1113da25e7b41 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000045.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e97a7a841b52bb3f5961ad9a2d9a71fa1b2b9a1ef56efc257bc934636aaee84 +size 5206553 diff --git a/videos/chunk-000/observation.images.global2/episode_000046.mp4 b/videos/chunk-000/observation.images.global2/episode_000046.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9d5ecfd83db30cf479be20e020f83914200f980d --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000046.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:370ab2f102c539aa3928ed8f266f7548103e8dc51772db1b5f1c9de3c5ca3968 +size 5903310 diff --git a/videos/chunk-000/observation.images.global2/episode_000047.mp4 b/videos/chunk-000/observation.images.global2/episode_000047.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..dc43ed772b5ae5a005b32747d8e9ac4fabc30764 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000047.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3440acceffe86dad021066193a93e99cd5530717eda27fb94606c1e26fab9dfb +size 5562249 diff --git a/videos/chunk-000/observation.images.global2/episode_000048.mp4 b/videos/chunk-000/observation.images.global2/episode_000048.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d1a9dddf145495eb04f3d980d441f4e66883c762 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000048.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:032a6a1c106b123ecc6b420b68563297be322cd4e07a69c3627effec133ac23f +size 5050671 diff --git a/videos/chunk-000/observation.images.global2/episode_000049.mp4 b/videos/chunk-000/observation.images.global2/episode_000049.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..62cfd00067ef86a480f3e2120397052fa085c062 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000049.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d19115def2a6647e38b284286a275231bea29a4cd7be5153a34086bbd2221cb9 +size 5490697 diff --git a/videos/chunk-000/observation.images.global2/episode_000050.mp4 b/videos/chunk-000/observation.images.global2/episode_000050.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..69b1ac2d7bc1fd9d5f94118d6e14edf8aa309e07 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000050.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86e60d0891ecadb801338a65da373ca955991930b362b0a384f1bb7e4ea4426b +size 8876744 diff --git a/videos/chunk-000/observation.images.global2/episode_000051.mp4 b/videos/chunk-000/observation.images.global2/episode_000051.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..33e3f064a52cc1a6532f90bff28440204aab9da8 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000051.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7d986e655c85cf456e01f7807ffc6db38fa18617172b1ee51c9d3ebb329f668 +size 9396121 diff --git a/videos/chunk-000/observation.images.global2/episode_000052.mp4 b/videos/chunk-000/observation.images.global2/episode_000052.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..832d7e5710c0a92476ef967bec95e092f9366191 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000052.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62df17dc51979c580050827d1b2950a8412ebc2f6c0b0823fc4f94cbfd992ef9 +size 10531164 diff --git a/videos/chunk-000/observation.images.global2/episode_000053.mp4 b/videos/chunk-000/observation.images.global2/episode_000053.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..572f809c2ca345277d264a1c5c314e44ed93675c --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000053.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49ed47b5d66e3f175b76bf8978bed2ad2d677faf9b087d34ad4e4a8a8d836360 +size 8860940 diff --git a/videos/chunk-000/observation.images.global2/episode_000054.mp4 b/videos/chunk-000/observation.images.global2/episode_000054.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..92938050749675c405a7a7c13396c1df63a29e86 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000054.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5507d721502e3e64be0153380533372b3c124dd84467718b92ee47f411443298 +size 6627794 diff --git a/videos/chunk-000/observation.images.global2/episode_000055.mp4 b/videos/chunk-000/observation.images.global2/episode_000055.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1f524787b697c69515c999c024ddd71c3aaa616b --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000055.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87d24d077c8a8e86640b00170926a5df154764f39098449956e9777783bb3ead +size 9505216 diff --git a/videos/chunk-000/observation.images.global2/episode_000056.mp4 b/videos/chunk-000/observation.images.global2/episode_000056.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..de7743df88a87731fae7b0ee2173d14a58822196 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000056.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27b51cafab4cf4f679b605fe8ee601881e34acf4fd585644dc4a751987d1041c +size 7956451 diff --git a/videos/chunk-000/observation.images.global2/episode_000057.mp4 b/videos/chunk-000/observation.images.global2/episode_000057.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5551e781c632690a4eb3058cc4b3b20203f35d17 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000057.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ff6f800ee52ec50743a54816bf27134904cec507910344e9bb5442a89652995 +size 8228229 diff --git a/videos/chunk-000/observation.images.global2/episode_000058.mp4 b/videos/chunk-000/observation.images.global2/episode_000058.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..fd2745bf3efc0f688d98811be469994840f207d2 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000058.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:845f01981d66878e1ae9e7fccd158067a5a2b08491d0a7e9037cc889f97b6a80 +size 4674560 diff --git a/videos/chunk-000/observation.images.global2/episode_000059.mp4 b/videos/chunk-000/observation.images.global2/episode_000059.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0aa039666fe904a90393b84bf327c6973ca5f463 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000059.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9162f53da538af67ae87cce64266e32b8f4725538539ede974ba7b620ef7d50d +size 4972609 diff --git a/videos/chunk-000/observation.images.global2/episode_000060.mp4 b/videos/chunk-000/observation.images.global2/episode_000060.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..36930788d99fefa666c7f76f4e9eb9082d783122 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000060.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5960bfe9ea739085758352e0952a56b5023f949db3bd79824cac4ad97ce01797 +size 7412951 diff --git a/videos/chunk-000/observation.images.global2/episode_000061.mp4 b/videos/chunk-000/observation.images.global2/episode_000061.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f86a6819c10218515fd935b57e8e2fd530031693 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000061.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbf729b6065ba32bf768ee0b0e720ac6cd916e447e86c810f9109d3d8412e8e5 +size 8930585 diff --git a/videos/chunk-000/observation.images.global2/episode_000062.mp4 b/videos/chunk-000/observation.images.global2/episode_000062.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8b1e9254390a5857173fa9f60aa1474c34559647 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000062.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06205c03fb6c33870ba6db48b257e64ea4d374ee16a71e7ad12aa19eabd5583d +size 9948822 diff --git a/videos/chunk-000/observation.images.global2/episode_000063.mp4 b/videos/chunk-000/observation.images.global2/episode_000063.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..cfbe849bd589e341f2169973bd2d588bee04b2ef --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000063.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74cf88120b3b06285965bd96712551234c306e0cc271bbb353e98a3954e2eb88 +size 7124379 diff --git a/videos/chunk-000/observation.images.global2/episode_000064.mp4 b/videos/chunk-000/observation.images.global2/episode_000064.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1ed00236cb239f4b5f144817215eb00e6c6f7f98 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000064.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:128badaaec9ecaca6071ad4a2f01147d02b8814990525dd943cc6f4e8003a8b2 +size 7406196 diff --git a/videos/chunk-000/observation.images.global2/episode_000065.mp4 b/videos/chunk-000/observation.images.global2/episode_000065.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..89887187a400de1aa33533481603911d0649980c --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000065.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44dc895a765686a1dc3e7025c4cb6fbb4f9fc806db92cd79f72d29dfa90f76f1 +size 5892968 diff --git a/videos/chunk-000/observation.images.global2/episode_000066.mp4 b/videos/chunk-000/observation.images.global2/episode_000066.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..93f7eb1bbe51ececa8ec5e4b8128cd8f20cc0828 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000066.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4d75f4b16ad2b004192270360fa9891839d2c3e01f4a30f44337247522669ea +size 6203224 diff --git a/videos/chunk-000/observation.images.global2/episode_000067.mp4 b/videos/chunk-000/observation.images.global2/episode_000067.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f9740668e767872bcaf89dd1c8979a49de7d3274 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000067.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98ed5f7ce4231910084d17f381bb6b8a46ca8020ad9772f0c1341315b4036628 +size 10249120 diff --git a/videos/chunk-000/observation.images.global2/episode_000068.mp4 b/videos/chunk-000/observation.images.global2/episode_000068.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..dd0b5c8fc7ec33a9c6c38a1ce93e7de942a9da17 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000068.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f089ddc50a80607ef3c0fe0484b2de13648718ab47b0112e80a09388826b663 +size 8299231 diff --git a/videos/chunk-000/observation.images.global2/episode_000069.mp4 b/videos/chunk-000/observation.images.global2/episode_000069.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..7cb6de6237405769fbf31868b15abd69bae7a2fa --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000069.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14bcb5c11af9cb1babd3211ef3aa8571299325da83a7aa82ed9fe1b5b357fe48 +size 7221304 diff --git a/videos/chunk-000/observation.images.global2/episode_000070.mp4 b/videos/chunk-000/observation.images.global2/episode_000070.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c32a2367fb947e3e8272497cf012884f2e8dfb4a --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000070.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:080ce1a7b4dc42edf3265d8bf018450ae2674fea384f412edcfe9de3dabea3d2 +size 6509994 diff --git a/videos/chunk-000/observation.images.global2/episode_000071.mp4 b/videos/chunk-000/observation.images.global2/episode_000071.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..50730a2a640d130ac94d4f59772a7615a826b636 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000071.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58f8442f2e9601071c77e66729923c3c6e322f98b1de5ce0dfe475696e53b55a +size 7697670 diff --git a/videos/chunk-000/observation.images.global2/episode_000072.mp4 b/videos/chunk-000/observation.images.global2/episode_000072.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..7add54fb5cad87324ab6c7c1e302d3a229e8f985 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000072.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ed4c64fa06327b7e4c5ad95921d340316036ff60d36e350d51542f42c3aed35 +size 8875617 diff --git a/videos/chunk-000/observation.images.global2/episode_000073.mp4 b/videos/chunk-000/observation.images.global2/episode_000073.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..af119382174a13f5eefb11adb34eff3345a3055f --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000073.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b0b544e9a016c56617e854b775d3db50bb7301b98d001add8694802f6dcfd4f +size 5712418 diff --git a/videos/chunk-000/observation.images.global2/episode_000074.mp4 b/videos/chunk-000/observation.images.global2/episode_000074.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a33ab25a6812c138efbdba1fde09af06b1995783 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000074.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04f2f416e6cf51c873152daeb46a174cbfd75e3c736f6beb4501911f23b9723a +size 6076793 diff --git a/videos/chunk-000/observation.images.global2/episode_000075.mp4 b/videos/chunk-000/observation.images.global2/episode_000075.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..277afc17b09aee65ad080da890ac00b29bc5860e --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000075.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a2444b067aa271569805493c29e2e4b9844263beed87c1f91ee785c8caf3563 +size 5520613 diff --git a/videos/chunk-000/observation.images.global2/episode_000076.mp4 b/videos/chunk-000/observation.images.global2/episode_000076.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f9299578c95a171ab56856f0b63970fe9d138f7e --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000076.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b71ab078dba0c19a5f09e5c48dbc14e939bb9503e6a74e19b74b0f74c551b3e +size 7156394 diff --git a/videos/chunk-000/observation.images.global2/episode_000077.mp4 b/videos/chunk-000/observation.images.global2/episode_000077.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8654b1615b28a8808eacecd715aa9939cf3bd639 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000077.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:843c9f2ecd6680ce7b8187d8b4bd94f73deb51dfc8db128355a7cf525f4aacff +size 5382652 diff --git a/videos/chunk-000/observation.images.global2/episode_000078.mp4 b/videos/chunk-000/observation.images.global2/episode_000078.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6ab99260ccdc0f291b928338b21709607f70af01 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000078.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8938a6d2300750af3c42fe254c9c3ab83d8670ee418d65113ef14e6c22491b76 +size 5526594 diff --git a/videos/chunk-000/observation.images.global2/episode_000079.mp4 b/videos/chunk-000/observation.images.global2/episode_000079.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8bf899a11e4021f2e95a9ac3b44d10625e18b881 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000079.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e538e6396c5f1d77d6e1ffbeed573dde89fbb4a6f4371ee078abe7396720b1c2 +size 5471132 diff --git a/videos/chunk-000/observation.images.global2/episode_000080.mp4 b/videos/chunk-000/observation.images.global2/episode_000080.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f841f57170d5c05bb462fe8d9cd8b16afd90a614 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000080.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5774e871ab9774b9eb4a6cfff75e2d773d57130a9223bc2123a2d1c3f9d47544 +size 5152041 diff --git a/videos/chunk-000/observation.images.global2/episode_000081.mp4 b/videos/chunk-000/observation.images.global2/episode_000081.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f5b466c9dc43a30cc88566fbd85e2599591fa89c --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000081.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77e39d1b0a8ae3878284f1a2fdbec0e6e3d083a7f75f3624eaac332ec39298a5 +size 5951597 diff --git a/videos/chunk-000/observation.images.global2/episode_000082.mp4 b/videos/chunk-000/observation.images.global2/episode_000082.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..14bd2483776fea141d3c5acdccb73e7a1865656a --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000082.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e4e3867eca1a455e974aefadb04e407645dd5c4dccc40e6f8eac2ae2ea28718 +size 4428662 diff --git a/videos/chunk-000/observation.images.global2/episode_000083.mp4 b/videos/chunk-000/observation.images.global2/episode_000083.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..7ada80ab7b0cc413c8a48ae975416c2bf57d8681 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000083.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c01d317e0514999455b28c8b0966461ab4e16543da3f72a68d2c0d406e730adc +size 6070022 diff --git a/videos/chunk-000/observation.images.global2/episode_000084.mp4 b/videos/chunk-000/observation.images.global2/episode_000084.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..28cbcf2d06fef73ad8f4c43760b1894ab58f3c95 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000084.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4434a066060515b42cef9b0278ee043279e063438504c32475012f933c531587 +size 6843461 diff --git a/videos/chunk-000/observation.images.global2/episode_000085.mp4 b/videos/chunk-000/observation.images.global2/episode_000085.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4bf0229aa427d470a4c9d555874c0ce28ed4b5c3 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000085.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3e9dee99d03dd2bea8f676a71318bead9cfef88be37a68798d143b4276551a4 +size 5565741 diff --git a/videos/chunk-000/observation.images.global2/episode_000086.mp4 b/videos/chunk-000/observation.images.global2/episode_000086.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..18ab48b796f275ffc75680794fbe252d71b66bd9 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000086.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ed87f5f57c08fb0f1097f7e6f1d3d0789ef7f29512be7ec23b8b99aad21cea6 +size 6017218 diff --git a/videos/chunk-000/observation.images.global2/episode_000087.mp4 b/videos/chunk-000/observation.images.global2/episode_000087.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..777a4ce5b90627f3d6ff4592b930c6c05b0f96d7 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000087.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:253184f8eadacfe4fc9dea7e23b54404b76f9a4b31f544f8e52c9db7a7fd3fdc +size 8095057 diff --git a/videos/chunk-000/observation.images.global2/episode_000088.mp4 b/videos/chunk-000/observation.images.global2/episode_000088.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d8ed171919ee087455f9fa438b23b982d25fa8c8 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000088.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64ff72a6cba228f826a833bf59560099d7abda5f144fab6def1196fa70b444ff +size 6895051 diff --git a/videos/chunk-000/observation.images.global2/episode_000089.mp4 b/videos/chunk-000/observation.images.global2/episode_000089.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..676c3cf26cea096240fe5f81df6af14a822838aa --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000089.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e46b3ba9b7ff355b8d323ae505a352fb213f1b709d34540a4f2da5b4c539e327 +size 7291527 diff --git a/videos/chunk-000/observation.images.global2/episode_000090.mp4 b/videos/chunk-000/observation.images.global2/episode_000090.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9dc21d537f4e79e5aefe8230c4a63d6c15dbf50c --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000090.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d79946e9f08db777641689f8aa17202219e5abd21edf555f06485af3561786df +size 6855073 diff --git a/videos/chunk-000/observation.images.global2/episode_000091.mp4 b/videos/chunk-000/observation.images.global2/episode_000091.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e9918e36cb5218df9342b1c5c5a39927c97feec6 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000091.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7da0242cbb5100785422d7750ef8802d38854d9234357f10aa03b6734c1a8e4 +size 6083491 diff --git a/videos/chunk-000/observation.images.global2/episode_000092.mp4 b/videos/chunk-000/observation.images.global2/episode_000092.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..7280692272ae7aba7fc1427ed6fcc7a66dab1904 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000092.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11a4369e205a4a1d65faedb11c56d43895d709452426e04e8b9ca96f371460c6 +size 6158232 diff --git a/videos/chunk-000/observation.images.global2/episode_000093.mp4 b/videos/chunk-000/observation.images.global2/episode_000093.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..00d23cf01403fe455a53ab7975516bf879c165b5 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000093.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:226772574802a15d5cf842e597791d770a2c09c1a9ed26c4ec322ba38e88e617 +size 6889529 diff --git a/videos/chunk-000/observation.images.global2/episode_000094.mp4 b/videos/chunk-000/observation.images.global2/episode_000094.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0f1728afd4525a5707477d7e4b40cb36c2710285 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000094.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e89c57c11d5b2eb950fc7b9051f7fb67cdb677e7edf9ef9466ed4ced43017f7 +size 7600183 diff --git a/videos/chunk-000/observation.images.global2/episode_000095.mp4 b/videos/chunk-000/observation.images.global2/episode_000095.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9d231f752daffbd2ccf5eb77f73ffdfdd6ce3484 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000095.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ddfdb89e4af83b04c38c952118d73b0a624a97ffb4eee5e83fa7426f1ad756d +size 6439794 diff --git a/videos/chunk-000/observation.images.global2/episode_000096.mp4 b/videos/chunk-000/observation.images.global2/episode_000096.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4f47a511dae01d5f292f9114eb8ff0c6c12a6223 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000096.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdd2c6153638492bb96608c6c3f2db52e96f693106c7218df90ea11d6ff1c445 +size 6624296 diff --git a/videos/chunk-000/observation.images.global2/episode_000097.mp4 b/videos/chunk-000/observation.images.global2/episode_000097.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..581d0c86f58dd611ab47770024c24f48ebdfc976 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000097.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d41e5c6f7030f07351066b4c1fb0e837ce5360ea5a69ea9d8a3005aa2e0d467 +size 6008843 diff --git a/videos/chunk-000/observation.images.global2/episode_000098.mp4 b/videos/chunk-000/observation.images.global2/episode_000098.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..efce8a550c3a67b98134fd8c2e0440e7865c9017 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000098.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:358a4cb192a9952d91e444dac2b85a1a5cf8040be7451c8048aaf11bddd016e8 +size 6223819 diff --git a/videos/chunk-000/observation.images.global2/episode_000099.mp4 b/videos/chunk-000/observation.images.global2/episode_000099.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a226a1bf20d06389c23f4a8af0160ec1672b49d9 --- /dev/null +++ b/videos/chunk-000/observation.images.global2/episode_000099.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4deb2fa3966c1bdd27052be63cfb32801f8a99373e01e295a40a23f665c2f84 +size 5896858 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000000.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000000.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d5025204f518afaea3eb6edbffb93b03a2042ae0 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000000.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf7609fe21bf4968bd15a6ef62ed9a60516ce5fe9521c0be3d8dfbc8e2f5d02d +size 8600299 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000001.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000001.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5a822f302deeff829b70c8bcfb8e1fd5c5c91842 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000001.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:183e4bc5a751def92d3098515049148f819b0b48ab8d101c03a3de797f60fb47 +size 9098799 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000002.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000002.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c63e2fab9bfb23cda4864158e79d6deb3fd944c5 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000002.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a2cb234595b1728db4548b48e6c0140b1151f266ced84195662444f41bd30c1 +size 9311566 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000003.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000003.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4e14587819d34386f92cf8971fa22df53c8c2321 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000003.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f89775a92fa93fe8a80ff1677cfe316225aba70a58524c29b569670aae61e312 +size 6997512 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000004.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000004.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..7d10a37888fdb252c450f36d3afe9a695deef013 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000004.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7181ccac67fd60fa3189881e969c7ab025a7948c5b39dd3ff9eaf1bc1bca6cc7 +size 8764026 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000005.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000005.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..87a8bcf05a1cd2cd620895193be72202bd7572d5 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000005.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c9d9cd402f0b200d9f240e6a0f71991b2625740fc8cf2cbac23872a2f8ea2b3 +size 6687972 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000006.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000006.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6e4aabb51c805be1a060861b330f118af69a16c9 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000006.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66867c715f241708fb934e64746297473a30ccd09a98070013bbb2dcf4b2efd4 +size 8181876 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000007.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000007.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0b3ea77f821338485a84269a45dcfe230a32f86f --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000007.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e74e1e2f61625fd19f1aa6839867aac9eec968720dcfdc137f24df7cd5566587 +size 8416793 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000008.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000008.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..95ef78ae312ca87a61cfd359be57152c94ba0e3b --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000008.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a62cd03323244f93265ebe632f9a27e673e27cd54ca49114f5fee9092ab6142 +size 8084351 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000009.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000009.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ccefd4b94b729f82a5b642847d63a9b9585c5407 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000009.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26a6471cf209d4b906d4f456a3a239f8325915e2f4932be9fbb62a6798e6842a +size 6844010 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000010.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000010.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..57588291d55ac535f020b596948f92c8e83ed058 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000010.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a75487a2f7e67ac338df0b6cd1b302631be9b9b553e6d1ab09544b9aaadd874 +size 8384187 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000011.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000011.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0a4ec4832e2d6c84cbf8c25c7d7efdc0b0e74165 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000011.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b1d4eccc07f95160c0b9cfa7f5f37448e678d29885ab06d0917ba41cf0b3fd6 +size 7973818 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000012.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000012.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f171bab3ec9a3ebe32f8ddc16ece2cf9a9174e50 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000012.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30cfecf96d47b378c50ccd7f4524d1b42693f67655f25727383eafca92314e07 +size 6658993 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000013.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000013.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..21420243f71b7b8ba419f759e06a21ff072a3393 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000013.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b5b2c0b9b41825c0793a43eb1fb10b8e4bb6ab7180fe7efa162511020aa3a93 +size 4809261 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000014.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000014.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8e42801db3f1a01c473d879d8923f6c2cfb641ac --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000014.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a39796f8af057ff4312abbd3a8aa2422f40fdb071e946b16089f8ee788e699c2 +size 7295068 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000015.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000015.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..bcb8b09e6fc989871291b35df4f080fc9c2047da --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000015.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e3a099b06cfde7e0c46141acf15dd197ab5ad4d2c0ec7d5408d8bb866a4c148 +size 6199623 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000016.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000016.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..39f120aab3e9776a58bc28d248dccc424d458684 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000016.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa1f68a108267a86ba3804b6efbdd5c04b5f9689a5b2ba690c1e0254966c676b +size 6258983 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000017.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000017.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0ab14e6d69bd409db35f8470df5da1d95c980789 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000017.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7f7d9944338fd221b94d438baf2192b1197adb74b2281deaeb50417546eba0e +size 8083337 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000018.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000018.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e44d5323955e0a7d39f481e86101f3c2a5597112 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000018.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0157d1d30469db03d9c05b3c0da36e32b769a467344958229480900c8f3d73a +size 9206682 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000019.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000019.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2ea420cdf9336994864179557cbb2f96645d64d3 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000019.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c59b587c623843ac3e29a0de6d6a281e00121d24983cda82a76103298618e0dc +size 5855673 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000020.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000020.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..fe68f68edcdad56237ea89a488da29df658e198a --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000020.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de532a0b308b19a0292a1a90390e6ed1fb7fd20820ff8dedcc2816116656739d +size 5702279 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000021.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000021.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4fa3d8f9d7d5f7ad18858f1f989244f5bbf5f7ee --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000021.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e8e94fed8498c81914eb57cc35ffeccee22c829c26b6154c98a25bd6e2916d4 +size 5924523 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000022.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000022.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d936b1da845f723bd39230822875b13c965e61ea --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000022.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe977b7b97beaf66a01c08f32a2420b687b937504a7c222925cdbdbec0e654c4 +size 7291604 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000023.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000023.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8f079a5ae76dad7e9016a15e491ad0609dcd97e7 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000023.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae9cc2bcb0bf3ff5970db64a02cd09af91bc6191f2a34d4822fdb626b7f84a71 +size 6752244 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000024.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000024.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d754ef078c0bf51aadf15d412d3c2f4ec7fdbda7 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000024.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48d96d9fce2d10cfa64b835cdc2ff99e8c152d4e1b3bd1f55a9dd68dd1f6f149 +size 5273760 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000025.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000025.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..21d00d320c2a86f0dd2396c28196fbabf82ea8ff --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000025.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3160bcba72f421d86bf47c7d83ca166d5865a527bc97ea8504a9e427600d0440 +size 5794512 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000026.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000026.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f5461b89762b71112a3960d055cc5784737bc01e --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000026.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69d3c1817fcbf3edc0513920fa7073b3008ea6ebf743def1e2058f2b849214ee +size 6024908 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000027.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000027.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9f953c32851186a030976acd7773f1e46abf2ddf --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000027.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1584a6a725a8846bf8b9bfafa1753305bc4ebac7185b41af1b8320dea7a1eb1b +size 5508295 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000028.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000028.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..987b787ae1cd2c3379ec925b564c559e43b37968 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000028.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc14d91f40478e045b393bdd479caf634bf9b17b26f03755b16cc18e707de545 +size 6828291 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000029.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000029.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5aaa78086da35e707088e8808805334337e52eb7 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000029.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce960ba862c6a47e8ba29ef65f5f699e1acf9fd688506b26ef64d136085a8c80 +size 7017903 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000030.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000030.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f938e42617578a08ef47e7e3b542f3404b86cf9c --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000030.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:236ec452e9f56e5ad3a01e520324fdb7b091ae002a21c0df8621197c37fe13ca +size 5915394 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000031.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000031.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..67c5cf9ae5d349686e65112c12e2f4b6ff005f3b --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000031.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27cf76adde4bf4d1039f8a5a983c21e78e4f83abd92a86455996d7991c045a46 +size 6005761 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000032.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000032.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e68b1c2e2b882e818b852216cc8f0c3299454ac4 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000032.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:953ad3dc17f80b9bf632cb558aeaa2182425d1f2984c77d9befc7aeb55fc1e6c +size 5524424 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000033.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000033.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..38eaa5e1afb120dd81b62e3395d15ee9bb4df4ed --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000033.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68bce9864835c7b3fa0a74e0d9b075b372eb4ed103ab1f87d35b4491621ebdd9 +size 5699327 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000034.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000034.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b74e2cb6284bf5d1a8538085bf91bd02793aed36 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000034.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b07939eee5ce3f00e3ca78136e7e75a14f4cb3f19afa385c4bc0bb71c9e9070 +size 5368480 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000035.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000035.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1fc81c156329dc88a7d06eb20090c4632f341f50 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000035.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14fc390773d6b8fe8d5486a424dd2ae9719a10e19f24fd9d3b573fd4ba1243c0 +size 4972682 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000036.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000036.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..20d0af17b9e6bbf355fc1a32c64f82e72af435de --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000036.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29e81cbad879374cfa30e2b3aba60aefbe78ab2d421134babc8967987b31f4ad +size 5292861 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000037.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000037.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..41f3c3c6342db7dea74ef8adab2421031692d7bb --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000037.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1204acc1dcb166972062ff180267dffec10c389dd2959fa4617187312ec75b2a +size 4198276 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000038.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000038.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4665898706031d24a24cfc86179d2c70d0dc1bd5 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000038.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:922c1cc60f71a041f0d7655930c3eab81f4cae71f4e326c850d8d6a5f8f6e508 +size 4731522 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000039.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000039.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ce1f86c5886667a75be5cafdeedd91421f946645 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000039.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c1f88c3db798198f83c76eaed9f772bc4ecedc171ecda8b16bc48fe7dfc73fd +size 5869335 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000040.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000040.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3adcf0a36119f168250b250aeb099c6f63ac9f95 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000040.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9f8c731dfd2a986ce1b8fb2daca86676fd36f50b1dd55e1a2f7ff4f4cee69e6 +size 6083824 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000041.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000041.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4a818cb682434d6107142717fe4db0b178f70c6f --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000041.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aecc03bd0492eaf27b3588c0984252d28bf6328f0f25eda6c035b2643927b39a +size 4519625 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000042.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000042.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..16a985bf7c18de164cbee5d6a7d78c88ee48794a --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000042.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:452e4a3e87fcc8e0928ca284ae92276491734e06dd657f9e73cc454a13d7d4cf +size 6103129 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000043.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000043.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..459488465beb8656959fa68cbf8f3503069d091b --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000043.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2356942aa05ec92ead458ebb076e0a92c9a3101d4c521a813d500a6e632c7a5d +size 5666927 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000044.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000044.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..805d1e6c911f56b59a8e25ab24c31b2811bbad19 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000044.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37380a2a560928471d1cd0540db922c401e605c6937dd9321eb062b26220c771 +size 6501901 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000045.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000045.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6f75a18138141e1f23adaf838ab592dd9dc515a0 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000045.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6bc22597e604186f174d1609e0f90b8d442c7e65372635d432502724b6debb7 +size 4848109 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000046.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000046.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d4f6172f63500b3a565af0f2d3992275e64b556a --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000046.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de0a0385742b43876801592b25062ed6ee33e776598948190b01056128f2c26b +size 5443247 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000047.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000047.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f2a55f937bc7689a1c8d3e3a9b9b27fbd5148d49 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000047.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19fdfd197d7734c6e3fc980ac9becbfb9059071764a193c9ed9dd15b6e4cde75 +size 5248813 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000048.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000048.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ef65d8ceeea370c86f5caa05fa5ae2ea64a1f76c --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000048.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bc278301e6a43fa077374d3923c20a9704bf2f29c662ef26e6c6d123f748f9f +size 4694061 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000049.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000049.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c1251d3f28063bcf44dc5e639482f25593660633 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000049.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c73c8fc04a6443db9a8fcb19729799189ae32db3816e36b88fbb0749f2df8a77 +size 5151845 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000050.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000050.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ef4ad3a965237a1953cc79f0b627fad55374f78e --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000050.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:208ed64122b1121e4b53eb71f962d2376be6635befa35d959158a992a6158ee2 +size 7299166 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000051.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000051.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9e09e50c65c4a4a672ef8c05a3f97cdf0c268ab0 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000051.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:202b3d48c3f8be385bcf0d979c080c7ca4d29d3e37b091c3e1a383a06b5e2978 +size 8321684 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000052.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000052.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..606d4da3f9b61fe33af4c7c61ceb747df34f86f7 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000052.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23c1469fdfb688e3ff94d8121bf5482be7a7ba8a0fc64a4862600b55b1463901 +size 9666071 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000053.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000053.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b0ba04cd9cbccf7ff99a415a5747a01cf7985f60 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000053.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bbee25cfb3e20af857c7f2446f2e47ce53e94750614ad452cf909d9ba139389 +size 8176749 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000054.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000054.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d50d241aaaac43c75ceb7402341d6edfadd869a3 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000054.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b542121acb3b6650c881216a4e5a7f428d3f8053c5bfad480d12f8568964938 +size 6127770 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000055.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000055.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..30d5a51082cd913322c10bbf9548ab0a930a2c9f --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000055.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c811fa97949ea9009def744e8e515c0e4c64a323d10930e19011fec1658072b2 +size 8159729 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000056.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000056.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f0c7fad79e20f584225e5955e12a2032745e15c4 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000056.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:626d44b61dd7cac2d7c252c6dfc0d0674b5e79df445e22f2a1f3dfef5a32c680 +size 7350823 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000057.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000057.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..20acc2129d8205dd4a5cbebdcc8eed8c6c796694 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000057.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c42760917ce9db6699cf80593e0572c50a64c7ff10a7b5aa492197f1e70c07f5 +size 7655675 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000058.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000058.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2d5824db8ad6547ddb6b3ad415889202e8296854 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000058.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c708878a0965cb743a1ad0b56e01680275f3c13facead86887e4ed2ef05848d7 +size 5735499 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000059.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000059.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8040862455322d06a502cd21618cf89fe0a02552 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000059.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49564ab9144eedcc4b297aa090959ee3583a283092fa5b5125b9310b434d0d30 +size 5732984 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000060.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000060.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5f152dc90c81438cbc8d0c7ba73b676cf58bb150 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000060.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3de3e963fec94066b3600be71f51302e313e2b3a66bff2e34015f4d4ac3c7204 +size 7806855 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000061.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000061.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..16363a942299d5c94ce13415c44b1c3cb93ee78d --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000061.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f3a158a1e6bd202fb12e0888a29f45770173f33f4a1e5a8b7000ab1213ff906 +size 9033567 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000062.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000062.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0f9970841018420eb656ad3ae9a1ed988999a13c --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000062.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5be23f9b6b38d2b64a35a495f076c0daeacc39d7de8b7e9d08db25eea0a1b07e +size 9706987 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000063.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000063.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..36f884a4e58592c7f5f3bf228563a7699e859585 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000063.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:422fd54c18e9ce46ef435ee0c1fec4cc761cc78a9dc212e0f80bff0ba02a5435 +size 6803455 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000064.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000064.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f1ec2ad023385a1c9a345fbd983ee3fd763497dd --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000064.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77f220af9b48232dadc1eb6b20d16121892259617488c68b265ac9c2bb0c1d94 +size 7148021 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000065.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000065.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e0fbf19f9361be9a83f773195dde91d139885770 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000065.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b423ca6fc08d736451a578ee258e23a2aee41a0244fa568bc2a7217ad1d95b8a +size 5773637 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000066.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000066.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5b2e6ab542925f2d901905fdc39efc560692760c --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000066.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74ab312a77de3734db162ee42c3cc37e81c1909e6cb106243290fc140e129764 +size 5892301 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000067.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000067.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..394c503f90b310d2f3582e7c51ddb68504b18fd7 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000067.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5595ecad6958edfc4429d212ae6d4b11017064de11ec249fa397d586a5776d61 +size 9407530 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000068.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000068.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9aee879ad65813959cf842802d363dfbdb563bc7 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000068.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dc973a987ac1dc08934cf2b29b8d3ee4fecc465e20ae03c7bd743062d38fbb4 +size 7558121 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000069.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000069.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..28dee68da0789cbdab6e76a61d455886dccf8234 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000069.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:853729592cdc01f88c81332ce647a3f49dd44ca11086b5b4d127477ac6a3cba7 +size 7011240 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000070.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000070.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..814ce7a8868c57a9dd224d3406cd2f6416682745 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000070.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:376ddbb305e55ef1c84a9a5d3e71820516fa370cfc884abbc1e06452037ce824 +size 5998061 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000071.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000071.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4562e073f329385713bc99608167851e6166df6c --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000071.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76c303df896eecf0cda89fc0678a59fd4950a678165d4dc875104d20b29473ea +size 6959135 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000072.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000072.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5ce8e0a70ec3e37692916c2adc446a33e5c059ef --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000072.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed41c6e0671a769d7eefb38b6f0500c66ae618de84f5e32cbc58066e58271d4b +size 8062428 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000073.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000073.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8af756b909b296923ea78944309e43817338ef02 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000073.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f055e775868182946c8d20efb8331766d790687811bddfe070e475b51c102d1f +size 5454544 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000074.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000074.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b1136cebbf649d0717a998bc680e418f6e488fa2 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000074.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a3b0de72e038fef5ac941a716a9351a8c3b73e90bd962d11200ce5e3a0d4d94 +size 5579412 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000075.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000075.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ed8400013befe2d7ca00b1237c995c6260e5d122 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000075.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2acfca6ccd97ccbd5333f934b3e086cc12fcca2c65900118dbc6135d7db56ce0 +size 5232966 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000076.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000076.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..20339822f196191f57fd9703f2c502769808d28b --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000076.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a27283fa23775d70b97d1cb514dd15a6292eccff3b4948746f31e1575a12a7f3 +size 6865530 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000077.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000077.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..036eb422f55196bb43476578efa52f0fd6b192fa --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000077.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1830aedf10c9c7ba56e97f34ed74146499e5dc7582fcf2a5a1ee8ed0eb0ef2d +size 5399418 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000078.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000078.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a9de24f281bbe30e028dc86940c707bc1f2081b8 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000078.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca1babd5e597991b49b60c8c5d56bd9d5929e0453e72ce3418600879a426516 +size 5129176 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000079.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000079.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3422df880075bcf967073812b9ab7feaa5a53c0d --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000079.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b2ed78e9ce37a14cc4634c25961b33bc0cf6cfa450206ad9ce7f6c2d959eefc +size 5352972 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000080.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000080.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8cb6a184eed7fafca958a76bf032781de0324429 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000080.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:299fef1906f18fa2ba37a7b9a6dfb0bf79214aa527d1434326e20c95465a2fa8 +size 4861288 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000081.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000081.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..41b415c91bdaa404ae57bba1d7371a4941c8d557 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000081.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e836705b08be2a86b16e02b23b165e1c10457c38ca74cfe268cc2ca7060d849e +size 5501205 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000082.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000082.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ea85c533d2c2a79c669b627264573cb289811c96 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000082.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ab25c7b075a8969e8ab5615028f690378fbba530e2b1baf44a03954a3facb93 +size 4212815 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000083.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000083.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2b66d3cc1b2cb540da2c4af6a8ce2633b177a638 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000083.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:530c814aa78ec6b7978efa9f38634152b01fb3ce10bef6197ca4a5326eab0868 +size 5659544 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000084.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000084.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5d43718fb6d4789138d4697c012dee34ccdc4d11 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000084.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4ae0efd06c8001d36c6d6944ed3d315a2bd70ff4a9865e459f719ae6681c268 +size 6716802 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000085.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000085.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..699ae1c76e3a2968f8c0830728f05fe107e150ab --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000085.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d71fac927f9d375b52e73f0f6eb35ada3db7e68a0e2213902baf69c956d675a2 +size 5363533 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000086.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000086.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..719230ddbb15184058ddea76721d9975d108075d --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000086.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:836d5cf2239998fee95908e412dddc56c468cd7aab3cd3ea2f49d49ea5eac398 +size 5867561 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000087.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000087.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..15001989ec9ed7d638ff4a8bf751429c2e671414 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000087.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61d0555c48045dab475af03d0c06e3b76e78d9865b10815985f253de5c29b8f9 +size 7619626 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000088.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000088.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..10be230cc4b5ba22d8abf948b45dff397d50d5b2 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000088.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8322fceafeb4162719bfb2027d70b235679b00729f246ccbe71c4675f04022f9 +size 6604040 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000089.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000089.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..93747fa5ff9ed936768d123d2eb0965a00b680a0 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000089.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1305ad29a8450fb238326a312d71df01b87d315fb28365b592ad2fa3c3b356f7 +size 6718733 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000090.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000090.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a20df244a5e24bc266680ae7ea6d647634e64b76 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000090.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad6f2e80f4072ab648dc4ea188a99e4aa3ef889b3d1ba3b3ff5b4d5a5bb405eb +size 6536145 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000091.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000091.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..931dd3044610fb45f8166651d1134695b2b41911 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000091.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de0298fd1decc1a485aef9bf923814000ca811421f4fe76702cb76bc78b1f185 +size 5965857 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000092.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000092.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..750c59da7b99d02bc1a2be15d7361a6090741a56 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000092.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c8939f1ec24b29667cfea85b131b2184f1c37147f6ad3a2db3d761daf3bc3ad +size 5933598 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000093.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000093.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3f58889a2d5bb3991e2c4d969a2665b63e588db5 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000093.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c581449c97d7be58f4cb90dd431d58ca667692c4aa6fa930067642cd130fcea +size 6470269 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000094.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000094.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8ee619e7b7533c91801a443f494829f70efda5d1 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000094.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:319cea2f4bbccfb4bed3be70fa20b04ff3b143aae17c1d5b8a4c3e041971b206 +size 6413197 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000095.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000095.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5e5971a850470dd4223086d7e6c7ecf805b1477c --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000095.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cddeb057b6919a67e7368192fd9b094ddbdba3bee278107b7a64a89871c9326 +size 5908293 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000096.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000096.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..850c75f2541b6c9a632aa1369ada39c73d246ff9 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000096.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb2ab31b41ebe551f12712db3ade6cf682527d0a6203b83f2e70bc8059647b56 +size 6377855 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000097.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000097.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..7931e34fec5c293066b46b99e2e1ac005facc4da --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000097.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cf62d49b35a65742f23a65f64bc3bbcea45c6fe1caa9e3469f52ee90108cee8 +size 5625528 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000098.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000098.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..532e917a02e9b8c0cdc7e715dd642fde82173f38 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000098.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9445024b6a42364d2efbd0267b303ab1ab09aab6fa2f666c74b12ee555bd856d +size 5935212 diff --git a/videos/chunk-000/observation.images.low_camera1/episode_000099.mp4 b/videos/chunk-000/observation.images.low_camera1/episode_000099.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3a261c36686b66d509f83c1bab04c958eaa8c7ff --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera1/episode_000099.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:100b94cbc935a20d5a800009e2e03471cc2af472b4c7d7a1d5139664d77a026c +size 5660478 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000000.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000000.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..dec9f94cb86c5784c4f28b49fd4eef1e341d34e7 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000000.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94ceb0cb13446bff0529f93c549c47f2e66044ffc4883efd18387893bfa6e1a3 +size 9473199 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000001.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000001.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..28bca9d62962e7517bcd73e175eb2990b2d9083d --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000001.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52ad0cb5aa7b0c248d6178adb295ac68c12d7cee9000a71ce5be7241abd584fd +size 9984664 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000002.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000002.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8b21bbf29f555c8cfb9e4d49c27a3f67cef0d3f8 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000002.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2818df89c2349f446e659e2d34f74d77605a6c506374e956f438d8b05ddc23e1 +size 9709924 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000003.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000003.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1c63bc034b4a452717b08847572bf5e189be4c66 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000003.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c48a0b9144e4362fc52acf674d69a84306f31b5cdaeebeaf3ef5a77a098c528b +size 7687627 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000004.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000004.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..73a22c9017cb07a9fe32ef18c368ad4eaf166c47 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000004.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c26f6548d0a1e7a3c5b562999b846e6552c1b8eee7c1879f94198a1dbe9495a +size 8988741 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000005.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000005.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8e69bd7ddf91d38421ca17dffd550c8ca7810ed9 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000005.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5293a05402ebc913decc25c2e291bd362edf04b4d186f67184ae09f0d8bc543 +size 7537933 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000006.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000006.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..38701687ee111b402175d597adebb93c5d052b3d --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000006.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8658912bb9ca1b3ec045b18aff3c7a7ccbe2cc129257e7f32bb794eefb10fb45 +size 8470932 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000007.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000007.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..22feed71b7a27bb5f42a82bd0f9aa57c614131a6 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000007.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d0a025edabac2eafc6973df92e1af8540b901f8309db4ddde0268136b73a90e +size 9506987 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000008.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000008.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..428e958dc6fd10f526fa76267b648e34e9ce7f59 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000008.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8b833d48c3fda9334ec402b10500e1d6e23a9ff87b47960821b41ba6df95a29 +size 8675045 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000009.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000009.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..278d4256f923f538f38079d43d3beabfc5bead0d --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000009.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f840b33ac25e59b48d19285b88fc9a6beeb451f446ea6e0f22a6a3ea2a835fba +size 7032166 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000010.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000010.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f6652a4caa759eb6789fa16157ade2369e8ebceb --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000010.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:676b8889b8747d83727fd17de8185e9394b5624803f0f7e10454470fa00974b8 +size 9218313 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000011.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000011.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..332e5f8d2b06a4959ae33ae10e3657ba30d7dcc0 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000011.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d550b2081fa079ff355e55cfccb7676fe96394b31198bea10c8d6e65ec88a2bc +size 8547069 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000012.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000012.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d08fae9b366476ceab08e3e0fbc5054d5db4925c --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000012.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a328ea43b7e254344243e54b1a302ebd73a9ffd9469e9fc9d056339f0bcbb82 +size 7579528 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000013.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000013.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..886ff0bd7e31bce4ea6da2f01afd3ffe1af5d5bb --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000013.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3dc0cd9a4d4a79671be97b50614db66aa31c8c52d3b726f457e8877401493bf +size 5435437 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000014.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000014.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..96554aed2140ca5136137c08cde0e20331af806b --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000014.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3feb365bfaef4d7b47a947c25f533069a65f549a2ca686d505982fb0470628b +size 8157216 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000015.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000015.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6b96eb403857062cc7dc6ddd299e25cfa51a526f --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000015.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac14b558290a97b441e631898e706821295352454fa1c73f68ce975f68a63a37 +size 6774071 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000016.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000016.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1550f24cf541d5d3938b78a399a6fcfc4e0f7a56 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000016.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:485ff445ea47dae5e225b9faa2734c7044ef316086e4691b072af1bb3df95e89 +size 6887516 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000017.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000017.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0a65d44d679325347d06e977a2822a261869555e --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000017.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a4da874e644096637a7b2d5b644f69ebe1db2508cf381360fde6478cfd964e6 +size 8900474 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000018.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000018.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..715da5028c78f4ef33b08ef871927e12af4bbe08 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000018.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5575f2d247930596e597c5d81c0b68990b62a998ad53f9a9f3d6dcd4e556c428 +size 10159596 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000019.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000019.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b01866e4b02bf164eaf5fb21a6bd5dcbba5ab7dd --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000019.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e08dbcd3400ffacbab1fff7b11f1eb9eb7b1471100cd4225ab6a772e4a2eaed4 +size 6154838 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000020.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000020.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..62192381a70850fa42accb46d7ee45f6fab9e1d8 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000020.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccbd2c88f490deff93a79f2a92a9727320af740709dd7c0451e12c60250448f0 +size 5756466 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000021.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000021.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..7d02e7e800ec38cd8c36a80076a97dd77280501b --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000021.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1201e5bbeb25efa2fcae000190cee3657df8af9ffe374eb021b2150b8d2a626 +size 6684852 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000022.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000022.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1da5d6f320ec43a2c74cc38ebce9657c84d7ceb8 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000022.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e89b68ed7a2ee0c35a729df62a325a69dc4a06add3d591131c11e4f0c7880f56 +size 7867654 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000023.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000023.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2d0a63b1634191aabc005f2518e130fe756ec747 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000023.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdc0953c2b62470c007fe8c5a82f49f155c74ffa6ee4c9e9fa95b3ff9d891f4e +size 7487890 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000024.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000024.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1a713cf19e382a8bf11fe0fda0cf8138889f120b --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000024.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f0ccb3998f1fed3f371ae88586acfa6d7e70e647a4a0be5058371c7ac83a187 +size 5709715 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000025.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000025.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1e600d90e3fb73ae1822c6c4510bff3bda4a1e4f --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000025.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06661cb7b948073b50dbda7a834f8b35819e53cb3664241473b4efe81a65b99a +size 6519035 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000026.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000026.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..604b1115981b690ff60f2cc6b9df916489cff781 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000026.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0f4430ffb57f920329e14693a455511894a67c5c69af53a073bfe65f3b67a0f +size 6877527 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000027.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000027.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..db742c49907c39359287e048ed6b8fb6d6439176 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000027.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfac9a0fb107288ac557357bba9b090a06482b1c8092c2216a6618c311e1ed2f +size 5990142 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000028.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000028.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4f6461581f65ea257b028a5d209eb407b4a37e77 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000028.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4acadfb2674cfc7da1f24118df3f7af687690bc4b2b34f295e01afbe4ef3f153 +size 8143938 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000029.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000029.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ca1cb7afa1f24396c5df9a1003260ff94f507552 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000029.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbaf826613aca2bd0e03985768cdc9d2f38e5647804f36c376b8bdc9ce32295a +size 8395476 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000030.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000030.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..029d717fe8ba29836afc248605b7a5852a12240a --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000030.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ad3026c633ce76f2827a4aabe10f9e2ed1bc7f76322115c15d27bf671ccc3cb +size 6484123 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000031.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000031.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e69ed19e3774f9e25f1a67304a3d9465704ac79a --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000031.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eaa7addb88c3a6930bee8020493f675ea075a41f19ce6a624645a904d9da3e6 +size 7226269 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000032.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000032.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..325938d2ccd2914c0ae2d411adbff1a9386e727c --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000032.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8e9a7e1215388af7abeaf0cb7d4255bfe249c771e9decab4f4b627751b69821 +size 6300857 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000033.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000033.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..fcba22b7d756828c83d5c68dfb1373b209917340 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000033.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b6dd3578e067f2c1e6a9d6556550857566a1f024f64c15800eb650476abc95d +size 6809867 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000034.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000034.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..30a890202a8cd6e2f6f7129f13c7c03ace2b79ce --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000034.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6916729acdea089a8b20fb6ca1e6b80f73fe4ee9ac7b4bd17dcc5b092d3cb80 +size 5526042 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000035.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000035.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..49f541e47d4d2bd0ffc7dd58c01b9b089d721930 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000035.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12dd52587b1f65712c810dfbb19fc9be8a01f1dcf00cd2230b219a27a61e5430 +size 4883984 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000036.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000036.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..07c0f1eac53a521cd384ff0795e2887d964c6e9a --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000036.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14d83a0bc07d5929c96a3dd2c26ed955d424a5aa61fc9e18cd7677620485391b +size 6652846 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000037.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000037.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..42c7ba79d4e585ca03d8ca147d34138d48685900 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000037.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:206bd83143cd9569c77dd72b8a6cab99b213ca58f6d73d741de3b5ee6fcee11b +size 4861438 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000038.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000038.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8686fb5fb625255159b312a886fa572d139b3a69 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000038.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cea80d64e1d8e8aa8aef06ad429e422c8eaaae90fd13b68430ec1568a221806 +size 5538636 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000039.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000039.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..63a9512d6f6137dd32a8ebcecf31ee985cd06339 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000039.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd60555a9b9f68b6543144c77cdcc0dce025f22f700ddf11f341eacd811d2947 +size 6729759 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000040.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000040.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1f9ff8f0125b513fe65f60d19d7a8a6d16d3c04e --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000040.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46b611d22bd2ce4a9991b15187b4a1e456f5ddd754b83f45d77e5d3200351d59 +size 7070986 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000041.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000041.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c6864fe58e13f89ffcd9d0ee002d96a4148aa951 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000041.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e980b57e86b71c7fadc9f4da242e3d46356e65054108a97f3d33341359236752 +size 5314532 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000042.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000042.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..bd4c32efa9464282ba73531cbe7af49455735609 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000042.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e106af8e6e0dc6328abf72e148e50b575aec0d29ef410c3f7a793f79977723a +size 7799768 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000043.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000043.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8e87fe3cfdaa1e8d0fbd07630df0c0464732f67f --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000043.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af07c138428af8ff96f79607711a15ff01f39bdbd7627d5575014dda5b64e8c2 +size 7373444 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000044.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000044.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c5c62d1a6bc876f221e4fb584ffde590fd5d2554 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000044.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d3a035f39230b950ae35d81bcb8bf0a20b0ba71c9c01eb2e12f21630a91207d +size 8137477 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000045.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000045.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c62088e1965c506a9f2b38f8e3928d3fe805e1b8 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000045.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15ba18d8cd9e765fe766d5cc73a6fdb7b386b803eef2c20ab677398786de0c2a +size 6309418 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000046.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000046.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c36d3dc228c464e24c786b94a854f275138ec14e --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000046.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44517ee57c28c94c7e6b7c6728b844bf8333c1eaf946a4d64ac6736cee5fe80d +size 6159032 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000047.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000047.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8bbc3763e0eaa72391c3170f9cd3437e514c6110 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000047.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48b878d5c5879b01ab9e1591373d2a9f629af9353cf271cea5854a312cb2e714 +size 5712138 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000048.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000048.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..64e3fa65880c78c08c802384269626f86fda170c --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000048.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb3ab045074534a492677b8cd63de51b115a09a0b6fb0c5c60ae53f20f42775f +size 5281875 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000049.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000049.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d93b8483129b85d31c4d62601e7acb1ad06081c5 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000049.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e0106da3417b98ff5a765791bfbbfceb79fbd267563c21cc83f3c0ce8f1a53a +size 5737888 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000050.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000050.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a3326a019afe5720c677cc46007c32050e59349d --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000050.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ea31cc56aa900db4828887a50115917aa25945c580e1e15511708054a857d1e +size 7915908 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000051.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000051.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4967f16588ca3a7248296c5c5914a0a3c4f813e4 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000051.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36bfcc4a0814c4193fb369fc9971c47ec651f2cf65a5f5dd8fc7f53cd2de6217 +size 8121975 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000052.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000052.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2ae2eee74cb24ed40764cfad0e43a1368e991bf2 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000052.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77b7925bde2a0a228dd6c1f8982260f1b28b2352247b4fb8e665ffe3143caa48 +size 10784249 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000053.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000053.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2b97e5ba044201c40d2a8dcb2b3051650bc1a4cc --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000053.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8206e786b9a303b29d83256f016a9bb4ca65fd26b1cdc998c124e2cc6e127c80 +size 9276384 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000054.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000054.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1018092ad6b937bd4f1e3b161eb68732a00d9366 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000054.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e76e47b66c6ffad9d6c9f3e7289ba5dab5ad78898167f2becffd37efcb5f64b7 +size 6642982 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000055.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000055.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..930aed636a3e0086765073a923533c9342f4440b --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000055.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a87198363240877eb8b4b609684ccecc69dfa0e3623d426c42a1b25ee487242b +size 9479452 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000056.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000056.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ed12327afcbfdadc4227b52a5750389acea83610 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000056.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b9e408187c8ae76c87a57c63aa710d04c95eee838b0dccc25b88653eb4932ca +size 8081863 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000057.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000057.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3bf91410c2f134d450fb9035be4b0b9ed30d0557 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000057.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc20f6322835e27504beed91ae06ad1a699a53a2c3f3d045725f026932213865 +size 8360521 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000058.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000058.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5f515b386c9bde6c79719e6280320c0c46e8c167 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000058.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc4c72c229ad3f180832a004bd3919fe816270ec17dce0d5de35e8ebe2cb7913 +size 6578151 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000059.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000059.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e4ac3d60e3f0765b2c50f1ca3a0620f23914b168 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000059.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0150f0a2dc7fd29735f9bc5596a28357bd3907ffa3f7221c67d1d9654e448406 +size 6582278 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000060.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000060.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4551736f78de9a0a0a232d80c0e86cb4c61ef5af --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000060.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77a7e3f2e3b0d52118f37875465fc1fd76dd195d2e3534d14e94698c0e75c5b1 +size 8192230 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000061.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000061.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0624d596ffa36349175ccad86591f4d2b446389b --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000061.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d36f7d7da4dd465dcca49121040a23b18910d68c7a79f8705a1757fa9bec8026 +size 9284258 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000062.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000062.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..832683127e3408a3e17870a6ca1dd033ef93b085 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000062.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b8d810c96fe22e15d21c66af1d7cf27b48577c2a3d991a60cefd61515055171 +size 10721501 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000063.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000063.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..7e55af6387433300fba5d47c6ad7caaa64bb8da6 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000063.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93bca5fe3325c85d35690f337855a537b964ebe62d4b9285a296a3b2a9608adf +size 7555336 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000064.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000064.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..de393c5f1e80afb07a62112a572073fc03573bf8 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000064.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a6930a6668ef6b7f6ca6dcebd933609348aefa5acf7ba04a57e9f5dc3a0f836 +size 8244644 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000065.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000065.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2b0206267609d7959655cca0a8d96966837a3375 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000065.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3bb93f6e5be6705f4d96dddb7ef11ae58df742529bb5e588edd04fb02bef72b +size 6355421 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000066.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000066.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1a4755732fe336713bc379c318ccd89eb0fd41b3 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000066.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12a9d59a897a1b85ffb655754f4162d4f5f8c2b3d6c563295a01590ff66121c2 +size 7053971 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000067.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000067.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9710ef93296c323d35c2612c8ee2e7e269618f77 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000067.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27230b8b2a97079cd41e78d921140c57672ddb7881022083bfe2aa027f8acc34 +size 10385265 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000068.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000068.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8d1b7f6858a02a96e137f0d9024735893807eb31 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000068.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:062d5e854d585ff3d1b71c69baf8bfa775a0274235308cac221545b083ed0cd8 +size 8328226 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000069.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000069.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8d5729e4879977681a87f6827fb17f22e6f95afe --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000069.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecb4be890eb104298af8f2ac1a5b905765fe5d77062de3d4201ff694c09252ef +size 7377575 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000070.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000070.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..309599cff462042e311e1018da9f1aa59d608643 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000070.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60dc3fdc088b39b76a51d4aead253fddc41c2a81a3df3d19465fb0dd93dadaae +size 6715464 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000071.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000071.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6f90d47b5dcfe7e29d5f01c7fb89616eddf68a15 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000071.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b205aa2b169ec739843819dd95208c2466e5cf8ffbea8346910df78e5d06d41 +size 7764015 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000072.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000072.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a3d07b0bf62b0a9cd0e46799f068f377848d85ee --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000072.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c7e5896f4f5d19eaf66e6611301a2777485dc415d7ed9dae7692738a372ea2b +size 9588619 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000073.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000073.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4dc374904f73369161b5574b724b962a868bf322 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000073.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2fc41222b201ac189cae65c529fbce9d3fe3d01dfeb9b83eb4900ba30a71483 +size 6187385 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000074.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000074.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6290b64afaaef9c50e760772ef65a7e159cd09a8 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000074.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cb781901022c5d6438ab1a96cc7212f45c98784fb2608ca82b0210701d92bb6 +size 6690495 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000075.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000075.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..295913fd30dc4ed4e19c3c00f23ccd4f9765752d --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000075.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9b13b02715fab5eafb944422818854397ac387a1c5a47b9f02755954928ec69 +size 6230235 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000076.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000076.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0c46ca2778c349474bdf655482a4d5136b71e85d --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000076.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b17829a29f1bed0541860d32aec478fd4b6b181f8eb804398267d419f223a5c +size 7516109 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000077.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000077.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..71b9a63b84d7cbc3f02965386d736b15345cbac0 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000077.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3c1d8a5a6e6a563913568500894dc05dd4f67f0ddd6b7dfa6ee5e625055c9ce +size 5107462 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000078.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000078.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..49363a39f430cccb455e66d99279b406ea3a4d9b --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000078.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b794508e222d13b80c98e14f347112bac94297b8973b74dbbc0853ebf5efdee +size 4928015 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000079.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000079.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5574275ff0f02fa782e5bacf3f9b01baddd1881d --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000079.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7df8eb564c90c3ca672485c5ce2fd27b67051e147fcd1cff66555b9caf2127b +size 5621282 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000080.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000080.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..16caf9f97f3f7d7c7caa66f934d6a6fc535f4c41 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000080.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53c1eb979fffe47df67efb61dd7df93c8d185d58ba235943edd5748834d2fc53 +size 5328815 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000081.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000081.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..43fb2bd1e9e8e9e7e32e3b8bb745f59caa3af140 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000081.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa728e5050b1e39fcf30a4c482bccd3128aa6e137988e2d6828da511819afc97 +size 6094579 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000082.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000082.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..48886cf88a0f7a3aba6ae045b106a17987bcd54d --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000082.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:228fd982f2fa51d3a305e9d08f8bc8f1df5722a417a564532a1b08926b3a4003 +size 4565868 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000083.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000083.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4cd8f35dc463271858605a05768ad61e1abee5cc --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000083.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e0320ad7d4ff7ee2b43791e5a21937989a1b0a16692bf5a337802e6f8c41a30 +size 6085190 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000084.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000084.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3c3c38d828f84ecdfa27aedf8154af100716db82 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000084.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c733da84953d611399f678151d0caadc51e0adf101d91bd8d8ae9658ac418ef3 +size 7165193 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000085.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000085.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e2cb226f93e945e0da3bafb7a21d96c69857e6ed --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000085.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:192f2f05f2dd86ca609334d664404e4f345fa6a587d1cada544cc3609de62ab8 +size 5701897 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000086.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000086.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6f53b8e5389dfa77622735bd14ab30eab1ceacbd --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000086.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30cfd42d1beb8188b99724116eacc2dcd58fe12d7e6821f929fb1b82f9dc194d +size 6538048 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000087.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000087.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..fdb30d09b6c045c8a8a7ac4bfe02f6ec627573e2 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000087.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4ef90ac5b5bdc94b4b9c4dbd9dcf4c3c3e1df91e395a072a0af6900fa4d281b +size 7232996 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000088.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000088.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..fb55690c3c474988b2259b1f5322f312a699a722 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000088.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:470b0e4b874d6f302fc2f212c22220df41fcb3c02f3552bb159e6c9a07b5da91 +size 6214031 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000089.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000089.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..229f300005cf99a98568c2c6ea2462156b11229d --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000089.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9174f137d28e0f332f6e78bf3e0f284b129c20542cf4746845849a6f4e0bc277 +size 6732528 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000090.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000090.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..341155c3aa1fbe67e083e6a1e7d6977ef9243b33 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000090.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2727daa2a154569f431a136c420536402da40e6ec008f5e9c05e1d0ca9cfb84 +size 6233520 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000091.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000091.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b0b96dbc64926f0459a8797cff9c457f3753e46b --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000091.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70de387356effdad291e8ef256502fabb9faec404909e571514d57e3bd6199a9 +size 6477753 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000092.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000092.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..79899607bdbd34eabd0a79cd08e29824a6183a75 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000092.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f976a9023a4b0a8a03ff46cf09e618a603e9950f1f6151bb1d7267b8f6910714 +size 6436620 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000093.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000093.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9edf9198b39c375a81639fa42dc9ce388bba9067 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000093.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90b536238f6c4c53934e1adc9fdd26ead974836c73a0519c32f1e99095498687 +size 7335844 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000094.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000094.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1308112987de33ded5d7f2c55c503ea9e8d57808 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000094.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c341e676ce4f01d903474225e834e4e0b47aa913e3563403d75472e220b9b7e +size 7601107 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000095.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000095.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a41d4e64a8148d124f0936f7eea91e0f9ef77047 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000095.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6b046a9f45e649d445212d3cc16d2788c6f06d54ffca8eb99f34b78c20b28d2 +size 6596895 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000096.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000096.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4e94da9536ef142442805ef26142e3f86286888f --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000096.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:361eca14a5c565488aa6cc29319234483ec037c1fb0d9387962c648947aca485 +size 6946481 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000097.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000097.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..eea930378ec02512ddcc3b42664ff8f2cbb67268 --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000097.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9cca9881174ec245d493fc4a11dcf21aba5a6a7750ab401b888552add0d8320 +size 6290936 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000098.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000098.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..086719727a65c50d3d54161c829e20a2582dddbb --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000098.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:304f9c2751b0133c291375b7d1a1d6f84c3814f27a96fbe31461e6cb02a3cbc5 +size 6637929 diff --git a/videos/chunk-000/observation.images.low_camera2/episode_000099.mp4 b/videos/chunk-000/observation.images.low_camera2/episode_000099.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..bb841bb6b10f64dcd17a3965b68baae4bf1acbbb --- /dev/null +++ b/videos/chunk-000/observation.images.low_camera2/episode_000099.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b14591e39b9bb2aed00959d4d951b8be73790fda7d5889dfaed91e31b32a96 +size 6212831 diff --git a/videos/chunk-000/observation.images.wrist/episode_000000.mp4 b/videos/chunk-000/observation.images.wrist/episode_000000.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..acb230d4615c09697d0d1629368c07cb682690da --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000000.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c357c3db9099fd0b7f32bea5fe87dffd0d0faef59adc41717e46a94a0558433a +size 9352145 diff --git a/videos/chunk-000/observation.images.wrist/episode_000001.mp4 b/videos/chunk-000/observation.images.wrist/episode_000001.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4b8ce4ee19f209575c1320a3d0e8a7bc999716fc --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000001.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4303380014c10c4332fa19cb45bdf19f1a06656c5465f78cc09e243e235ba202 +size 9808898 diff --git a/videos/chunk-000/observation.images.wrist/episode_000002.mp4 b/videos/chunk-000/observation.images.wrist/episode_000002.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b949922085b5ab1d16d5cd327c17139364577db3 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000002.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab25f4a481fb0bd4921b17a9815cee44b5f227dc2b76af8872a0c86c7159c891 +size 9773422 diff --git a/videos/chunk-000/observation.images.wrist/episode_000003.mp4 b/videos/chunk-000/observation.images.wrist/episode_000003.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b29a5b8ee1b8311b6b940e1b0db8f391e6b55265 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000003.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5891b1e6d30e9b6a52bcffec71be98125aaae03ce6b2364d6634015b6208adf0 +size 7048748 diff --git a/videos/chunk-000/observation.images.wrist/episode_000004.mp4 b/videos/chunk-000/observation.images.wrist/episode_000004.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..33780c28b08b58086146de446ad4c3bf0575fbec --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000004.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85472d7dc292cb463a21f4c05225d206596f21c01384ea26200eda4ddaba6239 +size 8708236 diff --git a/videos/chunk-000/observation.images.wrist/episode_000005.mp4 b/videos/chunk-000/observation.images.wrist/episode_000005.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..cfe6039c9fcc8f23693539291744101782d7637a --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000005.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ee96f912ee826ebfde4c0628a45bf1e22e817aca8dbf6a2735992aa7be918c2 +size 6616318 diff --git a/videos/chunk-000/observation.images.wrist/episode_000006.mp4 b/videos/chunk-000/observation.images.wrist/episode_000006.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d9d1b1de9973d464d3af2b0ee367036b93d8c2dc --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000006.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff24dde589fdf91303aa9b346b6e04b427068b9d298e79ebf1c41897c3b451e4 +size 7905268 diff --git a/videos/chunk-000/observation.images.wrist/episode_000007.mp4 b/videos/chunk-000/observation.images.wrist/episode_000007.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f2f35670cb0b32753a6f28f2679d1feedc1e438d --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000007.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53e4808e262a4bf8e676a844f93db756b7ee36efe482b282cfb32f76b2a4726c +size 8505153 diff --git a/videos/chunk-000/observation.images.wrist/episode_000008.mp4 b/videos/chunk-000/observation.images.wrist/episode_000008.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..094c2f185f9a68757133e27bb66f89785bbeaf05 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000008.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c5a80d2efcaf2fe147606f2492df28fc3899df98e1356571bdd700fa6e31545 +size 7937095 diff --git a/videos/chunk-000/observation.images.wrist/episode_000009.mp4 b/videos/chunk-000/observation.images.wrist/episode_000009.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..bf15517c126d49bcc9a58255ad402a844cffdde3 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000009.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01b59a5e35e86f73d5676a8249eb1416fb92aaccbcf532a26af78106e1eb0b34 +size 6452631 diff --git a/videos/chunk-000/observation.images.wrist/episode_000010.mp4 b/videos/chunk-000/observation.images.wrist/episode_000010.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9397bc6c32989de1d64b3746939ae51851f68e09 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000010.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f998b38d61fe3562ee77fba329249f3101ec6ad8ce74a096d9ca10501edae46 +size 8197010 diff --git a/videos/chunk-000/observation.images.wrist/episode_000011.mp4 b/videos/chunk-000/observation.images.wrist/episode_000011.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..409765e735ab205ad6137e9da47c5c284035d6f4 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000011.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78a46cc5b7909a603c39429fa68348c7af8f2742e135beda66a335f26cf9c7f3 +size 7524669 diff --git a/videos/chunk-000/observation.images.wrist/episode_000012.mp4 b/videos/chunk-000/observation.images.wrist/episode_000012.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..be43a2efbaede0eef9f74d66afbafaa503495499 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000012.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c4567c18f55460358ad665f510b4bb4aa020752054ebc064d0896e236d4c389 +size 6416535 diff --git a/videos/chunk-000/observation.images.wrist/episode_000013.mp4 b/videos/chunk-000/observation.images.wrist/episode_000013.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e97e30337a35b0b30aec8f6b0a317c0a97686333 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000013.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea4d2ff4298346c180157a6bdb2ca29e024e950ed9640da90914edd44ee70f30 +size 4647145 diff --git a/videos/chunk-000/observation.images.wrist/episode_000014.mp4 b/videos/chunk-000/observation.images.wrist/episode_000014.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4b8cb95221b9e3512838eeed3d068e4aedc1bae7 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000014.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00ee2d3609d07d1ce6a1dd5b03566f18fe311b216839764637149a211bd594e2 +size 7294187 diff --git a/videos/chunk-000/observation.images.wrist/episode_000015.mp4 b/videos/chunk-000/observation.images.wrist/episode_000015.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ac250efaf6c456d844319e6efa9fcd5edbc9129c --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000015.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65fb5ed43063335f0ab039674f04c7f4ad231bce440e27690ac1116a79909fa8 +size 6168904 diff --git a/videos/chunk-000/observation.images.wrist/episode_000016.mp4 b/videos/chunk-000/observation.images.wrist/episode_000016.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..7a82fbfcb0b5231335f3f7cf0d8cf802d5b01297 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000016.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dc07fde9e65c0674f4f66abb33d239deb4cdcf1d435118f419ce65750f5eb9b +size 6222348 diff --git a/videos/chunk-000/observation.images.wrist/episode_000017.mp4 b/videos/chunk-000/observation.images.wrist/episode_000017.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0d662c80bd5ee3ca2fb610d0609d98a45267d2b0 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000017.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aff9f196bd3f91f0cc930412442145513ae4fb5d36e0954a40a87ce5036ba8bc +size 7726661 diff --git a/videos/chunk-000/observation.images.wrist/episode_000018.mp4 b/videos/chunk-000/observation.images.wrist/episode_000018.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..809b79d7ad820febd3e3511f60c8588494df67fc --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000018.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3aca9a2daa36ff05dea940101db17d63729836337323508b9f9c11c02838b62c +size 8985237 diff --git a/videos/chunk-000/observation.images.wrist/episode_000019.mp4 b/videos/chunk-000/observation.images.wrist/episode_000019.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c9579ec501db6e425c8beefa27fdafc8f7dff9cb --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000019.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09342aec683028ace1ce99062242b538bf8540de9fe8dfad2857ee69b6068683 +size 5624457 diff --git a/videos/chunk-000/observation.images.wrist/episode_000020.mp4 b/videos/chunk-000/observation.images.wrist/episode_000020.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..49a70cf6e23408673ef959e52ccbae4991d28212 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000020.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea191e774989d114f116c71f5f981034644463b10afff2dae72be27f1f165464 +size 5291620 diff --git a/videos/chunk-000/observation.images.wrist/episode_000021.mp4 b/videos/chunk-000/observation.images.wrist/episode_000021.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6c0a6f6cd615068943a791828faeb743bf8e498b --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000021.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3420fc741dd7fbde6759446fcb693bc78954ef9b4fe16cd054e4ca9b8246720 +size 5914715 diff --git a/videos/chunk-000/observation.images.wrist/episode_000022.mp4 b/videos/chunk-000/observation.images.wrist/episode_000022.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a57a4733b43febac9ecb5d5e35db0789e0c37e84 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000022.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d53460f7a4920602ef53cf42658e4f64b83d415f13012306c3669ad04d69a9d0 +size 7235383 diff --git a/videos/chunk-000/observation.images.wrist/episode_000023.mp4 b/videos/chunk-000/observation.images.wrist/episode_000023.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..00c09a27e4bdd878408d57cd30593b4ae85c3e4d --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000023.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:550be1245de0c567e0c9a1ba048414991de7c7b53a7e1487fadfdb0737f07d63 +size 6654444 diff --git a/videos/chunk-000/observation.images.wrist/episode_000024.mp4 b/videos/chunk-000/observation.images.wrist/episode_000024.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..74fc63eb51f66c9615b79343aa8ed5126ef28a8e --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000024.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b31bd20cbd9d02646ba993183ec8a153dbef70917e2a7ca90ed48752448833e +size 5124961 diff --git a/videos/chunk-000/observation.images.wrist/episode_000025.mp4 b/videos/chunk-000/observation.images.wrist/episode_000025.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3c1524cba672e0a8d11bf43356b732914f02e172 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000025.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e52a0a358bf9b696bf544872125fde82497621e4b89119ad6313d90c550f8cb +size 5563012 diff --git a/videos/chunk-000/observation.images.wrist/episode_000026.mp4 b/videos/chunk-000/observation.images.wrist/episode_000026.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..efb7aad0d31b5b2c5b412c33ff7aa645beb4112d --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000026.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e190ed26f8d093a8106879d3aceecafcd39ea817add79c40c4ab0ee21261e12 +size 5851135 diff --git a/videos/chunk-000/observation.images.wrist/episode_000027.mp4 b/videos/chunk-000/observation.images.wrist/episode_000027.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f4d1042e248e251ec072c3874df940f0abcd0a78 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000027.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fc0617d0ee3d8400fbd34621e10bcb11795d8a7d8b1f836c50041e83fd066e3 +size 5321670 diff --git a/videos/chunk-000/observation.images.wrist/episode_000028.mp4 b/videos/chunk-000/observation.images.wrist/episode_000028.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..34a21aa4cedb4b4ddf5e5f03bb3b11d347c36841 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000028.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56fe6baa0360f7a12898b1c8307964ad9574c6723d251aed202b9484cc34ca5c +size 7457167 diff --git a/videos/chunk-000/observation.images.wrist/episode_000029.mp4 b/videos/chunk-000/observation.images.wrist/episode_000029.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..91d9c137f30a99b2ccadfb4f62471de577a81de9 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000029.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:650b2f1044121e7fd6b438b0fc9811b74e7cf2f1b4eb9f0564043d53acdf2b7a +size 7256999 diff --git a/videos/chunk-000/observation.images.wrist/episode_000030.mp4 b/videos/chunk-000/observation.images.wrist/episode_000030.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..bf7c19d701701929ed98fbec7fb4c3ebe8cb363e --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000030.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad22a6d21b127c300d4475ebaec9e68e7727215ca3f7e2fcdc33b6c2ddac8748 +size 6107161 diff --git a/videos/chunk-000/observation.images.wrist/episode_000031.mp4 b/videos/chunk-000/observation.images.wrist/episode_000031.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..81973ec840cca1eb0d5b326f88ef010209bacce4 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000031.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2d6f8c44d0b09dfee97f6db7cf24b884592fb2da72cf277cfc21d0e23c91d5c +size 6254420 diff --git a/videos/chunk-000/observation.images.wrist/episode_000032.mp4 b/videos/chunk-000/observation.images.wrist/episode_000032.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..303f7db9fc72b7da7a73e6a669f4be11d0f83fd1 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000032.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:616c41a6971cefd6f37504f2038738c3dec943a3a4b9fc8fdf828a2c800cea38 +size 5662643 diff --git a/videos/chunk-000/observation.images.wrist/episode_000033.mp4 b/videos/chunk-000/observation.images.wrist/episode_000033.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8d8b0779ce91f43bf0ff03af23c77912960ab58f --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000033.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61598570481bba3f9bbb871376a8a073b95846507058e74a10268c992fa60be3 +size 5974557 diff --git a/videos/chunk-000/observation.images.wrist/episode_000034.mp4 b/videos/chunk-000/observation.images.wrist/episode_000034.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..392e52c7fcc3a9bd7b2537abe8c0c671a7dec671 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000034.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cac59d774155a375e65393bdf8af46cdeb828bdf713ec8eb6d68cbc7c81e712 +size 5674067 diff --git a/videos/chunk-000/observation.images.wrist/episode_000035.mp4 b/videos/chunk-000/observation.images.wrist/episode_000035.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..eabcd953d499fec4ff4ab59a340236f662b22313 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000035.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dec0f582ca256038d852f8ccf14c74be63d0e093ba5ceab7980e722b9869c1e +size 5317881 diff --git a/videos/chunk-000/observation.images.wrist/episode_000036.mp4 b/videos/chunk-000/observation.images.wrist/episode_000036.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..05fd77ded558dd00fad38049df690d6e7e4f8b07 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000036.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:139177976dc20b752e59d1729f5e2f075898f3c735e487e416bed073e76b848d +size 5761141 diff --git a/videos/chunk-000/observation.images.wrist/episode_000037.mp4 b/videos/chunk-000/observation.images.wrist/episode_000037.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..afc56da7e2d085ac0cfca0653f635cb34d9f446b --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000037.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:256dddd95a2d871873fb5760b8cc2f8ddd75197fefeed1ba17a51af7d63809be +size 4593910 diff --git a/videos/chunk-000/observation.images.wrist/episode_000038.mp4 b/videos/chunk-000/observation.images.wrist/episode_000038.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..774e6a3603093b3a894f7ae21b2c1da5557ff992 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000038.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e61b8eff51b81a864e69205f2cea773252171c28729d5a1eb50bbfb76c25fcf5 +size 5061575 diff --git a/videos/chunk-000/observation.images.wrist/episode_000039.mp4 b/videos/chunk-000/observation.images.wrist/episode_000039.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4aa4e156679aff2f6cdd886ece51dd346e44884f --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000039.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:568d2b5336f61e20b72a42adf682d81eed1acd061159eb008ac9811e7d627b4c +size 5784226 diff --git a/videos/chunk-000/observation.images.wrist/episode_000040.mp4 b/videos/chunk-000/observation.images.wrist/episode_000040.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..fa7dd2cc2245f323603c537a21734c8620c68553 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000040.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4663a990329b6b8e99430a90792c8bc3291129cf4bb9d0ad691153693e97c0e6 +size 6128056 diff --git a/videos/chunk-000/observation.images.wrist/episode_000041.mp4 b/videos/chunk-000/observation.images.wrist/episode_000041.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..113ef1622f556231b8b09680e48366b70cfb872b --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000041.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d99b9dd72f350574cd2a4fe34c74b9c5d63e0bd29ceb74bdbee6e5c9d37546d +size 4622601 diff --git a/videos/chunk-000/observation.images.wrist/episode_000042.mp4 b/videos/chunk-000/observation.images.wrist/episode_000042.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..093ea548d91d78997474a88c5a965b61b08d2f5b --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000042.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb2d0c11c50ebc1e70727efe0813afc280bce9c3ffcd14160869e3fa2dec4062 +size 6345435 diff --git a/videos/chunk-000/observation.images.wrist/episode_000043.mp4 b/videos/chunk-000/observation.images.wrist/episode_000043.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2f27bd6cef55c79d29bbfe34e6ee170dfe5cfe3e --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000043.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8ece091c9abc4c355cf22550ee6c08298f3c2c9248d8479f2c05b474d915b45 +size 5864769 diff --git a/videos/chunk-000/observation.images.wrist/episode_000044.mp4 b/videos/chunk-000/observation.images.wrist/episode_000044.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ac4e36393e4bf6ef4343cb587cdca98850972d7d --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000044.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0f47322387b53376270ee9decd99fa094940944d7ec84e778e0adad473126f5 +size 6798801 diff --git a/videos/chunk-000/observation.images.wrist/episode_000045.mp4 b/videos/chunk-000/observation.images.wrist/episode_000045.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..bccc78f0d7629bda499be34da98ec8e4909e9e64 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000045.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9677410bae596c009f7a281345c00439180cdc8afd2ffb71b8e7cdb1489ad839 +size 5206538 diff --git a/videos/chunk-000/observation.images.wrist/episode_000046.mp4 b/videos/chunk-000/observation.images.wrist/episode_000046.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8db104c65adfcd00bcf311a75761220f05d40f8c --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000046.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85eb0d89859c767ae8fdd9de37c3a3780db28fb27870ef6099d05f097bd87a28 +size 5902453 diff --git a/videos/chunk-000/observation.images.wrist/episode_000047.mp4 b/videos/chunk-000/observation.images.wrist/episode_000047.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d96eb27a6ca86ffe6575746411b83ab942e4bceb --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000047.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad238d814e216782b97b16c2c018bc05eb035c90cfb6774acb1ac38bce04a3e7 +size 5564306 diff --git a/videos/chunk-000/observation.images.wrist/episode_000048.mp4 b/videos/chunk-000/observation.images.wrist/episode_000048.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..79d92da6c06abd62e4336a113f88d0d5aec7e128 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000048.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4575461d181e8fb48f6da27f92e5fc4508982382895a9e95c6cb77c961150b0a +size 4836943 diff --git a/videos/chunk-000/observation.images.wrist/episode_000049.mp4 b/videos/chunk-000/observation.images.wrist/episode_000049.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..312a5de4f5e344251d642e2d0babb045c9e5670a --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000049.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13421042089583e0aba15560fc26bae0212bdcd5841b6f813c63660775ffa240 +size 5382240 diff --git a/videos/chunk-000/observation.images.wrist/episode_000050.mp4 b/videos/chunk-000/observation.images.wrist/episode_000050.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8a434698744dbc59a9fde39dcc05a7e07c14d8fe --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000050.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca98235183efdacb105a3baed2436a6a8893e9c65e8d40484da11c652976125 +size 7139857 diff --git a/videos/chunk-000/observation.images.wrist/episode_000051.mp4 b/videos/chunk-000/observation.images.wrist/episode_000051.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4d8d73f240ce79b65be451b0363f83cb35b16c1e --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000051.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7edd2190b0198e30a4a377e906bb0f4180051be7e85b6df7340e7a03d8bd6cc +size 7733624 diff --git a/videos/chunk-000/observation.images.wrist/episode_000052.mp4 b/videos/chunk-000/observation.images.wrist/episode_000052.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..42e4ff3d5601dd8819d05edf1b9fd71403915442 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000052.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e3a6332affdd7583eb3f0d01f30223c69b1fa9c15e0ce71464e51db4bf4116a +size 8730726 diff --git a/videos/chunk-000/observation.images.wrist/episode_000053.mp4 b/videos/chunk-000/observation.images.wrist/episode_000053.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2bbe773858e090bf6914f4251d6f4d7d840ab2bf --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000053.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f40946434c7987bed9de1dd620734d3884dbd6ec87f29ff5a08aa56619764d5c +size 8079616 diff --git a/videos/chunk-000/observation.images.wrist/episode_000054.mp4 b/videos/chunk-000/observation.images.wrist/episode_000054.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..af1cc73c1a950662c4b7ffbbbee2f7eb563058ca --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000054.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba57bcd5e28dc59dca98db6a50b66c74442bc31c3398f2a864c341be2dbfb801 +size 6289557 diff --git a/videos/chunk-000/observation.images.wrist/episode_000055.mp4 b/videos/chunk-000/observation.images.wrist/episode_000055.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1873bf7649c93c4f14df05d6a81925f598b9817b --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000055.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:280d92e99e70e6e60162386060c9efa3125fa09d3719f24be77a27193b9de9ce +size 8626088 diff --git a/videos/chunk-000/observation.images.wrist/episode_000056.mp4 b/videos/chunk-000/observation.images.wrist/episode_000056.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6fc77822665bde16bfcbc690c1ff0726c192ce70 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000056.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa07039d6af3b41f287e7af38d6fdbef7a9b932f78f44c6782fa4c41214796ae +size 6881429 diff --git a/videos/chunk-000/observation.images.wrist/episode_000057.mp4 b/videos/chunk-000/observation.images.wrist/episode_000057.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..cfeb861fcd36de32cb93b6561c78c9e74684e0b4 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000057.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:087ce7592d47bd06522bcdd40ee40dffbff89bd742ae7b59590140bb2973199c +size 7506454 diff --git a/videos/chunk-000/observation.images.wrist/episode_000058.mp4 b/videos/chunk-000/observation.images.wrist/episode_000058.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..bf8f0182b84fa9ef8a55ec62ab46b2714891e4ae --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000058.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:149211b1bfdf598ac428d2a13d411b39f11fac3d86119e8b1ecde17ee7e1c8c5 +size 5717281 diff --git a/videos/chunk-000/observation.images.wrist/episode_000059.mp4 b/videos/chunk-000/observation.images.wrist/episode_000059.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5a672764a27b11399f90ae91762e8bcf485cca15 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000059.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8272a11870dbbbda76c85c825593a274adc6551b27e1f61a10807236bfb260ff +size 5973038 diff --git a/videos/chunk-000/observation.images.wrist/episode_000060.mp4 b/videos/chunk-000/observation.images.wrist/episode_000060.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..452352ae7ce8fd01014b1c7752d3a7c13595b5b5 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000060.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31f12e1eebda98a4646c5571e106cd4f774fe57be4862f264d20779fafcb0cf4 +size 7271278 diff --git a/videos/chunk-000/observation.images.wrist/episode_000061.mp4 b/videos/chunk-000/observation.images.wrist/episode_000061.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ab8a82993e088ec05d6a6accd5f2bf8e3cf08268 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000061.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9095e4bd82cf1194e8bbbf327af82074bcf0acefa4d7745decfe8c700f561be2 +size 8206996 diff --git a/videos/chunk-000/observation.images.wrist/episode_000062.mp4 b/videos/chunk-000/observation.images.wrist/episode_000062.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ff38893599944ef3643cd855e3de138af15c558c --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000062.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:355f40cb69532cd26c59afab2b141b80d8122d7ce490fc01cd7ffe1db7dde3b9 +size 9141406 diff --git a/videos/chunk-000/observation.images.wrist/episode_000063.mp4 b/videos/chunk-000/observation.images.wrist/episode_000063.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ba51cbb9e6ac06b3054b6beaefac865a11703bcf --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000063.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:928be053e45cb6a45083991b0f703c3ec36062e36eb317a5c5559d5a6fb175fe +size 6677702 diff --git a/videos/chunk-000/observation.images.wrist/episode_000064.mp4 b/videos/chunk-000/observation.images.wrist/episode_000064.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f7b822ccafb46e1cd5468226138bfd11f97dc456 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000064.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9288ac64bfd26ee9226d0df01f66322770984228cbcc77bb1296d830aa0443a6 +size 7121633 diff --git a/videos/chunk-000/observation.images.wrist/episode_000065.mp4 b/videos/chunk-000/observation.images.wrist/episode_000065.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..eceaab54a8b9f90670c8fd2ec3d51437f888cc47 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000065.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab8ea5efcb135befa33fc03d11db00f40e70c81b605335e40b1973b2e4471ea8 +size 5612811 diff --git a/videos/chunk-000/observation.images.wrist/episode_000066.mp4 b/videos/chunk-000/observation.images.wrist/episode_000066.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f53c6bad6ce56dee967afe8fb4927961df22c534 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000066.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f215c6082a4422f58e3ec0094336052592d650e25b88e7d58e13408c95b9457a +size 6155131 diff --git a/videos/chunk-000/observation.images.wrist/episode_000067.mp4 b/videos/chunk-000/observation.images.wrist/episode_000067.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..caace767654a87941dc53076711dc6078dc19747 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000067.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0a9bb5183b8e40283929cc148b4b63c0f94b9e988a8223e50470f97427d41f5 +size 9124638 diff --git a/videos/chunk-000/observation.images.wrist/episode_000068.mp4 b/videos/chunk-000/observation.images.wrist/episode_000068.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1beff438fd3cf9af16d7d984c6affbad0efe339f --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000068.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b980f334190eb6c1e63605ad0cdcd98573634dd452871526a1463521075188ff +size 7589473 diff --git a/videos/chunk-000/observation.images.wrist/episode_000069.mp4 b/videos/chunk-000/observation.images.wrist/episode_000069.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..7982b62e10b0af0af2498301090ab57bab8905ec --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000069.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bff9e16a8572e9cce8e394c40fb28320912cfdec28c3100b95e9fc1d8af8d684 +size 6345806 diff --git a/videos/chunk-000/observation.images.wrist/episode_000070.mp4 b/videos/chunk-000/observation.images.wrist/episode_000070.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..acfb941d84dcc30dc37f815b17c81a562094949b --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000070.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b7a6c1a4d555be7d4d7c47e851fd69d530559a5339c40f04643f81fd7b9730e +size 5957850 diff --git a/videos/chunk-000/observation.images.wrist/episode_000071.mp4 b/videos/chunk-000/observation.images.wrist/episode_000071.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..55ba32f39ec65654267e0ff6befa4e035bf667bc --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000071.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:647493ddc2fde8242d20cbd53c7391ca21468e5abe6c858b8dbfeb1af33c9c43 +size 7081861 diff --git a/videos/chunk-000/observation.images.wrist/episode_000072.mp4 b/videos/chunk-000/observation.images.wrist/episode_000072.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ca6ed403281698986699b3133bd103756231c151 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000072.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:239d0b80d9ad0620cccaab09949699e398656200b5658a1a35515153d9041492 +size 8109891 diff --git a/videos/chunk-000/observation.images.wrist/episode_000073.mp4 b/videos/chunk-000/observation.images.wrist/episode_000073.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..61957711b193011a657fc4732372d0598c11e622 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000073.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d6d6203b169aeac3e82e31b585cddbda5e27bd49a16ab4220ad002e37c45a42 +size 5223746 diff --git a/videos/chunk-000/observation.images.wrist/episode_000074.mp4 b/videos/chunk-000/observation.images.wrist/episode_000074.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5fb7d6d791855b1a597ca5e8e702deb5996fd06e --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000074.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cddef8f8f901b68c4676e7126fba25acdc2a9a76e0ac8cf9bd097263d013845 +size 5385547 diff --git a/videos/chunk-000/observation.images.wrist/episode_000075.mp4 b/videos/chunk-000/observation.images.wrist/episode_000075.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2e80dcba3de63110a8c4d29cff0adae33641aa5f --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000075.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83254c20bf3fcaa93f895b51ae2d9902154b17af0469eccec7b12ba0e6ed115d +size 5250635 diff --git a/videos/chunk-000/observation.images.wrist/episode_000076.mp4 b/videos/chunk-000/observation.images.wrist/episode_000076.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..80694d8045ab2742e4af3c120a611d56107a225e --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000076.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:520f905b72b77b736b84794ca9100a072abe419ec8fcc13fd5a7c0d66b12ead6 +size 6873906 diff --git a/videos/chunk-000/observation.images.wrist/episode_000077.mp4 b/videos/chunk-000/observation.images.wrist/episode_000077.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..eb8212155975649c22d98fcd1dc1fa694bfead20 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000077.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94c4afb1f888ca6d6570248664e5e77f458ae8db83e40c21f1988d1dc37b7774 +size 5391604 diff --git a/videos/chunk-000/observation.images.wrist/episode_000078.mp4 b/videos/chunk-000/observation.images.wrist/episode_000078.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..dbb24bf70a6fb8e8cd3c3ddfbaae0ce2bd25f8a5 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000078.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44d1ac6bb70424b8af69ac8c99e0db8a623f318da9e3464d9a0aecf02b7ef963 +size 5113635 diff --git a/videos/chunk-000/observation.images.wrist/episode_000079.mp4 b/videos/chunk-000/observation.images.wrist/episode_000079.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3252a02a836e11796861afefe9c2fa13e8a501e0 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000079.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ca434ca5928a31f305f42a62eb8d2394160544b400a66030c193799624cca7a +size 5209229 diff --git a/videos/chunk-000/observation.images.wrist/episode_000080.mp4 b/videos/chunk-000/observation.images.wrist/episode_000080.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..fb908c1f5d9572a3f085ce0eabeeb84c660df4df --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000080.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dce73e403beec1e95839df2be8c5716f7f03270a4512924086773bf30b53053c +size 4999487 diff --git a/videos/chunk-000/observation.images.wrist/episode_000081.mp4 b/videos/chunk-000/observation.images.wrist/episode_000081.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d72a4c3a0a54f246e711b1c5a562028fd06f0b00 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000081.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa0816c88913b2ce0ef35fe73ad432af685fb5ed8f5d6a7d348887f1c1d0147b +size 5639549 diff --git a/videos/chunk-000/observation.images.wrist/episode_000082.mp4 b/videos/chunk-000/observation.images.wrist/episode_000082.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..435ffbfd45db590641cb808a9bb4be1da05422d2 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000082.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a0a27179fc2bb7967cc933751bf74f8ae456ec6dc473b6d7e58f5ff07113364 +size 4348648 diff --git a/videos/chunk-000/observation.images.wrist/episode_000083.mp4 b/videos/chunk-000/observation.images.wrist/episode_000083.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..39c9031af628b3a017dce50908d3e6f468d174e2 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000083.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a303a8c7cc2278884f963d848e2d6dc2a526141aca84bbb646104800fa4e54a +size 5901488 diff --git a/videos/chunk-000/observation.images.wrist/episode_000084.mp4 b/videos/chunk-000/observation.images.wrist/episode_000084.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..299d3b39b053efe4ece465cb6d8a1bc19f3c9f6e --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000084.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e0a21acda7ae32892bea8d138d8592ac9ef3f3e5042bf4e2e2b593dc42b1b9a +size 6836889 diff --git a/videos/chunk-000/observation.images.wrist/episode_000085.mp4 b/videos/chunk-000/observation.images.wrist/episode_000085.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..51e2b5f24ece818ca3701df3ef813ac51c0d285d --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000085.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61cff199b448387579fc2b40e8a442198f6e51020502b3f7a0fc0d38d613bcce +size 5393145 diff --git a/videos/chunk-000/observation.images.wrist/episode_000086.mp4 b/videos/chunk-000/observation.images.wrist/episode_000086.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..466258c7169f124c079a528fb4d6042a279e9f1d --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000086.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1822ec179e6a6d7b0d8bccc4895f63ff9cb5420711b117d8ffde06cf05b3acdc +size 5669480 diff --git a/videos/chunk-000/observation.images.wrist/episode_000087.mp4 b/videos/chunk-000/observation.images.wrist/episode_000087.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..aac9d782a3c14e2f9f289b5fce74544a844bf133 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000087.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:540263ede3aa067a3b284a7b6168ba371990846cd652f6e45b6ce72c4b0f3652 +size 7119219 diff --git a/videos/chunk-000/observation.images.wrist/episode_000088.mp4 b/videos/chunk-000/observation.images.wrist/episode_000088.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..20902edd50b97a0756da63f819f5bafaae2af974 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000088.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4954251bc566e20fa59a26e401acc823624d11ab4a560190f314ce016bb875a1 +size 6102124 diff --git a/videos/chunk-000/observation.images.wrist/episode_000089.mp4 b/videos/chunk-000/observation.images.wrist/episode_000089.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..265b1d5814cf1536bb1e4dd9ea2f564c4e42cc66 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000089.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31ffabccdde4418be8c922a1c9ada0a5e061940cab29b9179ab74bc0e86d3121 +size 6741946 diff --git a/videos/chunk-000/observation.images.wrist/episode_000090.mp4 b/videos/chunk-000/observation.images.wrist/episode_000090.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b7577f9df15660ea20e9e7d3456da0c3280bfd36 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000090.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3d5eef77500261cd142e68343a43a3fac8292e8e991dde67c72b9b3a5ac4d34 +size 6280125 diff --git a/videos/chunk-000/observation.images.wrist/episode_000091.mp4 b/videos/chunk-000/observation.images.wrist/episode_000091.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ce37b517f1b37f4cc1136acdd2c228e1e0eefd6b --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000091.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a17338739a52829da1571a653cbe8850e9dd4c693e077153331907eaa790e702 +size 5658189 diff --git a/videos/chunk-000/observation.images.wrist/episode_000092.mp4 b/videos/chunk-000/observation.images.wrist/episode_000092.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..fd3cdd46f8db8a4226f1e4045369fbf2fc17eb7c --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000092.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32c5633ecf537cedbb2ba87b030f2848f9f3b7979466ecfae52b729e6a4481b8 +size 5876199 diff --git a/videos/chunk-000/observation.images.wrist/episode_000093.mp4 b/videos/chunk-000/observation.images.wrist/episode_000093.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c6862b917dc445086b6423adeae7a695bfc83c6e --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000093.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:200e86bd9a97723009af7454289b82dd960076b7053379daadd2713d14a643c1 +size 6546186 diff --git a/videos/chunk-000/observation.images.wrist/episode_000094.mp4 b/videos/chunk-000/observation.images.wrist/episode_000094.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a37556001e755c96c4830ab6487c43f7fc2445ec --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000094.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09a75f5209ade6a4c2107e77fa0bf184d0109ebc638d2c4beca7146177854263 +size 6312880 diff --git a/videos/chunk-000/observation.images.wrist/episode_000095.mp4 b/videos/chunk-000/observation.images.wrist/episode_000095.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4bd1f8afc9f3d30464c43625df7a313e7910d0ad --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000095.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:166f6606610ba41314e33f38ab4c3f7f3c1313cc2d54a01e667cda334a5eb37f +size 5573838 diff --git a/videos/chunk-000/observation.images.wrist/episode_000096.mp4 b/videos/chunk-000/observation.images.wrist/episode_000096.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ecedfaaafd52d74172ec65e9b22a29335f82200d --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000096.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99fc7a6d63b570908e0acbd2526269c220287df2dec5fa7127a8987577dd52b3 +size 6183448 diff --git a/videos/chunk-000/observation.images.wrist/episode_000097.mp4 b/videos/chunk-000/observation.images.wrist/episode_000097.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..43b2894639ca3c10170e53ec70bdec55b4b97e2e --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000097.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8540a9ab6b9da91b5cc9370f741e828135802ab63f42a4833d4ca546f8d6c8b7 +size 5489610 diff --git a/videos/chunk-000/observation.images.wrist/episode_000098.mp4 b/videos/chunk-000/observation.images.wrist/episode_000098.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0a3597318624bccb71a4d59393bb59417833c621 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000098.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e60bef89940f013cb224979d99a10182637fc5222c63317225d01344a1d1de6 +size 6003780 diff --git a/videos/chunk-000/observation.images.wrist/episode_000099.mp4 b/videos/chunk-000/observation.images.wrist/episode_000099.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e2886a7b2c088d833812a821a8de798cccdb49b0 --- /dev/null +++ b/videos/chunk-000/observation.images.wrist/episode_000099.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94a4661490b66a8804916b8b1f4bef6b2be3a21fcb10372beeadd3ab1637fb27 +size 5659618