
Answer-first summary for fast verification
Answer: Include more diverse training data. Fine-tune the model again by using the new data.
## Analysis of the Question The question presents a scenario where a bank has fine-tuned an LLM for loan approvals, and an external audit has identified demographic bias in the approval speed. The key requirement is to address this issue in the **most cost-effective** manner. ## Evaluation of Options **Option A: Include more diverse training data. Fine-tune the model again by using the new data.** - **Optimal Choice**: This approach directly targets the root cause of bias—likely unrepresentative training data. By augmenting the dataset with more diverse demographic examples and performing additional fine-tuning, the model can learn more equitable patterns. This is cost-effective because it leverages the existing fine-tuned model infrastructure, avoiding the high computational and financial costs of training a new model from scratch (pre-training). Fine-tuning is significantly less resource-intensive than pre-training. **Option B: Use Retrieval Augmented Generation (RAG) with the fine-tuned model.** - **Less Suitable**: While RAG can enhance model responses by retrieving external information, it does not directly address inherent bias in the model's learned parameters. RAG might help provide additional context but wouldn't fundamentally retrain the model to eliminate demographic bias in its decision-making process. This approach treats symptoms rather than the underlying cause. **Option C: Use AWS Trusted Advisor checks to eliminate bias.** - **Incorrect**: AWS Trusted Advisor provides recommendations for cost optimization, performance, security, and fault tolerance in AWS infrastructure, but it does not offer tools or checks specifically designed to detect or mitigate bias in machine learning models. This option is irrelevant to the technical problem of model bias. **Option D: Pre-train a new LLM with more diverse training data.** - **Not Cost-Effective**: Pre-training a new LLM from scratch requires massive computational resources, extensive time, and significant financial investment. While it would address the bias issue by starting with diverse data, it is the least cost-effective approach compared to fine-tuning an existing model with augmented data. ## Conclusion Option A is the most cost-effective solution because it directly addresses the bias at its source (training data) while minimizing costs by reusing the existing fine-tuned model infrastructure. Fine-tuning with enhanced, diverse data allows the bank to correct the model's behavior without the prohibitive expenses associated with pre-training a new model or implementing indirect solutions like RAG.
Ultimate access to all questions.
No comments yet.
Author: LeetQuiz Editorial Team
A bank has fine-tuned an LLM to accelerate loan approvals. An external audit found the model approves loans faster for one demographic group compared to others.
What is the most cost-effective way for the bank to address this problem?
A
Include more diverse training data. Fine-tune the model again by using the new data.
B
Use Retrieval Augmented Generation (RAG) with the fine-tuned model.
C
Use AWS Trusted Advisor checks to eliminate bias.
D
Pre-train a new LLM with more diverse training data.