callbacks.py 19.6 KB
Newer Older
J
jrzaurin 已提交
1
"""
2 3 4
Code here is mostly based on the code from the torchsample and Keras packages

CREDIT TO THE TORCHSAMPLE AND KERAS TEAMS
J
jrzaurin 已提交
5
"""
6 7 8
import os
import datetime
import warnings
9 10 11
from copy import deepcopy

import numpy as np
12 13
import torch

14
from .wdtypes import *
15

16 17 18 19

def _get_current_time():
    return datetime.datetime.now().strftime("%B %d, %Y - %I:%M%p")

20

21 22 23 24
class CallbackContainer(object):
    """
    Container holding a list of callbacks.
    """
J
jrzaurin 已提交
25 26

    def __init__(self, callbacks: Optional[List] = None, queue_length: int = 10):
27 28 29
        instantiated_callbacks = []
        if callbacks is not None:
            for callback in callbacks:
J
jrzaurin 已提交
30 31 32 33
                if isinstance(callback, type):
                    instantiated_callbacks.append(callback())
                else:
                    instantiated_callbacks.append(callback)
34 35 36 37 38 39 40
        self.callbacks = [c for c in instantiated_callbacks]
        self.queue_length = queue_length

    def set_params(self, params):
        for callback in self.callbacks:
            callback.set_params(params)

J
jrzaurin 已提交
41
    def set_model(self, model: Any):
42 43 44 45
        self.model = model
        for callback in self.callbacks:
            callback.set_model(model)

J
jrzaurin 已提交
46
    def on_epoch_begin(self, epoch: int, logs: Optional[Dict] = None):
47 48 49 50
        logs = logs or {}
        for callback in self.callbacks:
            callback.on_epoch_begin(epoch, logs)

J
jrzaurin 已提交
51
    def on_epoch_end(self, epoch: int, logs: Optional[Dict] = None):
52 53 54 55
        logs = logs or {}
        for callback in self.callbacks:
            callback.on_epoch_end(epoch, logs)

J
jrzaurin 已提交
56
    def on_batch_begin(self, batch: int, logs: Optional[Dict] = None):
57 58 59 60
        logs = logs or {}
        for callback in self.callbacks:
            callback.on_batch_begin(batch, logs)

J
jrzaurin 已提交
61
    def on_batch_end(self, batch: int, logs: Optional[Dict] = None):
62 63 64 65
        logs = logs or {}
        for callback in self.callbacks:
            callback.on_batch_end(batch, logs)

J
jrzaurin 已提交
66
    def on_train_begin(self, logs: Optional[Dict] = None):
67
        logs = logs or {}
J
jrzaurin 已提交
68
        logs["start_time"] = _get_current_time()
69 70 71
        for callback in self.callbacks:
            callback.on_train_begin(logs)

J
jrzaurin 已提交
72
    def on_train_end(self, logs: Optional[Dict] = None):
73
        logs = logs or {}
74 75 76
        # logs['final_loss'] = self.model.history.epoch_losses[-1],
        # logs['best_loss'] = min(self.model.history.epoch_losses),
        # logs['stop_time'] = _get_current_time()
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
        for callback in self.callbacks:
            callback.on_train_end(logs)


class Callback(object):
    """
    Abstract base class used to build new callbacks.
    """

    def __init__(self):
        pass

    def set_params(self, params):
        self.params = params

J
jrzaurin 已提交
92
    def set_model(self, model: Any):
93 94
        self.model = model

J
jrzaurin 已提交
95
    def on_epoch_begin(self, epoch: int, logs: Optional[Dict] = None):
96 97
        pass

J
jrzaurin 已提交
98
    def on_epoch_end(self, epoch: int, logs: Optional[Dict] = None):
99 100
        pass

J
jrzaurin 已提交
101
    def on_batch_begin(self, batch: int, logs: Optional[Dict] = None):
102 103
        pass

J
jrzaurin 已提交
104
    def on_batch_end(self, batch: int, logs: Optional[Dict] = None):
105 106
        pass

J
jrzaurin 已提交
107
    def on_train_begin(self, logs: Optional[Dict] = None):
108 109
        pass

J
jrzaurin 已提交
110
    def on_train_end(self, logs: Optional[Dict] = None):
111 112 113 114
        pass


class History(Callback):
115 116 117 118 119
    r"""Callback that records events into a `History` object.

    This callback runs by default within ``WideDeep``. See
    :class:`pytorch_widedeep.models.wide_deep.WideDeep`. Is included here for
    completion.
120 121
    """

J
jrzaurin 已提交
122
    def on_train_begin(self, logs: Optional[Dict] = None):
J
jrzaurin 已提交
123 124
        self.epoch: List[int] = []
        self._history: Dict[str, List[float]] = {}
125

J
jrzaurin 已提交
126
    def on_epoch_begin(self, epoch: int, logs: Optional[Dict] = None):
127 128 129 130 131
        # avoid mutation during epoch run
        logs = deepcopy(logs) or {}
        for k, v in logs.items():
            self._history.setdefault(k, []).append(v)

J
jrzaurin 已提交
132
    def on_epoch_end(self, epoch: int, logs: Optional[Dict] = None):
133 134 135
        logs = logs or {}
        self.epoch.append(epoch)
        for k, v in logs.items():
J
jrzaurin 已提交
136
            self._history.setdefault(k, []).append(v)
137 138


139
class LRHistory(Callback):
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
    r"""Saves the learning rates during training. The saving procedure is a
    bit convoluted given the fact that non-cyclic learning rates and cyclic
    learning rates are called at different stages during training.

    Parameters
    ----------
    n_epochs: int
        number of epochs durint training. This is neccesary because different
        logging routines for different schedulers are used on epoch begin and
        on epoch end

    Examples
    --------

    Callbacks are passed as input parameters when calling ``compile``. see
    :class:`pytorch_widedeep.models.wide_deep.WideDeep`

    >>> # Do not run
    >>> model.compile(callbacks=[LRHistory(n_epochs=10)])
159
    """
J
jrzaurin 已提交
160

161 162 163
    def __init__(self, n_epochs):
        super(LRHistory, self).__init__()
        self.n_epochs = n_epochs
164

J
jrzaurin 已提交
165 166
    def on_epoch_begin(self, epoch: int, logs: Optional[Dict] = None):
        if epoch == 0 and self.model.lr_scheduler:
167 168
            # If is the first epoch and we use a scheduler, define the
            # lr_history Dict and save
169
            self.model.lr_history = {}
J
jrzaurin 已提交
170
            if self.model.lr_scheduler.__class__.__name__ == "MultipleLRScheduler":
171 172
                # if we use multiple schedulers, we save the learning rate for
                # each param_group of the optimizer.
173
                for model_name, opt in self.model.optimizer._optimizers.items():
174 175 176
                    if model_name in self.model.lr_scheduler._schedulers:
                        for group_idx, group in enumerate(opt.param_groups):
                            self.model.lr_history.setdefault(
J
jrzaurin 已提交
177 178
                                ("_").join(["lr", model_name, str(group_idx)]), []
                            ).append(group["lr"])
179
            elif not self.model.cyclic:
180 181
                # if we use one lr_scheduler and is not cyclic, save the
                # learning rate for each param_group of the optimizer.
182 183
                for group_idx, group in enumerate(self.model.optimizer.param_groups):
                    self.model.lr_history.setdefault(
J
jrzaurin 已提交
184 185
                        ("_").join(["lr", str(group_idx)]), []
                    ).append(group["lr"])
186

J
jrzaurin 已提交
187
    def on_batch_end(self, batch: int, logs: Optional[Dict] = None):
188
        if self.model.lr_scheduler:
J
jrzaurin 已提交
189
            if self.model.lr_scheduler.__class__.__name__ == "MultipleLRScheduler":
190 191
                # if we use multiple schedulers, we save the learning rate for
                # each param_group of the optimizer IF IS CYCLIC
192
                for model_name, opt in self.model.optimizer._optimizers.items():
193
                    if model_name in self.model.lr_scheduler._schedulers:
J
jrzaurin 已提交
194 195 196 197 198 199
                        if (
                            "cycl"
                            in self.model.lr_scheduler._schedulers[
                                model_name
                            ].__class__.__name__.lower()
                        ):
200 201
                            for group_idx, group in enumerate(opt.param_groups):
                                self.model.lr_history.setdefault(
J
jrzaurin 已提交
202 203
                                    ("_").join(["lr", model_name, str(group_idx)]), []
                                ).append(group["lr"])
204
            elif self.model.cyclic:
205 206
                # if we use one lr_scheduler and IS CYCLIC, save the
                # learning rate for each param_group of the optimizer.
207 208
                for group_idx, group in enumerate(self.model.optimizer.param_groups):
                    self.model.lr_history.setdefault(
J
jrzaurin 已提交
209 210
                        ("_").join(["lr", str(group_idx)]), []
                    ).append(group["lr"])
211

J
jrzaurin 已提交
212 213 214
    def on_epoch_end(self, epoch: int, logs: Optional[Dict] = None):
        if epoch != (self.n_epochs - 1) and self.model.lr_scheduler:
            if self.model.lr_scheduler.__class__.__name__ == "MultipleLRScheduler":
215 216
                # if we use multiple schedulers, we save the learning rate for
                # each param_group of the optimizer IF IS NOT CYCLIC
217
                for model_name, opt in self.model.optimizer._optimizers.items():
218
                    if model_name in self.model.lr_scheduler._schedulers:
J
jrzaurin 已提交
219 220 221 222 223 224
                        if (
                            "cycl"
                            not in self.model.lr_scheduler._schedulers[
                                model_name
                            ].__class__.__name__.lower()
                        ):
225 226
                            for group_idx, group in enumerate(opt.param_groups):
                                self.model.lr_history.setdefault(
J
jrzaurin 已提交
227 228
                                    ("_").join(["lr", model_name, str(group_idx)]), []
                                ).append(group["lr"])
229
            elif not self.model.cyclic:
230 231
                # if we use one lr_scheduler and IS NOT CYCLIC, save the
                # learning rate for each param_group of the optimizer.
232 233
                for group_idx, group in enumerate(self.model.optimizer.param_groups):
                    self.model.lr_history.setdefault(
J
jrzaurin 已提交
234 235
                        ("_").join(["lr", str(group_idx)]), []
                    ).append(group["lr"])
236 237


238
class ModelCheckpoint(Callback):
239 240 241 242
    r"""Saves the model after every epoch.

    This class is almost identical to the corresponding keras class.
    Therefore, credit to the Keras Team.
243 244 245

    Parameters
    ----------
246
    filepath: str,
247
        Full path to save the output weights. It must contain only the root of
248 249
        the filenames. Epoch number and ``.pt`` extension (for pytorch) will be
        added. e.g. ``filepath="path/to/output_weights/weights_out"``
250
        And the saved files in that directory will be named
251 252 253 254 255 256 257 258
        ``weights_out_1.pt``, ``weights_out_2.pt``, ...
    monitor: str, default='val_loss'
        quantity to monitor. ``ModelCheckpoint`` will infer if this is a loss
        (i.e. contains the str `'loss'`) or a metric (i.e. contains the str
        `'acc'` or starts with `'fmeasure'`).
    verbose:int, default=0,
        verbosity mode
    save_best_only: bool, default=False,
259 260
        the latest best model according to the quantity monitored will not be
        overwritten.
261 262
    mode: str, default='auto',
        If ``save_best_only=True``, the decision to overwrite the current save
263
        file is made based on either the maximization or the minimization of
264 265 266 267 268
        the monitored quantity. For `'val_acc'`, this should be `'max'`, for
        `'val_loss'` this should be `'min'`, etc. In `'auto'` mode, the
        direction is automatically inferred from the name of the monitored
        quantity.
    period: int, default=1,
269
        Interval (number of epochs) between checkpoints.
270 271 272 273 274 275 276 277 278 279 280
    max_save: int, default=-1
        Maximum number of outputs to save. If -1 will save all outputs

    Examples
    --------

    Callbacks are passed as input parameters when calling ``compile``. see
    :class:`pytorch_widedeep.models.wide_deep.WideDeep`

    >>> # Do not run
    >>> model.compile(callbacks=[ModelCheckpoint()])
281
    """
J
jrzaurin 已提交
282 283 284 285 286 287 288 289 290 291 292

    def __init__(
        self,
        filepath: str,
        monitor: str = "val_loss",
        verbose: int = 0,
        save_best_only: bool = False,
        mode: str = "auto",
        period: int = 1,
        max_save: int = -1,
    ):
293 294 295 296 297 298 299 300 301
        super(ModelCheckpoint, self).__init__()
        self.monitor = monitor
        self.verbose = verbose
        self.filepath = filepath
        self.save_best_only = save_best_only
        self.period = period
        self.epochs_since_last_save = 0
        self.max_save = max_save

J
jrzaurin 已提交
302
        root_dir = ("/").join(filepath.split("/")[:-1])
303 304 305
        if not os.path.exists(root_dir):
            os.makedirs(root_dir)

306
        if self.max_save > 0:
J
jrzaurin 已提交
307
            self.old_files: List[str] = []
308

J
jrzaurin 已提交
309 310 311 312 313 314 315 316
        if mode not in ["auto", "min", "max"]:
            warnings.warn(
                "ModelCheckpoint mode %s is unknown, "
                "fallback to auto mode." % (mode),
                RuntimeWarning,
            )
            mode = "auto"
        if mode == "min":
317 318
            self.monitor_op = np.less
            self.best = np.Inf
J
jrzaurin 已提交
319
        elif mode == "max":
320 321 322
            self.monitor_op = np.greater
            self.best = -np.Inf
        else:
J
jrzaurin 已提交
323
            if "acc" in self.monitor or self.monitor.startswith("fmeasure"):
324 325 326 327 328 329
                self.monitor_op = np.greater
                self.best = -np.Inf
            else:
                self.monitor_op = np.less
                self.best = np.Inf

J
jrzaurin 已提交
330
    def on_epoch_end(self, epoch: int, logs: Optional[Dict] = None):
331 332 333 334
        logs = logs or {}
        self.epochs_since_last_save += 1
        if self.epochs_since_last_save >= self.period:
            self.epochs_since_last_save = 0
J
jrzaurin 已提交
335
            filepath = "{}_{}.p".format(self.filepath, epoch + 1)
336 337 338
            if self.save_best_only:
                current = logs.get(self.monitor)
                if current is None:
J
jrzaurin 已提交
339 340 341 342 343
                    warnings.warn(
                        "Can save best model only with %s available, "
                        "skipping." % (self.monitor),
                        RuntimeWarning,
                    )
344 345 346
                else:
                    if self.monitor_op(current, self.best):
                        if self.verbose > 0:
J
jrzaurin 已提交
347 348 349 350 351 352 353 354 355 356 357
                            print(
                                "\nEpoch %05d: %s improved from %0.5f to %0.5f,"
                                " saving model to %s"
                                % (
                                    epoch + 1,
                                    self.monitor,
                                    self.best,
                                    current,
                                    filepath,
                                )
                            )
358 359 360 361 362 363 364 365 366
                        self.best = current
                        torch.save(self.model.state_dict(), filepath)
                        if self.max_save > 0:
                            if len(self.old_files) == self.max_save:
                                try:
                                    os.remove(self.old_files[0])
                                except:
                                    pass
                                self.old_files = self.old_files[1:]
367
                            self.old_files.append(filepath)
368 369
                    else:
                        if self.verbose > 0:
J
jrzaurin 已提交
370 371 372 373
                            print(
                                "\nEpoch %05d: %s did not improve from %0.5f"
                                % (epoch + 1, self.monitor, self.best)
                            )
374 375
            else:
                if self.verbose > 0:
J
jrzaurin 已提交
376
                    print("\nEpoch %05d: saving model to %s" % (epoch + 1, filepath))
377 378 379 380 381 382 383 384
                torch.save(self.model.state_dict(), filepath)
                if self.max_save > 0:
                    if len(self.old_files) == self.max_save:
                        try:
                            os.remove(self.old_files[0])
                        except:
                            pass
                        self.old_files = self.old_files[1:]
385
                    self.old_files.append(filepath)
386 387 388


class EarlyStopping(Callback):
389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428
    r"""Stop training when a monitored quantity has stopped improving.

    This class is almost identical to the corresponding keras class.
    Therefore, credit to the Keras Team.

    Parameters
    -----------
    monitor: str, default='val_loss'.
        Quantity to be monitored.
    min_delta: float, default=0.
        minimum change in the monitored quantity to qualify as an
        improvement, i.e. an absolute change of less than min_delta, will
        count as no improvement.
    patience: int, default=10.
        Number of epochs that produced the monitored quantity with no
        improvement after which training will be stopped.
    verbose: int.
        verbosity mode.
    mode: str, default='auto'
        one of {'`auto`', '`min`', '`max`'}. In `'min'` mode, training will
        stop when the quantity monitored has stopped decreasing; in `'max'`
        mode it will stop when the quantity monitored has stopped increasing;
        in `'auto'` mode, the direction is automatically inferred from the
        name of the monitored quantity.
    baseline: float, Optional. default=None.
        Baseline value for the monitored quantity to reach. Training will
        stop if the model does not show improvement over the baseline.
    restore_best_weights: bool, default=None
        Whether to restore model weights from the epoch with the best
        value of the monitored quantity. If ``False``, the model weights
        obtained at the last step of training are used.

    Examples
    --------

    Callbacks are passed as input parameters when calling ``compile``. see
    :class:`pytorch_widedeep.models.wide_deep.WideDeep`

    >>> # Do not run
    >>> model.compile(callbacks=[EarlyStopping()])
429 430
    """

J
jrzaurin 已提交
431 432 433 434 435 436 437 438 439 440 441 442
    def __init__(
        self,
        monitor: str = "val_loss",
        min_delta: float = 0.0,
        patience: int = 10,
        verbose: int = 0,
        mode: str = "auto",
        baseline: Optional[float] = None,
        restore_best_weights: bool = False,
    ):

        super(EarlyStopping, self).__init__()
443 444 445 446 447 448 449 450 451 452 453

        self.monitor = monitor
        self.baseline = baseline
        self.patience = patience
        self.verbose = verbose
        self.min_delta = min_delta
        self.wait = 0
        self.stopped_epoch = 0
        self.restore_best_weights = restore_best_weights
        self.state_dict = None

J
jrzaurin 已提交
454 455 456 457 458 459
        if mode not in ["auto", "min", "max"]:
            warnings.warn(
                "EarlyStopping mode %s is unknown, " "fallback to auto mode." % mode,
                RuntimeWarning,
            )
            mode = "auto"
460

J
jrzaurin 已提交
461
        if mode == "min":
462
            self.monitor_op = np.less
J
jrzaurin 已提交
463
        elif mode == "max":
464 465
            self.monitor_op = np.greater
        else:
J
jrzaurin 已提交
466
            if "acc" in self.monitor:
467 468 469 470 471 472 473 474 475
                self.monitor_op = np.greater
            else:
                self.monitor_op = np.less

        if self.monitor_op == np.greater:
            self.min_delta *= 1
        else:
            self.min_delta *= -1

J
jrzaurin 已提交
476
    def on_train_begin(self, logs: Optional[Dict] = None):
477 478 479 480 481 482 483 484
        # Allow instances to be re-used
        self.wait = 0
        self.stopped_epoch = 0
        if self.baseline is not None:
            self.best = self.baseline
        else:
            self.best = np.Inf if self.monitor_op == np.less else -np.Inf

J
jrzaurin 已提交
485
    def on_epoch_end(self, epoch: int, logs: Optional[Dict] = None):
486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501
        current = self.get_monitor_value(logs)
        if current is None:
            return

        if self.monitor_op(current - self.min_delta, self.best):
            self.best = current
            self.wait = 0
            if self.restore_best_weights:
                self.state_dict = self.model.state_dict()
        else:
            self.wait += 1
            if self.wait >= self.patience:
                self.stopped_epoch = epoch
                self.model.early_stop = True
                if self.restore_best_weights:
                    if self.verbose > 0:
J
jrzaurin 已提交
502 503 504
                        print(
                            "Restoring model weights from the end of " "the best epoch"
                        )
505 506
                    self.model.load_state_dict(self.state_dict)

J
jrzaurin 已提交
507
    def on_train_end(self, logs: Optional[Dict] = None):
508
        if self.stopped_epoch > 0 and self.verbose > 0:
J
jrzaurin 已提交
509
            print("Epoch %05d: early stopping" % (self.stopped_epoch + 1))
510 511 512 513

    def get_monitor_value(self, logs):
        monitor_value = logs.get(self.monitor)
        if monitor_value is None:
J
jrzaurin 已提交
514 515 516 517 518
            warnings.warn(
                "Early stopping conditioned on metric `%s` "
                "which is not available. Available metrics are: %s"
                % (self.monitor, ",".join(list(logs.keys()))),
                RuntimeWarning,
519
            )
J
jrzaurin 已提交
520
        return monitor_value