This keyword in Python is used to define a new function.
What is 'def'?
This type of neural network processes data with spatial hierarchies using convolutional filters.
What is a Convolutional Neural Network (CNN)?
The name of the AI assistant in Iron Man
What is Jarvis?
Who founded Facebook(now Meta)?
Mark Zuckerberg
Who is considered the first programmer?
Who is Ada Lovelace?
This type of Python copy duplicates only references to objects, while its deeper counterpart recursively copies everything.
What is a shallow copy?
This function converts a linear combination or weighted sum into a probability
What is the sigmoid function or the logit function?
A movie that features an AI named HAL 9000?
What is 2001: A Space Odyssey?
A cofounder of Microsoft
Who is Bill Gates?
What was the first "test" to see if a program qualified as "intelligent"?
What is the Turing Test?
This Python feature allows you to wrap another function to modify its behavior, often seen with @staticmethod or @lru_cache.
What is a decorator?
This training process adapts a pretrained model’s weights to a smaller, task-specific dataset.
What is fine-tuning?
In the Matrix movies, the name of the name of every uniformed "Agent" that hunts down Neo
What is Agent Smith?
Sam Altman
This term describes when a language model confidently outputs false information.
What is a hallucination?
The function that every class in Python has built in to initialize it
What is init?
This function converts logits into a probability distribution that sums to 1.
What is softmax?
The video game with an AI companion named Cortana
What is Halo?
This Canadian computer scientist and cognitive psychologist is the cocreator of "back propagation" enabling machine and deep learning methods.
Who is Geoffrey Hinton?
This two types of learning by machines: one learns with labelled example data and the other learns on data without labels, finding patterns.
What are supervised and unsupervised learning?
300Executing x = [[1]*3]*3; x[0][0] = 9 produces this list structure.
What is [[9,1,1],[9,1,1],[9,1,1]]?
This modern architecture replaced recurrence with self-attention for parallel context modeling.
What is a Transformer?
The name of the AI that Ryan Gosling Falls in love with in BladeRunner: 2049.
What is Joi?
This American Psychologist pioneered and created the Perceptron(the simplest neural network) and is considered the father of Deep Learning.
Who is Frank Rosenblatt?
This phenomenon describes unexpected complex capabilities that emerge in large models.
What is emergent behavior?