-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathearlystop.py
More file actions
52 lines (45 loc) · 1.57 KB
/
earlystop.py
File metadata and controls
52 lines (45 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import torch
import numpy as np
''' ealy stop'''
class EarlyStopping:
def __init__(self, patience=15, verbose=False, path='model.pth'):
'''
Args:
patience (int): How long to wait after last time validation loss improved.
Default: 7
verbose (bool): If True, prints a message for each validation loss improvement.
Default: False
path (str): Path for the checkpoint to be saved to.
Default: 'checkpoint.pt'
'''
self.patiecce = patience
self.verbose = verbose
self.counter = 0
self.best_score = None
self.early_stop = False
self.val_loss_min = np.Inf
self.path = path
self.flag = False
def __call__(self, val_loss, model):
score = -val_loss
self.flag = False
if self.best_score is None:
self.best_score = score
self.checkpoint(val_loss, model)
elif score < self.best_score:
self.counter += 1
if self.verbose:
print(f"EarlyStopping counter:{self.counter} out of {self.patiecce}")
if self.counter >= self.patiecce:
self.early_stop = True
else:
self.best_score = score
self.checkpoint(val_loss, model)
self.flag = True
self.counter = 0
def checkpoint(self, val_loss, model):
'''Saves model when validation loss decrease'''
if self.verbose:
print(f"Validation loss decreased({self.val_loss_min:.6f} --> {val_loss:.6f}). Saving model ...")
torch.save(model.state_dict(), self.path)
self.val_loss_min = val_loss