Artificial Intelligence – (Solution)

$ 24.99

Description

P01 Pacman Game

16000001 San Zhang, 16000002 Si Li
Contents
1 Search in Pacman 2
1.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
1.2 Welcome to Pacman . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
1.3 Question 1: A* search ( 3 points) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
1.4 Question 2: Corners Problem: Heuristic ( 3 points) . . . . . . . . . . . . . . . . . . . . 3
1.5 Question 3: Eating All The Dots ( 4 points) . . . . . . . . . . . . . . . . . . . . . . . . 5
2 Multi-Agent Pacman 6
2.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
2.2 Multi-Agent Pacman . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
2.3 Question 4: Minimax ( 5 points) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
2.4 Question 5: ฮฑโˆ’ฮฒ Pruning ( 5 points) . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
3 Notes 9
1 Search in Pacman
1.1 Introduction
In this section, your Pacman agent will find paths through his maze world, both to reach a particular location and to collect food efficiently. You will build general search algorithms and apply them to Pacman scenarios.

Files youโ€™ll edit:
search.py Where all of your search algorithms will reside.
searchAgents.py Where all of your search-based agents will reside.

Files you might want to look at:
pacman.py The main file that runs Pacman games. This file describes a Pacman GameState type.
game.py The logic behind how the Pacman world works.
This file describes several supporting types like AgentState, Agent, Direction, and Grid.
util.py Useful data structures for implementing search algorithms.

Supporting files you can ignore:
graphicsDisplay.py Graphics for Pacman
graphicsUtils.py Support for Pacman graphics
textDisplay.py ASCII graphics for Pacman
ghostAgents.py Agents to control ghosts
keyboardAgents.py Keyboard interfaces to control Pacman
layout.py Code for reading layout files and storing their contents
autograder.py Project autograder
testParser.py Parses autograder test and solution files
testClasses.py General autograding test classes
test cases/ Directory containing the test cases for each question
searchTestClasses.py Specific autograding test classes

Files to Edit and Submit: You will fill in portions of search.py and searchAgents.py during the assignment. You should submit these files with your code and comments. Please do not change the other files in this distribution or submit any of our original files other than these files.
Evaluation: Your code will be autograded for technical correctness. Please do not change the names of any provided functions or classes within the code, or you will wreak havoc on the autograder.
1.2 Welcome to Pacman
After downloading the code (search.zip), unzipping it, and changing to the directory, you should be able to play a game of Pacman by typing the following at the command line:
python pacman.py
The simplest agent in searchAgents.py is called the GoWestAgent, which always goes West (a trivial reflex agent). This agent can occasionally win:
python pacman.py –layout testMaze –pacman GoWestAgent But, things get ugly for this agent when turning is required:
python pacman.py –layout tinyMaze –pacman GoWestAgent
If Pacman gets stuck, you can exit the game by typing CTRL-c into your terminal.
Soon, your agent will solve not only tinyMaze, but any maze you want.
Note that pacman.py supports a number of options that can each be expressed in a long way (e.g.,
–layout) or a short way (e.g., -l). You can see the list of all options and their default values via: python pacman.py -h
Also, all of the commands that appear in this project also appear in commands.txt, for easy copying and pasting.
1.3 Question 1: A* search ( 3 points)
Implement A* graph search in the empty function aStarSearch in search.py. A* takes a heuristic function as an argument. Heuristics take two arguments: a state in the search problem (the main argument), and the problem itself (for reference information). The nullHeuristic heuristic function in search.py is a trivial example.
You can test your A* implementation on the original problem of finding a path through a maze to a fixed position using the Manhattan distance heuristic (implemented already as manhattanHeuristic in searchAgents.py).
python pacman.py -l bigMaze -z .5 -p SearchAgent -a fn=astar,heuristic=manhattanHeuristic
1.4 Question 2: Corners Problem: Heuristic ( 3 points)
Note: Make sure to complete Question 1 before working on Question 2, because Question 2 builds upon your answer for Question 1.
Implement a non-trivial, consistent heuristic for the CornersProblem in cornersHeuristic.
python pacman.py -l mediumCorners -p AStarCornersAgent -z 0.5
Note: AStarCornersAgent is a shortcut for
-p SearchAgent -a fn=aStarSearch,prob=CornersProblem,heuristic=cornersHeuristic.
Admissibility vs. Consistency: Remember, heuristics are just functions that take search states and return numbers that estimate the cost to a nearest goal. More effective heuristics will return values closer to the actual goal costs. To be admissible, the heuristic values must be lower bounds on the actual shortest path cost to the nearest goal (and non-negative). To be consistent, it must additionally hold that if an action has cost c, then taking that action can only cause a drop in heuristic of at most c.
Remember that admissibility isnโ€™t enough to guarantee correctness in graph search โ€“ you need the stronger condition of consistency. However, admissible heuristics are usually also consistent, especially if they are derived from problem relaxations. Therefore it is usually easiest to start out by brainstorming admissible heuristics. Once you have an admissible heuristic that works well, you can check whether it is indeed consistent, too. The only way to guarantee consistency is with a proof. However, inconsistency can often be detected by verifying that for each node you expand, its successor nodes are equal or higher in in f-value. Moreover, if UCS and A* ever return paths of different lengths, your heuristic is inconsistent. This stuff is tricky!
Non-Trivial Heuristics: The trivial heuristics are the ones that return zero everywhere (UCS) and the heuristic which computes the true completion cost. The former wonโ€™t save you any time, while the latter will timeout the autograder. You want a heuristic which reduces total compute time, though for this assignment the autograder will only check node counts (aside from enforcing a reasonable time limit).
Grading: Your heuristic must be a non-trivial non-negative consistent heuristic to receive any points. Make sure that your heuristic returns 0 at every goal state and never returns a negative value. Depending on how few nodes your heuristic expands, youโ€™ll be graded:
Number of nodes expanded Grade
more than 2000 0/3
at most 2000 1/3
at most 1600 2/3
at most 1200 3/3
Remember: If your heuristic is inconsistent, you will receive no credit, so be careful!
1.5 Question 3: Eating All The Dots ( 4 points)
Now weโ€™ll solve a hard search problem: eating all the Pacman food in as few steps as possible.
For this, weโ€™ll need a new search problem definition which formalizes the food-clearing problem: FoodSearchProblem in searchAgents.py (implemented for you). A solution is defined to be a path that collects all of the food in the Pacman world. For the present project, solutions do not take into account any ghosts or power pellets; solutions only depend on the placement of walls, regular food and Pacman. (Of course ghosts can ruin the execution of a solution! Weโ€™ll get to that in the next project.) If you have written your general search methods correctly, A* with a null heuristic (equivalent to uniform-cost search) should quickly find an optimal solution to testSearch with no code change on your part (total cost of 7).
python pacman.py -l testSearch -p AStarFoodSearchAgent Note: AStarFoodSearchAgent is a shortcut for -p SearchAgent -a fn=astar,prob=FoodSearchProblem,heuristic=foodHeuristic.
Note: Make sure to complete Question 1 before working on Question 3, because Question 3 builds upon your answer for Question 1.
Fill in foodHeuristic in searchAgents.py with a consistent heuristic for the FoodSearchProblem. Try your agent on the trickySearch board:
python pacman.py -l trickySearch -p AStarFoodSearchAgent
Any non-trivial non-negative consistent heuristic will receive 1/4. Make sure that your heuristic returns 0 at every goal state and never returns a negative value. Depending on how few nodes your heuristic expands, youโ€™ll get additional points:
Number of nodes expanded Grade
more than 15000 1/4
at most 15000 2/4
at most 12000 3/4
at most 9000 4/4 (full credit; medium)
at most 7000 5/4 (optional extra credit; hard)
2 Multi-Agent Pacman
2.1 Introduction
In this section, you will design agents for the classic version of Pacman, including ghosts. Along the way, you will implement both minimax and ฮฑโˆ’ฮฒ pruning. The code for this section contains the
folowing files, available in multiagent.zip.

Files youโ€™ll edit:
multiAgents.py Where all of your multi-agent search agents will reside.
pacman.py The main file that runs Pacman games.
This file also describes a Pacman GameState type, which you will use extensively in this project
game.py The logic behind how the Pacman world works.
This file describes several supporting types like
AgentState, Agent, Direction, and Grid.
util.py Useful data structures for implementing search algorithms.

Files you can ignore:
graphicsDisplay.py Graphics for Pacman
graphicsUtils.py Support for Pacman graphics
textDisplay.py ASCII graphics for Pacman
ghostAgents.py Agents to control ghosts
keyboardAgents.py Keyboard interfaces to control Pacman
layout.py Code for reading layout files and storing their contents
autograder.py Project autograder
testParser.py Parses autograder test and solution files
testClasses.py General autograding test classes
test cases/ Directory containing the test cases for each question
multiagentTestClasses.py Specific autograding test classes

Files to Edit and Submit: You will fill in portions of multiAgents.py during the assignment. You should submit this file with your code and comments. Please do not change the other files in this distribution or submit any of our original files other than this file.
Evaluation: Your code will be autograded for technical correctness. Please do not change the names of any provided functions or classes within the code, or you will wreak havoc on the autograder.
2.2 Multi-Agent Pacman
First, play a game of classic Pacman:
python pacman.py
Now, run the provided ReflexAgent in multiAgents.py:
python pacman.py -p ReflexAgent
Note that it plays quite poorly even on simple layouts: python pacman.py -p ReflexAgent -l testClassic
Inspect its code (in multiAgents.py) and make sure you understand what itโ€™s doing.
2.3 Question 4: Minimax ( 5 points)
Now you will write an adversarial search agent in the provided MinimaxAgent class stub in multiAgents.py. Your minimax agent should work with any number of ghosts, so youโ€™ll have to write an algorithm that is slightly more general than what youโ€™ve previously seen in lecture. In particular, your minimax tree will have multiple min layers (one for each ghost) for every max layer.
Your code should also expand the game tree to an arbitrary depth. Score the leaves of your minimax tree with the supplied self.evaluationFunction, which defaults to scoreEvaluationFunction. MinimaxAgent extends MultiAgentSearchAgent, which gives access to self.depth and self.evaluationFunction. Make sure your minimax code makes reference to these two variables where appropriate as these variables are populated in response to command line options.
Important: A single search ply is considered to be one Pacman move and all the ghostsโ€™ responses, so depth 2 search will involve Pacman and each ghost moving two times.
Grading: We will be checking your code to determine whether it explores the correct number of game states. This is the only way reliable way to detect some very subtle bugs in implementations of minimax. As a result, the autograder will be very picky about how many times you call GameState.generateSuccessor. If you call it any more or less than necessary, the autograder will complain.
To test and debug your code, run python autograder.py -q q2
This will show what your algorithm does on a number of small trees, as well as a pacman game.
To run it without graphics, use: python autograder.py -q q2 –no-graphics
Hints and Observations
โ€ข The correct implementation of minimax will lead to Pacman losing the game in some tests.
This is not a problem: as it is correct behaviour, it will pass the tests.
โ€ข The evaluation function for the pacman test in this part is already written (self.evaluationFunction). You shouldnโ€™t change this function, but recognize that now weโ€™re evaluating *states* rather than actions, as we were for the reflex agent. Look-ahead agents evaluate future states whereas reflex agents evaluate actions from the current state.
โ€ข The minimax values of the initial state in the minimaxClassic layout are 9, 8, 7, -492 for depths 1, 2, 3 and 4 respectively. Note that your minimax agent will often win (665/1000 games for us) despite the dire prediction of depth 4 minimax.
python pacman.py -p MinimaxAgent -l minimaxClassic -a depth=4
โ€ข Pacman is always agent 0, and the agents move in order of increasing agent index.
โ€ข All states in minimax should be GameStates, either passed in to getAction or generated via GameState.generateSuccessor. In this project, you will not be abstracting to simplified states.
โ€ข On larger boards such as openClassic and mediumClassic (the default), youโ€™ll find Pacman to be good at not dying, but quite bad at winning. Heโ€™ll often thrash around without making progress. He might even thrash around right next to a dot without eating it because he doesnโ€™t know where heโ€™d go after eating that dot. Donโ€™t worry if you see this behavior, question 5 will clean up all of these issues.
โ€ข When Pacman believes that his death is unavoidable, he will try to end the game as soon as possible because of the constant penalty for living. Sometimes, this is the wrong thing to do with random ghosts, but minimax agents always assume the worst: python pacman.py -p MinimaxAgent -l trappedClassic -a depth=3
2.4 Question 5: ฮฑโˆ’ฮฒ Pruning ( 5 points)
Make a new agent that uses ฮฑโˆ’ฮฒ pruning to more efficiently explore the minimax tree, in AlphaBetaAgent. Again, your algorithm will be slightly more general than the pseudocode from lecture, so part of the challenge is to extend the ฮฑโˆ’ฮฒ pruning logic appropriately to multiple minimizer agents. You should see a speed-up (perhaps depth 3 alpha-beta will run as fast as depth 2 minimax).
Ideally, depth 3 on smallClassic should run in just a few seconds per move or faster.
python pacman.py -p AlphaBetaAgent -a depth=3 -l smallClassic
The AlphaBetaAgent minimax values should be identical to the MinimaxAgent minimax values, although the actions it selects can vary because of different tie-breaking behavior. Again, the minimax values of the initial state in the minimaxClassic layout are 9, 8, 7 and -492 for depths 1, 2, 3 and 4
respectively.
Grading: Because we check your code to determine whether it explores the correct number of states, it is important that you perform alpha-beta pruning without reordering children. In other words, successor states should always be processed in the order returned by GameState.getLegalActions.
Again, do not call GameState.generateSuccessor more than necessary.
You must not prune on equality in order to match the set of states explored by our autograder. (Indeed, alternatively, but incompatible with our autograder, would be to also allow for pruning on equality and invoke alpha-beta once on each child of the root node, but this will not match the
autograder.)
The pseudo-code below represents the algorithm you should implement for this question.

3 Notes
1. The related files written in Python2 can be found in search.zip and multiagent.zip. You can refer to https://www.liaoxuefeng.com/wiki/001374738125095c955c1e6d8bb493182103fac9270762a000 if you are a noob of Python.
3. Last but not least, you are not alone! If you find yourself stuck on something, contact the TAfor help.

Reviews

There are no reviews yet.

Be the first to review “Artificial Intelligence – (Solution)”

Your email address will not be published. Required fields are marked *