Package weka.core.converters
Class TextDirectoryLoader
- java.lang.Object
-
- weka.core.converters.AbstractLoader
-
- weka.core.converters.TextDirectoryLoader
-
- All Implemented Interfaces:
java.io.Serializable,BatchConverter,Loader,OptionHandler,RevisionHandler
public class TextDirectoryLoader extends AbstractLoader implements BatchConverter, OptionHandler
Loads all text files in a directory and uses the subdirectory names as class labels. The content of the text files will be stored in a String attribute, the filename can be stored as well. Valid options are:-D Enables debug output. (default: off)
-F Stores the filename in an additional attribute. (default: off)
-dir <directory> The directory to work on. (default: current directory)
Based on code from the TextDirectoryToArff tool:- Version:
- $Revision: 11199 $
- Author:
- Ashraf M. Kibriya (amk14 at cs.waikato.ac.nz), Richard Kirkby (rkirkby at cs.waikato.ac.nz), fracpete (fracpete at waikato dot ac dot nz)
- See Also:
Loader, Serialized Form
-
-
Field Summary
-
Fields inherited from interface weka.core.converters.Loader
BATCH, INCREMENTAL, NONE
-
-
Constructor Summary
Constructors Constructor Description TextDirectoryLoader()default constructor
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringcharSetTipText()the tip text for this propertyjava.lang.StringdebugTipText()the tip text for this propertyjava.lang.StringgetCharSet()Get the character set to use when reading text files.InstancesgetDataSet()Return the full data set.booleangetDebug()Gets whether additional debug information is printed.java.io.FilegetDirectory()get the Dir specified as the sourcejava.lang.StringgetFileDescription()Returns a description of the file type, actually it's directories.InstancegetNextInstance(Instances structure)TextDirectoryLoader is unable to process a data set incrementally.java.lang.String[]getOptions()Gets the settingbooleangetOutputFilename()Gets whether the filename will be stored as an extra attribute.java.lang.StringgetRevision()Returns the revision string.InstancesgetStructure()Determines and returns (if possible) the structure (internally the header) of the data set as an empty set of instances.java.lang.StringglobalInfo()Returns a string describing this loaderjava.util.EnumerationlistOptions()Lists the available optionsstatic voidmain(java.lang.String[] args)Main method.java.lang.StringoutputFilenameTipText()the tip text for this propertyvoidreset()Resets the loader ready to read a new data setvoidsetCharSet(java.lang.String charSet)Set the character set to use when reading text files (an empty string indicates that the default character set will be used).voidsetDebug(boolean value)Sets whether to print some debug information.voidsetDirectory(java.io.File dir)sets the source directoryvoidsetOptions(java.lang.String[] options)Parses a given list of options.voidsetOutputFilename(boolean value)Sets whether the filename will be stored as an extra attribute.voidsetSource(java.io.File dir)Resets the Loader object and sets the source of the data set to be the supplied File object.-
Methods inherited from class weka.core.converters.AbstractLoader
setRetrieval, setSource
-
-
-
-
Method Detail
-
globalInfo
public java.lang.String globalInfo()
Returns a string describing this loader- Returns:
- a description of the evaluator suitable for displaying in the explorer/experimenter gui
-
listOptions
public java.util.Enumeration listOptions()
Lists the available options- Specified by:
listOptionsin interfaceOptionHandler- Returns:
- an enumeration of the available options
-
setOptions
public void setOptions(java.lang.String[] options) throws java.lang.ExceptionParses a given list of options. Valid options are:-D Enables debug output. (default: off)
-F Stores the filename in an additional attribute. (default: off)
-dir <directory> The directory to work on. (default: current directory)
- Specified by:
setOptionsin interfaceOptionHandler- Parameters:
options- the options- Throws:
java.lang.Exception- if options cannot be set
-
getOptions
public java.lang.String[] getOptions()
Gets the setting- Specified by:
getOptionsin interfaceOptionHandler- Returns:
- the current setting
-
charSetTipText
public java.lang.String charSetTipText()
the tip text for this property- Returns:
- the tip text
-
setCharSet
public void setCharSet(java.lang.String charSet)
Set the character set to use when reading text files (an empty string indicates that the default character set will be used).- Parameters:
charSet- the character set to use.
-
getCharSet
public java.lang.String getCharSet()
Get the character set to use when reading text files. An empty string indicates that the default character set will be used.- Returns:
- the character set name to use (or empty string to indicate that the default character set will be used).
-
setDebug
public void setDebug(boolean value)
Sets whether to print some debug information.- Parameters:
value- if true additional debug information will be printed.
-
getDebug
public boolean getDebug()
Gets whether additional debug information is printed.- Returns:
- true if additional debug information is printed
-
debugTipText
public java.lang.String debugTipText()
the tip text for this property- Returns:
- the tip text
-
setOutputFilename
public void setOutputFilename(boolean value)
Sets whether the filename will be stored as an extra attribute.- Parameters:
value- if true the filename will be stored in an extra attribute
-
getOutputFilename
public boolean getOutputFilename()
Gets whether the filename will be stored as an extra attribute.- Returns:
- true if the filename is stored in an extra attribute
-
outputFilenameTipText
public java.lang.String outputFilenameTipText()
the tip text for this property- Returns:
- the tip text
-
getFileDescription
public java.lang.String getFileDescription()
Returns a description of the file type, actually it's directories.- Returns:
- a short file description
-
getDirectory
public java.io.File getDirectory()
get the Dir specified as the source- Returns:
- the source directory
-
setDirectory
public void setDirectory(java.io.File dir) throws java.io.IOExceptionsets the source directory- Parameters:
dir- the source directory- Throws:
java.io.IOException- if an error occurs
-
reset
public void reset()
Resets the loader ready to read a new data set- Specified by:
resetin interfaceLoader- Overrides:
resetin classAbstractLoader
-
setSource
public void setSource(java.io.File dir) throws java.io.IOExceptionResets the Loader object and sets the source of the data set to be the supplied File object.- Specified by:
setSourcein interfaceLoader- Overrides:
setSourcein classAbstractLoader- Parameters:
dir- the source directory.- Throws:
java.io.IOException- if an error occurs
-
getStructure
public Instances getStructure() throws java.io.IOException
Determines and returns (if possible) the structure (internally the header) of the data set as an empty set of instances.- Specified by:
getStructurein interfaceLoader- Specified by:
getStructurein classAbstractLoader- Returns:
- the structure of the data set as an empty set of Instances
- Throws:
java.io.IOException- if an error occurs
-
getDataSet
public Instances getDataSet() throws java.io.IOException
Return the full data set. If the structure hasn't yet been determined by a call to getStructure then method should do so before processing the rest of the data set.- Specified by:
getDataSetin interfaceLoader- Specified by:
getDataSetin classAbstractLoader- Returns:
- the structure of the data set as an empty set of Instances
- Throws:
java.io.IOException- if there is no source or parsing fails
-
getNextInstance
public Instance getNextInstance(Instances structure) throws java.io.IOException
TextDirectoryLoader is unable to process a data set incrementally.- Specified by:
getNextInstancein interfaceLoader- Specified by:
getNextInstancein classAbstractLoader- Parameters:
structure- ignored- Returns:
- never returns without throwing an exception
- Throws:
java.io.IOException- always. TextDirectoryLoader is unable to process a data set incrementally.
-
getRevision
public java.lang.String getRevision()
Returns the revision string.- Specified by:
getRevisionin interfaceRevisionHandler- Returns:
- the revision
-
main
public static void main(java.lang.String[] args)
Main method.- Parameters:
args- should contain the name of an input file.
-
-