메소드 | 설명 | |
---|---|---|
Add ( IMLData data1 ) : void |
Add only input data, for an unsupervised dataset.
|
|
Add ( IMLData inputData, IMLData idealData ) : void |
Add both the input and ideal data.
|
|
Add ( IMLDataPair pair ) : void |
Add a data pair of both input and ideal data.
|
|
BeginLoad ( int inputSize, int idealSize ) : void |
Begin loading to the binary file. After calling this method the add methods may be called.
|
|
BufferedMLDataSet ( String binaryFile ) : System |
Construct a buffered dataset using the specified file.
|
|
Close ( ) : void |
Close the dataset.
|
|
EndLoad ( ) : void |
This method should be called once all the data has been loaded. The underlying file will be closed. The binary fill will then be opened for reading.
|
|
GetEnumerator ( ) : IEnumerator |
Create an enumerator.
|
|
GetRecord ( long index, IMLDataPair pair ) : void |
Read an individual record.
|
|
Load ( IMLDataSet training ) : void |
Load the specified training set.
|
|
LoadToMemory ( ) : IMLDataSet |
Load the binary dataset to memory. Memory access is faster.
|
|
Open ( ) : void |
Open the binary file for reading.
|
|
OpenAdditional ( ) : IMLDataSet |
Open an additional training set.
|
|
RemoveAdditional ( |
Remove an additional dataset that was created.
|
public Add ( IMLData inputData, IMLData idealData ) : void | ||
inputData | IMLData | The input data. |
idealData | IMLData | The ideal data. |
리턴 | void |
public BeginLoad ( int inputSize, int idealSize ) : void | ||
inputSize | int | The input size. |
idealSize | int | The ideal size. |
리턴 | void |
public BufferedMLDataSet ( String binaryFile ) : System | ||
binaryFile | String | The file to read/write binary data to/from. |
리턴 | System |
public GetRecord ( long index, IMLDataPair pair ) : void | ||
index | long | The zero-based index. Specify 0 for the first record, 1 for /// the second, and so on. |
pair | IMLDataPair | The data to read. |
리턴 | void |
public Load ( IMLDataSet training ) : void | ||
training | IMLDataSet | The training set to load. |
리턴 | void |
public RemoveAdditional ( |
||
child | The additional dataset to remove. | |
리턴 | void |