Interface NormalizerStats.Builder<S extends NormalizerStats>
-
- All Known Implementing Classes:
DistributionStats.Builder,MinMaxStats.Builder
- Enclosing interface:
- NormalizerStats
public static interface NormalizerStats.Builder<S extends NormalizerStats>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NormalizerStats.Builder<S>add(INDArray data, INDArray mask)Add rows of data to the statisticsNormalizerStats.Builder<S>addFeatures(DataSet dataSet)NormalizerStats.Builder<S>addLabels(DataSet dataSet)Add the labels of a DataSet to the statisticsSbuild()DynamicCustomOpsBuilder pattern
-
-
-
Method Detail
-
addFeatures
NormalizerStats.Builder<S> addFeatures(DataSet dataSet)
-
addLabels
NormalizerStats.Builder<S> addLabels(DataSet dataSet)
Add the labels of a DataSet to the statistics
-
add
NormalizerStats.Builder<S> add(INDArray data, INDArray mask)
Add rows of data to the statistics- Parameters:
data- the matrix containing multiple rows of data to includemask- (optionally) the mask of the data, useful for e.g. time series
-
build
S build()
DynamicCustomOpsBuilder pattern- Returns:
-
-