siyulw2025/aic-rlt-cable-insertion
0
AIC RLT — SFP Cable Insertion
RLT (RL Token) checkpoint for the AIC cable insertion challenge.
What's inside
Architecture
- RL token encoder: Perceiver-style cross-attention, compresses (115, 1024) XVLA embeddings → 2048-dim z_rl
- Actor: 3-layer MLP (256→256→action), outputs action chunks (C=10, 7-dim TCP)
- Critic: Twin Q-networks for TD3-style pessimistic value estimation
Training data
- 100 synthetic episodes of scripted cable insertion (
generate_synthetic_data.py) - XVLA embeddings extracted from Florence-2 encoder (lerobot/xvla-base)
Usage (ROS 2 simulation)
pixi run ros2 run aic_model aic_model \
--ros-args \
-p use_sim_time:=true \
-p policy:=aic_example_policies.ros.RunRLT \
-p policy_args.checkpoint_path:=$(hf_hub_download siyulw2025/aic-rlt-cable-insertion phase2_offline.pt)See aic_example_policies/ros/RunRLT.py for the full inference policy.
