Skip to content

Commit 69b6516

Browse files
author
Lin Shao
committed
add point_set_selection
1 parent 3a7ba63 commit 69b6516

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

point_set_selection/point_set_selection.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -586,11 +586,12 @@ def train(base=0):
586586
if int(gripper_id) < 10:
587587
gt_path_endswith = '_par_grasp' + str(gripper_id) + '_new.npz'
588588
gt_gq_path_dirs = [os.path.join(env_dir,f) for f in os.listdir(env_dir) if f.endswith(gt_path_endswith)]
589-
#print("gt_gq_path_dirs",gt_gq_path_dirs[0])
589+
#print("gt_gq_path_dirs",gt_gq_path_dirs)
590590
if len(gt_gq_path_dirs) == 0:
591591
gt_path_endswith = '_par_grasp' + str(gripper_id) + '.npz'
592592
gt_gq_path_dirs = [os.path.join(env_dir,f) for f in os.listdir(env_dir) if f.endswith(gt_path_endswith)]
593593
#print(gt_gq_path_dirs)
594+
#print("env_dir",env_dir,"gt_path_endswith",gt_path_endswith)
594595
gt_gq_path = gt_gq_path_dirs[0]
595596
gt_gq_label = np.load(gt_gq_path)['par']
596597
gt_label = np.zeros((2048,))

0 commit comments

Comments
 (0)