What is the relationship hierarchy between AI, Machine Learning, and Deep Learning?
AI is the overarching field; Machine Learning is a subset of AI; Deep Learning is a specialized subset of ML.
What is the primary characteristic of Machine Learning (ML) regarding programming?
ML allows systems to learn from data and improve performance without being explicitly programmed for every rule.
Which technology simulates human intelligence to solve problems, recognize images, and write text?
Artificial Intelligence (AI).
What specialized field of ML uses multi-layered neural networks inspired by the human brain?
Deep Learning.
What capability allows computers to derive insights and make decisions based on visual inputs like images and videos?
Computer Vision.
Which technology enables computers to interpret, manipulate, and comprehend human language (e.g., sentiment analysis)?
Natural Language Processing (NLP).
What are the three types of layers found in a Neural Network?
Input layer, Hidden layer(s), and Output layer.
What is the process called where a neural network learns from mistakes by adjusting weights to reduce error?
Backpropagation (or Backward Propagation).
What is the term for using a trained ML model to make predictions on new, unseen data?
Inference.
Which inference type processes data points individually as they arrive, providing immediate, low-latency predictions?
Real-time (or Online) Inference.
Which inference type is best for processing large datasets all at once (e.g., nightly reporting) where immediate results are not critical?
Batch (or Offline) Inference.
What distinguishes Supervised Learning from other ML methods?
It requires a labeled dataset (input paired with correct output) to train the model.
Which ML method is used for finding patterns in unlabeled data, such as customer segmentation or anomaly detection?
Unsupervised Learning.
Which ML method involves training a model to make sequences of decisions through a system of rewards and penalties?
Reinforcement Learning.
What is “Labeled Data”?
Data that includes both the input features and the corresponding correct output (or target).
What type of data typically lacks a predefined model, such as text documents, images, and audio files?
Unstructured Data.
What specific architecture do Large Language Models (LLMs) use to understand and generate human-like text?
Transformer architecture.
What is “Bias” in the context of an AI model?
Systematic errors in a model that result in unfair, inaccurate, or discriminatory outcomes.
What is the term for how well a model learns patterns in training data to generalize to new data?
Fit (e.g., Underfitting or Overfitting).
What is the definition of a “feature” in a dataset?
An individual measurable property or characteristic of the data being observed.
Identify a scenario where AI/ML solutions are generally NOT appropriate.
When a specific, deterministic outcome is needed instead of a prediction, or when data is insufficient/poor.
What is “Accountable AI”?
The requirement for human oversight in AI decisions with significant consequences (e.
Which ML technique is used to predict numerical outcomes, such as stock prices or house values?
Regression.
Which Amazon SageMaker algorithm trains multiple models in parallel to optimize regression predictions?
Linear Learner algorithm.