Question: 2 c ) Extra Credit: Make your algorithm even better Prof. Everett's simple pure pursuit implementation used an average number of steps of 7 9

2 c) Extra Credit: Make your algorithm even better
Prof. Everett's simple pure pursuit implementation used an average number of steps of 79.44 on the validation set. You can earn 1 extra credit
point if you upload a second implementation to Gradescope achieves below 80 steps on average (while also achieving 100% success). You can
earn additional extra credit for having the best implementation in the class according to the Gradescope leaderboard.
You can try different strategies than just pure pursuit. Whichever control strategy you end up using, please use the BetterCont rol ler class
below for this part, which has the same class/function signatures as before.
Note: there will be a test suite that is similar but not identical to the validation method above to ensure your algorithm doesn't overfit to specific
cases.
[] class BetterController:
def__init_(self, L=3.):
""'"Store any hyperparameters here."'"'"
self.L = L
def get_action(self, obs: np.ndarray, goal: np.ndarray) np.ndarray:
""'"Your implementation goes here""'"
raise NotImplementedError()
return np.array([linear_speed, angular_speed])
 2 c) Extra Credit: Make your algorithm even better Prof. Everett's

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!