udacity / dog-project

MIT License
184 stars 899 forks source link

add empty saved models folder #3

Closed themrmax closed 7 years ago

themrmax commented 7 years ago

I think we should leave an empty saved_models folder to the repo, otherwise you get a somewhat confusing error in the notebook.

The alternative would be to put the following into the notebook but i think adding it to the repo is a little nicer,

import ox
if not os.path.exists('saved_models'):
    os.makedirs('saved_models')
alexisbcook commented 7 years ago

thanks! I've added the folder to the repo.