1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
.TH svm-checkdata 1 "DEC 2009" Linux "User Manuals"
.SH NAME
svm-checkdata \- a LIBSVM format checking tool
.SH SYNOPSIS
.B svm-checkdata
.I dataset
.SH DESCRIPTION
.BR svm-train (1)
conducts only a simple check of the input data. To do a
detailed check, we provide this python script.
.SH FILES
See
.BR svm-train (1)
for the format of
.I dataset
.SH EXAMPLES
.IP
> cat bad_data
.IP
1 3:1 2:4
.IP
> svm-checkdata bad_data
.LP
line 1: feature indices must be in an ascending order, previous/current features 3:1 2:4
Found 1 lines with error.
.SH BUGS
Please report bugs to the Debian BTS.
.SH AUTHOR
Chih-Chung Chang, Chih-Jen Lin <cjlin@csie.ntu.edu.tw>, Chen-Tse Tsai <ctse.tsai@gmail.com> (packaging)
.SH "SEE ALSO"
.BR svm-train (1),
.BR svm-predict (1)
|