Skip to content

Commit

Permalink
fix pick up task
Browse files Browse the repository at this point in the history
  • Loading branch information
lf-zhao committed Nov 13, 2024
1 parent 95442a5 commit 44cd027
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions predicators/envs/spot_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -3533,10 +3533,11 @@ def _detection_id_to_obj(self) -> Dict[ObjectDetectionID, Object]:
("cardboard_box", "cardboard_box", _container_type),
# ("block", "red_block", _movable_object_type),
# DEBUG objects:
# ("block", "orange_cup", _container_type),
# ("block", "spam_box", _container_type),
# NOTE: should use movable type, because the goal for this task assumes movable
# ("block", "orange_cup", _movable_object_type),
# ("block", "spam_box", _movable_object_type),
# ("block", "yellow_apple", _movable_object_type),
("block", "green_cup", _container_type),
("block", "green_cup", _movable_object_type),
# ("block", "green_block", _movable_object_type),
# ("block", "green_apple", _movable_object_type),
]
Expand Down

0 comments on commit 44cd027

Please sign in to comment.