Artificial Intelligence Supervised Learning

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

1/18

flashcard set

Earn XP

Description and Tags

Flashcards summarizing key vocabulary and concepts from the lecture on Artificial Intelligence and Supervised Learning.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

19 Terms

1
New cards

Attributes

Inputs or features in supervised learning, include targets and outputs.

2
New cards

Model type

The architecture or method used to produce predictions from inputs.

3
New cards

Weights

Real-valued coefficients in a model that determine the influence of input features.

4
New cards

Objective function

A function that the learning algorithm seeks to minimize, usually related to error.

5
New cards

Input attributes

Variables represented by a vector, typically used to describe the input data.

6
New cards

Supervised learning task

Learning a function that approximates an unknown function from a training set of input-output pairs.

7
New cards

Ground truth

The actual labels or outputs that serve as a reference for the model's predictions.

8
New cards

Test set

A separate set of (x, y) pairs used to evaluate the model's performance.

9
New cards

Overfitting

When a model performs well on training data but poorly on unseen test data.

10
New cards

Underfitting

When a model fails to capture the underlying trend of the data, resulting in poor performance on both training and test data.

11
New cards

Simple Linear Regression

A method to model the relationship between a single input variable (x) and an output variable (y) through a linear equation.

12
New cards

Least squares

A method for minimizing the sum of the squares of the differences between observed and predicted values.

13
New cards

Gradient descent

An optimization algorithm used to minimize the loss function by iteratively moving in the direction of the steepest descent.

14
New cards

Activation function

A function that determines the output of a neural network node based on its input.

15
New cards

Computation graph

A representation of the operations and data flows in a neural network, highlighting how inputs progress through layers.

16
New cards

Logistic function

A sigmoid function that provides the probability estimate of a binary classification.

17
New cards

One-vs-rest classifier

A classification strategy where separate classifiers are trained to distinguish one class from all others.

18
New cards

One-vs-one classifier

A strategy where classifiers are trained for each pair of classes, suitable for multi-class classification.

19
New cards

Learning curve

A plot that illustrates how model performance improves with increasing amounts of training data.