Interface | Description |
---|---|
Parser |
Any parser that extends this interface can be sent to a
Learner for batch training. |
Class | Description |
---|---|
ArrayFileParser |
This parser returns an array of arrays representing each example.
|
ArrayParser |
This parser returns the example objects in an array one at a time.
|
ChildrenFromVectors |
Use this parser in conjunction with another parser that returns
LinkedVector s, and
this parser will return their LinkedChild ren. |
FoldParser |
Useful when performing k-fold cross validation, this parser filters the examples coming
from another parser.
|
FoldParser.SplitPolicy |
Immutable type representing the way in which examples are partitioned into folds.
|
FoldSeparator |
This is a dummy class which is only used to signify the separation between folds for use in the
cross validation method.
|
LineByLine |
This abstract
Parser does not define the next() method, but it does
define a constructor that opens the specified file and a readLine() method that
fetches the next line of text from that file, taking care of exception handling. |
LinkedChild |
A
LinkedChild is the child of a LinkedVector . |
LinkedVector |
A
LinkedVector is used to store a vector of LinkedChild ren which all
maintain links between each other and the parent LinkedVector . |
Copyright © 2016. All rights reserved.