C# Class MCAEmotiv.Classification.AbstractOnlineBinaryClassifier

Inheritance: AbstractBinaryClassifier, IOnlineClassifier
Mostrar archivo Open project: madelson/Emotiv-Experimenter

Public Methods

Method Description
TrainMore ( IArrayView labeledExamples ) : void

Converts the examples to binary and then calls TrainMoreBinary.

Protected Methods

Method Description
TrainMoreBinary ( IArrayView binaryExamples ) : void

Called by TrainMore if the classifier is already trained (otherwise Train is called).

Method Details

TrainMore() public method

Converts the examples to binary and then calls TrainMoreBinary.
public TrainMore ( IArrayView labeledExamples ) : void
labeledExamples IArrayView
return void

TrainMoreBinary() protected abstract method

Called by TrainMore if the classifier is already trained (otherwise Train is called).
protected abstract TrainMoreBinary ( IArrayView binaryExamples ) : void
binaryExamples IArrayView
return void