AWS Certified AI Practitioner Flashcards
Browse all 30 cards
How many questions are on the AWS Certified AI Practitioner exam, and how many are scored?
The exam has 65 total questions, of which 50 are scored and 15 are unscored (unidentified pretest items used to evaluate future questions).
What is the passing score for the AWS AI Practitioner exam?
You need a minimum scaled score of 700, on a scale that runs from 100 to 1,000.
What is a compensatory scoring model?
A scoring approach where your overall score determines pass/fail rather than requiring you to pass each domain individually, so strong performance in one domain can offset weaker performance in another.
What is the difference between AI, ML, and deep learning?
AI is the broad field of building systems that perform tasks requiring human-like intelligence; ML is a subset of AI where models learn patterns from data rather than being explicitly programmed; deep learning is a subset of ML using multi-layered neural networks.
What is supervised learning?
A machine learning approach where a model is trained on labeled data (input-output pairs) so it learns to map inputs to known correct outputs, such as classification or regression.
What is unsupervised learning?
A machine learning approach where a model finds patterns or structure in unlabeled data, such as clustering or dimensionality reduction, without predefined output labels.
What is reinforcement learning?
A learning paradigm where an agent learns to take actions in an environment by receiving rewards or penalties, optimizing for cumulative reward over time.
What is a foundation model (FM)?
A large model pretrained on broad, diverse data that can be adapted to many downstream tasks through prompting, fine-tuning, or other customization techniques.
What is generative AI?
A category of AI that creates new content — text, images, audio, code, or other media — by learning patterns from training data, typically powered by foundation models.
What is a large language model (LLM)?
A type of foundation model trained on massive text corpora to understand and generate human language, used for tasks like summarization, question answering, and content generation.
What is a transformer architecture?
A neural network architecture that uses self-attention mechanisms to weigh the relevance of different parts of an input sequence, forming the basis of most modern LLMs.
What is a token in the context of LLMs?
A unit of text (a word, subword, or character sequence) that a language model processes; model context windows and costs are typically measured in tokens.
What is prompt engineering?
The practice of crafting input prompts to guide a foundation model toward producing more accurate, relevant, or useful outputs without changing the model's underlying weights.
What is zero-shot prompting?
A prompting technique where the model is asked to perform a task with no prior examples given in the prompt, relying solely on its pretrained knowledge.
What is few-shot prompting?
A prompting technique where a small number of example input-output pairs are included in the prompt to guide the model toward the desired response format or behavior.
What is chain-of-thought prompting?
A prompting technique that encourages a model to break down its reasoning into intermediate steps before producing a final answer, often improving accuracy on complex tasks.
What is Retrieval Augmented Generation (RAG)?
A technique that retrieves relevant external documents or data at inference time and feeds them into the model's context, grounding responses in up-to-date or proprietary information without retraining the model.
What is fine-tuning in the context of foundation models?
The process of further training a pretrained foundation model on a smaller, task-specific or domain-specific labeled dataset to improve its performance on that task.
What is Amazon Bedrock?
A fully managed AWS service that provides access to foundation models from multiple providers through a single API, along with tools for customization, RAG, and building generative AI applications.
What is Amazon SageMaker?
A fully managed AWS service for building, training, and deploying machine learning models across the entire ML lifecycle.
What is Amazon Q?
An AWS generative AI-powered assistant that helps with tasks such as answering questions, generating content, and writing or troubleshooting code, tailored to business or developer contexts.
What is model hallucination?
A phenomenon where a generative AI model produces output that is factually incorrect, fabricated, or not grounded in its training data or provided context, while appearing plausible.
What is bias in the context of AI/ML models?
Systematic errors or unfair skew in model outputs that favor or disadvantage particular groups, often resulting from imbalanced or unrepresentative training data.
What is model explainability?
The degree to which a human can understand the reasons behind a model's predictions or decisions, which is important for trust, debugging, and regulatory compliance.
What are the core pillars of Responsible AI according to AWS?
AWS frames Responsible AI around dimensions such as fairness, explainability, privacy and security, safety, controllability, veracity and robustness, governance, and transparency.
What is Amazon SageMaker Clarify used for?
A capability that helps detect potential bias in datasets and models and provides explainability insights into model predictions.
What is Amazon SageMaker Model Monitor used for?
A capability that continuously monitors deployed models in production for data quality issues and model drift over time.
What is AI governance?
The policies, processes, and controls an organization puts in place to ensure AI systems are developed and used responsibly, ethically, and in compliance with relevant regulations.
What is the shared responsibility model as applied to AI on AWS?
AWS secures the underlying cloud infrastructure and managed AI/ML services, while the customer is responsible for securing their data, access controls, model configurations, and appropriate use of the AI systems they build.
What is guardrails' role in generative AI applications (e.g., Amazon Bedrock Guardrails)?
Guardrails are configurable safeguards that filter or block undesired content, topics, or PII in prompts and model responses to help keep generative AI applications safe and compliant.