Advanced concepts of Modelling in AI

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

1/16

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 4:15 PM on 9/12/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

17 Terms

1
New cards

Rule-Based Approach (AI Modelling)

An AI approach relying on developer-written logic and explicit IF-THEN rules without autonomous learning from data.

2
New cards

Learning-Based Approach (AI Modelling)

An AI approach where models analyze data to autonomously detect patterns and derive rules for decision-making.

3
New cards

Supervised Learning Framework

A machine learning paradigm trained on labeled datasets with explicit input-output pairs to learn predictive relationships.

4
New cards

Regression Model Task

A supervised learning process designed to predict continuous numeric outcomes (e.g., predicting salary or temperature).

5
New cards

Classification Model Task

A supervised learning process designed to assign data into discrete categorical labels (e.g., detecting spam vs. non-spam).

6
New cards

Unsupervised Learning Framework

A machine learning paradigm that identifies hidden patterns and structures in unlabeled datasets without target answers.

7
New cards

Clustering Technique

An unsupervised learning method that groups data points with shared features into distinct clusters.

8
New cards

Dimensionality Reduction Technique

An unsupervised learning method that decreases input variables while preserving key dataset structure and variance.

9
New cards

Reinforcement Learning Mechanism

A paradigm where an agent learns decision-making policies through continuous environment feedback using rewards and penalties.

10
New cards

Decision Tree Components

A hierarchical model comprising a root node, internal feature testing nodes, decision branches, and leaf output nodes.

11
New cards

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.

12
New cards

Dataset Splitting Ratio (Train vs. Test)

Partitioning data into a training set (70%70\%80%80\%) for fitting parameters and a testing set (20%20\%30%30\%) for evaluating unseen accuracy.

13
New cards

Confusion Matrix Structure (2×22 \times 2)

An evaluation grid summarizing classifier predictions using True Positives (TP\text{TP}), True Negatives (TN\text{TN}), False Positives (FP\text{FP}), and False Negatives (FN\text{FN}).

14
New cards

Accuracy Formula (AI Evaluation)

Calculates total correct predictions relative to all samples: Accuracy=TP+TNTP+TN+FP+FN\text{Accuracy} = \frac{\text{TP} + \text{TN}}{\text{TP} + \text{TN} + \text{FP} + \text{FN}}

15
New cards

Precision Formula (AI Evaluation)

Calculates the ratio of true positive outcomes to total predicted positive outcomes: Precision=TPTP+FP\text{Precision} = \frac{\text{TP}}{\text{TP} + \text{FP}}

16
New cards

Recall Formula (AI Evaluation)

Calculates the ratio of true positive outcomes to actual positive samples: Recall=TPTP+FN\text{Recall} = \frac{\text{TP}}{\text{TP} + \text{FN}}

17
New cards

F1 Score Formula (AI Evaluation)

Combines Precision and Recall into a single harmonic mean metric: F1 Score=2×Precision×RecallPrecision+Recall\text{F1 Score} = 2 \times \frac{\text{Precision} \times \text{Recall}}{\text{Precision} + \text{Recall}}