| ---
|
| license: other
|
| task_categories:
|
| - image-segmentation
|
| - keypoint-detection
|
| language:
|
| - en
|
| tags:
|
| - synthetic
|
| - internal
|
| ---
|
|
|
| # test5555
|
|
|
| Internal synthetic image dataset. **Not intended for redistribution or external use.**
|
|
|
| ## Format
|
|
|
| - `data/bNNN.parquet` — one shard per source batch (~512 frames × 4 cameras)
|
| - Columns: `id`, `split`, `batch`, `pose_index`, `camera`, `rgb`, `mask`, `keypoints`, `bones`
|
| - `rgb` / `mask`: PNG bytes (not base64)
|
| - `keypoints` / `bones`: JSON strings
|
| - Resolution: 720×1280, black background
|
|
|
| ## Usage
|
|
|
| ```python
|
| from datasets import load_dataset
|
| ds = load_dataset("todo1111/test5555", data_files="data/*.parquet", split="train")
|
| row = ds[0]
|
| img = row["rgb"] # PIL via datasets Image(decode=True) if cast
|
| ```
|
|
|
| ## License
|
|
|
| Private research use only. Do not redistribute.
|
|
|