Views
No views yet
b1k_official_10tasks_combined), 1960 episodes / 18M frames, R1Pro robot.| Base model | pi05_base |
| Dataset | Hoshipu/b1k_official_10tasks_combined (1960 eps, 18M frames) |
| Steps | 200 000 |
| Peak LR | 2.5e-5 (cosine decay, 2k warmup) |
| Batch size | 32 |
| FSDP devices | 8 |
| Action horizon | 50 |
| B1K Task ID | Task |
|---|---|
| 0 | Turn on the radio receiver that's on the table in the living room. |
| 1 | Put the three can of soda from the living room inside the trash can in the kitchen. |
| 5 | Take the four mousetraps from the cabinet in the bathroom and place them on the bathroom floor. Make sure all four end up on the same floor surface, and ensure that at least two of them are either under or directly next to the same bathroom sink. |
| 9 | In the living room, take the wreath, three candy canes, and two pillar candles out of the wicker basket. Place the wreath and two of the candy canes on the same living-room sofa. Put the remaining candy cane on top of a dining-room table. Put both pillar candles together on top of one dining-room table. Finally, place all three gift boxes under or right next to the Christmas tree in the living room. |
| 10 | Set up a coffee station on the kitchen countertop: keep the coffee maker on the countertop, move the bottle of coffee from the kitchen shelf to the counter next to the coffee maker, place a paper coffee filter on top of the coffee maker, put the saucer next to the coffee maker with the coffee cup on the saucer, and place the electric kettle next to the coffee maker. |
| 18 | In the bedroom, move the book from the bed onto either nightstand, and place the two sandals side by side next to the bed. |
| 21 | Pick up the two dice from the bed, the two teddy bears from the floor, and the two board games (one from the desk and one from the bed), and place them all inside the same bookcase in the child's room. |
| 22 | Pick up the two gym shoes and the two sandals from the corridor floor and place them onto the hallstand (shoe rack) in the corridor, making sure they are on the rack and not on the floor. Arrange them so the two gym shoes are next to each other and the two sandals are next to each other. |
| 31 | Wash the two dusty boxing gloves from the countertop in the utility room in the washer until they are no longer covered with dust. |
| 32 | Wash the two baseball caps on the countertop in the utility room using the washer until they are no longer dirty. |
| Checkpoint | Steps |
|---|---|
ckpt-200000 | 200 000 (final) |
params/ (model weights) and assets/norm_stats.json (normalisation statistics). train_state/ is excluded.1from transformers import AutoConfig, AutoModel
2
3REPO = "Hoshipu/pi05-b1k10t-ogfilter-lr2.5e5"
4CKPT = "ckpt-200000"
5
6config = AutoConfig.from_pretrained(REPO, subfolder=CKPT, trust_remote_code=True)
7model = AutoModel.from_pretrained(REPO, subfolder=CKPT, trust_remote_code=True)