Package org.nd4j.linalg.schedule
Interface ISchedule
-
- All Superinterfaces:
Cloneable,Serializable
- All Known Implementing Classes:
CycleSchedule,ExponentialSchedule,FixedSchedule,InverseSchedule,MapSchedule,PolySchedule,RampSchedule,SigmoidSchedule,StepSchedule
public interface ISchedule extends Serializable, Cloneable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IScheduleclone()doublevalueAt(int iteration, int epoch)
-
-
-
Method Detail
-
valueAt
double valueAt(int iteration, int epoch)- Parameters:
iteration- Current iteration number. Starts at 0epoch- Current epoch number. Starts at 0- Returns:
- Value at the current iteration/epoch for this schedule
-
clone
ISchedule clone()
-
-