Add planner-oriented atomic skill benchmark - #520
Draft
yuecideng wants to merge 1 commit into
Draft
Conversation
Add shared planner, robot, scenario, skill, and object extension points for physics-backed Atomic Action evaluation. Introduce a Franka + PGI cuRobo smoke suite with MoveEndEffector and PickUp, staged success metrics, execution timing, manifests, reports, documentation, and tests.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR adds a shared planner benchmark framework for physics-backed Atomic Actions and implements the first Franka + PGI and cuRobo vertical slice proposed in #437.
The benchmark now:
MotionGeneratorwithMotionPolicy(strategy="motion_gen", planner="curobo");atomic_franka_pgi_curobosmoke suite coveringMoveEndEffectorand antipodal-graspPickUp;Current Atomic Task scope is deliberately limited to batch size 1, an empty external cuRobo collision world, and the two initial skills. Additional planners opt in by exposing a
MotionGeneratorand theatomic_actioncapability.Dependencies: cuRobo and CUDA are required to execute the new suite. No dependency manifests are changed.
Refs #437
Type of change
Screenshots
Not applicable. The feature produces JSON/JSONL artifacts and a Markdown benchmark report.
Validation
black --check --diff --color ./— 671 files unchangedpytest -q tests/benchmark/motion_generation— 30 passed, 1 skippedpython -m compileall -q scripts/benchmark/motion_generation tests/benchmark/motion_generation/test_atomic_task_benchmark.pypython -m scripts.benchmark.motion_generation.run_benchmark --suite atomic_franka_pgi_curobo --device cuda— MoveEndEffector and PickUp both reached 100% planning, motion, execution, and task success; PickUp lifted the object by approximately 0.1594 mChecklist
black .command to format the code base.