1 | initial version |
why is there python code in an android question ?
svm.load(datasetFile.getAbsolutePath());
here's your problem. load() does not work, like you expect it. RTFM for a change..
2 | No.2 Revision |
why is there python code in an android question ?
svm.load(datasetFile.getAbsolutePath());
here's your problem. load() does not work, like you expect it. RTFM for a change..
3 | No.3 Revision |
svm.load(datasetFile.getAbsolutePath());
here's your problem. load() does not work, like you expect it. RTFM for a change..it.
4 | No.4 Revision |
here's your svm.load(datasetFile.getAbsolutePath());
problem. problem:
svm.load(datasetFile.getAbsolutePath());
load() does not work, like you expect it.it. it's not a member function, but a static one, returning a new object.
use it like:
SVM svm = SVM.load(some_path);
else you throw away everything, and leave your svm untrained.