From 39a2d32c0f06a29ff40a442feb9ef479714be5f4 Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Wed, 27 May 2020 09:32:19 -0700 Subject: [PATCH] Bug fix #1247 --- models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models.py b/models.py index 0c0d6fa0..0323b25e 100755 --- a/models.py +++ b/models.py @@ -438,7 +438,7 @@ def convert(cfg='cfg/yolov3-spp.cfg', weights='weights/yolov3-spp.weights'): target = weights.rsplit('.', 1)[0] + '.pt' torch.save(chkpt, target) - print("Success: converted '%s' to '%'" % (weights, target)) + print("Success: converted '%s' to 's%'" % (weights, target)) else: print('Error: extension not supported.')