
Explanation:
To ensure a custom model trained on Amazon Bedrock does not generate inference responses based on confidential data, the most effective approach is to address the root cause: the model's training on that sensitive data.
Option A (Delete the custom model, remove confidential data from training dataset, retrain the custom model) is the optimal solution because:
Addresses the fundamental issue: When a model is trained on confidential data, that information becomes embedded in the model's parameters through the learning process. The model may have memorized patterns or specific details from the confidential data, which could influence its outputs during inference.
Eliminates the source of risk: By removing the confidential data from the training dataset and retraining the model from scratch, you ensure the new model has never been exposed to the sensitive information. This prevents any possibility of the model generating responses based on that data.
Follows AWS best practices for data privacy: AWS recommends that sensitive data should be excluded from training datasets when privacy is a concern. Retraining with a cleaned dataset aligns with this principle.
Option B (Mask the confidential data in inference responses using dynamic data masking):
Option C (Encrypt the confidential data in inference responses using Amazon SageMaker):
Option D (Encrypt the confidential data in the custom model using AWS KMS):
In summary, option A provides a comprehensive solution by addressing the root cause through data removal and model retraining, ensuring the custom model operates without any influence from the confidential information.
Ultimate access to all questions.
No comments yet.
An AI practitioner trained a custom model on Amazon Bedrock using a training dataset containing confidential data. How can the AI practitioner ensure the custom model does not generate inference responses based on that confidential data?
A
Delete the custom model. Remove the confidential data from the training dataset. Retrain the custom model.
B
Mask the confidential data in the inference responses by using dynamic data masking.
C
Encrypt the confidential data in the inference responses by using Amazon SageMaker.
D
Encrypt the confidential data in the custom model by using AWS Key Management Service (AWS KMS).