Prev: A7 Next: A9
Back to lecture 15 page: Link

# Warning: this is a draft, please do not start until the homework is announced on Canvas


# A8 Assignment Instruction

📗 Enter your ID (the wisc email ID without @wisc.edu) here: and click (or hit the "Enter" key)
📗 You can also load from your saved file
and click .
📗 If the questions are not generated correctly, try refresh the page using the button at the top left corner.
📗 The official deadline is August 12, late submissions within one week will be accepted without penalty.
📗 The same ID should generate the same set of questions. Your answers are not saved when you close the browser. You could either copy and paste or load your program outputs into the text boxes for individual questions or print all your outputs to a single text file and load it using the button at the bottom of the page.
📗 Please do not refresh the page: your answers will not be saved.
📗 You should implement the algorithms using the mathematical formulas from the slides. You can use packages and libraries to preprocess and read the data and format the outputs. It is not recommended that you use machine learning packages or libraries, but you will not lose points for doing so.
📗 Please report any bugs on Piazza.

# Warning: please enter your ID before you start!



📗 (Introduction) In this programming homework, you will use reinforcement learning planning algorithms to find the optimal path of an autonomous vehicle moving on a grid. You will compare the optimal policy found using value iteration and the myopic policy where the vehicle use the action that maximizes the immediate reward. The state space is \(n\) by \(n\) grid cells where \(n\) = ?, with indices shown in the following diagram. The action set is \(\left\{U, D, L, R\right\}\) (up, down, left, right, in this order, action \(0\) is \(U\)) and the grid wraps around (moving left from cells in column \(0\) will lead to cells in column \(n - 1\); moving up from cells in row \(0\) will lead to cells in row \(n - 1\)).



The reward matrix is drawn in the diagram above (red is negative, blue is positive) and the numerical values are: . Use the discount factor \(\beta\) = ?.

📗 (Part 1) Compute the value function based on a given randomized policy in which the vehicle moves in all four directions with equal probabilities.

📗 (Part 1) Compute the myopic (deterministic) policy in which the vehicle moves to the neighboring cell with the highest reward. Break ties in the order: up, down, left, right (that is, if up and down leads to the same reward, move up).

📗 (Part 2) Compute the optimal policy using value iteration (or Q learning). Report the Q function, the value function, and the policy. Break ties in the order: up, down, left, right.

# Question 1 (Part 1)

📗 [20 points] Enter the value function based on the randomized policy in which the vehicle moves in all four directions with equal probabilities, one number for each state, \(n^{2}\) numbers in one line, rounded to four decimal places.
Hint




# Question 2 (Part 1)

📗 [5 points] Enter the myopic policy in which the vehicle moves to the neighboring cell with the highest reward, one number for each state, \(n^{2}\) integers (\(0, 1, 2, 3\)) in one line.
Hint




# Question 3 (Part 1)

📗 [10 points] Enter the value function based on the myopic policy, one number for each state, \(n^{2}\) numbers in one line, rounded to four decimal places.
Hint




You can click to plot the value function and the policy.


# Question 4 (Part 2)

📗 [2 points] Enter the initial Q function, four numbers for each state (in the order up, down, left, right), \(n^{2}\) lines with \(4\) numbers in one line, rounded to four decimal places. It can be all zeros or all random.
Hint




# Question 5 (Part 2)

📗 [2 points] Enter the Q function after one iteration (each entry is updated once), four numbers for each state (in the order up, down, left, right), \(n^{2}\) lines with \(4\) numbers in one line, rounded to four decimal places.
Hint




# Question 6 (Part 2)

📗 [10 points] Enter the Q function after value iteration converges, four numbers for each state (in the order up, down, left, right), \(n^{2}\) lines with \(4\) numbers in one line, rounded to four decimal places.
Hint




# Question 7 (Part 2)

📗 [10 points] Enter the optimal policy consistent with the Q function from the previous question, one number for each state, \(n^{2}\) integers (\(0, 1, 2, 3\)) in one line.
Hint




# Question 8 (Part 2)

📗 [10 points] Enter the value function based on the optimal policy, one number for each state, \(n^{2}\) numbers in one line, rounded to four decimal places.
Hint




You can click to plot the value function and the policy.


# Question 9 (Part 2)

📗 [2 points] Enter the state that leads to the highest value. Enter one integer between \(0\) and \(n - 1\).
Hint



# Question 10

📗 [1 points] Please confirm that you are going to submit the code on Canvas under Assignment A8, and make sure you give attribution for all blocks of code you did not write yourself (see bottom of the page for details and examples).
I will submit the code on Canvas.

# Question 11

📗 [1 points] Please enter any comments and suggestions including possible mistakes and bugs with the questions and the auto-grading, and materials relevant to solving the question that you think are not covered well during the lectures. If you have no comments, please enter "None": do not leave it blank.
📗 Answer: .

# Grade


 * * * *

 * * * * *

# Submission


📗 Please do not modify the content in the above text field: use the "Grade" button to update.
📗 Warning: grading may take around 10 to 20 seconds. Please be patient and do not click "Grade" multiple times.


📗 You could submit multiple times (but please do not submit too often): only the latest submission will be counted. 
📗 Please also save the text in the above text box to a file using the button or copy and paste it into a file yourself . You can also include the resulting file with your code on Canvas Assignment A8.
📗 You could load your answers from the text (or txt file) in the text box below using the button . The first two lines should be "##a: 8" and "##id: your id", and the format of the remaining lines should be "##1: your answer to question 1" newline "##2: your answer to question 2", etc. Please make sure that your answers are loaded correctly before submitting them.



📗 Saving and loading may take around 10 to 20 seconds. Please be patient and do not click "Load" multiple times.

# Solutions

📗 The sample solution in Java and Python will be posted on Piazza around the deadline. You are allowed to copy and use parts of the solution with attribution. You are allowed to use code from other people (with their permission) and from the Internet, but you must and give attribution at the beginning of the your code. You are allowed to use large language models such as GPT4 to write parts of the code for you, but you have to include the prompts you used in the code submission. For example, you can put the following comments at the beginning of your code:
% Code attribution: (TA's name)'s A8 example solution.
% Code attribution: (student name)'s A8 solution.
% Code attribution: (student name)'s answer on Piazza: (link to Piazza post).
% Code attribution: (person or account name)'s answer on Stack Overflow: (link to page).
% Code attribution: (large language model name e.g. GPT4): (include the prompts you used).
📗 You can get help on understanding the algorithm from any of the office hours; to get help with debugging, please go to the TA's office hours. For times and locations see the Home page. You are encouraged to work with other students, but if you use their code, you must give attribution at the beginning of your code.





Last Updated: July 03, 2024 at 12:23 PM