Interface ILStreamTypes.IILTrainingDataArray
From Mitov Wiki Doc
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Package: IntelligenceLabPkg
Unit: ILStreamTypes
Inherits: ISLData
Contents |
Syntax
Delphi:
type IILTrainingDataArray = interface( ISLData )
Summary
Training data array interface.
Description
This is the training data array interface.
Properties
- Count - Returns the number of training elements in the array.
- Items - Access to individual training element of the array.
Methods
- function GetCount() : Integer
- function GetItem(AIndex : Integer) : IILTrainingDataItem
- procedure SetItem(AIndex : Integer; AValue : IILTrainingDataItem)
- function GetFeatures() : ISLRealBufferArray - Returns the training features.
- function GetResposes() : ISLRealBuffer - Returns the training responses.
- procedure Add(AValue : IILTrainingDataItem) - Adds training element to the array.
- procedure Add(AFeatures : ISLRealBuffer; AResponse : Real) - Adds training element to the array.