| 46 | } |
| 47 | |
| 48 | void HelpInfo_svmpredict() { |
| 49 | LOG(INFO) << |
| 50 | "Usage: svm-predict [options] test_file model_file output_file\n" |
| 51 | "options:\n" |
| 52 | //todo probability prediction |
| 53 | // "-b probability_estimates: whether to predict probability estimates, 0 or 1 (default 0); for one-class SVM only 0 is supported\n" |
| 54 | "-m memory size: constrain the maximum memory size (MB) that thundersvm uses\n" |
| 55 | "-u n: specify which gpu to use (default 0)\n"; |
| 56 | exit(1); |
| 57 | } |
| 58 | |
| 59 | void CMDParser::parse_command_line(int argc, char **argv) { |
| 60 | param_cmd.weight_label = NULL; |