LAHAT NG NEED REVIEWHIN KAY SIR DENVER WITHOUT THE TRUE OR FALSE

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/42

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 12:42 AM on 4/14/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

43 Terms

1
New cards

Classification

\ is a supervised machine learning technique that sorts data into predefined categories or classes.

2
New cards

classification

The goal is to to predict a categorical outcome (label/class) based on input data.

3
New cards

Training Phase

A classification model is built using a dataset where each data point is already labeled with its correct class.

4
New cards

Prediction Phase

Once the model is trained, it can be used to classify new, unlabeled data.

5
New cards

Binary Classification

This is the simplest type, where the model predicts between two possible classes.

6
New cards

Multiclass Classification

The model predicts among more than two classes.

7
New cards

Accuracy

TP + TN / TP + TN + FP + FN

8
New cards

Precision

TP / TP + FP

9
New cards

Recall

TP / TP + FN

10
New cards

F1-Score

2 x (Precision x Recall) / Precision + Recall

11
New cards

Specificity

TN / TN + FP

12
New cards

Logistic Regression

is a statistical and machine learning method used for classification problems, especially when the outcome has two possible results.

13
New cards

Decision tree

is a supervised machine learning algorithm that can be used for both classification (sorting data into categories) and regression (predicting continuous values) tasks.

14
New cards

Overfitting

A decision tree can grow very deep and complex, essentially memorizing the noise and small fluctuations in the training data rather than learning the true underlying patterns.

15
New cards

Instability

Decision trees are very sensitive to small changes in the training data.

16
New cards

Bias toward dominant classes

If the dataset is imbalanced (one class has significantly more data points than others), the tree may become biased towards the majority class and fail to generalize well for the minority classes.

17
New cards

Random Forests

are an ensemble learning method that addresses the weaknesses of a single decision tree.

18
New cards

K-Nearest Neighbors (KNN)

The idea behind K-Nearest Neighbors (KNN) is very simple.

19
New cards

Regression

is a statistical method used to predict or explain the relationship between independent variables (IVs) and dependent variable (DV).

20
New cards

]regression

The objective is to find the best-fitting curve for a dependent variable in a multidimensional space, with each independent variable being a dimension.

21
New cards

Simple Linear Regression

A statistical method used to model the relationship between one independent variable (X)and one dependent variable (Y) by fitting a straight line.

22
New cards

Multiple Linear Regression

predicts a dependent variable based on multiple predictors.

23
New cards

The coefficient of determination or R²

measures the proportion of variance in the dependent variable explained by the independent variable(s).

24
New cards

Mean Absolute Error (MAE)

measures the average absolute difference between actual and predicted values.

25
New cards

Mean Squared Error (MSE)

measures the average of squared differences between actual and predicted values.

26
New cards

Root Mean Squared Error (RMSE)

is the square root of MSE and is one of the most commonly used regression metrics.

27
New cards

Model Lifecycle

describes the complete journey of a machine learning model, starting from identifying and defining the problem, collecting and preparing data, building and training the model, evaluating its performance, deploying it into real-world use, and continuously monitoring and maintaining it to ensure accuracy and effectiveness over time.

28
New cards

Problem Definition

In this stage, the goal is to clearly understand what problem the model will solve and why it is needed.

29
New cards

Data Collection

involves gathering all relevant information needed to train the model.

30
New cards

Data Preparation

is a crucial phase in model lifecycle that involves transforming raw data into a clean and usable format for modeling.

31
New cards

Data cleaning

removing duplicate records, correcting errors, and handling missing values to improve data quality.

32
New cards

Data transformation

converting data into appropriate formats, such as scaling numerical values or encoding categorical variables.

33
New cards

Exploratory Data Analysis

analyzing data using statistics and visualizations to understand patterns, distributions, and relationships.

34
New cards

Feature engineering

creating new features from existing data to improve the model’s predictive capability.

35
New cards

Feature selection

selecting relevant features and removing unnecessary or irrelevant variables.

36
New cards

Data splitting

dividing the dataset into training and testing sets to properly train and evaluate the model.

37
New cards

Model Selection

This stage involves selecting the most appropriate algorithm or model to solve a specific problem based on the type of data and the desired outcome.

38
New cards

Cross-Validation

Divide the data into several subsets to train and test the model multiple times, ensuring reliable performance and preventing overfitting.

39
New cards

Hyperparameter Tuning

Adjust the model’s settings (hyperparameters) to improve its accuracy and overall performance.

40
New cards

Model Evaluation

The stage at which the trained model is evaluated on previously unseen data.

41
New cards

Conduct Error Analysis

Analyze incorrect predictions to identify weaknesses and improve model accuracy.

42
New cards

Perform Sensitivity Analysis

Determine how changes in input features affect predictions to understand feature importance and model stability.

43
New cards

Model Deployment

The final phase of the machine learning lifecycle, where the trained model is integrated into a production environment, allowing it to make predictions on new data.