AWS AI and ML - Series Overview

The AI side of my work kept producing notes worth keeping in one place - which AWS service to reach for, the concepts behind the choice, and what changes once you move from reading about Bedrock to building with it. Chapter 1 (Fundamentals) - concept-focused, assumes no prior AI/ML background. Chapters 2-3 (build) - assume Chapter 1 as background, hands-on with specific AWS services. Chapters land as the hands-on work behind them gets done, not on a fixed schedule. The series Chapter 1 - Fundamentals Algorithm types, performance metrics, AWS AI services, inference options, Bedrock vs SageMaker, and prompt engineering techniques - the concepts I kept returning to. ...

May 21, 2026 路 2 min 路 284 words

AWS AI and ML - Fundamentals

This is Chapter 1 of the AWS AI and ML series. These are the concepts and service distinctions I kept returning to while building on Bedrock and working through the AIF-C01 exam. Writing them down in one place made the concepts stick. Different types of ML algorithms Three broad families, each suited to a different class of problem. Supervised learning - trains on labelled input-output pairs. Two sub-types: Classification - predicts a category (spam/not spam, image labels). Algorithms: logistic regression, decision trees, random forests, SVM, neural networks. Regression - predicts a continuous value (house price, demand forecast). Algorithms: linear regression, gradient boosting, neural networks. Unsupervised learning - finds structure in unlabelled data: ...

May 16, 2026 路 7 min 路 1320 words