gist-fast-classify
Description: Classify a set of unlabeled vectors using a trained support vector machine. This is a faster version of
gist-classify
which only works when the kernel is linear.Usage:
gist-fast-classify [options] -hyperplane <filename> -test <filename>
Input:
- -hyperplane <filename> - A file produced using the
-hyperplane
option ofgist-train-svm
. The kernel parameters are read from the header of this file.- -test <filename> - a tab-delimited file of test examples to be classified. Missing values are not allowed.
Output: A three-column file containing data labels, classifications (-1 or 1) and discriminants for the test set.
Options:
- -rdb - Allow the program to read and create RDB formatted files, which contain an additional format line after the first line of text.
- -notime - Do not include timing information in the output header.
- -precision <value> - Number of digits after the decimal place in the output file. The default is 6.
- -verbose 1|2|3|4|5 - Set the verbosity level of the output to stderr. The default level is 2.
Gist