Skip to content

Commit 9e75cbf

Browse files
authored
Update __init__.py (#7065)
1 parent e278fd6 commit 9e75cbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/loggers/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def __init__(self, save_dir=None, weights=None, opt=None, hyp=None, logger=None,
4747
'metrics/precision', 'metrics/recall', 'metrics/mAP_0.5', 'metrics/mAP_0.5:0.95', # metrics
4848
'val/box_loss', 'val/obj_loss', 'val/cls_loss', # val loss
4949
'x/lr0', 'x/lr1', 'x/lr2'] # params
50-
self.best_keys = ['best/epoch', 'best/precision', 'best/recall', 'best/mAP_0.5', 'best/mAP_0.5:0.95',]
50+
self.best_keys = ['best/epoch', 'best/precision', 'best/recall', 'best/mAP_0.5', 'best/mAP_0.5:0.95']
5151
for k in LOGGERS:
5252
setattr(self, k, None) # init empty logger dictionary
5353
self.csv = True # always log to csv

0 commit comments

Comments
 (0)