
Answer-first summary for fast verification
Answer: Regression
## Explanation of the Correct Answer **Correct Answer: B (Regression)** Regression models are specifically designed for making numeric predictions. These models analyze the relationship between independent variables (features) and a dependent variable (target) to predict continuous numerical values. ### Why Regression is the Optimal Choice: 1. **Primary Purpose**: Regression algorithms are fundamentally built for predicting continuous numerical outcomes. Examples include predicting house prices, stock values, temperature readings, or sales figures. 2. **AWS Context**: Within AWS AI/ML services, regression is a core supervised learning approach supported by Amazon SageMaker through algorithms like Linear Learner, XGBoost, and DeepAR for time series forecasting. 3. **Mathematical Foundation**: Regression models use mathematical equations to establish relationships between variables, producing numerical outputs rather than categorical classifications. ### Analysis of Other Options: **A: Diffusion** - Diffusion models are primarily used for generative AI tasks, particularly in image generation (like Stable Diffusion). They work by gradually adding and removing noise to create new data samples, not for making direct numeric predictions. **C: Transformer** - Transformer models are neural network architectures designed for sequence-to-sequence tasks, most famously in natural language processing (BERT, GPT models). While they can be adapted for regression tasks, their primary strength is in understanding and generating sequences, not specifically numeric prediction. **D: Multi-modal** - Multi-modal models process and combine multiple types of data (text, images, audio) to make predictions or generate content. While they might include numeric prediction as one component, this describes the input data type rather than the prediction task type. ### Key Distinction: The question specifically asks about the **type of AI model** for numeric predictions, not about model architectures, data types, or generative capabilities. Regression is the fundamental machine learning category dedicated to this exact purpose, making it the most precise and correct answer.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
No comments yet.