Machine Learning Concepts

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/15

flashcard set

Earn XP

Description and Tags

These flashcards cover key vocabulary and concepts related to machine learning, providing definitions and explanations to aid in understanding.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

16 Terms

1
New cards

Machine Learning

A field of computer science that allows machines to learn from data and improve their performance on tasks without being explicitly programmed.

2
New cards

Supervised Learning

A type of machine learning where the model is trained on labeled data, which means each training example is paired with an output label.

3
New cards

Unsupervised Learning

A type of machine learning where the model is trained on data without labels, aiming to identify patterns or clusters within the data.

4
New cards

Reinforcement Learning

A type of machine learning where an agent learns to make decisions by taking actions in an environment to maximize cumulative reward.

5
New cards

K-nearest Neighbors (KNN)

A simple, instance-based learning algorithm used for classification and regression, where the outcome is based on the closest training examples in the feature space.

6
New cards

Precision

A performance metric that measures the accuracy of positive predictions; defined as the ratio of true positives to the total number of predicted positives.

7
New cards

Recall (Sensitivity)

A performance metric that measures the ability of a model to identify positive instances; defined as the ratio of true positives to the total number of actual positives.

8
New cards

F1 Score

The harmonic mean of precision and recall, providing a single score that balances both metrics.

9
New cards

Confusion Matrix

A table used to evaluate the performance of a classification model by comparing the predicted classifications against the actual classifications.

10
New cards

Gradient Descent

An optimization algorithm used to minimize a function by iteratively moving towards the steepest descent, used in training machine learning models.

11
New cards

Overfitting

A modeling error that occurs when a model learns to perform very well on training data but fails to generalize to unseen data.

12
New cards

Underfitting

A modeling error that occurs when a model is too simple to capture the underlying patterns in the data, resulting in poor performance on both training and unseen data.

13
New cards

Support Vector Machines (SVM)

A supervised learning model that finds the hyperplane that best separates data points of different classes.

14
New cards

Logistic Regression

A statistical method used for binary classification that models the probability of a discrete outcome based on one or more predictor variables.

15
New cards

Activation Function

A function applied to the output of a neuron in a neural network, determining whether it should be activated or not.

16
New cards

Hyperparameter

A parameter whose value is set before the learning process begins, influencing the behavior and performance of the learning algorithm.