Fall 2019
Monday, December 2
We want to generate a collection of sequentially numbered images in a folder "foo" and also an attribute file foo/foo.txt that is a space-separated csv file with an appropriate header row that names the attributes.
Also nice to make an HTML file that embeds all the images for easy inspection.
Linux: draw_two_eyes.py
Needed modification for Mac (you will need to adjust the path to your own situation):
Linux: draw_confetti.py
Needed modules: randomhexcolor.py, SVGSketch.py
Usage: run draw_confetti.py triangles_squares_pentagons 3 5 10
We want this code to work with any data of the format we've generated above. So we need to tell it just the folder name and the list of attributes we're trying to predict.
A starting point for the code: one_eye_starter.py (copy and paste to notebook).
Modifications we need to make:
I want to just show you a very deep CNN that is close to state-of-the art for image classification: Inception-Resnet v2
A few final words