AIF-C01: AI & ML Fundamentals

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/45

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 5:58 PM on 8/8/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

46 Terms

1
New cards

Accuracy Metric

Total Correct Predictions; Ratio of true results across all classifications

2
New cards

Precision Metric

Quality of Positive Predictions; True Positives / (True Positives + False Positives); Crucial when false positives are costly

3
New cards

Recall Metric

Quantity of Actual Positives Caught; True Positives / (True Positives + False Negatives); Crucial when missing positive cases is dangerous

4
New cards

F1 Score

Harmonic mean of Precision and Recall; Provides a balanced single metric for evaluating imbalanced datasets

5
New cards

Area Under the ROC Curve (AUC)

Imbalanced Class Separation; Distinguishing power across all classification thresholds

6
New cards

K-Nearest Neighbors (k-NN)

Supervised Classification Algorithm; Label assignments based on closest surrounding data points

7
New cards

K-Means Clustering

Unsupervised Clustering Algorithm; Groups unlabeled data structures into K clusters

8
New cards

Least-to-Most Prompting

Deconstruct Complex Tasks; Sequential problem breaking and sub-task ordering

9
New cards

Inference

Running new data through a trained model to generate predictions; Uses existing weights without retraining

10
New cards

Training

The process of adjusting model weights using a training dataset to learn patterns and minimize error

11
New cards

Supervised Learning

Training a model on labeled data (inputs paired with correct output targets; e.g. regression / classification)

12
New cards

Unsupervised Learning

Training a model on unlabeled data to discover hidden patterns; groupings; or structures

13
New cards

Overfitting

Model memorizes training noise; High accuracy on training data; poor performance on new unseen test data

14
New cards

Underfitting

Model is too simple to capture underlying data patterns; Performs poorly on both training and test data

15
New cards

Hyperparameters

External configuration settings set BEFORE training begins to govern the learning process (e.g. learning rate; batch size)

16
New cards

Low Bias and Low Variance

Ideal model performance; fits training data well and generalizes accurately to unseen test data; exam trigger: "well-balanced model" / "high accuracy on both train and test sets"

17
New cards

Low Bias / High Variance (High Variability)

Overfitting; model memorizes training data noise but fails on unseen test data; exam trigger: "performs well on training data / poorly on test data"

18
New cards

High (Increased) Bias / Low (Less) Variance

Underfitting; model is too simple to learn underlying patterns in either dataset; exam trigger: "performs poorly on both training and test data"

19
New cards

High Bias / High Variance (Increased Variability)

Worst-case model failure; model is both too simple to capture patterns and highly unstable across different datasets; exam trigger: "consistently poor and erratic performance across all data splits"

20
New cards

Association Rule Learning

Unsupervised Rule Mining; identifies strong relationships and co-occurrence patterns between items in large datasets (e.g. market basket analysis)

21
New cards

Logistic Regression

Supervised Classification Algorithm; predicts discrete categorical outcomes and probabilities using a sigmoid function

22
New cards

Continuous Regression

Supervised Numerical Prediction; predicts continuous numeric value outputs based on input feature relationships

23
New cards

Probability Density Estimation

Unsupervised Distribution Analysis; estimates the continuous probability distribution function of an underlying random variable dataset

24
New cards

Clustering

Unsupervised Grouping Technique; partitions unlabeled data points into clusters based on feature similarity and distance metrics

25
New cards

RAG (Retrieval-Augmented Generation)

Knowledge Retrieval Framework; connects foundation models to external verified data sources without full model retraining

26
New cards

BERTScore

Semantic Evaluation Metric; uses contextual embeddings to measure semantic similarity between model output and reference text

27
New cards

BLEU Score

Precision-Based NLP Metric; evaluates machine translation quality by counting exact n-gram matches against reference text

28
New cards

ROUGE Score

Recall-Based NLP Metric; evaluates text summarization quality by measuring overlapping n-grams and word sequences against reference summaries

29
New cards

Traditional ML Models

Structured Data & Manual Features; works with numerical / categorical rows and columns; requires manual feature engineering; uses standard algorithms (e.g. regression / decision trees)

30
New cards

Generative AI Models

Unstructured Data & Automatic Features; works with text / images / audio; automatically learns representations via neural networks; uses advanced architectures (e.g. GANs / Transformers) to generate new content

31
New cards

GenAI Capability: Adaptability

Task & Domain Flexibility; adapts seamlessly across various tasks and functional domains

32
New cards

GenAI Capability: Responsiveness

Real-Time Output; generates content and responses in real-time

33
New cards

GenAI Capability: Simplicity

Task Deconstruction; simplifies complex tasks and user workflows

34
New cards

GenAI Capability: Creativity and Exploration

Novel Content Generation; generates novel ideas; designs; or technical solutions

35
New cards

GenAI Capability: Data Efficiency

Small Sample Learning; learns patterns effectively from relatively small amounts of data

36
New cards

GenAI Capability: Personalization

Tailored User Experience; creates personalized content tailored to individual preferences or characteristics

37
New cards

GenAI Capability: Scalability

High-Volume Output; generates large amounts of content quickly at scale

38
New cards

ML Lifecycle: Business Goal Identification

Phase 1; defining business objectives; success criteria; and identifying key performance indicators (KPIs)

39
New cards

ML Lifecycle: ML Problem Framing

Phase 2; translating business objectives into specific machine learning tasks (e.g. classification; regression; clustering)

40
New cards

ML Lifecycle: Data Collection

Phase 3; gathering relevant historical datasets; data streams; or third-party data needed to train the model

41
New cards

ML Lifecycle: Data Integration and Preparation

Phase 4; combining; cleaning; deduplicating; handling missing values; and structuring raw data for model ingestion

42
New cards

ML Lifecycle: Feature Engineering

Phase 5; selecting; transforming; and constructing relevant input attributes from raw data to improve model predictive power

43
New cards

ML Lifecycle: Model Training

Phase 6; feeding processed data into machine learning algorithms to adjust weights / parameters and learn patterns

44
New cards

ML Lifecycle: Model Validation

Phase 7; evaluating model performance on unseen test data using statistical metrics (e.g. accuracy; precision; recall; RMSE)

45
New cards

ML Lifecycle: Business Evaluation

Phase 8; testing trained model outputs against business success criteria and ROI before deploying to production

46
New cards

ML Lifecycle: Production Deployment

Phase 9; deploying validated models to hosting endpoints (e.g. real-time inference / batch transform) for live predictions