SVMlight File Format
Jump to navigation
Jump to search
See: File Format, SVMlight, LIBSVM.
References
2012
- https://github.com/scikit-learn/scikit-learn/blob/master/sklearn/datasets/svmlight_format.py
- QUOTE: This module implements a loader and dumper for the svmlight format
This format is a text-based format, with one sample per line. It does not store zero valued features hence is suitable for sparse dataset.
The first element of each line can be used to store a target variable to predict.
This format is used as the default format for both svmlight and the libsvm command line programs.
- QUOTE: This module implements a loader and dumper for the svmlight format