Uses of Class
weka.core.converters.AbstractFileLoader

Packages that use AbstractFileLoader
weka.core.converters   
weka.gui   
weka.gui.explorer   
 

Uses of AbstractFileLoader in weka.core.converters
 

Subclasses of AbstractFileLoader in weka.core.converters
 class ArffLoader
          Reads a source that is in arff (attribute relation file format) format.
 class C45Loader
          Reads a file that is C45 format.
 class CSVLoader
          Reads a source that is in comma separated format (the default).
 class JSONLoader
          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 LibSVMLoader
          Reads a source that is in libsvm format.

For more information about libsvm see:

http://www.csie.ntu.edu.tw/~cjlin/libsvm/

 class MatlabLoader
          Reads a Matlab file containing a single matrix in ASCII format.
 class SerializedInstancesLoader
          Reads a source that contains serialized Instances.
 class SVMLightLoader
          Reads a source that is in svm light format.

For more information about svm light see:

http://svmlight.joachims.org/

 class XRFFLoader
          Reads a source that is in the XML version of the ARFF format.
 

Methods in weka.core.converters that return AbstractFileLoader
static 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 with parameters of type AbstractFileLoader
static 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 AbstractFileLoader
 AbstractFileLoader ConverterFileChooser.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.explorer
 

Methods in weka.gui.explorer with parameters of type AbstractFileLoader
 void PreprocessPanel.setInstancesFromFile(AbstractFileLoader loader)
          Loads results from a set of instances retrieved with the supplied loader.
 



Copyright © 2012 University of Waikato, Hamilton, NZ. All Rights Reserved.