titech
titech

Reputation: 197

Inconsistent/Different Test Performance/Error After Training Neural Network in Accord.Net

I am training a ResilientBackpropagation Neural Network with Accord.Net to get a scoring for a set of features.

The network is very simple and has:

I am training with:

The Learning Curve looks on every run slightly different but this is the average case: enter image description here

My Question

If I run the training 5 times with the same parameters and validate the network on my crossvalidation-set I get 5 different F1 Scores, between 88-91%. So it is very difficult to decide when to stop with training and take the final algorithm. Is this normal? So if I want to deploy I have to run the training X times and stop once I think I have reached the best results?

Upvotes: 0

Views: 96

Answers (1)

titech
titech

Reputation: 197

The neural network initializes the weights randomly and will generate different networks after training and therefor give you different performance. While the training process is deterministic, the initial values are not! You may end up in different local minimums as a result or stop in different places.

Upvotes: 1

Related Questions