c++ - OpenCV Neural Network train one iteration at a time -


the way know train multilayer neural network in opencv is:

cvann_mlp network; .... network.train(input, output, mat(), mat(), params, flags); 

but not print out meaningful debug (e.g. iteration count, current error,...), program sit there until finishes training, troublesome if dataset in gigabytes, there's no way can see progress.

how train network 1 iteration @ time, or print out debug while training?

problem not solved, question solved. answer: it's impossible far current opencv versions concerned.


Comments

Popular posts from this blog

javascript - Count length of each class -

What design pattern is this code in Javascript? -

hadoop - Restrict secondarynamenode to be installed and run on any other node in the cluster -