Class GradientStepFunction
- java.lang.Object
-
- org.deeplearning4j.optimize.stepfunctions.GradientStepFunction
-
- All Implemented Interfaces:
Serializable,StepFunction
public class GradientStepFunction extends Object implements StepFunction
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GradientStepFunction()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidstep()voidstep(INDArray x, INDArray line)Step with no parametersvoidstep(INDArray x, INDArray line, double step)Step with the given parameters
-
-
-
Method Detail
-
step
public void step(INDArray x, INDArray line, double step)
Description copied from interface:StepFunctionStep with the given parameters- Specified by:
stepin interfaceStepFunction- Parameters:
x- the current parametersline- the line to step
-
step
public void step(INDArray x, INDArray line)
Description copied from interface:StepFunctionStep with no parameters- Specified by:
stepin interfaceStepFunction
-
step
public void step()
- Specified by:
stepin interfaceStepFunction
-
-