Skip to content

Commit

Permalink
Merge branch 'srb'
Browse files Browse the repository at this point in the history
  • Loading branch information
stebl committed Feb 10, 2014
2 parents 5d017b9 + da06cba commit 19af10a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hw1_grasp.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,10 @@ def order_grasps_noisy(self):
self.grasps_ordered_noisy = self.grasps_ordered.copy() #you should change the order of self.grasps_ordered_noisy
#TODO set the score with your evaluation function (over random samples) and sort
num_noisy_samples = 5
noisy_samples = []


for grasp in self.grasps_ordered_noisy:
noisy_samples = []
for i in range(num_noisy_samples):
noisy_grasp = self.sample_random_grasp(grasp)
score = self.eval_grasp(noisy_grasp)
Expand Down

0 comments on commit 19af10a

Please sign in to comment.