Advanced Concepts of Modeling 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/29

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards covering the definitions of AI, ML, and DL, common data terminologies, modeling approaches, and the structural components of neural networks.

Last updated 12:01 AM on 8/18/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

30 Terms

1
New cards

Artificial Intelligence (AI)

A technology that empowers machines to perform tasks traditionally requiring human intellect, such as reasoning, problem-solving, and decision-making.

2
New cards

Machine Learning (ML)

A specialized subset of AI that harnesses statistical techniques to enable machines to learn from experience and refine their performance over time without being explicitly programmed.

3
New cards

Deep Learning (DL)

A sophisticated subset of Machine Learning that uses multi-layered neural networks to process large amounts of data and solve complex problems like image and speech recognition.

4
New cards

Input (Raw Data)

The unprocessed data collected from multiple sources that serves as the foundation for a machine learning model to learn patterns.

5
New cards

ML Model

The processing unit that learns patterns and relationships from input data to generate intelligent predictions and actionable insights.

6
New cards

Segmentation

The process of grouping similar items or customers in a data-driven model to provide better targeting and personalization.

7
New cards

Classification

The task of assigning categories or labels to data for automated decision-making and efficiency.

8
New cards

Recommendation Systems

A real-world application of ML that analyses user preferences and browsing history to suggest personalized products or content.

9
New cards

Anomaly Detection

An ML application used to identify unusual patterns in data, such as identifying irregular heart rates or blood pressure in a medical context.

10
New cards

Features

The columns of a data table that describe the characteristics of a dataset, such as name, colour, and size in a fruit dataset.

11
New cards

Labels

Tags attached to data that identify its meaning, such as the name of a fruit given its features; data can be labelled or unlabelled.

12
New cards

Training Data

A collection of examples provided to an AI model to analyse and learn from, similar to a teacher using solved examples to teach a student.

13
New cards

Testing Data

A set of data used without labels to check the accuracy of a model's answers, similar to a class test.

14
New cards

Rule-Based Approach

A modeling method where patterns are defined by the developer through static if-then instructions, meaning the machine cannot learn from mistakes.

15
New cards

Learning-Based Approach

An adaptive modeling approach where the machine discovers patterns on its own by studying examples or receiving feedback.

16
New cards

Supervised Learning

A type of ML where the dataset is labelled and the model is trained under the guidance of defined pairs of features and labels.

17
New cards

Regression

A sub-type of supervised learning where the model predicts a continuous value, such as price, temperature, or age.

18
New cards

Unsupervised Learning

A type of ML where the model works on unlabelled data to discover relationships, patterns, and trends without human guidance.

19
New cards

Clustering

A sub-type of unsupervised learning where the model finds similarities between items and groups them without classes being defined in advance.

20
New cards

Association

A sub-type of unsupervised learning that finds interesting relationships between variables, such as identifying items customers are likely to buy together.

21
New cards

Reinforcement Learning

A type of machine learning where a system learns to make a series of decisions through trial and error to maximise a reward mechanism.

22
New cards

Artificial Neural Network (ANN)

A deep learning model composed of interconnected layers of neurons that can automatically extract features from large datasets and provide probability values for inputs.

23
New cards

Convolutional Neural Network (CNN)

A specific deep-learning algorithm built for processing images by assigning learnable weights and biases to different features.

24
New cards

Input Layer

The first layer of a neural network that acquires data and feeds it into the system without performing any processing.

25
New cards

Hidden Layers

The processing layers of a neural network where nodes run algorithms using weights, biases, and activation functions.

26
New cards

Output Layer

The final layer of a neural network that presents the processed result to the user without doing any processing itself.

27
New cards

Perceptron

The simplest building block of a neural network; a single artificial neuron that judge inputs by importance to produce a single yes-or-no decision.

28
New cards

Weights

Values in a perceptron or neural network that represent the importance of a specific input toward the final decision.

29
New cards

Bias

A value added to the weighted sum of inputs in a perceptron to shift the result before it is compared against a threshold.

30
New cards

Threshold

The value used in a perceptron calculation where if the total weighted sum is greater than or equal to this limit, the output is 11, otherwise it is 00.