ConsoleLogger
LocalLogger
Bases: Logger
Handles the local logging; the metrics are saved in local .npy files. Inherits from Logger.
Note
The LocalLogger does not handle hyperparameter/config file saving.
Source code in sequel/utils/loggers/console_logger.py
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
|
__init__()
Inits the LocalLogger.
Source code in sequel/utils/loggers/console_logger.py
53 54 55 56 |
|
log_all_results()
Saves the results in the .npy format.
This method should be called after fitting.
Source code in sequel/utils/loggers/console_logger.py
64 65 66 67 68 69 70 |
|