Interface BatchNormalizationHelper
-
- All Superinterfaces:
LayerHelper
- All Known Implementing Classes:
MKLDNNBatchNormHelper
public interface BatchNormalizationHelper extends LayerHelper
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Pair<Gradient,INDArray>backpropGradient(INDArray input, INDArray epsilon, long[] shape, INDArray gamma, INDArray beta, INDArray dGammaView, INDArray dBetaView, double eps, CNN2DFormat format, LayerWorkspaceMgr workspaceMgr)booleancheckSupported(double eps, boolean fixedGammaBeta)INDArraygetMeanCache(DataType dataType)INDArraygetVarCache(DataType dataType)INDArraypreOutput(INDArray x, boolean training, long[] shape, INDArray gamma, INDArray beta, INDArray mean, INDArray var, double decay, double eps, CNN2DFormat format, LayerWorkspaceMgr workspaceMgr)-
Methods inherited from interface org.deeplearning4j.nn.layers.LayerHelper
checkSupported, helperMemoryUse
-
-
-
-
Method Detail
-
checkSupported
boolean checkSupported(double eps, boolean fixedGammaBeta)
-
backpropGradient
Pair<Gradient,INDArray> backpropGradient(INDArray input, INDArray epsilon, long[] shape, INDArray gamma, INDArray beta, INDArray dGammaView, INDArray dBetaView, double eps, CNN2DFormat format, LayerWorkspaceMgr workspaceMgr)
-
preOutput
INDArray preOutput(INDArray x, boolean training, long[] shape, INDArray gamma, INDArray beta, INDArray mean, INDArray var, double decay, double eps, CNN2DFormat format, LayerWorkspaceMgr workspaceMgr)
-
-