Loading ...

Backpropogation Encog

Here is Backpropogation algorithm declaration of Encog: var train = new Backpropogation(network, trainingSet, learningRate, momentum); Today I discovered for myself purpose of momentum paramether.        Here we have error function with global minimum and three local minimums....

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...

Maintenance Pages In Acumatica

Hello everybody. Here goes some my notes of Maintenance pages.  First convention is that maintenance pages has number start of 20. For example pr203000.aspx means that it is maintenance page for pr, and I make this conclusion on basis that numbers start from 20. As usually they are placed un...

Create Graph Instance

Hello everybody, today I want to notice how to create graph. There are two ways:   PXGraph.CreateInstance<BaseBLC>(); PXGraph.CreateInstance(typeof(BaseBLC));   If you want to get extention class, from base class, you can use following function: GraphInstance.GetExtension<Exten...