C# Класс MCAEmotiv.Classification.AbstractOnlineBinaryClassifier

Наследование: AbstractBinaryClassifier, IOnlineClassifier
Показать файл Открыть проект

Открытые методы

Метод Описание
TrainMore ( IArrayView labeledExamples ) : void

Converts the examples to binary and then calls TrainMoreBinary.

Защищенные методы

Метод Описание
TrainMoreBinary ( IArrayView binaryExamples ) : void

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

Описание методов

TrainMore() публичный Метод

Converts the examples to binary and then calls TrainMoreBinary.
public TrainMore ( IArrayView labeledExamples ) : void
labeledExamples IArrayView
Результат void

TrainMoreBinary() защищенный абстрактный Метод

Called by TrainMore if the classifier is already trained (otherwise Train is called).
protected abstract TrainMoreBinary ( IArrayView binaryExamples ) : void
binaryExamples IArrayView
Результат void