Part 7: Summary

Now you know how to prepare training data, create a model, train that model, and load it back in for testing. To get set up as quickly as possible on new projects, I’ve created a full project template in TensorPlates.

Creating a New Project

To start a new project simply do the following:

git clone git@github.com:crosleythomas/tensorplates.git
cp -r tensorplates/project <your project directory>

Tip: After creating a new project you can make your life easier by creating an alias inside your .bash_profile to activate the associate virtual environment and cd to that directory. For example, say you have a project called flowers and have created a virtual environment called env inside the project directory.

##################################
###   Inside ~/.bash_profile   ###
##################################
alias flowers='cd ~/Documents/projects/flowers && source env/bin/activate'

Project Implementation Checklist

Now, you can step through completing your project with this checklist:


Continue Reading

Part 8 cites the tutorials I found most helpful and other resources you may want to use.