Engines of AI: Algorithms and Metrics

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

1/11

flashcard set

Earn XP

Description and Tags

These flashcards cover key concepts and metrics related to algorithms and the evaluation of machine learning models, focusing on linear and logistic regression.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

12 Terms

1
New cards

Algorithm

A set of mathematical rules or a recipe that learns patterns from data.

2
New cards

Linear Regression

A regression algorithm used to predict continuous numerical values by fitting a best-fit line.

3
New cards

Logistic Regression

A classification algorithm that predicts discrete categories by outputting probabilities between 0 and 1.

4
New cards

Mean Absolute Error (MAE)

A metric that measures the average distance between predicted values and actual values.

5
New cards

Root Mean Squared Error (RMSE)

A common error metric that punishes larger errors more heavily by squaring them before averaging.

6
New cards

R-Squared (R²)

A measure of how well the regression model explains the variance of the target variable.

7
New cards

Confusion Matrix

A tool in classification that summarizes the performance of a model by comparing predicted and actual values.

8
New cards

True Positive (TP)

The scenario when the actual is positive and the prediction is also positive.

9
New cards

False Positive (FP)

The scenario when the actual is negative but the prediction is positive.

10
New cards

Precision

The ratio of true positives to the sum of true positives and false positives.

11
New cards

Recall

The ratio of true positives to the sum of true positives and false negatives.

12
New cards

F1-Score

The harmonic mean of precision and recall, used as a single metric for classification performance.