MLS-C01 · Question #396
A clothing company is experimenting with different colors and materials for its products. The company stores the entire sales history of all its products in Amazon S3. The company is using…
The correct answer is B. Train an Amazon SageMaker DeepAR model. Amazon SageMaker DeepAR (B) is the correct answer because it is specifically designed to handle the 'cold-start' problem - forecasting demand for new items that have no historical sales data. DeepAR is a supervised deep learning algorithm that trains a single global model…
Question
A clothing company is experimenting with different colors and materials for its products. The company stores the entire sales history of all its products in Amazon S3. The company is using custom-built exponential smoothing (ETS) models to forecast demand for its current products. The company needs to forecast the demand for a new product variation that the company will launch soon. Which solution will meet these requirements?
Options
- ATrain a custom ETS model.
- BTrain an Amazon SageMaker DeepAR model.
- CTrain an Amazon SageMaker -means clustering model.
- DTrain a custom XGBoost model.
How the community answered
(62 responses)- A10% (6)
- B85% (53)
- C2% (1)
- D3% (2)
Explanation
Amazon SageMaker DeepAR (B) is the correct answer because it is specifically designed to handle the 'cold-start' problem - forecasting demand for new items that have no historical sales data. DeepAR is a supervised deep learning algorithm that trains a single global model across all products in the dataset simultaneously. When forecasting a new product, it leverages learned patterns from similar existing products (e.g., similar colors or materials) to generate predictions. A custom ETS model (A) requires historical data for the specific product being forecast and cannot generalize to new items. K-means clustering (C) is an unsupervised algorithm for grouping data points - it does not produce demand forecasts. XGBoost (D) is a gradient boosting algorithm suited for tabular classification/regression tasks, not purpose-built for time-series demand forecasting of new products without history.
Topics
Community Discussion
No community discussion yet for this question.