kinam0252 commited on
Commit
c9a6086
·
verified ·
1 Parent(s): 831e4fb

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. README.md +142 -0
  2. meta/episodes_stats.jsonl +1 -1
README.md ADDED
@@ -0,0 +1,142 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - robotics
5
+ - computer-vision
6
+ language:
7
+ - en
8
+ tags:
9
+ - robotics
10
+ - manipulation
11
+ - vision
12
+ - imitation-learning
13
+ - lerobot
14
+ - so101
15
+ - strawberries
16
+ - tic-tac-toe
17
+ size_categories:
18
+ - 1K<n<10K
19
+ configs:
20
+ - config_name: default
21
+ data_files: "data/**/*.parquet"
22
+ default: true
23
+ ---
24
+ # SO101 Merged Strawberries & Tic-Tac-Toe Dataset
25
+
26
+ ## Dataset Description
27
+
28
+ This dataset contains robot manipulation episodes combining two distinct tasks using SO101 robot. The dataset includes 27 episodes of robot manipulation with multi-view camera observations.
29
+
30
+ ## Tasks
31
+
32
+ **Task 0**: Pick up strawberries and put them in a tray
33
+ **Task 1**: Pick up an X piece and place it on the tic-tac-toe board to complete the winning line
34
+
35
+ **Robot**: SO101 Follower robot with 6 degrees of freedom
36
+
37
+ ## Dataset Structure
38
+
39
+ This dataset follows the LeRobot format and contains:
40
+
41
+ - **Data**: Parquet files containing robot states, actions, and metadata
42
+ - **Videos**: MP4 files with camera observations (front and wrist views)
43
+ - **Metadata**: JSON files with episode information and statistics
44
+
45
+ ### Task Distribution
46
+
47
+ | Task | Description | Episodes | Frames |
48
+ |------|-------------|----------|--------|
49
+ | 0 | Pick up the strawberries and put it in the tray | 19 | 32641 |
50
+ | 1 | Pick up an X piece and place it on the tic-tac-toe board to complete the winning line | 8 | 13734 |
51
+
52
+ ### Features
53
+
54
+ - **Action**: 6-dimensional robot joint positions
55
+ - `shoulder_pan.pos`: Shoulder pan joint position
56
+ - `shoulder_lift.pos`: Shoulder lift joint position
57
+ - `elbow_flex.pos`: Elbow flex joint position
58
+ - `wrist_flex.pos`: Wrist flex joint position
59
+ - `wrist_roll.pos`: Wrist roll joint position
60
+ - `gripper.pos`: Gripper position
61
+
62
+ - **Observation State**: 6-dimensional robot joint states (same as action)
63
+
64
+ - **Images**: Multi-view camera observations
65
+ - `observation.images.front`: Front camera view (256x256x3 RGB)
66
+ - `observation.images.wrist`: Wrist camera view (256x256x3 RGB)
67
+
68
+ - **Metadata**:
69
+ - `timestamp`: Frame timestamps in seconds
70
+ - `frame_index`: Frame index within episode
71
+ - `episode_index`: Episode index
72
+ - `task_index`: Task index (0 for strawberry picking, 1 for tic-tac-toe)
73
+
74
+ ## Usage
75
+
76
+ ### Using LeRobot
77
+
78
+ ```python
79
+ from lerobot import load_dataset
80
+ # Load the dataset
81
+ dataset = load_dataset("kinam0252/merged_strawberries_tictactoe")
82
+ # Access episodes by task
83
+ strawberry_episodes = dataset.filter(lambda x: x["task_index"] == 0)
84
+ tic_tac_toe_episodes = dataset.filter(lambda x: x["task_index"] == 1)
85
+ # Access episodes
86
+ for episode in dataset:
87
+ print(f"Episode {episode['episode_index']}: {len(episode)} frames")
88
+ print(f"Task: {episode['task_index']}")
89
+ print(f"Actions shape: {episode['action'].shape}")
90
+ print(f"Images keys: {list(episode['observation.images'].keys())}")
91
+ ```
92
+
93
+ ### Direct Loading
94
+
95
+ ```python
96
+ import pandas as pd
97
+ import json
98
+ # Load episode data
99
+ df = pd.read_parquet("data/chunk-000/episode_000000.parquet")
100
+ # Load metadata
101
+ with open("meta/info.json", "r") as f:
102
+ info = json.load(f)
103
+ # Access robot actions and states
104
+ actions = df["action"].values
105
+ states = df["observation.state"].values
106
+ # Filter by task
107
+ strawberry_data = df[df["task_index"] == 0]
108
+ tic_tac_toe_data = df[df["task_index"] == 1]
109
+ ```
110
+
111
+ ## Dataset Statistics
112
+
113
+ - **Total Episodes**: 27
114
+ - **Total Frames**: 46375
115
+ - **Total Tasks**: 2
116
+ - **FPS**: 30
117
+ - **Average Episode Length**: ~1717 frames (~57 seconds)
118
+ - **Robot DOF**: 6 (shoulder_pan, shoulder_lift, elbow_flex, wrist_flex, wrist_roll, gripper)
119
+ - **Video Resolution**: 256x256x3 RGB
120
+ - **Video Codec**: AV1
121
+
122
+ ## Citation
123
+ If you use this dataset, please cite:
124
+ ```bibtex
125
+ @dataset{merged_strawberries_tictactoe_2024,
126
+ title={SO101 Merged Strawberries & Tic-Tac-Toe Dataset},
127
+ author={Your Name},
128
+ year={2024},
129
+ publisher={Hugging Face},
130
+ url={https://huggingface.co/datasets/kinam0252/merged_strawberries_tictactoe}
131
+ }
132
+ ```
133
+
134
+ ## License
135
+ This dataset is licensed under the MIT license.
136
+
137
+ ## Acknowledgments
138
+
139
+ - Built using the LeRobot framework
140
+ - Robot demonstrations performed with SO101 robot arm
141
+ - Video encoding optimized with AV1 codec for efficient storage
142
+ - Merged from two distinct manipulation tasks for multi-task learning
meta/episodes_stats.jsonl CHANGED
@@ -24,4 +24,4 @@
24
  {"episode_index": 23, "stats": {"actions": {"min": [-60.57728958129883, -62.4155387878418, 12.539610862731934, 42.980934143066406, -44.14602279663086, 1.3980263471603394], "max": [-10.44435977935791, 12.837838172912598, 65.59529113769531, 82.75563049316406, -3.9374184608459473, 24.177631378173828], "mean": [-30.111326217651367, -28.524091720581055, 42.383602142333984, 55.11670684814453, -16.207061767578125, 10.477936744689941], "std": [17.023956298828125, 26.501794815063477, 16.51515769958496, 6.134018898010254, 9.277194023132324, 5.649456977844238], "count": [1755]}, "state": {"min": [-60.5665283203125, -98.54014587402344, 15.011338233947754, 43.59197998046875, -44.22623825073242, 3.6036036014556885], "max": [1.5281401872634888, 13.095748901367188, 98.63945770263672, 82.21446990966797, -4.111023902893066, 23.948949813842773], "mean": [-30.028915405273438, -27.72842025756836, 43.63518142700195, 55.23054504394531, -16.23247718811035, 10.781517028808594], "std": [17.038654327392578, 26.75237464904785, 16.452556610107422, 6.08757209777832, 9.240696907043457, 4.966490268707275], "count": [1755]}, "image": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.39756356947760657]], [[0.4174525382570002]], [[0.3958226227299038]]], "std": [[[0.31063027762749845]], [[0.34384360228225685]], [[0.3291297553649017]]], "count": [271]}, "wrist_image": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[0.9764705882352941]], [[1.0]]], "mean": [[[0.5291839034199166]], [[0.5072479967079083]], [[0.49916285754769313]]], "std": [[[0.1738225763005076]], [[0.21290667720681586]], [[0.23378407955943037]]], "count": [271]}, "timestamp": {"min": [0.0], "max": [58.46666666666667], "mean": [29.23333333333333], "std": [16.887492632342063], "count": [1755]}, "frame_index": {"min": [0], "max": [1754], "mean": [877.0], "std": [506.62477897026184], "count": [1755]}, "episode_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1755]}, "index": {"min": [0], "max": [1754], "mean": [877.0], "std": [506.62477897026184], "count": [1755]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1755]}}}
25
  {"episode_index": 24, "stats": {"actions": {"min": [-57.15913391113281, -76.6891860961914, -59.16704559326172, 34.662044525146484, -43.4159049987793, 1.2335525751113892], "max": [-5.431066989898682, 51.35135269165039, 69.8506088256836, 98.52686309814453, -5.606257915496826, 20.723684310913086], "mean": [-26.468168258666992, -18.35386085510254, 21.558496475219727, 66.65899658203125, -16.222761154174805, 9.680347442626953], "std": [19.302139282226562, 35.29111099243164, 32.645816802978516, 10.331208229064941, 10.091639518737793, 4.948851585388184], "count": [1740]}, "state": {"min": [-56.839359283447266, -93.81708526611328, -56.553287506103516, 31.822145462036133, -43.2312126159668, 3.6036036014556885], "max": [0.9317927956581116, 52.08243942260742, 98.82086181640625, 98.25631713867188, 11.128567695617676, 20.195194244384766], "mean": [-26.453577041625977, -17.349828720092773, 22.93585968017578, 66.71235656738281, -16.242334365844727, 10.090144157409668], "std": [19.308942794799805, 35.80686569213867, 32.4278450012207, 10.360469818115234, 10.161343574523926, 4.329620361328125], "count": [1740]}, "image": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3926884658138348]], [[0.4142575458002284]], [[0.395868058592706]]], "std": [[[0.30866280656078016]], [[0.34342824017329715]], [[0.32618563005059514]]], "count": [269]}, "wrist_image": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5280249972665646]], [[0.5024760399203052]], [[0.49474342836577007]]], "std": [[[0.18835968355175034]], [[0.2281866410886627]], [[0.24670979642466076]]], "count": [269]}, "timestamp": {"min": [0.0], "max": [57.96666666666667], "mean": [28.983333333333334], "std": [16.743155041411423], "count": [1740]}, "frame_index": {"min": [0], "max": [1739], "mean": [869.5], "std": [502.2946512423427], "count": [1740]}, "episode_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1740]}, "index": {"min": [0], "max": [1739], "mean": [869.5], "std": [502.2946512423427], "count": [1740]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1740]}}}
26
  {"episode_index": 25, "stats": {"actions": {"min": [-57.31105041503906, -73.81756591796875, -3.3046627044677734, 45.0606575012207, -46.70143508911133, 1.2335525751113892], "max": [1.1014052629470825, 22.804054260253906, 70.8465347290039, 83.36222076416016, -2.5293350219726562, 22.779605865478516], "mean": [-23.471559524536133, -33.53667449951172, 44.82676696777344, 58.40628433227539, -17.709152221679688, 9.91618537902832], "std": [20.341768264770508, 27.25507926940918, 16.17731475830078, 8.249185562133789, 12.576842308044434, 5.1352128982543945], "count": [1758]}, "state": {"min": [-57.28662109375, -100.0, -1.043083906173706, 27.11421012878418, -46.73998260498047, 3.753753662109375], "max": [0.4099888205528259, 23.314727783203125, 99.36508178710938, 82.91194152832031, -2.6970410346984863, 22.372371673583984], "mean": [-23.33359718322754, -32.92315673828125, 46.21157455444336, 58.389461517333984, -17.76357650756836, 10.177846908569336], "std": [20.319225311279297, 27.614049911499023, 16.094972610473633, 8.24132251739502, 12.521188735961914, 4.537722587585449], "count": [1758]}, "image": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.400776987916938]], [[0.4208885323963534]], [[0.4002965927453392]]], "std": [[[0.3152538445753292]], [[0.34956759589841807]], [[0.33190301926632765]]], "count": [271]}, "wrist_image": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5296228075332224]], [[0.5015469658189229]], [[0.49368654885078267]]], "std": [[[0.19268560750110156]], [[0.22892723733289663]], [[0.2464442202561185]]], "count": [271]}, "timestamp": {"min": [0.0], "max": [58.56666666666667], "mean": [29.28333333333333], "std": [16.916360150479793], "count": [1758]}, "frame_index": {"min": [0], "max": [1757], "mean": [878.5], "std": [507.4908045143938], "count": [1758]}, "episode_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1758]}, "index": {"min": [0], "max": [1757], "mean": [878.5], "std": [507.4908045143938], "count": [1758]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1758]}}}
27
- {"episode_index": 26, "stats": {"actions": {"min": [-63.15989303588867, -66.30067443847656, -1.6749660968780518, 39.08145523071289, -53.794002532958984, 1.3157894611358643], "max": [16.52107810974121, 20.439189910888672, 65.41421508789062, 76.51646423339844, -0.7040417194366455, 20.5592098236084], "mean": [-28.001365661621094, -29.981599807739258, 44.009368896484375, 55.51192092895508, -16.980016708374023, 9.041428565979004], "std": [21.3732852935791, 25.26531982421875, 14.064614295959473, 7.198642253875732, 13.103777885437012, 4.368557453155518], "count": [1631]}, "state": {"min": [-63.10100555419922, -99.82825469970703, 0.7709750533103943, 39.84306716918945, -53.49567794799805, 3.9039039611816406], "max": [15.989563941955566, 20.996135711669922, 99.27437591552734, 75.93722534179688, -0.9164702892303467, 27.102102279663086], "mean": [-28.0933780670166, -29.536128997802734, 45.263980865478516, 55.67942810058594, -16.99045753479004, 9.210081100463867], "std": [21.324478149414062, 25.75430679321289, 14.070784568786621, 7.102043628692627, 13.07885456085205, 3.9252591133117676], "count": [1631]}, "image": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3955563813253166]], [[0.4173288199231516]], [[0.392922230041105]]], "std": [[[0.3099873338427762]], [[0.344894870417303]], [[0.3259533197405582]]], "count": [256]}, "wrist_image": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[0.9725490196078431]], [[1.0]]], "mean": [[[0.5223932786330678]], [[0.49611255521088643]], [[0.4896086665134804]]], "std": [[[0.18368491085751684]], [[0.2245810418095155]], [[0.24191118110856316]]], "count": [256]}, "timestamp": {"min": [0.0], "max": [54.333333333333336], "mean": [27.166666666666664], "std": [15.6943018675923], "count": [1631]}, "frame_index": {"min": [0], "max": [1630], "mean": [815.0], "std": [470.82905602776896], "count": [1631]}, "episode_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1631]}, "index": {"min": [0], "max": [1630], "mean": [815.0], "std": [470.82905602776896], "count": [1631]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1631]}}}
 
24
  {"episode_index": 23, "stats": {"actions": {"min": [-60.57728958129883, -62.4155387878418, 12.539610862731934, 42.980934143066406, -44.14602279663086, 1.3980263471603394], "max": [-10.44435977935791, 12.837838172912598, 65.59529113769531, 82.75563049316406, -3.9374184608459473, 24.177631378173828], "mean": [-30.111326217651367, -28.524091720581055, 42.383602142333984, 55.11670684814453, -16.207061767578125, 10.477936744689941], "std": [17.023956298828125, 26.501794815063477, 16.51515769958496, 6.134018898010254, 9.277194023132324, 5.649456977844238], "count": [1755]}, "state": {"min": [-60.5665283203125, -98.54014587402344, 15.011338233947754, 43.59197998046875, -44.22623825073242, 3.6036036014556885], "max": [1.5281401872634888, 13.095748901367188, 98.63945770263672, 82.21446990966797, -4.111023902893066, 23.948949813842773], "mean": [-30.028915405273438, -27.72842025756836, 43.63518142700195, 55.23054504394531, -16.23247718811035, 10.781517028808594], "std": [17.038654327392578, 26.75237464904785, 16.452556610107422, 6.08757209777832, 9.240696907043457, 4.966490268707275], "count": [1755]}, "image": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.39756356947760657]], [[0.4174525382570002]], [[0.3958226227299038]]], "std": [[[0.31063027762749845]], [[0.34384360228225685]], [[0.3291297553649017]]], "count": [271]}, "wrist_image": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[0.9764705882352941]], [[1.0]]], "mean": [[[0.5291839034199166]], [[0.5072479967079083]], [[0.49916285754769313]]], "std": [[[0.1738225763005076]], [[0.21290667720681586]], [[0.23378407955943037]]], "count": [271]}, "timestamp": {"min": [0.0], "max": [58.46666666666667], "mean": [29.23333333333333], "std": [16.887492632342063], "count": [1755]}, "frame_index": {"min": [0], "max": [1754], "mean": [877.0], "std": [506.62477897026184], "count": [1755]}, "episode_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1755]}, "index": {"min": [0], "max": [1754], "mean": [877.0], "std": [506.62477897026184], "count": [1755]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1755]}}}
25
  {"episode_index": 24, "stats": {"actions": {"min": [-57.15913391113281, -76.6891860961914, -59.16704559326172, 34.662044525146484, -43.4159049987793, 1.2335525751113892], "max": [-5.431066989898682, 51.35135269165039, 69.8506088256836, 98.52686309814453, -5.606257915496826, 20.723684310913086], "mean": [-26.468168258666992, -18.35386085510254, 21.558496475219727, 66.65899658203125, -16.222761154174805, 9.680347442626953], "std": [19.302139282226562, 35.29111099243164, 32.645816802978516, 10.331208229064941, 10.091639518737793, 4.948851585388184], "count": [1740]}, "state": {"min": [-56.839359283447266, -93.81708526611328, -56.553287506103516, 31.822145462036133, -43.2312126159668, 3.6036036014556885], "max": [0.9317927956581116, 52.08243942260742, 98.82086181640625, 98.25631713867188, 11.128567695617676, 20.195194244384766], "mean": [-26.453577041625977, -17.349828720092773, 22.93585968017578, 66.71235656738281, -16.242334365844727, 10.090144157409668], "std": [19.308942794799805, 35.80686569213867, 32.4278450012207, 10.360469818115234, 10.161343574523926, 4.329620361328125], "count": [1740]}, "image": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3926884658138348]], [[0.4142575458002284]], [[0.395868058592706]]], "std": [[[0.30866280656078016]], [[0.34342824017329715]], [[0.32618563005059514]]], "count": [269]}, "wrist_image": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5280249972665646]], [[0.5024760399203052]], [[0.49474342836577007]]], "std": [[[0.18835968355175034]], [[0.2281866410886627]], [[0.24670979642466076]]], "count": [269]}, "timestamp": {"min": [0.0], "max": [57.96666666666667], "mean": [28.983333333333334], "std": [16.743155041411423], "count": [1740]}, "frame_index": {"min": [0], "max": [1739], "mean": [869.5], "std": [502.2946512423427], "count": [1740]}, "episode_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1740]}, "index": {"min": [0], "max": [1739], "mean": [869.5], "std": [502.2946512423427], "count": [1740]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1740]}}}
26
  {"episode_index": 25, "stats": {"actions": {"min": [-57.31105041503906, -73.81756591796875, -3.3046627044677734, 45.0606575012207, -46.70143508911133, 1.2335525751113892], "max": [1.1014052629470825, 22.804054260253906, 70.8465347290039, 83.36222076416016, -2.5293350219726562, 22.779605865478516], "mean": [-23.471559524536133, -33.53667449951172, 44.82676696777344, 58.40628433227539, -17.709152221679688, 9.91618537902832], "std": [20.341768264770508, 27.25507926940918, 16.17731475830078, 8.249185562133789, 12.576842308044434, 5.1352128982543945], "count": [1758]}, "state": {"min": [-57.28662109375, -100.0, -1.043083906173706, 27.11421012878418, -46.73998260498047, 3.753753662109375], "max": [0.4099888205528259, 23.314727783203125, 99.36508178710938, 82.91194152832031, -2.6970410346984863, 22.372371673583984], "mean": [-23.33359718322754, -32.92315673828125, 46.21157455444336, 58.389461517333984, -17.76357650756836, 10.177846908569336], "std": [20.319225311279297, 27.614049911499023, 16.094972610473633, 8.24132251739502, 12.521188735961914, 4.537722587585449], "count": [1758]}, "image": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.400776987916938]], [[0.4208885323963534]], [[0.4002965927453392]]], "std": [[[0.3152538445753292]], [[0.34956759589841807]], [[0.33190301926632765]]], "count": [271]}, "wrist_image": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.5296228075332224]], [[0.5015469658189229]], [[0.49368654885078267]]], "std": [[[0.19268560750110156]], [[0.22892723733289663]], [[0.2464442202561185]]], "count": [271]}, "timestamp": {"min": [0.0], "max": [58.56666666666667], "mean": [29.28333333333333], "std": [16.916360150479793], "count": [1758]}, "frame_index": {"min": [0], "max": [1757], "mean": [878.5], "std": [507.4908045143938], "count": [1758]}, "episode_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1758]}, "index": {"min": [0], "max": [1757], "mean": [878.5], "std": [507.4908045143938], "count": [1758]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1758]}}}
27
+ {"episode_index": 26, "stats": {"actions": {"min": [-63.15989303588867, -66.30067443847656, -1.6749660968780518, 39.08145523071289, -53.794002532958984, 1.3157894611358643], "max": [16.52107810974121, 20.439189910888672, 65.41421508789062, 76.51646423339844, -0.7040417194366455, 20.5592098236084], "mean": [-28.001365661621094, -29.981599807739258, 44.009368896484375, 55.51192092895508, -16.980016708374023, 9.041428565979004], "std": [21.3732852935791, 25.26531982421875, 14.064614295959473, 7.198642253875732, 13.103777885437012, 4.368557453155518], "count": [1631]}, "state": {"min": [-63.10100555419922, -99.82825469970703, 0.7709750533103943, 39.84306716918945, -53.49567794799805, 3.9039039611816406], "max": [15.989563941955566, 20.996135711669922, 99.27437591552734, 75.93722534179688, -0.9164702892303467, 27.102102279663086], "mean": [-28.0933780670166, -29.536128997802734, 45.263980865478516, 55.67942810058594, -16.99045753479004, 9.210081100463867], "std": [21.324478149414062, 25.75430679321289, 14.070784568786621, 7.102043628692627, 13.07885456085205, 3.9252591133117676], "count": [1631]}, "image": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3955563813253166]], [[0.4173288199231516]], [[0.392922230041105]]], "std": [[[0.3099873338427762]], [[0.344894870417303]], [[0.3259533197405582]]], "count": [256]}, "wrist_image": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[0.9725490196078431]], [[1.0]]], "mean": [[[0.5223932786330678]], [[0.49611255521088643]], [[0.4896086665134804]]], "std": [[[0.18368491085751684]], [[0.2245810418095155]], [[0.24191118110856316]]], "count": [256]}, "timestamp": {"min": [0.0], "max": [54.333333333333336], "mean": [27.166666666666664], "std": [15.6943018675923], "count": [1631]}, "frame_index": {"min": [0], "max": [1630], "mean": [815.0], "std": [470.82905602776896], "count": [1631]}, "episode_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1631]}, "index": {"min": [0], "max": [1630], "mean": [815.0], "std": [470.82905602776896], "count": [1631]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [1631]}}}