A company deployed a chatbot using a pre-trained language model. Users report that the chatbot provides incorrect answers to domain-specific questions. Which approach should the AI team prioritize to improve accuracy without retraining the entire model?
Trap 1: Increase the temperature parameter to reduce randomness.
Temperature controls creativity, not factual correctness.
Trap 2: Collect more general training data and retrain the model from…
Retraining from scratch is costly and may not address domain specificity.
Trap 3: Roll back to a previous version of the model that was more accurate.
Rolling back does not fix the domain knowledge gap.
- A
Fine-tune the model on a curated dataset of domain-specific conversations.
Fine-tuning adapts the model to the domain with less data and compute.
- B
Increase the temperature parameter to reduce randomness.
Why wrong: Temperature controls creativity, not factual correctness.
- C
Collect more general training data and retrain the model from scratch.
Why wrong: Retraining from scratch is costly and may not address domain specificity.
- D
Roll back to a previous version of the model that was more accurate.
Why wrong: Rolling back does not fix the domain knowledge gap.