Uses of Class
org.nd4j.linalg.schedule.ScheduleType
-
Packages that use ScheduleType Package Description org.nd4j.linalg.schedule -
-
Uses of ScheduleType in org.nd4j.linalg.schedule
Methods in org.nd4j.linalg.schedule that return ScheduleType Modifier and Type Method Description static ScheduleTypeScheduleType. valueOf(String name)Returns the enum constant of this type with the specified name.static ScheduleType[]ScheduleType. values()Returns an array containing the constants of this enum type, in the order they are declared.Constructors in org.nd4j.linalg.schedule with parameters of type ScheduleType Constructor Description Builder(ScheduleType scheduleType)CycleSchedule(ScheduleType scheduleType, double initialLearningRate, double maxLearningRate, int cycleLength, int annealingLength, double annealingDecay)CycleSchedule(ScheduleType scheduleType, double maxLearningRate, int cycleLength)ExponentialSchedule(ScheduleType scheduleType, double initialValue, double gamma)InverseSchedule(ScheduleType scheduleType, double initialValue, double gamma, double power)MapSchedule(@NonNull ScheduleType scheduleType, @NonNull Map<Integer,Double> values)PolySchedule(ScheduleType scheduleType, double initialValue, double power, int maxIter)SigmoidSchedule(ScheduleType scheduleType, double initialValue, double gamma, int stepSize)StepSchedule(ScheduleType scheduleType, double initialValue, double decayRate, double step)
-