Monday: Coding
Tuesday: Stats & Clustering
Wednesday: Neural Networks
Thursday: Convolutional Neural Networks
Friday: Optimization
100

x = 5

y = 6

x = x + y

Find x

What is 11?

100

The clustering technique uses the means of surrounding data points to classify them into groups

What is K-clustering/K-means clustering?

100

These are the middle layers in a neural network

What are hidden layers?

100

The matrix that convolves with the original image to detect features

What is a filter?

100

This is the method used to find the steepest descent in the error function

What is a gradient?

200

This operator gives the remainder of a / b

What is the modulo operator?

200

K-clustering is a type of _____ learning

What is unsupervised?

200

These are the adjustable coefficients that we train during the "training" phase of the neural network

What are weights/biases?

200

This process simplifies convolved images so that they take up less memory

What is pooling?

200

This is the value that determines how much each weight is changed by for each iteration of the neural network training

What is learning rate?

300

These characters surround text in code to make them into strings

What are double quotation marks?

300

This is the method in which the first K-means are initially chosen

What is random?

300

The function used to normalize neurons to numbers between 0 and 1

What is an activation function?

300

Before putting a picture into a vanilla neural network, it must undergo this process

What is flattening?
300

This is the term for finding the direction and magnitude of the steepest descent, and moving a step in that direction

What is back-propogation?

400

The result of 9/5

What is 1?

400

This is the r value of a perfect negative correlation

What is -1?

400

The output of a neural network relative to the inputs

What is a weighted average?

400

This activation function helps normalize output values to turn them into probabilities

What is softmax?

400

This optimization method uses an estimate of the gradient to decide which direction to move in

What is stochastic gradient descent?

500

The following Python code loops forever. What is it missing?
n = 10
while n<100:
print n

What is an increment statement?

500

This loss function is used in regression analysis

What is mean squared error?

500

The training has an accuracy of 99% but the testing has an accuracy of 54%

What is overfitting?

500

Our head instructors name

Who is Millard McElwee?

500

The following issue is noticed:

The machine learning algorithm is taking forever. On closer inspection, we notice that the weights move so far that they keep going past the minima and never actually settle into it. How can we fix this?

What is decrease the learning rate?

M
e
n
u