Uses of Class
org.debellor.core.Cell

Packages that use Cell
org.debellor.base   
org.debellor.base.evaluator   
org.debellor.core   
org.debellor.core.cell   
org.debellor.core.exception.cell   
org.debellor.core.exception.data   
org.debellor.rseslib   
org.debellor.weka   
 

Uses of Cell in org.debellor.base
 

Subclasses of Cell in org.debellor.base
 class Buffer
          Buffers all input data during learning.
 class Distortion
          Introduces random distortions to numeric features of samples.
 class FlattenVectors
          Flattens DataVectors whose items are other DataVectors.
 class KMeans
          Stream implementation of standard k-means clustering algorithm.
 class TimeWindows
          Treats input samples as elements of a time series and generates time windows composed of a fixed number of consecutive input samples, with every possible offset from the beginning of the input stream.
 

Uses of Cell in org.debellor.base.evaluator
 

Subclasses of Cell in org.debellor.base.evaluator
 class CrossValidation
          Implements evaluation of a cell (decision system) through the procedure of cross-validation (CV).
 class EvaluatorCell
          Base class for cells that implement evaluation of other cells -- decision systems.
 class TrainAndTest
          Implements evaluation of a cell (decision system) with Train+Test procedure.
 

Fields in org.debellor.base.evaluator declared as Cell
protected  Cell EvaluatorCell.learner
           
 

Methods in org.debellor.base.evaluator with parameters of type Cell
 void EvaluatorCell.setInner(Cell cell)
          Sets the cell - a decision system - that would undergo evaluation.
 

Constructors in org.debellor.base.evaluator with parameters of type Cell
CrossValidation(Cell cell)
           
EvaluatorCell(Cell cell)
           
TrainAndTest(Cell cell)
           
 

Uses of Cell in org.debellor.core
 

Methods in org.debellor.core with parameters of type Cell
 void Cell.setSource(Cell source)
          Connects this cell with another cell that will serve as a source of input data when this cell starts learning or operating.
 

Uses of Cell in org.debellor.core.cell
 

Subclasses of Cell in org.debellor.core.cell
 class BatchOfSamples
           
 class SingleSample
          Buffer which holds at most one Sample, passed into the buffer by a special method SingleSample.put(org.debellor.core.Sample).
 

Methods in org.debellor.core.cell with parameters of type Cell
 void OperatorFromCell.setCell(Cell cell)
           
 

Uses of Cell in org.debellor.core.exception.cell
 

Fields in org.debellor.core.exception.cell declared as Cell
 Cell CellException.cell
           
 

Constructors in org.debellor.core.exception.cell with parameters of type Cell
CellAccessException(Cell cell, Cell.CellMethod method)
           
CellAccessException(Cell cell, java.lang.String method)
           
CellException(Cell cell, Cell.CellMethod cellMethod, java.lang.String cause)
           
CellException(Cell cell, Cell.CellMethod cellMethod, java.lang.Throwable cause)
           
CellException(Cell cell, java.lang.String cause)
           
CellException(Cell cell, java.lang.String method, java.lang.String cause)
           
CellException(Cell cell, java.lang.Throwable cause)
           
CellInternalException(Cell cell, Cell.CellMethod method, java.lang.Throwable cause)
           
CellIsFixedException(Cell cell, Cell.CellMethod method)
           
CellIsNotOperatorException(Cell cell)
           
CellMethodNotImplementedException(Cell cell, Cell.CellMethod cellMethod)
           
 

Uses of Cell in org.debellor.core.exception.data
 

Constructors in org.debellor.core.exception.data with parameters of type Cell
NoSamplesException(Cell source)
           
 

Uses of Cell in org.debellor.rseslib
 

Subclasses of Cell in org.debellor.rseslib
 class RseslibClassifier
          Debellor wrapper for Rseslib classifiers - classes implementing rseslib.processing.classification.Classifier interface.
 

Uses of Cell in org.debellor.weka
 

Subclasses of Cell in org.debellor.weka
 class ArffReader
          Parameters:
 class WekaClassifier
          Debellor wrapper for Weka classifiers - subclasses of weka.classifiers.Classifier.
 class WekaFilter
          Debellor wrapper for Weka filters - subclasses of weka.filters.Filter.