Views
No views yet
1git clone https://github.com/davian-robotics/ACG
2cd ACG1note=""
2n_rollouts="24"
3num_batch_envs="8"
4export MAX_NUM_EMBODIMENTS="32"
5dataset_name="robocasa_mg100"
6config_path="libs/Isaac-GR00T-N1/robomimic_configs/${dataset_name}.json"
7model_path="DAVIAN-Robotics/GR00T-N1-2B-tuned-RoboCasa-MG100-FrankaPandaGripper"
8seed="123"
9
10bash scripts/base_rollout.sh ${config_path} ${model_path} ${seed} ${n_rollouts} ${num_batch_envs} "${note}"1note=""
2n_rollouts="24"
3num_batch_envs="8"
4export MAX_NUM_EMBODIMENTS="32"
5dataset_name="robocasa_mg100"
6config_path="libs/Isaac-GR00T-N1/robomimic_configs/${dataset_name}.json"
7model_path="DAVIAN-Robotics/GR00T-N1-2B-tuned-RoboCasa-MG100-FrankaPandaGripper"
8
9acg_options="
10algo.guidance.name=acg
11algo.guidance.scale=3.0
12algo.guidance.skip_blocks=7,9,11
13" # Corresponding to 4th–6th self-attention layers.
14
15note="${note}_acg"
16seed="123"
17
18bash scripts/base_rollout.sh ${config_path} ${model_path} ${seed} ${n_rollouts} ${num_batch_envs} "${note}" ${acg_options}1@article{park2025acg,
2 title={ACG: Action Coherence Guidance for Flow-based VLA Models},
3 author={Park, Minho and Kim, Kinam and Hyung, Junha and Jang, Hyojin and Jin, Hoiyeong and Yun, Jooyeol and Lee, Hojoon and Choo, Jaegul},
4 journal={arXiv preprint arXiv:2510.22201},
5 year={2025}
6}