Machine Learning Concepts Review

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

1/20

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards for key concepts in machine learning, specifically focusing on ensemble methods, evaluation metrics, and dealing with imbalanced datasets.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

21 Terms

1
New cards

Ensemble Learning

A method that combines the predictions of multiple models to improve overall prediction accuracy.

2
New cards

Bagging

A technique that reduces variance by training multiple models independently using random subsets of data.

3
New cards

Boosting

A sequential technique that reduces bias by training models one after another, focusing on examples that previous models misclassified.

4
New cards

Bootstrapping

A sampling technique used to create multiple subsets of data from a single dataset, with replacement.

5
New cards

Bias

The error due to overly simplistic assumptions in the learning algorithm.

6
New cards

Variance

The error due to excessive sensitivity to small fluctuations in the training set.

7
New cards

Random Forest

An ensemble method that conditions on subtrees from multiple decision trees for regression and classification.

8
New cards

AdaBoost

An ensemble method that adjusts the weights of instances based on previous classifiers’ errors.

9
New cards

Gradient Boosting

A method where new models are added to correct errors made by existing models.

10
New cards

XGBoost

An optimized gradient boosting framework that is widely used for its performance.

11
New cards

Confusion Matrix

A table that summarizes the performance of a classification algorithm by comparing predicted vs actual classifications.

12
New cards

True Positive (TP)

Instances correctly predicted as the positive class.

13
New cards

False Positive (FP)

Instances incorrectly predicted as the positive class.

14
New cards

True Negative (TN)

Instances correctly predicted as the negative class.

15
New cards

False Negative (FN)

Instances incorrectly predicted as the negative class.

16
New cards

Precision

The ratio of true positive predictions to the total predicted positive cases.

17
New cards

Recall

The ratio of true positive predictions to the total actual positive cases.

18
New cards

F1 Score

The harmonic mean of precision and recall, used to evaluate a model's accuracy.

19
New cards

Imbalanced Dataset

A dataset where the distribution of classes is not uniform, affecting model performance.

20
New cards

Oversampling

The process of increasing the number of instances in the minority class in an imbalanced dataset.

21
New cards

Undersampling

The process of reducing the number of instances in the majority class in an imbalanced dataset.