Uses of Class
weka.core.converters.AbstractFileSaver
Packages that use AbstractFileSaver
- 
Uses of AbstractFileSaver in weka.core.converters
Subclasses of AbstractFileSaver in weka.core.convertersModifier and TypeClassDescriptionclassWrites to a destination in arff text format.classWrites to a destination that is in the format used by the C4.5 algorithm.
Therefore it outputs a names and a data file.classWrites to a destination that is in CSV (comma-separated values) format.classWrites a dictionary constructed from string attributes in incoming instances to a destination.classWrites to a destination that is in JSON format.
The data can be compressed with gzip, in order to save space.
For more information, see JSON homepage:
http://www.json.org/classWrites to a destination that is in libsvm format.
For more information about libsvm see:
http://www.csie.ntu.edu.tw/~cjlin/libsvm/classWrites Matlab ASCII files, in single or double precision format.classSerializes the instances to a file with extension bsi.classWrites to a destination that is in svm light format.
For more information about svm light see:
http://svmlight.joachims.org/classWrites to a destination that is in the XML version of the ARFF format.Methods in weka.core.converters that return AbstractFileSaverModifier and TypeMethodDescriptionstatic AbstractFileSaverConverterUtils.getSaverForExtension(String extension) tries to determine the saver to use for this kind of extension, returns null if none can be found.static AbstractFileSaverConverterUtils.getSaverForFile(File file) tries to determine the saver to use for this kind of file, returns null if none can be found.static AbstractFileSaverConverterUtils.getSaverForFile(String filename) tries to determine the saver to use for this kind of file, returns null if none can be found.Methods in weka.core.converters that return types with arguments of type AbstractFileSaverModifier and TypeMethodDescriptionstatic List<AbstractFileSaver>ConverterUtils.getSaversForExtension(String extension) tries to determine the savers to use for this kind of extension.static List<AbstractFileSaver>ConverterUtils.getSaversForFile(File file) tries to determine the savers to use for this kind of file.static List<AbstractFileSaver>ConverterUtils.getSaversForFile(String filename) tries to determine the savers to use for this kind of file.Methods in weka.core.converters with parameters of type AbstractFileSaverModifier and TypeMethodDescriptionstatic voidAbstractFileSaver.runFileSaver(AbstractFileSaver saver, String[] options) runs the given saver with the specified options - 
Uses of AbstractFileSaver in weka.gui
Methods in weka.gui that return AbstractFileSaverModifier and TypeMethodDescriptionConverterFileChooser.getSaver()returns the saver that was chosen by the user, can be null in case the user aborted the dialog or the open dialog was shown. - 
Uses of AbstractFileSaver in weka.gui.explorer
Methods in weka.gui.explorer with parameters of type AbstractFileSaverModifier and TypeMethodDescriptionvoidPreprocessPanel.saveInstancesToFile(AbstractFileSaver saver, Instances inst) saves the data with the specified saver