Add Parquet dataset tiers
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- .claude/settings.json +8 -0
- README.md +13 -13
- human/metadata.json +10 -10
- human/trajectories/episode_000.pkl +3 -0
- human/trajectories/episode_001.pkl +3 -0
- human/trajectories/episode_002.pkl +3 -0
- human/trajectories/episode_003.pkl +3 -0
- human/trajectories/episode_004.pkl +3 -0
- human/trajectories/episode_005.pkl +3 -0
- human/trajectories/episode_006.pkl +3 -0
- human/trajectories/episode_007.pkl +3 -0
- human/trajectories/episode_008.pkl +3 -0
- human/trajectories/episode_009.pkl +3 -0
- human/trajectories/episode_010.pkl +3 -0
- human/trajectories/episode_011.pkl +3 -0
- human/trajectories/episode_012.pkl +3 -0
- human/trajectories/episode_013.pkl +3 -0
- human/trajectories/episode_014.pkl +3 -0
- human/trajectories/episode_015.pkl +3 -0
- human/trajectories/episode_016.pkl +3 -0
- human/trajectories/episode_017.pkl +3 -0
- human/trajectories/episode_018.pkl +3 -0
- human/trajectories/episode_019.pkl +3 -0
- human/trajectories/episode_020.pkl +3 -0
- human/trajectories/episode_021.pkl +3 -0
- human/trajectories/episode_022.pkl +3 -0
- human/trajectories/episode_023.pkl +3 -0
- human/trajectories/episode_024.pkl +3 -0
- human/trajectories/episode_025.pkl +3 -0
- human/trajectories/episode_026.pkl +3 -0
- human/trajectories/episode_027.pkl +3 -0
- human/trajectories/episode_028.pkl +3 -0
- human/trajectories/episode_029.pkl +3 -0
- human/trajectories/episode_030.pkl +3 -0
- human/trajectories/episode_031.pkl +3 -0
- human/trajectories/episode_032.pkl +3 -0
- human/trajectories/episode_033.pkl +3 -0
- human/trajectories/episode_034.pkl +3 -0
- human/trajectories/episode_035.pkl +3 -0
- human/trajectories/episode_036.pkl +3 -0
- human/trajectories/episode_037.pkl +3 -0
- human/trajectories/episode_038.pkl +3 -0
- human/trajectories/episode_039.pkl +3 -0
- human/trajectories/episode_040.pkl +3 -0
- human/trajectories/episode_041.pkl +3 -0
- human/trajectories/episode_042.pkl +3 -0
- human/trajectories/episode_043.pkl +3 -0
- human/trajectories/episode_044.pkl +3 -0
- human/trajectories/episode_045.pkl +3 -0
- human/trajectories/episode_046.pkl +3 -0
.claude/settings.json
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"permissions": {
|
| 3 |
+
"allow": [
|
| 4 |
+
"Bash(python inspect_tiers.py --root .)",
|
| 5 |
+
"Bash(python convert_to_parquet.py --root . --output parquet --overwrite)"
|
| 6 |
+
]
|
| 7 |
+
}
|
| 8 |
+
}
|
README.md
CHANGED
|
@@ -25,10 +25,10 @@ configs:
|
|
| 25 |
data_files:
|
| 26 |
- split: train
|
| 27 |
path: "parquet/human/*.parquet"
|
| 28 |
-
- config_name:
|
| 29 |
data_files:
|
| 30 |
- split: train
|
| 31 |
-
path: "parquet/
|
| 32 |
- config_name: synthetic
|
| 33 |
default: true
|
| 34 |
data_files:
|
|
@@ -38,15 +38,15 @@ configs:
|
|
| 38 |
|
| 39 |
# KlaskTron
|
| 40 |
|
| 41 |
-
KlaskTron is a Klask imitation-learning dataset with three tiers: real human play, augmented human data, and large-scale synthetic rollouts.
|
| 42 |
|
| 43 |
| Tier | Episodes | Steps | Source |
|
| 44 |
| --- | ---: | ---: | --- |
|
| 45 |
-
| `human` |
|
| 46 |
-
| `
|
| 47 |
| `synthetic` | 34,649 | 5,000,000 | generated in simulation from an expert-like policy |
|
| 48 |
|
| 49 |
-
Total: 35,
|
| 50 |
|
| 51 |
## Loading Parquet
|
| 52 |
|
|
@@ -54,7 +54,7 @@ Total: 35,179 episodes and 5,407,275 action steps.
|
|
| 54 |
from datasets import load_dataset
|
| 55 |
|
| 56 |
human = load_dataset("KlaskLab/klasktron-il-benchmark", "human", split="train")
|
| 57 |
-
|
| 58 |
synthetic = load_dataset("KlaskLab/klasktron-il-benchmark", "synthetic", split="train")
|
| 59 |
```
|
| 60 |
|
|
@@ -62,7 +62,7 @@ Each Parquet row is one transition:
|
|
| 62 |
|
| 63 |
| Column | Meaning |
|
| 64 |
| --- | --- |
|
| 65 |
-
| `tier` | `human`, `
|
| 66 |
| `episode_id` | tier-local episode id |
|
| 67 |
| `source_file` | original pickle file |
|
| 68 |
| `episode_in_file` | episode index inside that pickle |
|
|
@@ -96,7 +96,7 @@ Raw pickle files live under:
|
|
| 96 |
|
| 97 |
```text
|
| 98 |
human/trajectories/
|
| 99 |
-
|
| 100 |
synthetic/trajectories/
|
| 101 |
```
|
| 102 |
|
|
@@ -113,10 +113,10 @@ Raw container types:
|
|
| 113 |
| Tier | Container |
|
| 114 |
| --- | --- |
|
| 115 |
| `human` | `imitation.data.types.TrajectoryWithRew` |
|
| 116 |
-
| `
|
| 117 |
| `synthetic` | plain Python `dict` |
|
| 118 |
|
| 119 |
-
The human and
|
| 120 |
|
| 121 |
## Rewards
|
| 122 |
|
|
@@ -124,8 +124,8 @@ There is no meaningful per-step reward signal. `rew` / `rews` is an all-zero pla
|
|
| 124 |
|
| 125 |
## Notes
|
| 126 |
|
| 127 |
-
- The human tier comes from recorded
|
| 128 |
-
- The
|
| 129 |
- The synthetic tier reflects simulator and expert-policy assumptions.
|
| 130 |
|
| 131 |
### Why Both Formats Exist
|
|
|
|
| 25 |
data_files:
|
| 26 |
- split: train
|
| 27 |
path: "parquet/human/*.parquet"
|
| 28 |
+
- config_name: human_augmented
|
| 29 |
data_files:
|
| 30 |
- split: train
|
| 31 |
+
path: "parquet/human_augmented/*.parquet"
|
| 32 |
- config_name: synthetic
|
| 33 |
default: true
|
| 34 |
data_files:
|
|
|
|
| 38 |
|
| 39 |
# KlaskTron
|
| 40 |
|
| 41 |
+
KlaskTron is a Klask imitation-learning dataset with three tiers: real human play, axis-mirror-augmented human data, and large-scale synthetic rollouts.
|
| 42 |
|
| 43 |
| Tier | Episodes | Steps | Source |
|
| 44 |
| --- | ---: | ---: | --- |
|
| 45 |
+
| `human` | 111 | 80,591 | reconstructed from recorded human play |
|
| 46 |
+
| `human_augmented` | 444 | 322,364 | axis-mirror augmentation of the human tier (none, x, y, xy) |
|
| 47 |
| `synthetic` | 34,649 | 5,000,000 | generated in simulation from an expert-like policy |
|
| 48 |
|
| 49 |
+
Total: 35,204 episodes and 5,402,955 action steps.
|
| 50 |
|
| 51 |
## Loading Parquet
|
| 52 |
|
|
|
|
| 54 |
from datasets import load_dataset
|
| 55 |
|
| 56 |
human = load_dataset("KlaskLab/klasktron-il-benchmark", "human", split="train")
|
| 57 |
+
human_augmented = load_dataset("KlaskLab/klasktron-il-benchmark", "human_augmented", split="train")
|
| 58 |
synthetic = load_dataset("KlaskLab/klasktron-il-benchmark", "synthetic", split="train")
|
| 59 |
```
|
| 60 |
|
|
|
|
| 62 |
|
| 63 |
| Column | Meaning |
|
| 64 |
| --- | --- |
|
| 65 |
+
| `tier` | `human`, `human_augmented`, or `synthetic` |
|
| 66 |
| `episode_id` | tier-local episode id |
|
| 67 |
| `source_file` | original pickle file |
|
| 68 |
| `episode_in_file` | episode index inside that pickle |
|
|
|
|
| 96 |
|
| 97 |
```text
|
| 98 |
human/trajectories/
|
| 99 |
+
human_augmented/trajectories/
|
| 100 |
synthetic/trajectories/
|
| 101 |
```
|
| 102 |
|
|
|
|
| 113 |
| Tier | Container |
|
| 114 |
| --- | --- |
|
| 115 |
| `human` | `imitation.data.types.TrajectoryWithRew` |
|
| 116 |
+
| `human_augmented` | `imitation.data.types.Trajectory` |
|
| 117 |
| `synthetic` | plain Python `dict` |
|
| 118 |
|
| 119 |
+
The human and human_augmented pickles need a compatible Python environment with `imitation` available. The synthetic pickles only use plain dictionaries and NumPy arrays. As usual, only unpickle data you trust.
|
| 120 |
|
| 121 |
## Rewards
|
| 122 |
|
|
|
|
| 124 |
|
| 125 |
## Notes
|
| 126 |
|
| 127 |
+
- The human tier comes from 111 recorded human Klask trajectories that were reestimated into simulation coordinates.
|
| 128 |
+
- The human_augmented tier extends the human tier 4x by applying axis-mirror augmentation (none, x, y, xy) to each trajectory.
|
| 129 |
- The synthetic tier reflects simulator and expert-policy assumptions.
|
| 130 |
|
| 131 |
### Why Both Formats Exist
|
human/metadata.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
| 1 |
-
{
|
| 2 |
-
"tier": "human",
|
| 3 |
-
"source_format": "sim_native",
|
| 4 |
-
"episode_count":
|
| 5 |
-
"step_count":
|
| 6 |
-
"frame_rate_hz": 50,
|
| 7 |
-
"num_files":
|
| 8 |
-
"collection_id": "expert_trajectories_cleaned",
|
| 9 |
-
"notes": "Recorded from real human Klask play, converted into simulation-coordinate trajectories through the state-reestimation pipeline, and manually cleaned before benchmark release."
|
| 10 |
-
}
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"tier": "human",
|
| 3 |
+
"source_format": "sim_native",
|
| 4 |
+
"episode_count": 111,
|
| 5 |
+
"step_count": 80591,
|
| 6 |
+
"frame_rate_hz": 50,
|
| 7 |
+
"num_files": 111,
|
| 8 |
+
"collection_id": "expert_trajectories_cleaned",
|
| 9 |
+
"notes": "Recorded from real human Klask play, converted into simulation-coordinate trajectories through the state-reestimation pipeline, and manually cleaned before benchmark release."
|
| 10 |
+
}
|
human/trajectories/episode_000.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:869902177a3f8c712830a9f1e77ffddf5afde25fd8d32bd1c33c387dbe0c4ff1
|
| 3 |
+
size 14305
|
human/trajectories/episode_001.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:62b60ab55080e0dbdb60d0fbf19c41013bb1332aee162641b0b727c3b1d6026f
|
| 3 |
+
size 13353
|
human/trajectories/episode_002.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5e711e17d0e8ebd5b1da36871bdb8d7f0f7d824d90cd30a119414a10079cb823
|
| 3 |
+
size 13489
|
human/trajectories/episode_003.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c4379813530f57a290687243336c17d197fa950af8d5c540c0934ae8f3375697
|
| 3 |
+
size 41576
|
human/trajectories/episode_004.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:96e51078f7df60edcab1f2abaa4b6e1f7ce62ae2bb5cb7a4f70b1504b2d45451
|
| 3 |
+
size 111625
|
human/trajectories/episode_005.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d2ce7870070783d84472258a86f357d1ff3cb9d71c6b9f249a934e3f490f9f3f
|
| 3 |
+
size 36612
|
human/trajectories/episode_006.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:26487ed42f6b2ef06fe1fbdef3ad4e2c1565d9b97b2a6a52cf79298db2af3a2f
|
| 3 |
+
size 4717
|
human/trajectories/episode_007.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aff042ffd96fd09f1825289e00a7ad2445624fb74a809dbc7d43831a5f295eda
|
| 3 |
+
size 64220
|
human/trajectories/episode_008.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:066fd03148910f185509c459e083b50da8ecccbc4d0db811ee98180741679aeb
|
| 3 |
+
size 9885
|
human/trajectories/episode_009.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d516c02c14ff5ee8a1fa072b26175ade92854fee76dd9cace15a13159b57b0b6
|
| 3 |
+
size 9885
|
human/trajectories/episode_010.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:af190ba6ee24bbb0a621dd854b08154a87ee300b5d078a6167e0fd61c0628cf9
|
| 3 |
+
size 11449
|
human/trajectories/episode_011.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bb93adbd695d28435fdad7e2dd685ab5e667beebbbd35496bc38b3c5aac479ba
|
| 3 |
+
size 12129
|
human/trajectories/episode_012.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:48bfca3e753f49ada50a49475ebff7f9c510dba79b4f483c34d44935b40daf30
|
| 3 |
+
size 88709
|
human/trajectories/episode_013.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3d84824d00df495cac2b638cee49d1b589d42f5459010304ecae0685e75f1954
|
| 3 |
+
size 24780
|
human/trajectories/episode_014.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2f098c6d74cc3325d4efc0f43824a9defb54d068cf724648f20cc77ec2bb1aa9
|
| 3 |
+
size 20496
|
human/trajectories/episode_015.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ce262289dd1f043a70ab208e1d56dc3cc07fc9b7baef1d8a2ad3399dbade8a20
|
| 3 |
+
size 72525
|
human/trajectories/episode_016.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e9de7cbabf70fa41589cb8df0902fa964b383f9c51506aac8f58f6cf5dbe35a5
|
| 3 |
+
size 19340
|
human/trajectories/episode_017.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1c8ab2960921418634dec121b0f2ab1e44f238a39ff0cadbddcf9d161b334673
|
| 3 |
+
size 17297
|
human/trajectories/episode_018.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a9ac9c8b07b7717843877d520591ebf11bfe9dcc2446c313606db39f05cbb3be
|
| 3 |
+
size 70689
|
human/trajectories/episode_019.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c73b12137ff92343b9f0fa3d9bad3426f5830e5f402480c74c6ddda854100566
|
| 3 |
+
size 97073
|
human/trajectories/episode_020.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5a0614574f377a5320256fcd98db9dcc549de040e690b2b34d3aa77d85adf296
|
| 3 |
+
size 50620
|
human/trajectories/episode_021.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f69ac8dd5569ab3c9f6516bfab217c2b289272b760dc4575f64cc50e229ebbad
|
| 3 |
+
size 26412
|
human/trajectories/episode_022.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fe518424007b9770e98a2c4ec94b77098b5589cfe70babf6d720dd770c9a65a2
|
| 3 |
+
size 13285
|
human/trajectories/episode_023.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ad9ee8920b2541283141fceb174308a32a7dc286e8b83eb8ef5d4c0d46f4dcfe
|
| 3 |
+
size 24712
|
human/trajectories/episode_024.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:705b3768bfa13ead2311e1c295d8a10aa0ef18d7a360c8b0c0a93d052a5fc0ea
|
| 3 |
+
size 21244
|
human/trajectories/episode_025.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f06ca31c2390d51d5bfad12e799bc4776dea4a4ddf320b86ec4a2aa358b16232
|
| 3 |
+
size 24236
|
human/trajectories/episode_026.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8c5cdf4d6b08a44fcf39f02d133be1a34a184a73375f44df0a3e2425daef5047
|
| 3 |
+
size 22740
|
human/trajectories/episode_027.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5583ca40f09a9b8c54d60f49881b6d8070c212a1e66adb918812db418c28b51d
|
| 3 |
+
size 89865
|
human/trajectories/episode_028.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3bd895520175c08f5ad3be21818810c64e982a8f760d7ec0fd05008efa9df4c0
|
| 3 |
+
size 54836
|
human/trajectories/episode_029.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:391cd7b32c324230c030ba65e463defaee3f5e996e7f13f8066fcc871f1efe21
|
| 3 |
+
size 44704
|
human/trajectories/episode_030.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4b31b04b1fbd720f21b9ca03049b1a64c4c4979352d361ec71d2ef7127102ded
|
| 3 |
+
size 66328
|
human/trajectories/episode_031.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fcfa598dcf611f7327e3b742c64e4b2fe22e20ba325666e0416752813470c1b7
|
| 3 |
+
size 68912
|
human/trajectories/episode_032.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:35b5bd3b350a34f9bcba1caced26d1707adbc2ead50e8be4d39b6bd0bcca57de
|
| 3 |
+
size 33552
|
human/trajectories/episode_033.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a1486c8bee6cf08eb92b1258f3877fd0e80a8eaec696ece5daa6b12700830117
|
| 3 |
+
size 30220
|
human/trajectories/episode_034.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:492983247ff91ae980146d814bb49bae2e0de7dc25b4dd40ea008cc9372d9c48
|
| 3 |
+
size 13761
|
human/trajectories/episode_035.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a10c291eb9c5f66217193a4700dbf38890bb3e7d1ae98919cff579c2c1a0f5b2
|
| 3 |
+
size 35592
|
human/trajectories/episode_036.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9a8dbfb7c5ec6265bd123b65434648925cb76cb13856b262647d00ffdffc1528
|
| 3 |
+
size 9273
|
human/trajectories/episode_037.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4010d7ff5b0f5f302ef1712b3c5f8aff7028036192ad9cd346a5d7e83681a5e9
|
| 3 |
+
size 66056
|
human/trajectories/episode_038.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5804dadd2e71fb8394673deda1492c8d35861c24405b97e4b9621b343fcaac38
|
| 3 |
+
size 24372
|
human/trajectories/episode_039.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1b6b49221db6d734ea6df276fc1ba407271225fa26df6031da06b2b97f58976e
|
| 3 |
+
size 27024
|
human/trajectories/episode_040.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6485bdd06c39ae8a5c9e07d0bc62ac04318b7687d486e5cf534d387099b19941
|
| 3 |
+
size 82249
|
human/trajectories/episode_041.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cd7336c90661163155e39fae1e6ca6c02c9e0f7a0720b003120cd99b1e93c94d
|
| 3 |
+
size 80209
|
human/trajectories/episode_042.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1cd53189ec459eee67e06ebaf76e5d6690a003755a84af9d179b763620d85f80
|
| 3 |
+
size 16821
|
human/trajectories/episode_043.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:99354c55ade10247cf46324ccc043a48efad84674475d87aacde15f89324be2d
|
| 3 |
+
size 10769
|
human/trajectories/episode_044.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:211559c4c794ad1e77e263f80dfce28c75bfffaf57afc21b0d62e9520a45222f
|
| 3 |
+
size 22808
|
human/trajectories/episode_045.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:59fbea046338c2cecc489b86a1dad000154fe475578157a4b40f2e9963c6185d
|
| 3 |
+
size 6077
|
human/trajectories/episode_046.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bea35b9f489bc127bc2c9c84d45a3303937823282ad4ccd8424a8144a9c1e63a
|
| 3 |
+
size 11993
|