Deep Learning and Machine Learning Concepts

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/16

flashcard set

Earn XP

Description and Tags

Flashcards covering fundamental concepts of deep learning and machine learning as discussed in the lecture.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

17 Terms

1
New cards

Machine learning is a field of study that gives computers the ability to learn without being explicitly __.

programmed

2
New cards

A computer program is said to learn from experience E with respect to some task T and some performance measure P, if its performance on T, as measured by P, improves with experience __.

E

3
New cards

Supervised learning is when the program is 'trained' on a predefined set of __ examples.

training

4
New cards

In unsupervised learning, the program is given a bunch of data with no __ and must find patterns.

labels

5
New cards

Supervised learning - Regression Task: House Price __ problem.

Prediction

6
New cards

The goal of supervised learning regression is to predict the __ of a house based on its size.

price

7
New cards

In supervised learning - classification, we classify if there is cancer or not based on the __ size and the outcome.

tumor

8
New cards

The mathematical representation for simple linear regression is y = m * x + __.

c

9
New cards

The objective of linear regression is to minimize the __ Error (MSE).

Mean Squared

10
New cards

In the dataset of predicting house prices, square footage is considered the __.

feature

11
New cards

The regression output is a __ value while the classification output is a discrete value.

continuous

12
New cards

To find the line that best fits the data in a regression problem, we choose the line that touches the majority of the __.

existing data

13
New cards

The predicted price of a house with 750 square feet can be calculated using a __ fitting method.

line

14
New cards

In supervised learning, provide input and output (right answers) to an algorithm (model) to __.

learn

15
New cards

Learning algorithms allow software applications to improve themselves without being explicitly __.

programmed

16
New cards

In a supervised learning problem, the training samples are used to create a __ model.

hypothesis

17
New cards

The loss function used to minimize the difference between predicted and actual values is called the __ function.

cost