Hello, Sergey!
I am sorry for my stupid question but I did not find out clear explanation of one issue...
I trained a Neural networks ensemble with function alglib::mlpetraines(). Next I made serialization of the ensemble. Do I need to call the function alglib::mlpecreatec1() (that I called before alglib::mlpetraines()) before calling function alglib::mlpeunserialize() or not ?
Code:
alglib::mlpecreate1(nin, nhid, nout, ensemblesize, ensemble_A);
alglib::mlpetraines(ensemble_A, XY_set, npoints, decay, restarts, info, rep);
alglib::mlpeserialize( ensemble_A, string_mem );
...
...
...
version 1:
alglib::mlpecreate1(nin, nhid, nout, ensemblesize, ensemble_B);
alglib::mlpeunserialize( string_mem, ensemble_B);
alglib::mlpeprocess(ensemble_B, x_Vector, y_Out);
version 2:
alglib::mlpeunserialize( string_mem, ensemble_B);
alglib::mlpeprocess(ensemble_B, x_Vector, y_Out);
Which version of the code is right, 1 or 2 ?
Thank you in advance.