Skip to content

Commit

Permalink
First version of project notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
mcleonard committed Feb 6, 2018
1 parent 077b1a4 commit 89eeff5
Show file tree
Hide file tree
Showing 3 changed files with 338 additions and 0 deletions.
338 changes: 338 additions & 0 deletions Image Classifier Project.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,338 @@
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Developing an AI application\n",
"\n",
"Going forward, AI algorithms will be incorporated into more and more everyday applications. For example, you might want to include an image classifier in a smart phone app. To do this, you'd use a deep learning model trained on hundreds of thousands of images as part of the overall application architecture. A large part of software development in the future will be using these types of models as common parts of applications. \n",
"\n",
"In this project, you'll train an image classifier to recognize different species of flowers. You can imagine using something like this in a phone app that tells you the name of the flower your camera is looking at. In practice you'd train this classifier, then export it for use in your application. We'll be using [this dataset](http://www.robots.ox.ac.uk/~vgg/data/flowers/102/index.html) of 102 flower categories, you can see a few examples below. \n",
"\n",
"<img src='assets/Flowers.png' width=500px>\n",
"\n",
"The project is broken down into multiple steps:\n",
"\n",
"* Load and preprocess the image dataset\n",
"* Train the image classifier on your dataset\n",
"* Use the trained classifier to predict image content\n",
"\n",
"We'll lead you through each part which you'll implement in Python.\n",
"\n",
"When you've completed this project, you'll have an application that can be trained on any set of labeled images. Here your network will be learning about flowers and end up as a command line application. But, what you do with your new skills depends on your imagination and effort in building a dataset. For example, imagine an app where you take a picture of a car, it tells you what the make and model is, then looks up information about it. Go build your own dataset and make something new.\n",
"\n",
"First up is importing the packages you'll need. It's good practice to keep all the imports at the beginning of your code. As you work through this notebook and find you need to import a package, make sure to add the import up here."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# Imports here"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Load the data\n",
"\n",
"Here you'll use `torchvision` to load the data ([documentation](http://pytorch.org/docs/master/torchvision/transforms.html#)). The data should be included alongside this notebook, otherwise you can [download it here](https://s3.amazonaws.com/content.udacity-data.com/nd089/flower_data.tar.gz). The dataset is split into three parts, training, validation, and testing. For the training, you'll want to apply transformations such as random scaling, cropping, and flipping. This will help the network generalize leading to better performance. You'll also need to make sure the input data is resized to 224x224 pixels as required by the pre-trained networks.\n",
"\n",
"The validation and testing sets are used to measure the model's performance on data it hasn't seen yet. For this you don't want any scaling or rotation transformations, but you'll need to resize then crop the images to the appropriate size.\n",
"\n",
"For all three sets you'll need to normalize the means and standard deviations of the images to what the network expects. For the means, it's `[0.485, 0.456, 0.406]` and for the standard deviations `[0.229, 0.224, 0.225]`. This converts the values of each color channel to be between -1 and 1 instead of 0 and 1."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"train_dir = 'train'\n",
"valid_dir = 'valid'\n",
"test_dir = 'test'"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# TODO: Define your transforms for the training, validation, and testing sets\n",
"data_transforms = \n",
"\n",
"# TODO: Load the datasets with ImageFolder\n",
"image_datasets = \n",
"\n",
"# TODO: Using the image datasets and the trainforms, define the dataloaders\n",
"dataloaders = "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Label mapping\n",
"\n",
"You'll also need to load in a mapping from label to category name. You can find this in the file `label_map.json`. It's a JSON object which you can read in with the [`json` module](https://docs.python.org/2/library/json.html). This will give you a dictionary mapping the integer coded labels to the actual names of the flowers."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"import json\n",
"\n",
"with open('label_map.json', 'r') as f:\n",
" label_map = json.load(f)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Building and training the classifier\n",
"\n",
"Now that the data is ready, it's time to build and train the classifier. As usual, you should use one of the pretrained models from `torchvision.models` to get the image features. Build and train a new feed-forward classifier using those features.\n",
"\n",
"We're going to leave this part up to you. If you want to talk through it with someone, chat with your fellow students! You can also ask questions on the forums or join the instructors in office hours.\n",
"\n",
"Refer to the rubric (TODO: Link to Rubric) for guidance on successfully completing this section. Things you'll need to do:\n",
"\n",
"* Load a [pre-trained network](http://pytorch.org/docs/master/torchvision/models.html) (If you need a starting point, the VGG networks work great and are straightforward to use)\n",
"* Define a new, untrained feed-forward network as a classifier, using ReLU activations and dropout\n",
"* Train the classifier layers using backpropagation using the pre-trained network to get the features\n",
"* Track the loss and accuracy on the validation set to determine the best hyperparameters\n",
"\n",
"We've left a cell open for you below, but use as many as you need. Our advice is to break the problem up into smaller parts you can run separately. Check that each part is doing what you expect, then move on to the next. You'll likely find that as you work through each part, you'll need to go back and modify your previous code. This is totally normal!\n",
"\n",
"When training make sure you're updating only the weights of the feed-forward network. You should be able to get the validation accuracy above 70% if you build everything right. Make sure to try different hyperparameters (learning rate, units in the classifier, epochs, etc) to find the best model. Save those hyperparameters to use as default values in the next part of the project."
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"# TODO: Build and train your network"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Testing your network\n",
"\n",
"It's good practice to test your trained network on test data, images the network has never seen either in training or validation. This will give you a good estimate for the model's performance on completely new images. Run the test images through the network and measure the accuracy, the same way you did validation. You should be able to reach around 70% accuracy on the test set if the model has been trained well."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# TODO: Do validation on the test set"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Save the checkpoint\n",
"\n",
"Now that your network is trained, save the model so you can load it later for making predictions. You probably want to save other things such as the mapping of classes to indices which you get from one of the image datasets: `image_datasets['train'].class_to_idx`. You can attach this to the model as an attribute which makes inference easier later on.\n",
"\n",
"```model.class_to_idx = image_datasets['train'].class_to_idx```\n",
"\n",
"Remember that you'll want to completely rebuild the model later so you can use it for inference. Make sure to include any information you need in the checkpoint. If you want to load the model and keep training, you'll want to save the number of epochs as well as the optimizer state, `optimizer.state_dict`. You'll likely want to use this trained model in the next part of the project, so best to save it now."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# TODO: Save the checkpoint "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Loading the checkpoint\n",
"\n",
"At this point it's good to write a function that can load a checkpoint and rebuild the model. That way you can come back to this project and keep working on it without having to retrain the network."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# TODO: Write a function that loads a checkpoint and rebuilds the model"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Inference for classification\n",
"\n",
"Now you'll write a function to use a trained network for inference. That is, you'll pass an image into the network and predict the class of the flower in the image. Write a function called `predict` that takes an image and a model, then returns the top $K$ most likely classes along with the probabilities. It should look like \n",
"\n",
"```python\n",
"probs, classes = predict(image_path, model)\n",
"print(probs)\n",
"print(classes)\n",
"> [ 0.01558163 0.01541934 0.01452626 0.01443549 0.01407339]\n",
"> ['70', '3', '45', '62', '55']\n",
"```\n",
"\n",
"First you'll need to handle processing the input image such that it can be used in your network. \n",
"\n",
"## Image Preprocessing\n",
"\n",
"You'll want to use `PIL` to load the image ([documentation](https://pillow.readthedocs.io/en/latest/reference/Image.html)). It's best to write a function that preprocesses the image so it can be used as input for the model. This function should process the images in the same manner used for training. \n",
"\n",
"First, resize the images where the shortest side is 256 pixels, keeping the aspect ratio. This can be done with the [`thumbnail`](http://pillow.readthedocs.io/en/3.1.x/reference/Image.html#PIL.Image.Image.thumbnail) or [`resize`](http://pillow.readthedocs.io/en/3.1.x/reference/Image.html#PIL.Image.Image.thumbnail) methods. Then you'll need to crop out the center 224x224 portion of the image.\n",
"\n",
"Color channels of images are typically encoded as integers 0-255, but the model expected floats 0-1. You'll need to convert the values. It's easiest with a Numpy array, which you can get from a PIL image like so `np_image = np.array(pil_image)`.\n",
"\n",
"As before, the network expects the images to be normalized in a specific way. For the means, it's `[0.485, 0.456, 0.406]` and for the standard deviations `[0.229, 0.224, 0.225]`. You'll want to subtract the means from each color channel, then divide by the standard deviation. \n",
"\n",
"And finally, PyTorch expects the color channel to be the first dimension but it's the third dimension in the PIL image and Numpy array. You can reorder dimensions using [`ndarray.transpose`](https://docs.scipy.org/doc/numpy-1.13.0/reference/generated/numpy.ndarray.transpose.html). The color channel needs to be first and retain the order of the other two dimensions."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"def process_image(image):\n",
" ''' Scales, crops, and normalizes a PIL image for a PyTorch model,\n",
" returns an Numpy array\n",
" '''\n",
" \n",
" # TODO: Process a PIL image for use in a PyTorch model"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Class Prediction\n",
"\n",
"Once you can get images in the correct format \n",
"\n",
"To get the top $K$ largest values in a tensor use [`x.topk(k)`](http://pytorch.org/docs/master/torch.html#torch.topk). This method returns both the highest `k` probabilities and the indices of those probabilities corresponding to the classes. You need to convert from these indices to the actual class labels using `class_to_idx` which hopefully you added to the model or from an `ImageFolder` you used to load the data ([see here](#Save-the-checkpoint)). Make sure to invert the dictio\n",
"\n",
"Again, this method should take a path to an image and a model checkpoint, then return the probabilities and classes.\n",
"\n",
"```python\n",
"probs, classes = predict(image_path, model)\n",
"print(probs)\n",
"print(classes)\n",
"> [ 0.01558163 0.01541934 0.01452626 0.01443549 0.01407339]\n",
"> ['70', '3', '45', '62', '55']\n",
"```"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
"def predict(image_path, model, topk=5):\n",
" ''' Predict the class (or classes) of an image using a trained deep learning model.\n",
" '''\n",
" \n",
" # TODO: Implement the code to predict the class from an image file"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Sanity Checking\n",
"\n",
"Now that you can use a trained model for predictions, check to make sure it makes sense. Even if the testing accuracy is high, it's always good to check that there aren't obvious bugs. Use `matplotlib` to plot the probabilities for the top 5 classes as a bar graph, along with the input image. It should look like this:\n",
"\n",
"<img src='assets/inference_example.png' width=300px>\n",
"\n",
"You can convert from the class integer encoding to actual flower names with the `label_map.json` file (should have been loaded earlier in the notebook). To show a PyTorch tensor as an image, use the `imshow` function defined below."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"def imshow(image, ax=None, title=None):\n",
" \"\"\"Imshow for Tensor.\"\"\"\n",
" if ax is None:\n",
" fig, ax = plt.subplots()\n",
" \n",
" # PyTorch tensors assume the color channel is the first dimension\n",
" # but matplotlib assumes is the third dimension\n",
" image = image.numpy().transpose((1, 2, 0))\n",
" \n",
" # Undo preprocessing\n",
" mean = np.array([0.485, 0.456, 0.406])\n",
" std = np.array([0.229, 0.224, 0.225])\n",
" image = std * image + mean\n",
" \n",
" # Image needs to be clipped between 0 and 1 or it looks like noise when displayed\n",
" image = np.clip(image, 0, 1)\n",
" \n",
" ax.imshow(image)\n",
" \n",
" return ax"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# TODO: Display an image along with the top 5 classes"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.4"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Binary file added assets/Flowers.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/inference_example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 89eeff5

Please sign in to comment.