New forum topics
- i would like to contribute
- Need help with LSTM libraries
- Memory usage in Java
- Delphi
- Stock Market Question
- Output priorities, retrieving input weights
- Local Minima Question
- Forest Cover Midterm and other Assignments in Java book and Youtube
- Forest Cover Midterm and other Assignments in Java book and Youtube
- using this course for robotics





Basically, I take the square of every error difference. Then at the end I take the square root of that divided by the number of cases.
Hi Jeff,
Thanks for the info. Uhm, is there any chance to add a method for MSE error (http://www.informatik.htw-dresden.de/~iwe/Belege/2004/Matzke/Dokumentati... and http://www.informatik.htw-dresden.de/~iwe/Belege/2004/Matzke/Dokumentati...)? I could imagine that it could be done without much costs, especially as it's very similar to the root mean square. Last but not least, MSE is the most commonly used error calculation method for ANNs. Thanks.
Regards,
Roger
Hi,
I have digged a little into the Encog code and really think it's feasible to add MSE support. However in the meantime I will just use a quick&dirty approach which is modifying the ErrorCalculation class this way and rebuilding Encog:
[...]
public double CalculateRMS()
{
double err = this.globalError / this.setSize;
return err;
}
[...]
Regards,
Roger
.