All Bundles
MatrixReader
Utilities for reading data from CSV data sources
Operations
LoadMatrices
Load input and output data into matrices
function : LoadMatrices(filename:String, target_offset:Int) ~ Vector[]<FloatMatrixRef>
Parameters
Name | Type | Description |
---|
filename | String | file to process |
target_offset | Int | index of first column with target data |
Return
LoadSplitMatrices
Load input and output data into split matrices for training and testing
function : LoadSplitMatrices(filename:String, target_offset:Int, training_perc:Float) ~ Vector[]<FloatMatrixRef>
Parameters
Name | Type | Description |
---|
filename | String | file to process |
target_offset | Int | index of first column with output data |
training_perc | Float | percentage of data used for training |
Return
Type | Description |
---|
Vector[]<FloatMatrixRef> | split matrices for training and testing, first two matrices are training, latter two test data |