Views
No views yet

| Parameter | Value |
|---|---|
| Architecture | ACT (Action Chunking Transformer) |
| Vision Backbone | ResNet50 (ImageNet V2 pretrained) |
| Parameters | 65M |
| Chunk Size | 40 |
| N Action Steps | 15 |
| KL Weight | 1.0 |
| Training Steps | 500,000 |
| Batch Size | 64 |
| Learning Rate | 3e-5 |
| Backbone LR | 1e-5 |
1from lerobot.policies.act.modeling_act import ACTPolicy
2
3# Load the policy
4policy = ACTPolicy.from_pretrained("gpudad/act-so101-chunk40-500k")
5
6# Run inference
7action = policy.select_action(observation)1from lerobot.scripts.eval import eval_policy
2
3eval_policy(
4 policy_path="gpudad/act-so101-chunk40-500k",
5 env_name="so101_pick_cube",
6 n_episodes=50,
7)1policy_cfg = ACTConfig(
2 chunk_size=40, # Predict 40 future actions
3 n_action_steps=15, # Execute 15 before re-planning
4 kl_weight=1.0, # Low KL for decisive actions
5 vision_backbone="resnet50",
6 pretrained_backbone_weights="ResNet50_Weights.IMAGENET1K_V2",
7 optimizer_lr=3e-5,
8 optimizer_lr_backbone=1e-5,
9 use_amp=True,
10)