Neural Networks Intro Flashcards
What does creating a machine learning algorithm mean?
It means building a model that outputs correct information from provided input data
What is the training process?
The process which the model learns to make sense of the input data.
What are the 4 ingredients of training an algorithm?
- Data
- Model
- Objective Function
- Optimization Algorithm
Which of the following is NOT a building block of a machine learning algorithm?
Data
Variable
Objective function
Optimization algorithm
Variable
Training the model is:
A pure trial and error process
A kind of trial-and-error process with some feedback
The process of giving guidelines to the computer to find patterns
The process of watching people or a machine perform an activity and replicating it
A kind of trial-and-error process with some feedback
Self-driving cars learn by:
Driving many hours before learning how to do it safely and efficiently
A very strict set of rules that Elon Musk and the others are programming day and night
“Watching” thousands of hours of footage of real people driving
Breaking the rules (e.g., go on red light, go over the speed limit) and waiting to get punished for it
“Watching” thousands of hours of footage of real people driving
What are the 3 types of machine learning?
- Supervised
- Unsupervised
- Reinforcement
What are the two subtypes of supervised learning?
- Regression
- Classification
The linear model is given by:
y = xT w + b
y = wx + b
y = wT x + b
All of the above
All of the above
The linear model for multiple inputs is given by:
y = xw + b
y = x1w1 + x2w2 + b
y = x1w2 + x2w1 + b
y = x2w2 + x2w2 + b
y = xw + b
You have y = xw + b, where w = [1.2, -3], while b = [7]. If x = [2 , 3], what is the value of y?
0.4
-13.6
4.6
9.4
0.4
What is the Objective Function?
the measure used to evaluate how well the model’s outputs match the desired correct values
What are the two Objective Function types?
Loss - minimizing the error
Reward - reinforcement earning - super mario hight score example
In supervised learning, we are dealing with:
lost functions
loss functions
reward functions
reinforcement functions
loss functions
Reward functions are NOT:
functions we are trying to maximize
functions used in reinforcement learning
functions we are trying to minimize
functions
functions we are trying to minimize