You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
-
- class EarlyStopException(BaseException):
- r"""
- 用于 EarlyStop 时从 Trainer 训练循环中跳出。
-
- """
-
- def __init__(self, msg):
- super(EarlyStopException, self).__init__(msg)
- self.msg = msg
|