mirror of
https://github.com/twitter/the-algorithm.git
synced 2025-01-08 10:20:42 +01:00
14 lines
256 B
Python
14 lines
256 B
Python
|
"""
|
||
|
Error classes for twml
|
||
|
"""
|
||
|
|
||
|
|
||
|
class EarlyStopError(Exception):
|
||
|
"""Exception used to indicate evaluator needs to early stop."""
|
||
|
pass
|
||
|
|
||
|
|
||
|
class CheckpointNotFoundError(Exception):
|
||
|
"""Exception used to indicate a checkpoint hasnt been found."""
|
||
|
pass
|