1/92
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
|---|
No study sessions yet.
Machine Learning
A field of Artificial Intelligence where systems learn from data to make predictions or decisions without being explicitly programmed. It involves the study of algorithms that improve performance at a task through experience.
Supervised Learning
A type of training that uses a series of labeled examples with direct feedback, where the training data includes the desired outputs.
Unsupervised Learning
A type of learning with no feedback, where the training data does not include desired outputs. It involves learning "what normally happens" or grouping similar instances.
Reinforcement Learning
A type of learning involving indirect feedback after many examples, where rewards are received from a sequence of actions. It focuses on learning a policy (a sequence of outputs).
Regression
A task where the goal is to predict a continuous numeric value based on input features (e.g., predicting house prices or temperature).
Classification
A task where the goal is to predict categories or nominal outputs.
Linear Regression
A regression algorithm that fits data with a hyperplane (or line in 2D). It is the simplest model for function approximation.
Logistic Regression
A common algorithm used when the dependent variable is binary (e.g., disease vs. no disease). It fits data with a sigmoidal or logistic curve rather than a line to output a probability approximation.
Delta Rule (Least Mean Squares Rule)
An update rule used in supervised learning (specifically for neural networks) to minimize error by adjusting weights based on the difference between actual and predicted outputs.
Sum of Squared Error (SSE)
An objective function used in simple linear regression that sums the squared differences between predicted and actual values. It creates a parabolic error surface ideal for gradient descent.
Mean Absolute Error (MAE)
The average absolute difference between predicted and actual values.
Mean Squared Error (MSE)
The average squared difference between predicted and actual values; it penalizes larger errors more than MAE.
R² Score (Coefficient of Determination)
A metric that measures how well the model explains the variance in the data.
Binary Classification
A type of classification involving exactly two classes (e.g., Pass/Fail, Yes/No).
Multiclass Classification
Classification involving more than two classes (e.g., Cat, Dog, Bird).
Multilabel Classification
A scenario where each instance can belong to multiple classes simultaneously.
Threshold
The decision boundary (e.g., 0.5 or 0.9) that converts a model’s probability output into a specific class label.
Decision Tree
A hierarchical structure that makes decisions based on feature values, used for classification and regression.
Random Forest
An ensemble method consisting of multiple decision trees.
K-Nearest Neighbors (KNN)
An algorithm that classifies instances based on their nearest data points.
Support Vector Machine (SVM)
An algorithm that finds the best boundary between classes.
Naïve Bayes
A classifier based on probability and Bayes’ theorem.
The number of correctly classified positive examples divided by the total number of actual positive examples in the test set.