Monday
Tuesday
Wednesday
Thursday
Friday
100

This is used to store multiple values in one variable

What is a list?

100

This is the loss function used for linear regressions

What is MSE?

100

This is the library we used to make the neural network layers

What is keras
100

This is the name of the matrix used to convolve images

What is a kernal/filter

100

This actor played both Oppenheimer and Scarecrow in Christopher Nolan films.

Who is Killian Murphy?

200

This is what we call a list of lists

What is a 2D array?

200

This is Mason's last name (spell it)

What is Sater?

200

What are the layers between the input and output layers called

What are hidden layers?

200

This is the name of the step that comes after convolving that reduces computational load

What is max-pooling?

200

This is the mathematical operation used in backpropogation for finding the minimum loss value

What is gradient/gradient descent?

300

This artist performed at the 2021 Super Bowl halftime show

Who is The Weeknd

300

This is the analogy we used to introduce how a machine learning network works (right before the discussion). You must give a good rehash of the analogy to get points

What is the man with the arrow (or any variation of this)?

300

These are the two types of variables that we train in a neural network that connect each neuron to every neuron in the subsequent layer? 

DAILY DOUBLE: come to the board and write out the equation connecting all neurons

What are weights and biases?

300

This is the activation function used for the output layer to convert the numbers into probabilities that all add up to 1.

What is softmax?

300

This optimizer is a spinoff of gradient descent that involves picking a random number of variables to calculate the gradient at each pass

What is stochastic gradient descent?

400

This is what the terminal shows after the following code:

my_list = [[1, 3, 6, 2], [5, 4, 9, 19], [30, 2, 5, 7]]

print(my_list[1][2])

What is 9?

400

This is the process that converts data values from one scale to another (i.e. from 0-256 to 0-1)

What is scaling/normalization?

400

These are the 5 steps in the AI learning pipeline

What are get data, process data, train model, test model, improve?

400

There are this many days of summer vacation in Phineas and Ferb

What is 104?

400

MSE is an example of this hyperparameter

What is loss function?

500

This is what the terminal shows for the following code:

for i in range(7):

    print(i)

What is

0

1

2

3

4

5

6

500

K means clustering is this type of machine learning that focuses on finding patterns in data instead of looking for a "correct" answer

What is unsupervised learning

500

This is the rival boy band in Kpop Demon Hunters

Who is Saja boys?

500

This is the matrix used to "convolve"/transform the tokens in an LLM to prepare them to enter the ANN

(Hint: it's 3 letters)

What is QKV

500
This is the optimizer used in codio

What is Adam