A financial institution is deploying a generative AI solution that generates investment advice. They must ensure fairness, avoid toxic outputs, and comply with regulations like GDPR. Which TWO strategies should they implement? (Choose two.)
Trap 1: Set the model temperature to 0 to eliminate creativity and reduce…
E is wrong because temperature 0 does not eliminate bias; it only makes outputs deterministic.
Trap 2: Fine-tune the model exclusively on compliant financial documents.
C is wrong because fine-tuning does not guarantee non-toxic outputs.
Trap 3: Disable request logging to avoid storing sensitive data.
A is wrong because GDPR often requires logging for audit.
- A
Use Vertex AI Safety Attributes to filter harmful content in both input and output.
B is correct because it proactively blocks toxic content.
- B
Set the model temperature to 0 to eliminate creativity and reduce bias.
Why wrong: E is wrong because temperature 0 does not eliminate bias; it only makes outputs deterministic.
- C
Implement a human review process for any advice above a certain risk threshold.
D is correct because human oversight catches errors the model might miss.
- D
Fine-tune the model exclusively on compliant financial documents.
Why wrong: C is wrong because fine-tuning does not guarantee non-toxic outputs.
- E
Disable request logging to avoid storing sensitive data.
Why wrong: A is wrong because GDPR often requires logging for audit.