DP-100 · Question #525
You have fine-tuned an Azure OpenAI Service model by using the Azure AI Foundry portal. The fine-tuned model is overfitting. You plan to correct overfitting by fine-tuning the model again. You need…
The correct answer is D. Decrease the learning_rate_multiplier. Overfitting means the model has learned the training data too aggressively and lacks generalization. A high learning_rate_multiplier causes the model to make large weight updates, which accelerates fitting to training examples and promotes overfitting. Decreasing the…
Question
Options
- AIncrease the batch_size.
- BIncrease the learning_rate_multiplier.
- CDecrease the batch_size.
- DDecrease the learning_rate_multiplier.
How the community answered
(22 responses)- A18% (4)
- B5% (1)
- C5% (1)
- D73% (16)
Explanation
Overfitting means the model has learned the training data too aggressively and lacks generalization. A high learning_rate_multiplier causes the model to make large weight updates, which accelerates fitting to training examples and promotes overfitting. Decreasing the learning_rate_multiplier slows down the learning process, resulting in smaller, more conservative weight updates that reduce the risk of overfitting. Increasing batch_size (Option A) can also help, but the most direct lever for overfitting caused by aggressive learning is reducing the learning rate.
Topics
Community Discussion
No community discussion yet for this question.