Can anyone refer me to a more clarified ML Library documentation ? As I am confused now and can't get a real description of methods such as : Train , Predict. One more thing I saw many times those train flags such as : Update weights , No input scale but the only definition I can see for train is that : public boolean train(Mat samples, int layout, Mat responses) {
boolean retVal = train_0(nativeObj, samples.nativeObj, layout, responses.nativeObj);
return retVal;
}
this is from StatModel and I couldn't use those train flags , So What Can I do if anyone can help ?