The Pac-Man Projects

Pac-Man Game

Overview

The Pac-Man projects were developed for CS 188. They apply an array of AI techniques to playing Pac-Man. However, these projects don’t focus on building AI for video games. Instead, they teach foundational AI concepts, such as informed state-space search, probabilistic inference, and reinforcement learning. These concepts underly real-world application areas such as natural language processing, computer vision, and robotics.

We designed these projects with three goals in mind. The projects allow you to visualize the results of the techniques you implement. They also contain code examples and clear directions, but do not force you to wade through undue amounts of scaffolding. Finally, Pac-Man provides a challenging problem environment that demands creative solutions; real-world AI problems are challenging, and Pac-Man is too.

Projects Overview

P0: UNIX/Python Tutorial

This short UNIX/Python tutorial introduces students to the Python programming language and the UNIX environment.

Students implement depth-first, breadth-first, uniform cost, and A* search algorithms. These algorithms are used to solve navigation and traveling salesman problems in the Pacman world.

Classic Pacman is modeled as both an adversarial and a stochastic search problem. Students implement multiagent minimax and expectimax algorithms, as well as designing evaluation functions.

P3: Logic

Pacman uses logical inference to solve planning tasks as well as localization, mapping, and SLAM.

P4: Bayes Nets

Pacman uses probabilistic inference on Bayes Nets to calculate expected returns to find food in the dark.

P5: Machine Learning: Classification

Students implement the perceptron algorithm and neural network models, and apply the models to several tasks including digit classification.

P6: Reinforcement Learning

Students implement Value Function, Q learning, Approximate Q learning, and a Deep Q Network to help pacman and crawler agents learn rational policies.

Technical Notes

The Pac-Man projects are written in pure Python 3.6 and do not depend on any packages external to a standard Python distribution.

Support

This project was supported by the National Science foundation under CAREER grant 0643742. Any opinions, findings and conclusions or recommendations expressed in this material are those of the author(s) and do not necessarily reflect the views of the National Science Foundation (NSF).

Credits

The projects were developed by John DeNero, Dan Klein, Pieter Abbeel, and many others.