Skip to content

Commit

Permalink
fix a bug
Browse files Browse the repository at this point in the history
  • Loading branch information
beneisner committed Nov 21, 2023
1 parent 40139d8 commit bece533
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions notebooks/explore_dset2.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -200,10 +200,10 @@
"\n",
"# o3d.visualization.draw_geometries([\n",
"wo3d.draw([\n",
" pcd, \n",
" # pcd, \n",
" pcd2,\n",
" pcd3,\n",
" pcd4,\n",
" # pcd4,\n",
"])"
]
},
Expand Down
6 changes: 3 additions & 3 deletions src/rpad/rlbench_utils/placement_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,14 +173,14 @@ class StackWinePhase(str, Enum):
],
"anchor_obj_names": ["solve_puzzle_piece_visual2"],
"action_pose_name": "gripper",
"anchor_pose_name": "solve_puzzle_frame",
"anchor_pose_name": "solve_puzzle_piece_visual2",
},
"place": {
"action_obj_names": ["solve_puzzle_piece_visual2"],
"anchor_obj_names": ["solve_puzzle_frame", "solve_puzzle_piece1"]
"anchor_obj_names": ["solve_puzzle_piece1"]
+ [f"solve_puzzle_piece{i}" for i in range(3, 25)],
"action_pose_name": "solve_puzzle_piece_visual2",
"anchor_pose_name": "solve_puzzle_frame",
"anchor_pose_name": "solve_puzzle_piece1",
},
},
},
Expand Down

0 comments on commit bece533

Please sign in to comment.