machine learning final

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

1/12

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.

13 Terms

1
New cards

K-nearest neighbors classifier

Classifies a new data point by the majority class among its K nearest neighbors

2
New cards

Support vector machine classifier

A supervised learning model that finds the hyperplane that best separates different classes in the feature space.

3
New cards

Decision tree classifier

A model that uses a tree-like graph of decisions and their possible consequences to classify data points based on features.

4
New cards

Random-forest classifier

An ensemble learning method that constructs multiple decision trees during training and outputs the mode of their predictions for classification tasks.

5
New cards

Bagging classifier

A technique that improves the stability and accuracy of machine learning algorithms by training multiple models on different subsets of the training data and averaging their predictions.

6
New cards

Neural network classifier

A computational model inspired by the human brain, consisting of interconnected nodes (neurons) that process data in layers to learn and classify patterns.

7
New cards

Adaboosting classifier

An ensemble learning technique that combines the predictions of several base estimators to improve accuracy by focusing on errors made by previous classifiers.

8
New cards

Accuracy

The measure of how often a classifier correctly predicts the target labels, typically expressed as the ratio of correctly predicted instances to the total instances.

9
New cards

Mcc score

A performance metric for binary classifiers that considers true and false positives and negatives to provide a balanced evaluation of model accuracy.

10
New cards

Sensitivity

measures how well a machine learning model can detect positive instances

11
New cards

Specificity

measures the proportion of True Negative which are correctly identified by the model

12
New cards

Precision

The proportion of true positive results in all positive predictions made by the classifier, indicating the accuracy of the positive class identification.

13
New cards

F1 score

The harmonic mean of precision and recall, providing a balance between the two metrics. It is particularly useful when evaluating models with imbalanced classes.