Loading ...

Encog Basicmldataset

Hello everybody, today I want to share few words about my learning of Encog. Let's say you have array of 15 doubles: double []s = new double[15]; Then for simple case you can use BasciMLData class: IMLData data = new BasicMLData(s);  Now data can be used to feed data to any neural network.&n...

Neural Networks Teaching

Hello everybody, today I watched vidoe of Dr. James McCaffrey about traing neural netwoks.  So, few interesting details, which was useful for me.  1. As usually it is more then enough one hidden layer.  2. Imagine, that you need to feed into your neural network some data. Let's say...