Lecture 5 – Logistic Regression, K-Nearest Neighbors and Support Vector Machine

0.0(0)
studied byStudied by 0 people
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

These flashcards cover key vocabulary and important concepts related to logistic regression, k-nearest neighbors, and support vector machines in machine learning.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

21 Terms

1
New cards

Logistic Regression

A binary classifier used for linearly separable data to predict probabilities that lie between 0 and 1.

2
New cards

Sigmoid Function

An activation function used in logistic regression defined as σ(x) = 1 / (1 + e^(-x)).

3
New cards

Binary Classifier

A classification algorithm that distinguishes between two classes.

4
New cards

Linear Regression

A regression algorithm that predicts values and can output values greater than 1 or less than 0.

5
New cards

K-Nearest Neighbors (KNN)

An algorithm that classifies a data point based on its nearest neighbors, without building a decision boundary.

6
New cards

Euclidean Distance

A metric used to calculate the distance between two points in a multidimensional space.

7
New cards

Manhattan Distance

A metric that computes the distance between points in a grid-based path.

8
New cards

Hyperplane

A decision boundary that separates different classes in a multi-dimensional space.

9
New cards

Support Vector Machine (SVM)

A classification method that maximizes the margin between two classes.

10
New cards

Margin

The distance between the separating hyperplane and the nearest data points from either class.

11
New cards

Support Vectors

The data points that lie closest to the decision boundary in SVM.

12
New cards

Classification Error

The rate at which an algorithm incorrectly predicts the class labels of data points.

13
New cards

Threshold

A value used in logistic regression to determine the class assignment based on predicted probabilities.

14
New cards

Probabilities

Values that represent the likelihood of class membership between 0 and 1.

15
New cards

Activation Function

A function used in neural networks to introduce non-linearity into the model.

16
New cards

Kernel Trick

A method used in SVM to allow the algorithm to fit the hyperplane in a transformed feature space.

17
New cards

Optimization

The process of adjusting the parameters of a model to minimize error.

18
New cards

Dependent Variable

A variable that is being predicted or explained in a regression or classification model.

19
New cards

Independent Variable

A variable that is used as a predictor or input in a model.

20
New cards

Fit

To train a model on a given dataset.

21
New cards

Class Labels

The categorical outcomes that a classification model attempts to predict.