Fixed string format error during weight conversion (#1334)

This commit is contained in:
Chang Lee 2020-06-22 22:07:51 -04:00 committed by GitHub
parent e276e3a103
commit 8a414743e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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 's%'" % (weights, target))
print("Success: converted '%s' to '%s'" % (weights, target))
else:
print('Error: extension not supported.')