Added missing docs on[ TrainResult and EvalResult source docs. (#3157)
* Added missing parameter 'minimize' docs in TrainResult * Added missing docs for parameters in TrainResult and EvalResult
This commit is contained in:
parent
50aed42d6b
commit
5f39ae804a
|
@ -497,8 +497,9 @@ class TrainResult(Result):
|
|||
return result
|
||||
|
||||
Args:
|
||||
early_stop_on:
|
||||
checkpoint_on:
|
||||
minimize: Metric currently being minimized.
|
||||
early_stop_on: Metric to early stop on.
|
||||
checkpoint_on: Metric to checkpoint on.
|
||||
hiddens:
|
||||
"""
|
||||
|
||||
|
@ -652,8 +653,8 @@ class EvalResult(Result):
|
|||
return result
|
||||
|
||||
Args:
|
||||
early_stop_on:
|
||||
checkpoint_on:
|
||||
early_stop_on: Metric to early stop on.
|
||||
checkpoint_on: Metric to checkpoint on.
|
||||
hiddens:
|
||||
"""
|
||||
|
||||
|
|
Loading…
Reference in New Issue