Upload folder using huggingface_hub
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- .DS_Store +0 -0
- .debug/fix_converting.py +41 -0
- .debug/test.py +74 -0
- README.md +15 -0
- data/.DS_Store +0 -0
- data/chunk-000/episode_000000.parquet +3 -0
- data/chunk-000/episode_000001.parquet +3 -0
- data/chunk-000/episode_000002.parquet +3 -0
- data/chunk-000/episode_000003.parquet +3 -0
- data/chunk-000/episode_000004.parquet +3 -0
- data/chunk-000/episode_000005.parquet +3 -0
- data/chunk-000/episode_000006.parquet +3 -0
- data/chunk-000/episode_000007.parquet +3 -0
- data/chunk-000/episode_000008.parquet +3 -0
- data/chunk-000/episode_000009.parquet +3 -0
- data/chunk-000/episode_000010.parquet +3 -0
- data/chunk-000/episode_000011.parquet +3 -0
- data/chunk-000/episode_000012.parquet +3 -0
- data/chunk-000/episode_000013.parquet +3 -0
- data/chunk-000/episode_000014.parquet +3 -0
- data/chunk-000/episode_000015.parquet +3 -0
- data/chunk-000/episode_000016.parquet +3 -0
- data/chunk-000/episode_000017.parquet +3 -0
- data/chunk-000/episode_000018.parquet +3 -0
- data/chunk-000/episode_000019.parquet +3 -0
- data/chunk-000/episode_000020.parquet +3 -0
- data/chunk-000/episode_000021.parquet +3 -0
- data/chunk-000/episode_000022.parquet +3 -0
- data/chunk-000/episode_000023.parquet +3 -0
- data/chunk-000/episode_000024.parquet +3 -0
- data/chunk-000/episode_000025.parquet +3 -0
- data/chunk-000/episode_000026.parquet +3 -0
- data/chunk-000/episode_000027.parquet +3 -0
- data/chunk-000/episode_000028.parquet +3 -0
- data/chunk-000/episode_000029.parquet +3 -0
- data/chunk-000/episode_000030.parquet +3 -0
- data/chunk-000/episode_000031.parquet +3 -0
- data/chunk-000/episode_000032.parquet +3 -0
- data/chunk-000/episode_000033.parquet +3 -0
- data/chunk-000/episode_000034.parquet +3 -0
- data/chunk-000/episode_000035.parquet +3 -0
- data/chunk-000/episode_000036.parquet +3 -0
- data/chunk-000/episode_000037.parquet +3 -0
- data/chunk-000/episode_000038.parquet +3 -0
- data/chunk-000/episode_000039.parquet +3 -0
- data/chunk-000/episode_000040.parquet +3 -0
- data/chunk-000/episode_000041.parquet +3 -0
- meta/episodes.jsonl +42 -0
- meta/info.json +121 -0
- meta/stats.json +371 -0
.DS_Store
ADDED
|
Binary file (6.15 kB). View file
|
|
|
.debug/fix_converting.py
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import json
|
| 2 |
+
import numpy as np
|
| 3 |
+
import copy
|
| 4 |
+
|
| 5 |
+
# Load stats file
|
| 6 |
+
stats_file = "../meta/stats.json"
|
| 7 |
+
with open(stats_file, 'r') as f:
|
| 8 |
+
stats = json.load(f)
|
| 9 |
+
|
| 10 |
+
print("Fixing stats.json file...")
|
| 11 |
+
|
| 12 |
+
# Create a deep copy to modify
|
| 13 |
+
fixed_stats = copy.deepcopy(stats)
|
| 14 |
+
|
| 15 |
+
# Fix all None std values
|
| 16 |
+
for key in fixed_stats:
|
| 17 |
+
if "std" in fixed_stats[key] and fixed_stats[key]["std"] is None:
|
| 18 |
+
# Use matching shape from mean if possible
|
| 19 |
+
if "mean" in fixed_stats[key]:
|
| 20 |
+
mean = fixed_stats[key]["mean"]
|
| 21 |
+
if isinstance(mean, list):
|
| 22 |
+
# Create a ones array with same shape as mean
|
| 23 |
+
fixed_stats[key]["std"] = [1.0] * len(mean)
|
| 24 |
+
else:
|
| 25 |
+
# Fallback to scalar
|
| 26 |
+
fixed_stats[key]["std"] = [1.0]
|
| 27 |
+
else:
|
| 28 |
+
# No mean to reference, use default
|
| 29 |
+
fixed_stats[key]["std"] = [1.0]
|
| 30 |
+
|
| 31 |
+
print(f"Fixed {key}.std: None → {fixed_stats[key]['std']}")
|
| 32 |
+
|
| 33 |
+
# Save the fixed stats file
|
| 34 |
+
output_file = "../meta/stats_fixed.json"
|
| 35 |
+
with open(output_file, 'w') as f:
|
| 36 |
+
json.dump(fixed_stats, f, indent=2)
|
| 37 |
+
|
| 38 |
+
print(f"\nFIXED! New stats file saved to: {output_file}")
|
| 39 |
+
print("\nTo use this fixed file:")
|
| 40 |
+
print("1. Rename the original file as a backup: mv ../meta/stats.json ../meta/stats.json.bak")
|
| 41 |
+
print("2. Replace with fixed version: mv ../meta/stats_fixed.json ../meta/stats.json")
|
.debug/test.py
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import numpy as np
|
| 2 |
+
import json
|
| 3 |
+
import torch
|
| 4 |
+
|
| 5 |
+
# Load stats file
|
| 6 |
+
stats_file = "../meta/stats.json"
|
| 7 |
+
with open(stats_file, 'r') as f:
|
| 8 |
+
stats = json.load(f)
|
| 9 |
+
|
| 10 |
+
print("Keys in stats file:", list(stats.keys()))
|
| 11 |
+
|
| 12 |
+
# Check each field more thoroughly by simulating the torch conversion
|
| 13 |
+
problem_found = False
|
| 14 |
+
for key in stats:
|
| 15 |
+
print(f"\nExamining key: {key}")
|
| 16 |
+
for stat_type in ["mean", "std"]:
|
| 17 |
+
if stat_type in stats[key]:
|
| 18 |
+
value = stats[key][stat_type]
|
| 19 |
+
print(f" - {stat_type} type: {type(value)}")
|
| 20 |
+
|
| 21 |
+
try:
|
| 22 |
+
# Try converting to numpy array (this is what the code does)
|
| 23 |
+
numpy_val = np.array(value)
|
| 24 |
+
print(f" NumPy array shape: {numpy_val.shape}, dtype: {numpy_val.dtype}")
|
| 25 |
+
|
| 26 |
+
# Test if this can be converted to torch tensor
|
| 27 |
+
try:
|
| 28 |
+
torch_val = torch.from_numpy(numpy_val).to(dtype=torch.float32)
|
| 29 |
+
print(f" ✓ Successfully converted to torch tensor")
|
| 30 |
+
except Exception as e:
|
| 31 |
+
print(f" ✗ ERROR converting to torch tensor: {type(e).__name__}: {e}")
|
| 32 |
+
print(f" Value: {numpy_val}")
|
| 33 |
+
problem_found = True
|
| 34 |
+
except Exception as e:
|
| 35 |
+
print(f" ✗ ERROR converting to NumPy array: {type(e).__name__}: {e}")
|
| 36 |
+
print(f" Value: {value}")
|
| 37 |
+
problem_found = True
|
| 38 |
+
|
| 39 |
+
if not problem_found:
|
| 40 |
+
print("\nNo problems found in the stats file. The error might be happening in another part of the code.")
|
| 41 |
+
print("Try fixing the stats file with a preprocessing step:")
|
| 42 |
+
|
| 43 |
+
# Create a fixed stats file
|
| 44 |
+
fixed_stats = {}
|
| 45 |
+
for key in stats:
|
| 46 |
+
fixed_stats[key] = {}
|
| 47 |
+
for field, value in stats[key].items():
|
| 48 |
+
if field in ["mean", "std"]:
|
| 49 |
+
# Try to safely convert to float array
|
| 50 |
+
try:
|
| 51 |
+
# First convert to numpy array
|
| 52 |
+
arr = np.array(value)
|
| 53 |
+
# If object type, replace with safe values
|
| 54 |
+
if arr.dtype == np.dtype('O'):
|
| 55 |
+
arr = np.ones_like(arr, dtype=np.float32)
|
| 56 |
+
else:
|
| 57 |
+
# Make sure it's float32
|
| 58 |
+
arr = arr.astype(np.float32)
|
| 59 |
+
# Convert back to list for JSON
|
| 60 |
+
fixed_stats[key][field] = arr.tolist()
|
| 61 |
+
except Exception as e:
|
| 62 |
+
print(f"Fixing {key}.{field}: {e}")
|
| 63 |
+
# Just use a safe default
|
| 64 |
+
fixed_stats[key][field] = [1.0]
|
| 65 |
+
else:
|
| 66 |
+
# Keep other fields unchanged
|
| 67 |
+
fixed_stats[key][field] = value
|
| 68 |
+
|
| 69 |
+
# Save the fixed stats
|
| 70 |
+
with open("../meta/stats_fixed.json", 'w') as f:
|
| 71 |
+
json.dump(fixed_stats, f, indent=2)
|
| 72 |
+
|
| 73 |
+
print("Created fixed stats file: ../meta/stats_fixed.json")
|
| 74 |
+
print("You can replace the original stats.json with this file.")
|
README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
---
|
| 3 |
+
tags:
|
| 4 |
+
- phosphobot
|
| 5 |
+
- so100
|
| 6 |
+
- phospho-dk1
|
| 7 |
+
task_categories:
|
| 8 |
+
- robotics
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# pick_up_socks_dataset
|
| 12 |
+
|
| 13 |
+
**This dataset was generated using a [phospho starter pack](https://robots.phospho.ai).**
|
| 14 |
+
|
| 15 |
+
This dataset contains a series of episodes recorded with a robot and multiple cameras. It can be directly used to train a policy using imitation learning. It's compatible with LeRobot and RLDS.
|
data/.DS_Store
ADDED
|
Binary file (6.15 kB). View file
|
|
|
data/chunk-000/episode_000000.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9fcec3196c6ddc873575de53c5e218a95a088b57c4785aa76a8b4611af0f1736
|
| 3 |
+
size 18030
|
data/chunk-000/episode_000001.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a410a12d792d8c18414b611dcf48765b46eb619a04289dc7ee0f441937b13c92
|
| 3 |
+
size 13706
|
data/chunk-000/episode_000002.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f80fe438a4b3a7c147ba21868d6819e49f6bd5867671f86ec13e301208a2e171
|
| 3 |
+
size 12988
|
data/chunk-000/episode_000003.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e556f572a6c599b3a83a889cb999fc29c3e8e9fdac7606298082442312ae2350
|
| 3 |
+
size 13987
|
data/chunk-000/episode_000004.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c99cde9a7c0e78e1322c00502147271266327bcfbd4bbeee71c3c274f96f376c
|
| 3 |
+
size 14615
|
data/chunk-000/episode_000005.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ecf26b764d80a27db9e0103ee95cac1753094dc946dd1900f41944b87fa482a5
|
| 3 |
+
size 13215
|
data/chunk-000/episode_000006.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eb35e4b875b89ff57b62e738189638141bd60f51845c030d6d9cc7e6e49bc82c
|
| 3 |
+
size 14874
|
data/chunk-000/episode_000007.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9e9753ae6254a165258d2fc6b69ef0bccd31eaec44b1d4efa50fbf473c358286
|
| 3 |
+
size 14762
|
data/chunk-000/episode_000008.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:69cd96a8061489a82b8c1d99f2a7bc223d8514f3ae7a7946fbdfa05a6d661953
|
| 3 |
+
size 13604
|
data/chunk-000/episode_000009.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:40595c60e6f53ad21d6a560db3560dd4037592bf9d50a73f55099a33e609a785
|
| 3 |
+
size 12806
|
data/chunk-000/episode_000010.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e9c2c7d993358c1d0599b80d8731756376207e40cc1b3e68421b22e7675433ee
|
| 3 |
+
size 13313
|
data/chunk-000/episode_000011.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6bc124fcd884f78b86ecaf23350f251661daa898668675c8f607c98ad6d86691
|
| 3 |
+
size 13022
|
data/chunk-000/episode_000012.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f85fa344d40f940abbc3cb919b48498aaf4a24f11ad8c34593b10d9cfac1172e
|
| 3 |
+
size 14356
|
data/chunk-000/episode_000013.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8211aa127ed2dbbb22c8b7f225d49eee25d91a2b3c7295892c9dc4000e933ba9
|
| 3 |
+
size 14559
|
data/chunk-000/episode_000014.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:11de3a13f386a96f2c45ea4dde7f44eb13836cd5c8dcb17a6ed55e7bd978fecb
|
| 3 |
+
size 18636
|
data/chunk-000/episode_000015.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:498ef649836a926ae04530cb9b2bfd3aaeacd4944c6924a7c38d74cf3def8303
|
| 3 |
+
size 14710
|
data/chunk-000/episode_000016.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:89a2f6b98599d6c11ecda237b20b9ae7925c91d8c77b33b0555cb240dfdf850a
|
| 3 |
+
size 15291
|
data/chunk-000/episode_000017.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:78096b46197d1fcc47962ec3466ac9e1a1c12cf93d8ccb233e324a57693d6518
|
| 3 |
+
size 12629
|
data/chunk-000/episode_000018.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cc873c35a855c6ebfb173e55b31b48b0aa6f2853078e63602d2d8ae002228ac6
|
| 3 |
+
size 13448
|
data/chunk-000/episode_000019.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3a0dc9fe49da1e811b88d6da482309ffc24b533392c446a1d4a8c5c42ca90135
|
| 3 |
+
size 13026
|
data/chunk-000/episode_000020.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f2b192d98d0e8e40509e894b6a4eb58912a26cc86c2324094911acf03fdec65f
|
| 3 |
+
size 12647
|
data/chunk-000/episode_000021.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:615c8659299889ce7e98ed3f0cbc634ee6f7a69791e17618b272d1f601bc2bca
|
| 3 |
+
size 14454
|
data/chunk-000/episode_000022.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a2cb83f918399f58d4ea99d1f08c5f3da3912ab6977085925e536880934a2edf
|
| 3 |
+
size 14555
|
data/chunk-000/episode_000023.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7be794b0ef458731124440277ea791ccee0858a3ac8bc61745b1b951a17beec7
|
| 3 |
+
size 12500
|
data/chunk-000/episode_000024.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bcf680e12812019599980f8823ed7d6e12d0084475006933b0c9e207ce038ce1
|
| 3 |
+
size 12872
|
data/chunk-000/episode_000025.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:157f77e2e8ce0ecf3084ae5e8f71bcbca5e14453be35182e76f8bc25cbc8ced1
|
| 3 |
+
size 14315
|
data/chunk-000/episode_000026.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9f08ed663e1f9fbfbe20e96af7bca2e74024dfd6b3803ca6dce429f8eda1846b
|
| 3 |
+
size 13469
|
data/chunk-000/episode_000027.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:614bffd8a7a28840ffae4e0a01397728b14d288115ba4058d8982e65baaead89
|
| 3 |
+
size 16212
|
data/chunk-000/episode_000028.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f274ee381e0323591144ae12716188d312203551c1a8b2f67452dde4f8e22fa2
|
| 3 |
+
size 12257
|
data/chunk-000/episode_000029.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f3f18a7d6b3b238bf22bfb55e3dec707ae88ba5ebb86fab509db2a3dd09c2b02
|
| 3 |
+
size 13117
|
data/chunk-000/episode_000030.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b5a9a3fa66c144ecf10dffcf76e05776c2c090771ab140f37305a5d236bf96c7
|
| 3 |
+
size 13452
|
data/chunk-000/episode_000031.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:06f3a08b23caaffa56859d29cf99029a744fc81204edf8e845b9ea1948367dc3
|
| 3 |
+
size 15059
|
data/chunk-000/episode_000032.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:459d90863814fa3b7262110bd8dc6969e5c7b6b924d7af2797d21cf82a83a230
|
| 3 |
+
size 14376
|
data/chunk-000/episode_000033.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7040b77e584758ae1da64ae5b115cb139d5296f7a95f7ff1af32a4b66f60c28f
|
| 3 |
+
size 14570
|
data/chunk-000/episode_000034.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e55539c26fd1a83215eb3a44c264e6325748d5162fdf6f51f9ab25d87021617d
|
| 3 |
+
size 16108
|
data/chunk-000/episode_000035.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:606f211343dfb7fa82b6ba3e0baddbb2b11e1e948ba0c9f8f5c94ec69e3501a0
|
| 3 |
+
size 13866
|
data/chunk-000/episode_000036.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7689db706bef6f997038a01fd6c28f94f3d1aa2b5f779baf6e7e66962aee2ffb
|
| 3 |
+
size 12567
|
data/chunk-000/episode_000037.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1693eb4ebec6af084113131e3faf2c762f8cc9d0c785ceb382bb0d9fcc20b9b8
|
| 3 |
+
size 12753
|
data/chunk-000/episode_000038.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2c2bc01fffa180c373f3d3ef41deccbcf12fb9380606aa7cb43f1fe75f9c0ea7
|
| 3 |
+
size 13248
|
data/chunk-000/episode_000039.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:85d591755f30e5d39b3e79776f6dd90db069f17aac72296895dc0e6a838ad7c6
|
| 3 |
+
size 14277
|
data/chunk-000/episode_000040.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3b7ada0523fe1249d9804e4c9e0003f1ef4a9537ed4502b423c9403e61134f57
|
| 3 |
+
size 12257
|
data/chunk-000/episode_000041.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d60d8199820861b3611ad8980467cf854b27741a327ec15ead244817258888fe
|
| 3 |
+
size 5268
|
meta/episodes.jsonl
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"episode_index":0,"tasks":["pick up the socks and put it in the bowl"],"length":180}
|
| 2 |
+
{"episode_index":1,"tasks":["pick up the socks and put it in the bowl"],"length":112}
|
| 3 |
+
{"episode_index":2,"tasks":["pick up the socks and put it in the bowl"],"length":104}
|
| 4 |
+
{"episode_index":3,"tasks":["pick up the socks and put it in the bowl"],"length":121}
|
| 5 |
+
{"episode_index":4,"tasks":["pick up the socks and put it in the bowl"],"length":130}
|
| 6 |
+
{"episode_index":5,"tasks":["pick up the socks and put it in the bowl"],"length":115}
|
| 7 |
+
{"episode_index":6,"tasks":["pick up the socks and put it in the bowl"],"length":146}
|
| 8 |
+
{"episode_index":7,"tasks":["pick up the socks and put it in the bowl"],"length":135}
|
| 9 |
+
{"episode_index":8,"tasks":["pick up the socks and put it in the bowl"],"length":127}
|
| 10 |
+
{"episode_index":9,"tasks":["pick up the socks and put it in the bowl"],"length":120}
|
| 11 |
+
{"episode_index":10,"tasks":["pick up the socks and put it in the bowl"],"length":137}
|
| 12 |
+
{"episode_index":11,"tasks":["pick up the socks and put it in the bowl"],"length":111}
|
| 13 |
+
{"episode_index":12,"tasks":["pick up the socks and put it in the bowl"],"length":124}
|
| 14 |
+
{"episode_index":13,"tasks":["pick up the socks and put it in the bowl"],"length":125}
|
| 15 |
+
{"episode_index":14,"tasks":["pick up the socks and put it in the bowl"],"length":178}
|
| 16 |
+
{"episode_index":15,"tasks":["pick up the socks and put it in the bowl"],"length":130}
|
| 17 |
+
{"episode_index":16,"tasks":["pick up the socks and put it in the bowl"],"length":154}
|
| 18 |
+
{"episode_index":17,"tasks":["pick up the socks and put it in the bowl"],"length":97}
|
| 19 |
+
{"episode_index":18,"tasks":["pick up the socks and put it in the bowl"],"length":114}
|
| 20 |
+
{"episode_index":19,"tasks":["pick up the socks and put it in the bowl"],"length":116}
|
| 21 |
+
{"episode_index":20,"tasks":["pick up the socks and put it in the bowl"],"length":102}
|
| 22 |
+
{"episode_index":21,"tasks":["pick up the socks and put it in the bowl"],"length":132}
|
| 23 |
+
{"episode_index":22,"tasks":["pick up the socks and put it in the bowl"],"length":135}
|
| 24 |
+
{"episode_index":23,"tasks":["pick up the socks and put it in the bowl"],"length":103}
|
| 25 |
+
{"episode_index":24,"tasks":["pick up the socks and put it in the bowl"],"length":109}
|
| 26 |
+
{"episode_index":25,"tasks":["pick up the socks and put it in the bowl"],"length":136}
|
| 27 |
+
{"episode_index":26,"tasks":["pick up the socks and put it in the bowl"],"length":116}
|
| 28 |
+
{"episode_index":27,"tasks":["pick up the socks and put it in the bowl"],"length":163}
|
| 29 |
+
{"episode_index":28,"tasks":["pick up the socks and put it in the bowl"],"length":104}
|
| 30 |
+
{"episode_index":29,"tasks":["pick up the socks and put it in the bowl"],"length":133}
|
| 31 |
+
{"episode_index":30,"tasks":["pick up the socks and put it in the bowl"],"length":126}
|
| 32 |
+
{"episode_index":31,"tasks":["pick up the socks and put it in the bowl"],"length":149}
|
| 33 |
+
{"episode_index":32,"tasks":["pick up the socks and put it in the bowl"],"length":150}
|
| 34 |
+
{"episode_index":33,"tasks":["pick up the socks and put it in the bowl"],"length":147}
|
| 35 |
+
{"episode_index":34,"tasks":["pick up the socks and put it in the bowl"],"length":181}
|
| 36 |
+
{"episode_index":35,"tasks":["pick up the socks and put it in the bowl"],"length":114}
|
| 37 |
+
{"episode_index":36,"tasks":["pick up the socks and put it in the bowl"],"length":117}
|
| 38 |
+
{"episode_index":37,"tasks":["pick up the socks and put it in the bowl"],"length":116}
|
| 39 |
+
{"episode_index":38,"tasks":["pick up the socks and put it in the bowl"],"length":121}
|
| 40 |
+
{"episode_index":39,"tasks":["pick up the socks and put it in the bowl"],"length":121}
|
| 41 |
+
{"episode_index":40,"tasks":["pick up the socks and put it in the bowl"],"length":101}
|
| 42 |
+
{"episode_index":41,"tasks":["pick up the socks and put it in the bowl"],"length":18}
|
meta/info.json
ADDED
|
@@ -0,0 +1,121 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"robot_type": "so-100",
|
| 3 |
+
"codebase_version": "v2.0",
|
| 4 |
+
"total_episodes": 41,
|
| 5 |
+
"total_frames": 5252,
|
| 6 |
+
"total_tasks": 1,
|
| 7 |
+
"total_videos": 82,
|
| 8 |
+
"total_chunks": 1,
|
| 9 |
+
"chunks_size": 1000,
|
| 10 |
+
"fps": 30,
|
| 11 |
+
"splits": {
|
| 12 |
+
"train": "0:41"
|
| 13 |
+
},
|
| 14 |
+
"data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
|
| 15 |
+
"video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
|
| 16 |
+
"features": {
|
| 17 |
+
"action": {
|
| 18 |
+
"dtype": "float32",
|
| 19 |
+
"shape": [
|
| 20 |
+
6
|
| 21 |
+
],
|
| 22 |
+
"names": [
|
| 23 |
+
"motor_1",
|
| 24 |
+
"motor_2",
|
| 25 |
+
"motor_3",
|
| 26 |
+
"motor_4",
|
| 27 |
+
"motor_5",
|
| 28 |
+
"motor_6"
|
| 29 |
+
]
|
| 30 |
+
},
|
| 31 |
+
"observation.state": {
|
| 32 |
+
"dtype": "float32",
|
| 33 |
+
"shape": [
|
| 34 |
+
6
|
| 35 |
+
],
|
| 36 |
+
"names": [
|
| 37 |
+
"motor_1",
|
| 38 |
+
"motor_2",
|
| 39 |
+
"motor_3",
|
| 40 |
+
"motor_4",
|
| 41 |
+
"motor_5",
|
| 42 |
+
"motor_6"
|
| 43 |
+
]
|
| 44 |
+
},
|
| 45 |
+
"timestamp": {
|
| 46 |
+
"dtype": "float32",
|
| 47 |
+
"shape": [
|
| 48 |
+
1
|
| 49 |
+
],
|
| 50 |
+
"names": null
|
| 51 |
+
},
|
| 52 |
+
"episode_index": {
|
| 53 |
+
"dtype": "int64",
|
| 54 |
+
"shape": [
|
| 55 |
+
1
|
| 56 |
+
],
|
| 57 |
+
"names": null
|
| 58 |
+
},
|
| 59 |
+
"frame_index": {
|
| 60 |
+
"dtype": "int64",
|
| 61 |
+
"shape": [
|
| 62 |
+
1
|
| 63 |
+
],
|
| 64 |
+
"names": null
|
| 65 |
+
},
|
| 66 |
+
"task_index": {
|
| 67 |
+
"dtype": "int64",
|
| 68 |
+
"shape": [
|
| 69 |
+
1
|
| 70 |
+
],
|
| 71 |
+
"names": null
|
| 72 |
+
},
|
| 73 |
+
"index": {
|
| 74 |
+
"dtype": "int64",
|
| 75 |
+
"shape": [
|
| 76 |
+
1
|
| 77 |
+
],
|
| 78 |
+
"names": null
|
| 79 |
+
},
|
| 80 |
+
"observation.images.main": {
|
| 81 |
+
"dtype": "video",
|
| 82 |
+
"shape": [
|
| 83 |
+
360,
|
| 84 |
+
480,
|
| 85 |
+
3
|
| 86 |
+
],
|
| 87 |
+
"names": [
|
| 88 |
+
"height",
|
| 89 |
+
"width",
|
| 90 |
+
"channel"
|
| 91 |
+
],
|
| 92 |
+
"info": {
|
| 93 |
+
"video.fps": 30,
|
| 94 |
+
"video.codec": "mp4v",
|
| 95 |
+
"video.pix_fmt": "yuv420p",
|
| 96 |
+
"video.is_depth_map": false,
|
| 97 |
+
"has_audio": false
|
| 98 |
+
}
|
| 99 |
+
},
|
| 100 |
+
"observation.images.secondary_0": {
|
| 101 |
+
"dtype": "video",
|
| 102 |
+
"shape": [
|
| 103 |
+
360,
|
| 104 |
+
480,
|
| 105 |
+
3
|
| 106 |
+
],
|
| 107 |
+
"names": [
|
| 108 |
+
"height",
|
| 109 |
+
"width",
|
| 110 |
+
"channel"
|
| 111 |
+
],
|
| 112 |
+
"info": {
|
| 113 |
+
"video.fps": 30,
|
| 114 |
+
"video.codec": "mp4v",
|
| 115 |
+
"video.pix_fmt": "yuv420p",
|
| 116 |
+
"video.is_depth_map": false,
|
| 117 |
+
"has_audio": false
|
| 118 |
+
}
|
| 119 |
+
}
|
| 120 |
+
}
|
| 121 |
+
}
|
meta/stats.json
ADDED
|
@@ -0,0 +1,371 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"observation.state": {
|
| 3 |
+
"max": [
|
| 4 |
+
0.7886586685934817,
|
| 5 |
+
0.8423611071163841,
|
| 6 |
+
1.416210021618256,
|
| 7 |
+
1.3625075830953535,
|
| 8 |
+
1.043361662730676,
|
| 9 |
+
2.2079374009844748
|
| 10 |
+
],
|
| 11 |
+
"min": [
|
| 12 |
+
-0.8208801317072231,
|
| 13 |
+
-1.5082713448003744,
|
| 14 |
+
-0.9160101656620789,
|
| 15 |
+
-1.6448289741871835,
|
| 16 |
+
-0.07671776931843206,
|
| 17 |
+
0.01074048770458049
|
| 18 |
+
],
|
| 19 |
+
"mean": [
|
| 20 |
+
-0.12299823677694982,
|
| 21 |
+
-0.199031514726624,
|
| 22 |
+
0.5742699159987764,
|
| 23 |
+
-0.08905870323911583,
|
| 24 |
+
0.4293862978104513,
|
| 25 |
+
1.13832515944063
|
| 26 |
+
],
|
| 27 |
+
"std": [
|
| 28 |
+
1.0,
|
| 29 |
+
1.0,
|
| 30 |
+
1.0,
|
| 31 |
+
1.0,
|
| 32 |
+
1.0,
|
| 33 |
+
1.0
|
| 34 |
+
],
|
| 35 |
+
"sum": [
|
| 36 |
+
-648.2007078145256,
|
| 37 |
+
-1048.8960826093085,
|
| 38 |
+
3026.4024573135516,
|
| 39 |
+
-469.33936607014044,
|
| 40 |
+
2262.8657894610783,
|
| 41 |
+
5998.973590252121
|
| 42 |
+
],
|
| 43 |
+
"square_sum": [
|
| 44 |
+
641.6230272869242,
|
| 45 |
+
1132.5365831179984,
|
| 46 |
+
2599.640078110048,
|
| 47 |
+
1530.663257063245,
|
| 48 |
+
1384.127071185182,
|
| 49 |
+
12071.924313586498
|
| 50 |
+
],
|
| 51 |
+
"count": 5270
|
| 52 |
+
},
|
| 53 |
+
"action": {
|
| 54 |
+
"max": [
|
| 55 |
+
0.7886586685934817,
|
| 56 |
+
0.8423611071163841,
|
| 57 |
+
1.416210021618256,
|
| 58 |
+
1.3625075830953535,
|
| 59 |
+
1.043361662730676,
|
| 60 |
+
2.2079374009844748
|
| 61 |
+
],
|
| 62 |
+
"min": [
|
| 63 |
+
-0.8208801317072231,
|
| 64 |
+
-1.5082713448003744,
|
| 65 |
+
-0.9160101656620789,
|
| 66 |
+
-1.6448289741871835,
|
| 67 |
+
-0.07671776931843206,
|
| 68 |
+
0.01074048770458049
|
| 69 |
+
],
|
| 70 |
+
"mean": [
|
| 71 |
+
-0.12299823677694982,
|
| 72 |
+
-0.199031514726624,
|
| 73 |
+
0.5742699159987764,
|
| 74 |
+
-0.08905870323911583,
|
| 75 |
+
0.4293862978104513,
|
| 76 |
+
1.13832515944063
|
| 77 |
+
],
|
| 78 |
+
"std": [
|
| 79 |
+
1.0,
|
| 80 |
+
1.0,
|
| 81 |
+
1.0,
|
| 82 |
+
1.0,
|
| 83 |
+
1.0,
|
| 84 |
+
1.0
|
| 85 |
+
],
|
| 86 |
+
"sum": [
|
| 87 |
+
-648.2007078145256,
|
| 88 |
+
-1048.8960826093085,
|
| 89 |
+
3026.4024573135516,
|
| 90 |
+
-469.33936607014044,
|
| 91 |
+
2262.8657894610783,
|
| 92 |
+
5998.973590252121
|
| 93 |
+
],
|
| 94 |
+
"square_sum": [
|
| 95 |
+
641.6230272869242,
|
| 96 |
+
1132.5365831179984,
|
| 97 |
+
2599.640078110048,
|
| 98 |
+
1530.663257063245,
|
| 99 |
+
1384.127071185182,
|
| 100 |
+
12071.924313586498
|
| 101 |
+
],
|
| 102 |
+
"count": 5270
|
| 103 |
+
},
|
| 104 |
+
"timestamp": {
|
| 105 |
+
"max": [
|
| 106 |
+
12.063593875000151
|
| 107 |
+
],
|
| 108 |
+
"min": [
|
| 109 |
+
0.0015137079999476555
|
| 110 |
+
],
|
| 111 |
+
"mean": [
|
| 112 |
+
4.3691793683910385
|
| 113 |
+
],
|
| 114 |
+
"std": [
|
| 115 |
+
1.0
|
| 116 |
+
],
|
| 117 |
+
"sum": [
|
| 118 |
+
23025.575271420774
|
| 119 |
+
],
|
| 120 |
+
"square_sum": [
|
| 121 |
+
138427.14432918187
|
| 122 |
+
],
|
| 123 |
+
"count": 5270
|
| 124 |
+
},
|
| 125 |
+
"frame_index": {
|
| 126 |
+
"max": [
|
| 127 |
+
180
|
| 128 |
+
],
|
| 129 |
+
"min": [
|
| 130 |
+
0
|
| 131 |
+
],
|
| 132 |
+
"mean": [
|
| 133 |
+
65.08937381404175
|
| 134 |
+
],
|
| 135 |
+
"std": [
|
| 136 |
+
1.0
|
| 137 |
+
],
|
| 138 |
+
"sum": [
|
| 139 |
+
343021
|
| 140 |
+
],
|
| 141 |
+
"square_sum": [
|
| 142 |
+
30838485
|
| 143 |
+
],
|
| 144 |
+
"count": 5270
|
| 145 |
+
},
|
| 146 |
+
"episode_index": {
|
| 147 |
+
"max": [
|
| 148 |
+
41
|
| 149 |
+
],
|
| 150 |
+
"min": [
|
| 151 |
+
0
|
| 152 |
+
],
|
| 153 |
+
"mean": [
|
| 154 |
+
19.991650853889944
|
| 155 |
+
],
|
| 156 |
+
"std": [
|
| 157 |
+
1.0
|
| 158 |
+
],
|
| 159 |
+
"sum": [
|
| 160 |
+
105356
|
| 161 |
+
],
|
| 162 |
+
"square_sum": [
|
| 163 |
+
2850282
|
| 164 |
+
],
|
| 165 |
+
"count": 5270
|
| 166 |
+
},
|
| 167 |
+
"index": {
|
| 168 |
+
"max": [
|
| 169 |
+
5269
|
| 170 |
+
],
|
| 171 |
+
"min": [
|
| 172 |
+
0
|
| 173 |
+
],
|
| 174 |
+
"mean": [
|
| 175 |
+
2634.5
|
| 176 |
+
],
|
| 177 |
+
"std": [
|
| 178 |
+
1.0
|
| 179 |
+
],
|
| 180 |
+
"sum": [
|
| 181 |
+
13883815
|
| 182 |
+
],
|
| 183 |
+
"square_sum": [
|
| 184 |
+
48773842095
|
| 185 |
+
],
|
| 186 |
+
"count": 5270
|
| 187 |
+
},
|
| 188 |
+
"task_index": {
|
| 189 |
+
"max": [
|
| 190 |
+
0
|
| 191 |
+
],
|
| 192 |
+
"min": [
|
| 193 |
+
0
|
| 194 |
+
],
|
| 195 |
+
"mean": [
|
| 196 |
+
0.0
|
| 197 |
+
],
|
| 198 |
+
"std": [
|
| 199 |
+
1.0
|
| 200 |
+
],
|
| 201 |
+
"sum": [
|
| 202 |
+
0
|
| 203 |
+
],
|
| 204 |
+
"square_sum": [
|
| 205 |
+
0
|
| 206 |
+
],
|
| 207 |
+
"count": 5270
|
| 208 |
+
},
|
| 209 |
+
"observation.images.main": {
|
| 210 |
+
"max": [
|
| 211 |
+
[
|
| 212 |
+
[
|
| 213 |
+
1.0
|
| 214 |
+
]
|
| 215 |
+
],
|
| 216 |
+
[
|
| 217 |
+
[
|
| 218 |
+
1.0
|
| 219 |
+
]
|
| 220 |
+
],
|
| 221 |
+
[
|
| 222 |
+
[
|
| 223 |
+
1.0
|
| 224 |
+
]
|
| 225 |
+
]
|
| 226 |
+
],
|
| 227 |
+
"min": [
|
| 228 |
+
[
|
| 229 |
+
[
|
| 230 |
+
0.03529411926865578
|
| 231 |
+
]
|
| 232 |
+
],
|
| 233 |
+
[
|
| 234 |
+
[
|
| 235 |
+
0.03921568766236305
|
| 236 |
+
]
|
| 237 |
+
],
|
| 238 |
+
[
|
| 239 |
+
[
|
| 240 |
+
0.003921568859368563
|
| 241 |
+
]
|
| 242 |
+
]
|
| 243 |
+
],
|
| 244 |
+
"mean": [
|
| 245 |
+
[
|
| 246 |
+
[
|
| 247 |
+
0.6221865148327826
|
| 248 |
+
]
|
| 249 |
+
],
|
| 250 |
+
[
|
| 251 |
+
[
|
| 252 |
+
0.5614947642568242
|
| 253 |
+
]
|
| 254 |
+
],
|
| 255 |
+
[
|
| 256 |
+
[
|
| 257 |
+
0.4876763245053566
|
| 258 |
+
]
|
| 259 |
+
]
|
| 260 |
+
],
|
| 261 |
+
"std": [
|
| 262 |
+
[
|
| 263 |
+
[
|
| 264 |
+
0.1897304387898007
|
| 265 |
+
]
|
| 266 |
+
],
|
| 267 |
+
[
|
| 268 |
+
[
|
| 269 |
+
0.18077334217907667
|
| 270 |
+
]
|
| 271 |
+
],
|
| 272 |
+
[
|
| 273 |
+
[
|
| 274 |
+
0.1750533291870741
|
| 275 |
+
]
|
| 276 |
+
]
|
| 277 |
+
],
|
| 278 |
+
"sum": [
|
| 279 |
+
566597882.8515625,
|
| 280 |
+
511328576.0390625,
|
| 281 |
+
444105370.96875
|
| 282 |
+
],
|
| 283 |
+
"square_sum": [
|
| 284 |
+
385311028.3515625,
|
| 285 |
+
316867646.81640625,
|
| 286 |
+
244485515.1875
|
| 287 |
+
],
|
| 288 |
+
"count": 910656000
|
| 289 |
+
},
|
| 290 |
+
"observation.images.secondary_0": {
|
| 291 |
+
"max": [
|
| 292 |
+
[
|
| 293 |
+
[
|
| 294 |
+
1.0
|
| 295 |
+
]
|
| 296 |
+
],
|
| 297 |
+
[
|
| 298 |
+
[
|
| 299 |
+
1.0
|
| 300 |
+
]
|
| 301 |
+
],
|
| 302 |
+
[
|
| 303 |
+
[
|
| 304 |
+
1.0
|
| 305 |
+
]
|
| 306 |
+
]
|
| 307 |
+
],
|
| 308 |
+
"min": [
|
| 309 |
+
[
|
| 310 |
+
[
|
| 311 |
+
0.0
|
| 312 |
+
]
|
| 313 |
+
],
|
| 314 |
+
[
|
| 315 |
+
[
|
| 316 |
+
0.0
|
| 317 |
+
]
|
| 318 |
+
],
|
| 319 |
+
[
|
| 320 |
+
[
|
| 321 |
+
0.0
|
| 322 |
+
]
|
| 323 |
+
]
|
| 324 |
+
],
|
| 325 |
+
"mean": [
|
| 326 |
+
[
|
| 327 |
+
[
|
| 328 |
+
0.608189952370187
|
| 329 |
+
]
|
| 330 |
+
],
|
| 331 |
+
[
|
| 332 |
+
[
|
| 333 |
+
0.5614085399443506
|
| 334 |
+
]
|
| 335 |
+
],
|
| 336 |
+
[
|
| 337 |
+
[
|
| 338 |
+
0.490314732765446
|
| 339 |
+
]
|
| 340 |
+
]
|
| 341 |
+
],
|
| 342 |
+
"std": [
|
| 343 |
+
[
|
| 344 |
+
[
|
| 345 |
+
0.2237211582768744
|
| 346 |
+
]
|
| 347 |
+
],
|
| 348 |
+
[
|
| 349 |
+
[
|
| 350 |
+
0.20507387341506586
|
| 351 |
+
]
|
| 352 |
+
],
|
| 353 |
+
[
|
| 354 |
+
[
|
| 355 |
+
0.20820445487241054
|
| 356 |
+
]
|
| 357 |
+
]
|
| 358 |
+
],
|
| 359 |
+
"sum": [
|
| 360 |
+
553851829.265625,
|
| 361 |
+
511250055.3515625,
|
| 362 |
+
446508053.28125
|
| 363 |
+
],
|
| 364 |
+
"square_sum": [
|
| 365 |
+
382426503.78125,
|
| 366 |
+
325318052.53125,
|
| 367 |
+
258405590.3046875
|
| 368 |
+
],
|
| 369 |
+
"count": 910656000
|
| 370 |
+
}
|
| 371 |
+
}
|