@@ -132,7 +132,7 @@ class MetricHandler(EpochBegin, BatchEnd):
132
132
Training metrics to be updated at batch end.
133
133
priority : scalar
134
134
Priority level of the MetricHandler. Priority level is sorted in ascending
135
- order. The lower the number is, the higher priority level it is.
135
+ order. The lower the number is, the higher priority level the handler is.
136
136
"""
137
137
138
138
def __init__ (self , train_metrics , priority = - 1000 ):
@@ -181,7 +181,8 @@ class ValidationHandler(TrainBegin, BatchEnd, EpochEnd):
181
181
:py:class:`ValidationHandler` does not validate at batch end.
182
182
priority: scalar, default -1000
183
183
Priority level of the ValidationHandler. Priority level is sorted in
184
- ascending order. The lower the number is, the higher priority level it is.
184
+ ascending order. The lower the number is, the higher priority level the
185
+ handler is.
185
186
"""
186
187
187
188
def __init__ (self ,
@@ -244,7 +245,8 @@ class LoggingHandler(TrainBegin, TrainEnd, EpochBegin, EpochEnd, BatchBegin, Bat
244
245
Validation metrics to be logged, logged at epoch end, train end.
245
246
priority : scalar, default np.Inf
246
247
Priority level of the LoggingHandler. Priority level is sorted in
247
- ascending order. The lower the number is, the higher priority level it is.
248
+ ascending order. The lower the number is, the higher priority level the
249
+ handler is.
248
250
"""
249
251
250
252
LOG_PER_EPOCH = 1
@@ -728,7 +730,7 @@ class GradientUpdateHandler(BatchEnd):
728
730
----------
729
731
priority : scalar, default -2000
730
732
priority level of the gradient update handler. Priority level is sorted in ascending
731
- order. The lower the number is, the higher priority level it is.
733
+ order. The lower the number is, the higher priority level the handler is.
732
734
----------
733
735
"""
734
736
def __init__ (self , priority = - 2000 ):
0 commit comments