Package ai.djl.training.tracker
Interface ParameterTracker
-
- All Known Subinterfaces:
Tracker
- All Known Implementing Classes:
CosineTracker
,CyclicalTracker
,FactorTracker
,FixedPerVarTracker
,LinearTracker
,MultiFactorTracker
,PolynomialDecayTracker
,WarmUpTracker
public interface ParameterTracker
ATracker
represents a collection of hyperparameters orTracker
s that changes gradually through the training process.- See Also:
Tracker
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description float
getNewValue(java.lang.String parameterId, int numUpdate)
Fetches the value after the given number of steps/updates for the parameter.
-
-
-
Method Detail
-
getNewValue
float getNewValue(java.lang.String parameterId, int numUpdate)
Fetches the value after the given number of steps/updates for the parameter.- Parameters:
parameterId
- the id of the parameter to get the new value fornumUpdate
- the total number of steps/updates- Returns:
- this
Builder
-
-