Option A is the intended answer because a foundation model is already pre-trained on a very large and diverse corpus and can often perform downstream tasks such as classification or labeling through prompting without the customer first training a model specifically for that task.
AWS defines a foundation model as “a large pre-trained model that is adaptable to many downstream tasks.” AWS lists classification among the use cases supported by foundation models.
AWS also recommends first attempting to customize foundation-model behavior through prompt engineering because well-designed prompts can achieve desired results without fine-tuning or changing model weights .
Therefore, for classifying or generating labels for news articles, the organization can instruct a suitable FM to assign categories using zero-shot or few-shot prompting instead of collecting a large labeled training dataset and training a dedicated conventional classifier.
The wording “does not require training” should be interpreted from the company ' s implementation perspective. The FM itself was certainly trained previously by its provider. The advantage is that the customer does not necessarily need to conduct task-specific model training before using the FM for this downstream labeling task.
Option B is incorrect because FMs are generally substantially larger than conventional task-specific ML models and can require more compute during inference.
Option C is incorrect because foundation models, particularly large neural models, are generally not inherently more transparent or interpretable than simpler traditional ML algorithms.
Option D is also incorrect. Foundation models can exhibit biases arising from training data, model design, prompting, or deployment context. AWS responsible AI practices explicitly recognize fairness and bias as areas requiring evaluation and mitigation.
Because a pre-trained FM can generalize to classification and other downstream tasks without the organization developing a newly trained task-specific model, the key advantage presented by these choices is A. An FM does not require training .
===========
Submit