GEELEC: FUNDAMENTALS OF AI DEVELOPMENT

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

1/40

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 9:38 AM on 6/24/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

41 Terms

1
New cards

Supervised Learning

• The most common form of AI learning

2
New cards

Supervised Learning

Learns from labeled data: the model sees inputs and the correct

answers

3
New cards

Supervised learning

Learns to predict the correct output when given new inputs

4
New cards

Unsupervised Learning

The model gets raw data without labels

5
New cards

Unsupervised learning

It finds patterns, clusters, or groupings in the data on its own

6
New cards

Unsupervised

Used in recommendation systems, anomaly detection, customer

segmentation, and more

7
New cards

Semi Supervised learning

Combines a small amount of labeled data with larger set of unlabeled

data during training

8
New cards

Semi Supervised Learning

Useful when labeling data is expensive or impractical, such as in

speech recognition tasks where only a fraction of audio data is

transcribed

9
New cards

Model

is a system that produces outputs based on learning patterns from input data

10
New cards

Model

It is built by training a machine learning algorithm with relevant data.

11
New cards

Data

The raw material that teaches the model

12
New cards

Features

Key characteristics extracted from the data to help the model learn (e.g., keywords

in a message

13
New cards

Algorithms

The recipe that processes the data to find patterns

14
New cards

Labels

In supervised learning, these are the answers the model should learn to predict

15
New cards

Training Process

The loop where the algorithm learns from data and adjust itself

16
New cards

Data

Features

Algorithms

Labels

Training Process

Ingredients for a Model

17
New cards

Data collection

Gathering as many examples as possible that reflect the real-world

situations the model will face.

18
New cards

Pre Processing

Cleaning (removing duplicates, correcting errors), transforming (converting

text into numbers), and standardizing data formats. Also includes

normalizing values and handling missing data.

19
New cards

Model Initialization

Choose the algorithm and set initial values like learning rate or number of

layers. This step sets up the architecture that the training will optimize.

20
New cards

Training

Feed the preprocessed, labeled data into the model. The model will make predictions and compare them to the correct answers.

21
New cards

Loss calculation

The model calculates how far off it was from the correct answer using a

“loss function”.

22
New cards

Optimization

Based on the loss, the model adjusts its parameters to improve future

predictions. This is where learning actually happens.

23
New cards

Iteration

The training process runs many times through the full dataset (called

epochs) to refine predictions and reach stable, high performance.

24
New cards

Data collection

Pre processing

Model Initialization

Training

Loss calculation

Optimization

Iteration

Training the model

25
New cards

Good, representative data

Diverse examples

that match the

real-world use case

26
New cards

Balance Training

Enough positive

and negative cases

27
New cards

Avoiding Overfitting

Don’t memorize the

answers, learn the

patterns

28
New cards

Performance

Monitoring

Use metrics

(accuracy, loss) to

track progress

29
New cards

Good, Representative Data

Balance Training

Avoiding Overfitting

Performance Monitoring

What makes the training successful

30
New cards

Inference

is the stage where a trained model makes predictions using what it has already

learned.

31
New cards

Inference

It applied knowledge to new, unseen data.

32
New cards

Inference

Happens in real-time (e.g., chatbot) or in batches (e.g., email classification).

33
New cards

Inference

The model is not learning anymore - just generating outputs.

34
New cards

Validation

helps check if a model can make a good prediction on new data - not just memorize

training examples.

35
New cards

Validation

Common practice: Dataset are split into training, validation, and testing sets..

36
New cards

Validation

data is unseen during training and is used to fine-tune model hyperparameters.

37
New cards

Validation

It helps adjust the model and avoid memorizing (overfitting) or not learning enough

(undefitting).

38
New cards

Scientists

Cleans, prepares, and

explores data; finds

trends and builds

dataset

39
New cards

Data Engineer

Builds the pipeline that

trains and serves

models in production

environments.

40
New cards

AI ethicist

Guides fairness,

transparency,

accountability, and

ensures systems do no

harm.

41
New cards

AI Trainer

Breaks down AI

concepts for learners,

emphasizes

responsible use, and

helps bridge technical

and ethical gaps