1. Homepage
  2. Programming
  3. COMP90054 AI Planning for Autonomy - Assignment 1 - Search

COMP90054 AI Planning for Autonomy - Assignment 1 - Search

Engage in a Conversation
University of MelbourneCOMP90054AI Planning for AutonomyPythonPacman

You must read fully and carefully the assignment specification and instructions detailed in this file. You are NOT to modify this file in any way.

  • Course: COMP90054 AI Planning for Autonomy @ Semester 2, 2022
  • Instructor: Dr. Nir Lipovetzky and Prof. Adrian Pearce
  • Deadline: Friday 19th August, 2022 @ 11:59pm (end of Week 4)
  • Course Weight: 10%
  • Assignment type:: Individual
  • ILOs covered: 1, 2, and 3
  • Submission method: via git tagging (see Submission Instructions below for instructions)

The aim of this assignment is to get you acquainted with AI search techniques and how to derive heuristics in Pacman, as well as to understand how to model a problem with python. CourseNana.COM

Your task

You must build and submit your solution using the sample code we provide you in this repository, which is different from the original UC Berlkley code base. If you want to provide a report with your submission (e.g., reflections, acknowledgments, etc.), please do so in file REPORT.md. CourseNana.COM

  • Please remember to complete the STUDENT.md file with your individual submission details (so we can identify you when it comes time to submit). CourseNana.COM

  • You should only work and modify files search.py and searchAgents.py in doing your solution. Do not change the other Python files in this distribution. CourseNana.COM

  • Your code must run error-free on Python 3.6. Staff will not debug/fix any code. Using a different version will risk your program not running with the Pacman infrastructure or autograder and may risk losing (all) marks. CourseNana.COM

  • Your code must not have any personal information, like your student number or your name. That info should go in the STUDENT.md file, as per instructions above. If you use an IDE that inserts your name, student number, or username, you should disable that. CourseNana.COM

  • Assignment 1 FAQ is available to answer common questions you might have about Assignment 1 on ED CourseNana.COM

  • Getting started on GitHub - the video below explains how to clone, git add, commit and push while developing your solution for this assignment: CourseNana.COM

Practice Task (0 marks)

To familiarize yourself with basic search algorithms and the Pacman environment, it is a good start to implement the tasks at https://inst.eecs.berkeley.edu/~cs188/fa18/project1.html, especially the first four tasks; however, there is no requirement to do so. CourseNana.COM

You should code your implementations only at the locations in the template code indicated by ***YOUR CODE HERE*** in files search.py and searchAgents.py, please do not change code at any other locations or in any other files. CourseNana.COM

Part 1 (3 marks)

Implement the Enforced Hill Climbing algorithm discussed in lectures, using Manhattan Distance as the heuristic, by inserting your code into the template indicated by comment ***YOUR CODE HERE FOR TASK 1***, you can view the location at this link: search.py#L151. CourseNana.COM

Note that you don't have to implement Manhattan Distance, as this has already been implemented for you in the template code, although you will need to call the heuristic from inside your search. You should be able to test the algorithm using the following command: CourseNana.COM

python pacman.py -l mediumMaze -p SearchAgent -a fn=ehc,heuristic=manhattanHeuristic

Other layouts are available in the layouts directory, and you can easily create you own. The autograder will try to validate your solution by looking for the exact output match. CourseNana.COM

Part 2 (3 marks)

In this part we will prove that you have all the ingredients to pick up many new search algorithms, tapping to knowledge you acquired in the lectures and tutorials. CourseNana.COM

Bidirectional A* Enhanced (BAE*) is a search algorithm that searches in both directions, from the intial state to the goal state, and from the goal state towards the initial state, and keeps track of solutions found when the two directions meet. In this assignment, for simplicity, we assume there is only one goal state, hence, progression and regression both search in the same state space, one uses the transition function forward, and the other backward. This algorithm has not been introduced in the lectures but it relies on ingredients which you already know: CourseNana.COM

  • A*,
  • the evaluation function used to guide the expansion order in A*, and
  • the definition of the transition function to generate a graph implicitly while searching.

BAE* is similar to A*, but: CourseNana.COM

  1. It has two open lists (lines 1-2, Alg. 1) to alternate (line 22) expanding nodes (line 9) from the forward and backward lists.
  2. While searcing, it keeps a lower bound and upper bound to know when to stop the search, i.e. when (line 15), the incumbent solution has been proved to be optimal. The lower bound is updated each time a node is selected for expansion (lines 5-9, Alg. 1), keeping track of the average value in both directions (line 8). Note that if the heuristic is admissible, then the minimum value in the open lists represent a lower bound on the optimal solution cost.
  3. The upperbound is only updated if the current node exists in the open list of the opossite direction , which means that the two directions meet through node , and the cost of the path form the initial state to + the cost of the path from to the initial state of the opposite direction is smaller than the best solution known so far, i.e. (line 11). If that's the case, keep the solution and update the upperbound (lines 12-13).
  4. The priority used to order nodes in the openlists is slightly different than A*. Given that every time a node is chosen for expansion we know that its value represents the optimal cost to node in direction , then we can characterize and correct the innacuracy of the heuristic used in the opposite direction as . This value is added to and used to set the priority of each generated node (lines 18-20).

CourseNana.COM

This algorithm is taken from the paper presented at the Symposium on Combinatorial Search, on the 22nd of July, 2022. Bidirectional search is currently a hot research topic given recent theoretical results and simple practical algorithms such as BAE*. The paper that introduced these results received a prestigious best paper award in a top conference in AI. This context alone should motivate you: you are literally implementing a cutting-edge search algorithm. CourseNana.COM

Tips for your implementation: CourseNana.COM

  • Checking membership of a node in the opposite open (line 11), can be a computationally expensive operation (worst case linear in the size of the open, which in turn is exponential as the depth of the search increases). This is specially relevant as this line is executed for every expanded state. Think back about your Data Structures course, and use an auxiliary data structure to implement the membership test efficiently for this assignment. Otherwise, BAE* will be way slower than A*, even if it expands less nodes.
  • To undestand what the search is doing, make sure that you understand the successor generators in both directions. In Backward search, given an action and state , you need to generate the state from which the application of resulted in state .
  • The function getBackwardsSuccessors has already reverses the action name for backwards search.
  • The function getGoalStates returns a list of all possible goal states.

Implement the BAE* algorithm discussed above by inserting your code into the template indicated by comment ***YOUR CODE HERE FOR TASK 2***, you can view the location at this link: search.py#L169. You should be able to test the algorithm using the following command: CourseNana.COM

python pacman.py -l mediumMaze -p BidirectionalSearchAgent -a fn=bae,heuristic=manhattanHeuristic,backwardsHeuristic=backwardsManhattanHeuristic

Other layouts are available in the layouts directory, and you can easily create your own. The autograder will seek for exact match of the solution and the number of node expansions. The successors list are expected to be visited in the original order given by the API. If your node expansion number is incorrect, please try to reverse it. An example is given as follows: CourseNana.COM

succs = problem.getSuccessors(state)
succs.reverse()


Part 3 (4 marks)

This part involves solving a more complicated problem. You will be able to model the problem, using the BAE* algorithm from part 2 and design a heuristic function that can guide the search algorithm. CourseNana.COM

Just like in Q7 of the Berkerley Pacman framework, you will be required to create an agent that eats all the food (dots) in a maze. CourseNana.COM

In order to implement this, you should create a new problem called BidirectionalFoodSearchProblem. Some of the variables are listed in the comments and the initialization. You will need to: CourseNana.COM

  1. Design a way to represent the states of the problem.
  2. Return the initial state through getStartState function.
  3. Have getGoalStates to return a list of all possible goal states.
  4. Implement your transition function in getSuccessors, which should return a list of tuples that contains (next state, action, cost).
  5. Implement getBackwardsSuccessors function to search in backwards.
  6. Implement two suitable heuristics, bidirectionalCapsuleProblemHeuristic and bidirectionalCapsuleProblemBackwardsHeuristic.

Make sure your heuristic is admissible and consistent, as we don't check for reopening, and the optimality guarantees would be lost because the assumption on the optimality of would be wrong when errors are computed. CourseNana.COM

You may choose to implement other helper classes/functions. CourseNana.COM

You should insert your code into the template indicated by the comments ***YOUR CODE HERE FOR TASK 3***, you can view the locations after Line searchAgents.py#L781. CourseNana.COM

Tips for your implementation: CourseNana.COM

  • It is important to make sure the transition from getBackwardsSuccessors is the exact reverse of getSuccessors.
  • As there is not a single way to model this problem, we would not be checking node expansion numbers. However, please make sure that your code runtime is not too long. Our marking scripts will allow a time budget for each test case as 3 times the runtime of our staff's code with the blind heuristic that assigns each state a value of 0.
  • Although a heuristic function is not compulsory, however, a good heuristic function is going to improve your code's running time. We would recommend to try different heuristics to compare the running time and node expansion numbers. Start with the easiest one.
  • Running time for staff's code with zero heuristic on the mediumCorners is 664 seconds and on the smallCorners is 2 seconds. Note that we could test your submission on different layouts, however this will give you a good guide for comparing the expected performance of your solution.

You should be able to test your program by running the following commands (in one line): CourseNana.COM

python pacman.py -l smallCorners -p BidirectionalFoodSearchAgent -a fn=bae,heuristic=bidirectionalFoodProblemHeuristic,backwardsHeuristic=bidirectionalFoodProblemBackwardsHeuristic

The autograder seeks an optimal solution length within the time budget for each test cases. In addition, please make sure your heuristic is admissible and consistent, otherwise you might get 0 marks for this part due to not finding the optimal plan. CourseNana.COM

You will see in first person the balance between 1) how informed you make your heuristic (it should expand less nodes in general), and 2) the overall runtime. As you can see, sometimes it may be preferable to have a cheaper less informed heuristic, even if you end up expanding more nodes. CourseNana.COM

Marking criteria

Marks are allocated according to the task breakdown listed above, based on how many of our tests the algorithms pass. No marks will be given for code formatting, etc. Observe that while the autograder is a useful indication of your performance, it may not represent the ultimate mark. We reserve the right to run more tests, inspect your code and repo manually, and arrange for a face-to-face meeting for a discussion and demo of your solution if needed. You must follow good SE practices, including good use of git during your development such as: CourseNana.COM

  • Commit early, commit often: single or few commits with all the solution or big chucks of it, is not good practice.
  • Use meaningful commit messages: as a comment in your code, the message should clearly summarize what the commit is about. Messages like "fix", "work", "commit", "changes" are poor and do not help us understand what was done.
  • Use atomic commits: avoid commits doing many things; let alone one commit solving many questions of the project. Each commit should be about one (little but interesting) thing.

Checking your submission

Run the following command to run sanity checks using our test files: CourseNana.COM

python ./autograder.py --test-directory=test_cases_assignment1

It is important that you are able to run the autograder and have these tests pass, otherwise, our marking scripts will NOT work on your submission. CourseNana.COM

NOTE: You should not change any files other than search.py and searchAgents.py. You should not import any additional libraries into your code. This risks being incompatible with our marking scripts. CourseNana.COM

Submission Instructions

This repository serves as a start code for you to carry out your solution for Project 1 - Search from the set of UC Pacman Projects and the marked questions. CourseNana.COM

To submit your assignment you must complete the following four steps: CourseNana.COM

  1. Complete the STUDENT.md file with your details of the submission.
  2. Check that your solution runs on Python 3.6 and that your source code does not include personal information, like your student number or name.
  3. Tag the commit version you want to be graded with tag submission.
    • The commit and tagging should be dated before the deadline.
    • Note that a tag is NOT a branch, so do not just create a branch called "submission" as that will not amount to tagging.
    • Note that a tag is NOT a commit message, so please make sure you can find it in your repo page -> tag
    • It is case-sensitive.
  4. Fill the Assignment 1 Certification Form.
    • Non-certified submissions will not be marked and will attract zero marks.

From this repository, we will copy only the files: search.py and searchAgents.py. Please do not change any other file as part of your solution, or it will not run. Breaking these instructions breaks our marking scripts, delays marks being returned, and more importantly, gives us a headache. Submissions not compatible with the instructions in this document will attract zero marks and do not warrant a re-submission. Staff will not debug or fix your submission. CourseNana.COM

Please view the following to learn how to Tag your commit version you want to be graded: CourseNana.COM


CourseNana.COM

Get in Touch with Our Experts

WeChat WeChat
Whatsapp WhatsApp
University of Melbourne代写,COMP90054代写,AI Planning for Autonomy代写,Python代写,Pacman代写,University of Melbourne代编,COMP90054代编,AI Planning for Autonomy代编,Python代编,Pacman代编,University of Melbourne代考,COMP90054代考,AI Planning for Autonomy代考,Python代考,Pacman代考,University of Melbournehelp,COMP90054help,AI Planning for Autonomyhelp,Pythonhelp,Pacmanhelp,University of Melbourne作业代写,COMP90054作业代写,AI Planning for Autonomy作业代写,Python作业代写,Pacman作业代写,University of Melbourne编程代写,COMP90054编程代写,AI Planning for Autonomy编程代写,Python编程代写,Pacman编程代写,University of Melbourneprogramming help,COMP90054programming help,AI Planning for Autonomyprogramming help,Pythonprogramming help,Pacmanprogramming help,University of Melbourneassignment help,COMP90054assignment help,AI Planning for Autonomyassignment help,Pythonassignment help,Pacmanassignment help,University of Melbournesolution,COMP90054solution,AI Planning for Autonomysolution,Pythonsolution,Pacmansolution,