Bases: nnfbp.TrainingData.TrainingData
Implementation of TrainingData that uses a HDF5 file to store data.
Parameters: |
|
---|
Bases: object
Base object of a class that represents training or validation data used during training of a network.
An implementing class should define getDataBlock, addDataBlock and normalizeData methods. See, for example, HDF5TrainingData.
Parameters: |
|
---|
Add a block of data to the set.
Parameters: |
|
---|
Get a block of data from the set.
Parameters: | i (int) – Position of block to get. |
---|---|
Returns: | numpy.ndarray – Block of data. |
Returns the minimum and maximum values of each column of the entire set.
Returns: | tuple with: |
---|