After deploying a Gradient Boosting model, you observe that its performance deteriorates after some time. What might be a potential step to address this?

  • Re-train the model with additional data
  • Increase the learning rate
  • Reduce the model complexity
  • Regularly update the model with new data
To address the performance deterioration of a deployed Gradient Boosting model, it's crucial to regularly update the model with new data (option D). Data drift is common, and updating the model ensures it adapts to the changing environment. While re-training with additional data (option A) may help, regularly updating the model with new data is more sustainable. Increasing the learning rate (option B) or reducing model complexity (option C) may not be effective in addressing performance deterioration over time.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *