Commit ·
80484f5
1
Parent(s): 802e09f
Upload dataset
Browse files- .gitattributes +1 -0
- README.md +38 -0
- data.parquet +3 -0
.gitattributes
CHANGED
|
@@ -58,3 +58,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
**/d/* filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
|
@@ -1,3 +1,41 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
| 2 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
license: mit
|
| 5 |
+
tags:
|
| 6 |
+
- robotics
|
| 7 |
+
- test-time-adaptation
|
| 8 |
+
- reinforcement-learning
|
| 9 |
+
- continuous-control
|
| 10 |
+
- flow-matching
|
| 11 |
+
dataset_info:
|
| 12 |
+
features:
|
| 13 |
+
- name: seed
|
| 14 |
+
dtype: int32
|
| 15 |
+
- name: step
|
| 16 |
+
dtype: int32
|
| 17 |
+
- name: joint_torques
|
| 18 |
+
sequence: float32
|
| 19 |
---
|
| 20 |
+
# Dataset Card for quadruped_domain_randomization
|
| 21 |
+
|
| 22 |
+
## Dataset Description
|
| 23 |
+
This dataset contains Proportional-Derivative (PD) corrective joint torques generated during Test-Time Adaptation (TTA) simulations for the **Quadruped** environment using the **domain_randomization** policy.
|
| 24 |
+
The dataset is structured for use in downstream machine learning workflows (such as training secondary diffusion or flow-matching models).
|
| 25 |
+
|
| 26 |
+
### Physical Environment
|
| 27 |
+
* **Robot**: Quadruped
|
| 28 |
+
* **Degrees of Freedom (DOF)**: 12
|
| 29 |
+
|
| 30 |
+
### Normalization
|
| 31 |
+
The continuous `joint_torques` have been standardized globally to zero-mean and unit-variance across all seeds.
|
| 32 |
+
To un-normalize the data back to raw physical torque values, use the following constants:
|
| 33 |
+
|
| 34 |
+
* **Mean ($\mu$)**: `[0.5391409993171692, -0.9164595007896423, 4.03103494644165, -0.5374435782432556, -0.9164064526557922, 4.03103494644165, 0.003860426601022482, 2.696013927459717, 4.032361030578613, 0.08484119921922684, 2.695657253265381, 4.032401084899902]`
|
| 35 |
+
* **Standard Deviation ($\sigma$)**: `[0.06029755249619484, 0.12463501840829849, 0.16779327392578125, 0.05818825960159302, 0.12457720190286636, 0.16778984665870667, 0.018216369673609734, 0.16376766562461853, 0.17438504099845886, 0.030601857230067253, 0.16376431286334991, 0.17441211640834808]`
|
| 36 |
+
|
| 37 |
+
### Usage
|
| 38 |
+
```python
|
| 39 |
+
from datasets import load_dataset
|
| 40 |
+
dataset = load_dataset("elprofesoriqo/quadruped_domain_randomization")
|
| 41 |
+
```
|
data.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:30f63b5b5c98fbdcdc1f30a7b364063c9e8c180fdc4cce76b32b72bfcd1ba35a
|
| 3 |
+
size 425868883
|