Uses of Class
weka.core.converters.AbstractFileLoader
Packages that use AbstractFileLoader
-
Uses of AbstractFileLoader in weka.core.converters
Subclasses of AbstractFileLoader in weka.core.convertersModifier and TypeClassDescriptionclass
Reads a source that is in arff (attribute relation file format) format.class
Reads a file that is C45 format.class
Reads a source that is in comma separated format (the default).class
Reads a source that is in the JSON format.
It automatically decompresses the data if the extension is '.json.gz'.
For more information, see JSON homepage:
http://www.json.org/class
Reads a source that is in libsvm format.
For more information about libsvm see:
http://www.csie.ntu.edu.tw/~cjlin/libsvm/class
Reads a Matlab file containing a single matrix in ASCII format.class
Reads a source that contains serialized Instances.class
Reads a source that is in svm light format.
For more information about svm light see:
http://svmlight.joachims.org/class
Reads a source that is in the XML version of the ARFF format.Methods in weka.core.converters that return AbstractFileLoaderModifier and TypeMethodDescriptionstatic AbstractFileLoader
ConverterUtils.getLoaderForExtension
(String extension) tries to determine the loader to use for this kind of extension, returns null if none can be found.static AbstractFileLoader
ConverterUtils.getLoaderForFile
(File file) tries to determine the loader to use for this kind of file, returns null if none can be found.static AbstractFileLoader
ConverterUtils.getLoaderForFile
(String filename) tries to determine the loader to use for this kind of file, returns null if none can be found.static AbstractFileLoader
ConverterUtils.getURLLoaderForExtension
(String extension) tries to determine the URL loader to use for this kind of extension, returns null if none can be found.static AbstractFileLoader
ConverterUtils.getURLLoaderForFile
(File file) tries to determine the URL loader to use for this kind of file, returns null if none can be found.static AbstractFileLoader
ConverterUtils.getURLLoaderForFile
(String filename) tries to determine the URL loader 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 AbstractFileLoaderModifier and TypeMethodDescriptionstatic List<AbstractFileLoader>
ConverterUtils.getLoadersForExtension
(String extension) tries to determine the loader to use for this kind of extension, returns null if none can be found.static List<AbstractFileLoader>
ConverterUtils.getLoadersForFile
(File file) tries to determine the loaders to use for this kind of file.static List<AbstractFileLoader>
ConverterUtils.getLoadersForFile
(String filename) tries to determine the loaders to use for this kind of file.static List<AbstractFileLoader>
ConverterUtils.getURLLoadersForExtension
(String extension) tries to determine the URL loaders to use for this kind of extension.static List<AbstractFileLoader>
ConverterUtils.getURLLoadersForFile
(File file) tries to determine the URL loaders to use for this kind of file.static List<AbstractFileLoader>
ConverterUtils.getURLLoadersForFile
(String filename) tries to determine the URL loader to use for this kind of file.Methods in weka.core.converters with parameters of type AbstractFileLoaderModifier and TypeMethodDescriptionstatic void
AbstractFileLoader.runFileLoader
(AbstractFileLoader loader, String[] options) runs the given loader with the provided options -
Uses of AbstractFileLoader in weka.gui
Methods in weka.gui that return AbstractFileLoaderModifier and TypeMethodDescriptionConverterFileChooser.getLoader()
returns the loader that was chosen by the user, can be null in case the user aborted the dialog or the save dialog was shown. -
Uses of AbstractFileLoader in weka.gui.arffviewer
Methods in weka.gui.arffviewer with parameters of type AbstractFileLoaderModifier and TypeMethodDescriptionvoid
ArffViewerMainPanel.loadFile
(String filename, AbstractFileLoader... loaders) loads the specified fileConstructors in weka.gui.arffviewer with parameters of type AbstractFileLoaderModifierConstructorDescriptionArffPanel
(String filename, AbstractFileLoader... loaders) initializes the panel and loads the specified fileArffSortedTableModel
(String filename, AbstractFileLoader... loaders) initializes the sorter w/o a model, but loads the given file and creates from that a modelArffTableModel
(String filename, AbstractFileLoader... loaders) initializes the object and loads the given file -
Uses of AbstractFileLoader in weka.gui.explorer
Methods in weka.gui.explorer with parameters of type AbstractFileLoaderModifier and TypeMethodDescriptionvoid
PreprocessPanel.setInstancesFromFile
(AbstractFileLoader loader) Loads results from a set of instances retrieved with the supplied loader.