/AI-curriculum

Overview and facilitation details for an AI curriculum for high school students.

Primary LanguagePython

AI-curriculum

Introduction

This repo contains the curriculum as it was taught for Applied Math and Artificial Intelligence '17-'18. You can see example projects in the class gallery here.

This class was offered as a project based class for high school seniors with and without a background in calculus. I have structured the materials here as a resource for other educators, however it may be of interest to students of all stripes. Normally, the class met twice per week for 45 minutes and offered 45 minutes of homework per class meeting. I ordered the projects based on how I taught them, however, you will notice it is an imperfect progression. I have included some facilitation notes knowing YMMV.

Use this README as an overview for the various projects offered. Where appropriate, further resources are available in the sub-directories of this repo.

Table of Contents

Getting Started with Python

The students had not learned Python in a prior class, however some were familiar with it on their own. Most students had taken two years (2x/week) of classes taught in Java. I wanted them to get comfortable learning on their own, so in class I did the following:

  • Most of environment set up (Python 3.5.x and Sublime Text)
  • Demo of how to save and run a Python file (and talked about the difference between Python as an interpreted language and Java as a compiled language)
  • Overview of command line

Then, their homework for the next two nights (an hour and a half) was to work their way through this list:

  1. Contribute to this class-wide doc to get their feet wet in beginning thinking through how the concepts behind programming languages are similar, even if the syntax looks different.
  2. Read and annotate World.py and Learner.py, researching and taking notes on syntax they were unfamiliar with. These were the files we were using first, so I wanted them to feel comfortable reading unfamiliar code as well as get comfortable prioritizing the most pressing things they don't know. Seeing how much you don't know and proceeding anyway is one of the biggest skills I wanted to develop in these students.
  3. Practice writing Python snippets using a site like Coding Bat (which focuses on syntax) or Project Euler (which focuses on problem solving).
  4. Translate an existing Java program into Python. It is important students who are new to Python choose a project without major dependencies. Students who felt more comfortable in Python started looking into Python libraries.
  5. Modify World.py and Learner.py as you choose. Suggestions (in loose increasing order of Python familiarity): change the color of the target and death pit, change the score penalty per step, make the program run more slowly, increase the size of the board, increase the number of squares on the board, add a new obstacle, change the starting point/target/death pit, modify the program to find the optimal path in fewer runs...
  6. Practice using the command line to navigate between directories.

You will notice that doing all of these would take more than an hour and a half - this is intentional. All of these are valuable practice, so students choose the portions most interesting to them and bring the lessons into class to share with other students.

After the text classification project, several students shared that they would have liked to spend more time on this part. I wanted to get them hooked on doing something cool to "trick" them into learning on their own, but they were already motivated enough that we could have dedicated more time to this together. In particular, the students would have been able to move more quickly with more comfort on the command line. Next time, I might make a Capture the Flag type game where students need to navigate between directories to get clues and find a result in class.

Q-Learning for Pathfinding

Q-Learning is a reinforcement learning technique. For this project, we used this program from Siraj Raval's video on Q-Learning in video games. The students got more comfortable with Python by reading, annotating, then modifying these programs. For facilitator reference, in one 45 minute class, we did a close reading of Learner.py together through line 25. For homework, they continued the close reading and then in the next class we teased out how Q-Learning works.

Introduction to Neural Networks

I used MarI/O as a hook for approaching neural networks, as it offers great visuals along with a concise explanation of what makes this technique interesting. For homework, the students read through Trask's tutorial to start thinking about creating their own basic neural networks. In the future, I will move to using interactive Jupyter notebooks on Google Colab; here is an example based on the tutorial above. Colab makes it easy to start playing with the code as well as see values at different steps, which is helpful for understanding the relationships between matrices. What follows is how I taught it in 2017:

In class together, we drew out a basic neural network and talked through calculating the dot product. Then, the students worked on making their own network for determining XOR based on the tutorial. In class, we resolved Python issues, as this was their first time writing Python, as well as talked about the sigmoid function. This is one resource that gave students some clarity around the sigmoid function.

For building their XOR networks, I gave them code for a working example as well as structure for writing their own - you can find this code here. This gave them the confidence to dive into the blank part of code and gave them an easy resource for debugging on their own. This seemed to be the right amount of support to allow them to focus on the concepts while developing their Python skills.

Additionally, this tutorial used numpy, so the students installed pip and started getting comfortable installing packages on their own computers. Here are the instructions I gave them.

Text Classification

Text classification was the theme of the students' first major group project. They were challenged to try to answer a central question using some set of text. The project rubric is available here.

We started by looking at the bag of words technique together. The students worked through this tutorial over two homeworks and two class periods. Then, they moved into this Kaggle competition looking at IMDB reviews and the associated ratings. This Kaggle competition was great as a resource because it built directly off of the tiny bag of words tutorial and laid out some challenges associated with using this technique for this application. There are numerous tutorials directly connected to the IMDB Kaggle competition and ones that plugged directly into iPython notebooks were most helpful.

As it was the first group project, we spent some time looking at collaboration tools. I gave them a guide for using GitHub and an overview of some existing systems. At the start of each class, we had a stand up meeting where each group gave a concise update on their progress and had the opportunity to formally ask for help. The students stayed somewhat involved with other students' projects, so the formal ask for help option was less needed. I gave them instructions for setting up GitHub but spent the next class going over how it works; next time I will just explain how it works for the sake of time.

Handwriting Recognition - MNIST

The recognizing digits in the MNIST handwritten dataset is a common benchmark project for beginners in machine learning. There are lots of existing materials describing different approaches.

In this project, I wanted students to get comfortable learning new material on their own and practice working with image-based data. More concretely, I wanted students to be able to both understand and apply CNNs.

I directed them to the Digit Recognizer Kaggle competition and had students do a survey of existing techniques, discuss the techniques in class, and then dive into one of their choosing. Next time, I would point them to this Kaggle kernel, which provides a clear introduction to both the concepts and using keras for the implementation. The students also found this video helpful.

This project occupied the odd space between Thanksgiving and winter break -- I may consider moving the style transfer project into this gap (see style transfer notes below).

OpenAI Gym Video Game Agents

For the student's semester exam project, they were challenged to explore AI programs to complete challenges or compete in the OpenAI Gym. You can find the student prompt here.

To introduce the project, we explore a solver for the "cartpole" environment. This introduced the idea of interacting with a simulated environment and gave them scaffolding code to build off of. I gave them a random player that tries random parameters and keeps track of the most successful set as well a random player that scales linearly. In class, we looked at graphs and had students visualize the success score vs parameter choices in 2, 3, and 4 dimensions. This was a helpful way to see the role of gradient descent interacting with a cost function. From there, they delved into their projects for the next ~3 weeks.

Style Transfer

In our exploration of style transfer, students practiced their project design skills by choosing projects that were personally interesting while remaining feasible. These skills were put to the test in final projects.

Students started by reading online on their own to develop their own sense of the current conversation. They brought in examples that were interesting to them, including the use of an autoencoder to change the season in an image.

Next, I had them read this blog post, which does a great job giving an overview of the separation between content and style. They also read two papers, "A Neural Algorithm of Artistic Style" (Gatys, et al) and "Instance Normalization: The Missing Ingredient for Fast Stylization" (Ulyanov, et al). The first is more important for understanding the strategy, and the second is skimmable for students who do not have the math background, as the Ulyanov paper gives a strategy for speeding up the algorithm described in Gatys.

Once they had an understanding of the approach, they used Logan Engstrom's Fast Style Transfer repo to apply a style to their own image. This practiced the skill of reading through documentation - several students missed the section on where to download the style models (checkpoint files).

At this point, we also practiced using ssh in class in order to connect remotely to the class machine that has a good GPU. Making this available earlier in the course would have been helpful, however the timing was determined by a removal of a network block. Training a new style without GPU access pushes the limit of being prohibitively computationally intensive.

Students worked in groups for their project on style transfer. They were given this open ended prompt with example ideas to start thinking about the varied applications of style transfer, particularly as it is used at the intersection with another or multiple industries.

Facilitation notes: This project involved more reading and using existing code than writing new code than I (and some of the students) would like. It also takes a long time to process images. I considered cutting it for next year, but the students really appreciated the visual aspect of it. I may consider moving this project earlier in the year. The material itself may be too challenging to introduce earlier, but using existing trained style models would allow students to practice skills around environment set up and documentation reading that may give a pay off on later projects.

Final Projects

For their final projects, students were welcome to work on whatever they want! The prompt and grading rubric for this project are available here.

They have known this project is open throughout the course, but to jumpstart some creative thinking I ran this brainstorm exercise in class to get new dialogue going. Students have since had one homework and one class period to talk to their peers and me and submit a short proposal. I use Google Forms for collecting info like this. I emailed them feedback about their proposal, including talking through narrowing or broadening the scope of a project, suggestions for where to find data sets, celebrating unique approaches, or pushing students to think through a potential challenge.

Appendix A - Escape the Room

This "escape the room" style activity checked for understanding for concepts of the first few explorations. The overhead to create it was more than standard but it is easily modified to be reusable and the excitement around collaborative problem-solving was incredible.

You can find the live version of the activity here and a complete write up here.

Appendix B - Neural Network Email

I used an example email with a proposed design for a college acceptance text classifier using neural networks to check for understanding on neural network fundamentals. We also discussed the ethics behind building such a program. It worked well as a classroom discussion, however if I were concerned about getting a more granular understanding of individual student mastery, I would have assigned annotating this email as a homework assignment.

You can find the example email here.

Appendix C - Brainstorm Materials

We did a mad-libs style brainstorming exercise to start thinking creatively about final projects. You can find the exercise here.

Appendix D - GitHub Set Up Instructions

I gave the students these instructions to help them get set up on GitHub.