Browse Source

Trailing --save-txt whitespace bug fix (#1374)

* update Write results

* Update detect.py

* Update test.py

Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
5.0
weida wang GitHub 4 years ago
parent
commit
04081f8102
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      detect.py
  2. +1
    -1
      test.py

+ 1
- 1
detect.py View File

@@ -107,7 +107,7 @@ def detect(save_img=False):
xywh = (xyxy2xywh(torch.tensor(xyxy).view(1, 4)) / gn).view(-1).tolist() # normalized xywh
line = (cls, *xywh, conf) if opt.save_conf else (cls, *xywh) # label format
with open(txt_path + '.txt', 'a') as f:
f.write(('%g ' * len(line) + '\n') % line)
f.write(('%g ' * len(line)).rstrip() % line + '\n')

if save_img or view_img: # Add bbox to image
label = '%s %.2f' % (names[int(cls)], conf)

+ 1
- 1
test.py View File

@@ -140,7 +140,7 @@ def test(data,
xywh = (xyxy2xywh(torch.tensor(xyxy).view(1, 4)) / gn).view(-1).tolist() # normalized xywh
line = (cls, *xywh, conf) if save_conf else (cls, *xywh) # label format
with open(str(save_dir / 'labels' / Path(paths[si]).stem) + '.txt', 'a') as f:
f.write(('%g ' * len(line) + '\n') % line)
f.write(('%g ' * len(line)).rstrip() % line + '\n')

# W&B logging
if len(wandb_images) < log_imgs:

Loading…
Cancel
Save