LESSON 1: Introduction to Machine Learning

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

1/35

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

36 Terms

1
New cards

Machine learning

______ is about extracting knowledge from data.

2
New cards

Machine learning

It is a research field at the intersection of statistics, AI, and computer science and is also known as predictive analytics or statistical learning

3
New cards

predictive analytics

It is a research field at the intersection of statistics, AI, and computer science and is also known as ______ or statiscal learning

4
New cards

statiscal learning

It is a research field at the intersection of statistics, AI, and computer science and is also known as predictive or ______________

5
New cards

Spam filter

is the first ML application developed in 1990s

6
New cards

supervised learning

unsupervised learning

self-supervised learning

semi-supervised learning

reinforcement learning

Types of Machine Learning

7
New cards

Machine Learning

can be classified according to the amount and type of supervision they get during training.

8
New cards

Supervised Learning

is a ML algorithms that learn from input/output pairs.

9
New cards

Supervised Learning

In _________, the training set you feed to the algorithm includes the desired solutions, called labels.

10
New cards

labels

In Supervised Learning, the training set you feed to the algorithm includes the desired solutions, called _____

11
New cards

Supervised learning

is commonly used in applications where historical data predicts likely future events.

12
New cards

Classification

Regression

There are certain tasks that fall under supervised learning:

13
New cards

target

The word target and label are generally treated as synonyms in supervised learning, but ______ is more common in regression tasks and label is more common in classification tasks.

14
New cards

regression task

The word target and label are generally treated as synonyms in supervised learning, but target is more common in _______ and label is more common in classification tasks.

15
New cards

label

The word target and label are generally treated as synonyms in supervised learning, but target is more common in regression and _____ is more common in classification tasks.

16
New cards

classification task

The word target and label are generally treated as synonyms in supervised learning, but target is more common in regression and label is more common in

17
New cards

features

Moreover ______ are sometimes called predictors or attributes. These terms may refer to individual samples (e.g., ”this car’s mileage feature is equal to 15000”).

18
New cards

predictors or attributes

Moreover features are sometimes called_______. These terms may refer to individual samples (e.g., ”this car’s mileage feature is equal to 15000”).

19
New cards

classification

A typical supervise learning task is

20
New cards

machine learning program

Your spam filter is a _________, that given an examples of spam emails and ham emails, can learn to flag spam.

21
New cards

training set

The examples that the system uses to learn are called the ____

22
New cards

training instance

Each training example is called a ______ (or sample).

23
New cards

model

The parts of a ML that learns and makes prediction is called a ____(e.g. neural net)

24
New cards

accuracy

The particular performance measure that correctly classified emails is called ____.

25
New cards

regression

Another typical task is to predict a target numeric value, such as the price of a car, given sets of features (mileage, age, brand, etc.) This sort of task is called ______.

26
New cards

logistic regression

______ is commonly used for classification, as it can output a value that corresponds to the probability of belonging to a given class (e.g., 20% chance of being spam).

27
New cards

unsupervised learning

In ______, only the input data is known, and no known output data is given to the algorithm.

28
New cards

unsupervised learning

In ______ the training data is unlabeled. The system tries to learn without a teacher.

29
New cards
  • clustering

  • visualization

  • anomaly detection

  • dimensionality reduction

  • association rule learning

There are certain tasks that fall under unsupervised learning:

30
New cards

Clustering

______ - Grouping together unlabeled data points into categories/clusters- Data points are assigned to a cluster based on similarity. - For example, you want to detect groups of similar visitors in your blog.

31
New cards

Visualization

______ - In visualization, you feed them a lot of complex and unlabeled data, and they output a 2D or 3D representation of your data that can be easily plotted

32
New cards

Anomaly Detection

________ - Attempts to detect outliers in a dataset- For example, fraudulent transactions on a credit card.- For example, identifying the anomalies between a thousand pictures of dog and only 1% pictures of cat.

33
New cards

Dimensionality Reduction

_____- in which the goal is to simplify the data without losing too much information. - One way to do this is to merge several correlated features into one.

34
New cards

Dimensionality Reduction

For example, a car’s mileage may be strongly correlated with its age, so the dimensionality reduction algorithm will merge them into one feature that represents the car’s wear and tear. This is called feature extraction.

35
New cards

feature extraction

For example, a car’s mileage may be strongly correlated with its age, so the dimensionality reduction algorithm will merge them into one feature that represents the car’s wear and tear. This is called_______

36
New cards

Association Rule Learning

_________- in which the goal is to dig into large amounts of data and discover interesting relations between attributes. - For example, suppose you own a supermarket, and running an association rule learning on your sales logs may reveal that people who purchase barbecue sauce and potato chips also tend to buy steaks.