Lecture Notes on Machine Learning Concepts

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

1/17

flashcard set

Earn XP

Description and Tags

Flashcards covering key concepts and terminology related to machine learning, particularly focused on concepts introduced in the lecture.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No study sessions yet.

18 Terms

1
New cards

Macro Averaging

An averaging method that gives equal weightage to all classes, regardless of the number of samples in each class.

2
New cards

Imbalanced Dataset

A dataset where one class significantly outnumbers the others, making it difficult for a model to learn the minority class.

3
New cards

FM Score

A metric that combines precision and recall to evaluate the balance between the two.

4
New cards

UpSampling

A technique where the minority class is randomly sampled with repetition to increase its size for balancing the dataset.

5
New cards

DownSampling

A technique where the majority class is reduced in size by randomly removing samples to balance the dataset.

6
New cards

Synthetic Data Augmentation

The process of generating new samples using techniques like rotation, noise addition, or cropping, often used for image datasets.

7
New cards

SMOTE

Synthetic Minority Over-sampling Technique, used to create synthetic instances of the minority class.

8
New cards

Addison

A method focusing on generating samples that are difficult to classify, used for oversampling the minority class.

9
New cards

Weighted Loss Function

A technique applied in neural networks to assign different penalities to misclassification of minority and majority classes.

10
New cards

Confusion Matrix

A table used to evaluate the performance of a machine learning model, illustrating the true positives, true negatives, false positives, and false negatives.

11
New cards

Logistic Regression

A classification algorithm used for binary classification problems, which finds the best-fitting model by using a logistic function.

12
New cards

K-Nearest Neighbors (KNN)

A classification algorithm that classifies data points based on the classes of their nearest neighbors.

13
New cards

Support Vector Machine (SVM)

A supervised machine learning algorithm that aims to find a hyperplane that best separates classes in a high-dimensional space.

14
New cards

Hyperplane

A decision boundary that separates different classes in a dataset, generalizing to multiple dimensions.

15
New cards

Kernel Trick

A method in SVM that transforms data into a higher-dimensional space to make it linearly separable.

16
New cards

Soft Margin

A classification margin that allows some misclassification to improve model robustness and generalization.

17
New cards

Slack Variable (Gamma)

A variable in SVM that allows for some misclassification error, contributing to the soft margin.

18
New cards

C Parameter

A hyperparameter in SVM that controls the trade-off between maximizing the margin and minimizing misclassification.