--- dataset_info: - config_name: full features: - name: image dtype: image - name: actuated_angle struct: - name: '0' dtype: int32 - name: '1' dtype: int32 splits: - name: train num_bytes: 5561715.0 num_examples: 5 download_size: 5564574 dataset_size: 5561715.0 - config_name: small features: - name: image dtype: image - name: actuated_angle struct: - name: '0' dtype: int32 - name: '1' dtype: int32 splits: - name: train num_bytes: 2219188.0 num_examples: 2 download_size: 2221784 dataset_size: 2219188.0 configs: - config_name: full data_files: - split: train path: full/train-* - config_name: small data_files: - split: train path: small/train-* default: true --- # 🧠 Open Humanoid Actuated Face Dataset
|
|
---
## Dataset Statistics
| Split | Samples | Size |
|-------|---------|------|
| **Train (full)** | **[FILL_TOTAL]** | ≈ 105 GB |
| **Train (small)** | 2 | ≈ 2 GB |
*(Numbers shown are for the preview release — update as you add data.)*
---
## Usage Example
```python
from datasets import load_dataset, Image
# load the small subset
ds = load_dataset("iamirulofficial/OpenHumnoidDataset", name="small", split="train")
ds = ds.cast_column("image", Image()) # decode image bytes ➜ PIL.Image
img = ds[0]["image"]
angles = ds[0]["actuated_angle"] # {'0': 90, '1': 20, ...}
img.show()
print(angles)
````
> **Tip**
> For the full corpus use `name="full"` (may require `streaming=True` once the dataset grows).
---
## Data Collection & RL Setup
A detailed description of the RL pipeline, reward design, and actuator hardware will appear in our upcoming paper (in preparation, 2025). Briefly:
1. **Vision module** extracts target expression keypoints from live human video.
2. **Policy network** predicts 16 actuator set‑points.
3. **Real‑time reward** computes expression similarity + smoothness penalties.
4. Images & angle vectors are logged every *N* steps, forming this dataset.
---
## License
Released under the **MIT License** – free for commercial and non‑commercial use.
---
## Citation
```bibtex
@misc{amirul2025openhumanoidface,
title = {Open Humanoid Actuated Face Dataset},
author = {Amirul et al.},
year = {2025},
url = {https://huggingface.co/datasets/iamirulofficial/OpenHumnoidDataset}
}
```
---
## Acknowledgements
Big thanks to the **i2Head InMoov** community and everyone who helped engineer the silicone skin and actuator stack.