Week 2 Progress Update. I spent the majority of this week learning how to use the TensorFlow Framework. In order to do this I built a very simple neural network with it. All this neural network does is sort 28 x 28 pictures of street signs into 62 different categories, below is the code, the sections that are commented out (surrounded by ''' or proceeded by #) are either notes or remnants of the tutorial I was following. Below the code is an image which randomly samples some of the signs in the testing dataset once the network has been trained. It then attempts to predict what category it belongs to, if the predicted category matches the actual category it shows green text, if not, it shows red text. # imports import tensorflow as tf import os import skimage import numpy as np import matplotlib.pyplot as plt import random as r from skimage import transform ''' #init constants x1 = tf.constant([1,2,3,4]) x2 = tf.constant([5,6,7,8]) #multi...