In this project, you'll label the pixels of a road in images using a Fully Convolutional Network (FCN).
Make sure you have the following is installed:
Download the Kitti Road dataset from here. Extract the dataset in the data
folder. This will create the folder data_road
with all the training a test images.
Implement the code in the main.py
module indicated by the "TODO" comments.
The comments indicated with "OPTIONAL" tag are not required to complete.
Run the following command to run the project:
python main.py
Note If running this in Jupyter Notebook system messages, such as those regarding test status, may appear in the terminal rather than the notebook.
- Ensure you've passed all the unit tests.
- Ensure you pass all points on the rubric.
- Submit the following in a zip file.
helper.py
main.py
project_tests.py
- Newest inference images from
runs
folder (all images from the most recent run)
- The link for the frozen
VGG16
model is hardcoded intohelper.py
. The model can be found here - The model is not vanilla
VGG16
, but a fully convolutional version, which already contains the 1x1 convolutions to replace the fully connected layers. Please see this forum post for more information. A summary of additional points, follow. - The original FCN-8s was trained in stages. The authors later uploaded a version that was trained all at once to their GitHub repo. The version in the GitHub repo has one important difference: The outputs of pooling layers 3 and 4 are scaled before they are fed into the 1x1 convolutions. As a result, some students have found that the model learns much better with the scaling layers included. The model may not converge substantially faster, but may reach a higher IoU and accuracy.
- When adding l2-regularization, setting a regularizer in the arguments of the
tf.layers
is not enough. Regularization loss terms must be manually added to your loss function. otherwise regularization is not implemented.
In this project, I labeled the pixels of a road in images using a Fully Convolutional Network (FCN). I use transfer learning from a pretrained VGG16 model. Kitti road dataset is used for training the model. The model architecture is as follow:
FCN model is based on a pretrained VGG-16 model include input layer, keep probability layer, layer 3, layer 4 and layer 7. Convolutional 1x1 of vgg layer 7 to mantain space information. layer 7 is connected to convolutional layer with kernel size = 1 and then Upsample deconvolution x 2 with kernel = 4, stride = 2. 1x1 convolution of vgg layer 4 is also connected to convolutional layer with kernel = 1. The above two output layers are summed up to form the first skip layer. The first skip layer is Upsample and connected to convolutional layer with kernel = 4 and stride = 2. The output of 1x1 convolution of vgg layer 3 connecting to convolutional layer with kernel = 1 summed up the above output layer form the second skip layer. The second skip layer is connected toUpsample deconvolution x 8 with kernel = 16, stride = 8 to form the final output layer. All convolution and deconvolution layer using kernel initializer with standard deviation 0.01 and L2 regularizer 0.001.
The inference results demonstrate the green regions as the road as below:
- Adam optimizer
- Cross-entropy loss function.
Learning rate is fixed at 0.0001 and keep probability is set to 50%. Epochs to 50 and batch size = 5 to the inference result.
The loss will near 0.01 after 50 epochs. The Infrence result as follow:
If you are unfamiliar with GitHub , Udacity has a brief GitHub tutorial to get you started. Udacity also provides a more detailed free course on git and GitHub.
To learn about REAMDE files and Markdown, Udacity provides a free course on READMEs, as well.
GitHub also provides a tutorial about creating Markdown files.