Concept

Troubleshooting a deep learning model

  • High Avoidable bias: if it does not fit training set well on cost function (e.g., comparable to human level performance), you might train a bigger network, train longer, switch to a better optimization algorithm, like the Adam, or change the neural network architecture/hyperparameter search.
  • High Variance: if it does not fit dev set on cost function, you may use regularization, increase the size of training set, or change the neural network architecture/hyperparameter search.
  • If it does not fit test set well on cost function, you may change or increase the size of dev set.
  • If it does not perform well in real world (e.g., happy users), you may change or increase the size of test set or change the cost function.

0

1

Updated 2021-05-28

Tags

Data Science

Related