de.lmu.ifi.dbs.elki.datasource.parser
Class SparseFloatVectorLabelParser

java.lang.Object
  extended by de.lmu.ifi.dbs.elki.datasource.parser.AbstractParser
      extended by de.lmu.ifi.dbs.elki.datasource.parser.NumberVectorLabelParser<SparseFloatVector>
          extended by de.lmu.ifi.dbs.elki.datasource.parser.SparseFloatVectorLabelParser
All Implemented Interfaces:
LinebasedParser, Parser, InspectionUtilFrequentlyScanned, Parameterizable

@Title(value="Sparse Float Vector Label Parser")
@Description(value="Parser for the following line format:\nA single line provides a single point. Entries are separated by whitespace. The values will be parsed as floats (resulting in a set of SparseFloatVectors). A line is expected in the following format: The first entry of each line is the number of attributes with coordinate value not zero. Subsequent entries are of the form (index, value), where index is the number of the corresponding dimension, and value is the value of the corresponding attribute.Any pair of two subsequent substrings not containing whitespace is tried to be read as int and float. If this fails for the first of the pair (interpreted ans index), it will be appended to a label. (Thus, any label must not be parseable as Integer.) If the float component is not parseable, an exception will be thrown. Empty lines and lines beginning with \"#\" will be ignored. Having the file parsed completely, the maximum occuring dimensionality is set as dimensionality to all created SparseFloatvectors.")
public class SparseFloatVectorLabelParser
extends NumberVectorLabelParser<SparseFloatVector>

Provides a parser for parsing one point per line, attributes separated by whitespace.

Several labels may be given per point. A label must not be parseable as double. Lines starting with "#" will be ignored.

A line is expected in the following format: The first entry of each line is the number of attributes with coordinate value not zero. Subsequent entries are of the form (index, value), where index is the number of the corresponding dimension, and value is the value of the corresponding attribute.

An index can be specified to identify an entry to be treated as class label. This index counts all entries (numeric and labels as well) starting with 0.


Nested Class Summary
static class SparseFloatVectorLabelParser.Parameterizer
          Parameterization class.
 
Field Summary
private  int dimensionality
          Holds the dimensionality of the parsed data which is the maximum occurring index of any attribute.
private static Logging logger
          Class logger
 
Fields inherited from class de.lmu.ifi.dbs.elki.datasource.parser.NumberVectorLabelParser
LABEL_INDICES_ID, labelIndices
 
Fields inherited from class de.lmu.ifi.dbs.elki.datasource.parser.AbstractParser
ATTRIBUTE_CONCATENATION, COLUMN_SEPARATOR_ID, COMMENT, NUMBER_PATTERN, QUOTE_CHAR, QUOTE_ID, quoteChar, WHITESPACE_PATTERN
 
Constructor Summary
SparseFloatVectorLabelParser(Pattern colSep, char quoteChar, BitSet labelIndices)
          Constructor.
 
Method Summary
 SparseFloatVector createDBObject(List<Double> attributes)
           Creates a database object of type V.
protected  Logging getLogger()
          Get the logger for this class.
protected  VectorFieldTypeInformation<SparseFloatVector> getTypeInformation(int dimensionality)
          Get a prototype object for the given dimensionality.
 MultipleObjectsBundle parse(InputStream in)
          Returns a list of the objects parsed from the specified input stream.
 Pair<SparseFloatVector,LabelList> parseLineInternal(String line)
          Internal method for parsing a single line.
 
Methods inherited from class de.lmu.ifi.dbs.elki.datasource.parser.NumberVectorLabelParser
parseLine
 
Methods inherited from class de.lmu.ifi.dbs.elki.datasource.parser.AbstractParser
tokenize, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

logger

private static final Logging logger
Class logger


dimensionality

private int dimensionality
Holds the dimensionality of the parsed data which is the maximum occurring index of any attribute.

Constructor Detail

SparseFloatVectorLabelParser

public SparseFloatVectorLabelParser(Pattern colSep,
                                    char quoteChar,
                                    BitSet labelIndices)
Constructor.

Parameters:
colSep -
quoteChar -
labelIndices -
Method Detail

createDBObject

public SparseFloatVector createDBObject(List<Double> attributes)
Description copied from class: NumberVectorLabelParser

Creates a database object of type V.

Specified by:
createDBObject in class NumberVectorLabelParser<SparseFloatVector>
Parameters:
attributes - the attributes of the vector to create.
Returns:
a RalVector of type V containing the given attribute values

parseLineInternal

public Pair<SparseFloatVector,LabelList> parseLineInternal(String line)
Description copied from class: NumberVectorLabelParser
Internal method for parsing a single line. Used by both line based parsig as well as block parsing. This saves the building of meta data for each line.

Overrides:
parseLineInternal in class NumberVectorLabelParser<SparseFloatVector>
Parameters:
line - Line to process
Returns:
parsing result

parse

public MultipleObjectsBundle parse(InputStream in)
Description copied from interface: Parser
Returns a list of the objects parsed from the specified input stream.

Specified by:
parse in interface Parser
Overrides:
parse in class NumberVectorLabelParser<SparseFloatVector>
Parameters:
in - the stream to parse objects from
Returns:
a list containing those objects parsed from the input stream
See Also:
NumberVectorLabelParser.parse(java.io.InputStream)

getTypeInformation

protected VectorFieldTypeInformation<SparseFloatVector> getTypeInformation(int dimensionality)
Description copied from class: NumberVectorLabelParser
Get a prototype object for the given dimensionality.

Specified by:
getTypeInformation in class NumberVectorLabelParser<SparseFloatVector>
Parameters:
dimensionality - Dimensionality
Returns:
Prototype object

getLogger

protected Logging getLogger()
Description copied from class: AbstractParser
Get the logger for this class.

Specified by:
getLogger in class AbstractParser
Returns:
Logger.

Release 0.4.0 (2011-09-20_1324)