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

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

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