Views
No views yet
1Python 3.11
2PyTorch 2.8.0
3Transformers 4.57.1
4FlashAttention 2trust_remote_code=True.1import torch
2from transformers import AutoModel, AutoProcessor
3
4model_id = "XiaomiRobotics/Xiaomi-Robotics-1-RoboCasa365"
5
6processor = AutoProcessor.from_pretrained(
7 model_id,
8 trust_remote_code=True,
9 use_fast=False,
10)
11model = AutoModel.from_pretrained(
12 model_id,
13 trust_remote_code=True,
14 attn_implementation="flash_attention_2",
15 dtype=torch.bfloat16,
16).cuda()eval_robocasa365/README.md. The server launcher accepts either this Hugging
Face repository ID after downloading it locally or a local snapshot path.1split: pretrain
2task set: target50
3tasks: 50
4episodes per task: 50
5observation history: 4
6observation interval: 2
7actions per query: 16
8environment base seed: 7
9crop ratio: 0.95| Metric | Value |
|---|---|
| Episodes | 2500 |
| Successes | 1432 |
| Episode success rate | 57.28% |
LICENSE.