1/16
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai | Chat |
|---|
No analytics yet
Send a link to your students to track their progress
Rule-Based Approach (AI Modelling)
An AI approach relying on developer-written logic and explicit IF-THEN rules without autonomous learning from data.
Learning-Based Approach (AI Modelling)
An AI approach where models analyze data to autonomously detect patterns and derive rules for decision-making.
Supervised Learning Framework
A machine learning paradigm trained on labeled datasets with explicit input-output pairs to learn predictive relationships.
Regression Model Task
A supervised learning process designed to predict continuous numeric outcomes (e.g., predicting salary or temperature).
Classification Model Task
A supervised learning process designed to assign data into discrete categorical labels (e.g., detecting spam vs. non-spam).
Unsupervised Learning Framework
A machine learning paradigm that identifies hidden patterns and structures in unlabeled datasets without target answers.
Clustering Technique
An unsupervised learning method that groups data points with shared features into distinct clusters.
Dimensionality Reduction Technique
An unsupervised learning method that decreases input variables while preserving key dataset structure and variance.
Reinforcement Learning Mechanism
A paradigm where an agent learns decision-making policies through continuous environment feedback using rewards and penalties.
Decision Tree Components
A hierarchical model comprising a root node, internal feature testing nodes, decision branches, and leaf output nodes.
Artificial Neural Network (ANN) Architecture
A deep learning structure composed of an input layer, one or more hidden processing layers with weighted connections, and an output layer.
Dataset Splitting Ratio (Train vs. Test)
Partitioning data into a training set (70%–80%) for fitting parameters and a testing set (20%–30%) for evaluating unseen accuracy.
Confusion Matrix Structure (2×2)
An evaluation grid summarizing classifier predictions using True Positives (TP), True Negatives (TN), False Positives (FP), and False Negatives (FN).
Accuracy Formula (AI Evaluation)
Calculates total correct predictions relative to all samples: Accuracy=TP+TN+FP+FNTP+TN
Precision Formula (AI Evaluation)
Calculates the ratio of true positive outcomes to total predicted positive outcomes: Precision=TP+FPTP
Recall Formula (AI Evaluation)
Calculates the ratio of true positive outcomes to actual positive samples: Recall=TP+FNTP
F1 Score Formula (AI Evaluation)
Combines Precision and Recall into a single harmonic mean metric: F1 Score=2×Precision+RecallPrecision×Recall