Machine Learning: Supervised, Unsupervised, and Reinforcement Learning

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/19

flashcard set

Earn XP

Description and Tags

This set of vocabulary flashcards covers the fundamentals of Machine Learning, including its definitions, the three primary paradigms (Supervised, Unsupervised, Reinforcement Learning), and specific tasks and models as presented by Prof. Dr. Saad Albawi.

Last updated 1:34 PM on 5/22/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

20 Terms

1
New cards

Learning

To gain knowledge or understanding of, or skill in by study, instruction or experience, which includes learning new facts, learning how to do something, or improving an existing ability.

2
New cards

Machine Learning (ML)

The study of methods for programming computers to learn automatically from experience, typically involving tasks like recognition, diagnosis, planning, robot control, and prediction.

3
New cards

Training dataset

The initial data provided to a machine to provide experience, allowing it to identify rules, patterns, and relations to derive inferences.

4
New cards

Supervised Learning

A machine learning paradigm where the machine is provided with a labelled training dataset (Samples + Labels) to devise a function that produces an output value for new samples.

5
New cards

Classification

A type of supervised learning where the possible output values of the function are predefined and discrete or categorical, such as identifying if an object is a CAR or a BIKE.

6
New cards

Regression

A type of supervised learning used when the possible output values of the function are continuous real values, such as predicting a price of 20500.5020500.50 in the year 20252025.

7
New cards

Unsupervised Learning

A paradigm where the learner is provided only with unlabeled data and no feedback from the environment; it identifies statistical structures and patterns within the input collection.

8
New cards

Clustering

An unsupervised learning task that groups similar objects together into homogeneous clusters that are not predefined, such as market segmentation or anomaly detection.

9
New cards

Association Rules Mining

A task in unsupervised learning used to identify relations between items, commonly seen in examples like 'Customers who viewed this item also viewed…'

10
New cards

Reinforcement Learning

Also known as learning from trials and errors, where an agent learns tasks by interacting with an environment through actions, rewards, feedbacks, and punishments.

11
New cards

Agent

The entity in reinforcement learning that performs actions within an environment and receives rewards or punishments to learn a specific task.

12
New cards

Semi-Supervised Learning

A technique between supervised and unsupervised learning that utilizes a small amount of labeled data and a large amount of unlabeled data to reduce required supervision while improving results.

13
New cards

Six Steps in Machine Learning

11) Data collection, 22) Representation, 33) Modeling, 44) Estimation, 55) Validation, and 66) Apply learned model to new 'test' data.

14
New cards

Bayesian learning

A specific type of machine learning model mentioned alongside Logistic Regression and Decision Trees as examples for Classification and Regression.

15
New cards

K-Nearest neighbor

A specific machine learning model used for Classification and Regression tasks.

16
New cards

DBSCAN

An example of a specific clustering model mentioned in the lecture alongside K-means and Hierarchical clustering.

17
New cards

Support Vector Machine

A classification and regression model listed among machine learning examples like Neural Networks and Deep Learning.

18
New cards

Boosting

A category of machine learning models that includes Random Forests and Xgboost.

19
New cards

Computational complexity

One of the listed disadvantages of Machine Learning along with noisy sensors and application-specific algorithms.

20
New cards

Ground Truth

The labels or values present in a dataset that the decision in supervised learning depends on, representing the documented 'experience'.