Solved – Balancing precision and recall in a neural network

machine learningneural networks

When designing a neural network, are there architectures that can be used to favor precision vs. recall and vice versa?

Best Answer

The best way is to use ROC curve to find the optimal point, you can change the output threshold and get TP Rate , FP rate and plot ROC curve.

From ROC curve, you can get the optimal threshold value, to have the result you want.