Interface ParameterTracker

All Known Subinterfaces:
Tracker
All Known Implementing Classes:
CosineTracker, CyclicalTracker, FactorTracker, FixedPerVarTracker, LinearTracker, MultiFactorTracker, PolynomialDecayTracker, WarmUpTracker

public interface ParameterTracker
A Tracker represents a collection of hyperparameters or Trackers that changes gradually through the training process.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    float
    getNewValue(String parameterId, int numUpdate)
    Fetches the value after the given number of steps/updates for the parameter.
  • Method Details

    • getNewValue

      float getNewValue(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 for
      numUpdate - the total number of steps/updates
      Returns:
      this Builder