ray.tune.stopper.function_stopper.FunctionStopper#

class ray.tune.stopper.function_stopper.FunctionStopper(function: Callable[[str, Dict], bool])[源代码]#

基类:Stopper

提供一个自定义函数来检查试验是否应停止。

传入的函数将在每次迭代后被调用。如果它返回 True,试验将被停止。

参数:

function – 检查试验是否应停止的函数。必须接受 trial_id 字符串和 result 字典作为参数。必须返回一个布尔值。

方法