File size: 1,541 Bytes
63e9719
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# SO-101 Pick and Place Dataset (OpenPi Format)

This dataset contains 40 episodes of a simulated SO-101 robot performing pick-and-place tasks, converted to OpenPi/RLDS format for use with Physical Intelligence's Pi0/Pi0.5 models.

## Source

Converted from LeRobot dataset: `danbhf/sim_pick_place_merged_40ep`

## Format

Each episode is stored as an NPZ file containing:

| Key | Shape | Type | Description |
|-----|-------|------|-------------|
| `observation/state` | (N, 6) | float32 | Joint positions (6 DoF) |
| `observation/image` | (N, 480, 640, 3) | uint8 | Overhead camera RGB |
| `observation/wrist_image` | (N, 480, 640, 3) | uint8 | Wrist camera RGB |
| `action` | (N, 6) | float32 | Joint actions (6 DoF) |
| `language_instruction` | string | - | Task description |
| `is_first` | (N,) | bool | First step in episode |
| `is_last` | (N,) | bool | Last step in episode |
| `is_terminal` | (N,) | bool | Terminal state |

## Statistics

- **Episodes**: 40
- **Total Steps**: 6,559
- **Task**: "Pick up the block and place it in the bowl"
- **Robot**: SO-101 (6 DoF + gripper)
- **Cameras**: Overhead (main), Wrist

## Usage

```python

import numpy as np



# Load an episode

data = np.load("episode_000000.npz", allow_pickle=True)



# Access observations

states = data["observation/state"]  # (N, 6)

images = data["observation/image"]  # (N, H, W, 3)

actions = data["action"]            # (N, 6)

language = str(data["language_instruction"])

```

## License

Same as source dataset.