glenn-jocher commited on
Commit
c6b51f4
·
unverified ·
1 Parent(s): 8d52c1c

Update FP16 `--half` argument for test.py and detect.py (#3532)

Browse files

* Update FP16 `--half` argument for test.py and detect.py

* Update detect.py

Files changed (2) hide show
  1. detect.py +1 -1
  2. test.py +1 -1
detect.py CHANGED
@@ -172,7 +172,7 @@ if __name__ == '__main__':
172
  parser.add_argument('--line-thickness', default=3, type=int, help='bounding box thickness (pixels)')
173
  parser.add_argument('--hide-labels', default=False, action='store_true', help='hide labels')
174
  parser.add_argument('--hide-conf', default=False, action='store_true', help='hide confidences')
175
- parser.add_argument('--half', type=bool, default=False, help='use FP16 half-precision inference')
176
  opt = parser.parse_args()
177
  print(opt)
178
  check_requirements(exclude=('tensorboard', 'pycocotools', 'thop'))
 
172
  parser.add_argument('--line-thickness', default=3, type=int, help='bounding box thickness (pixels)')
173
  parser.add_argument('--hide-labels', default=False, action='store_true', help='hide labels')
174
  parser.add_argument('--hide-conf', default=False, action='store_true', help='hide confidences')
175
+ parser.add_argument('--half', action='store_true', help='use FP16 half-precision inference')
176
  opt = parser.parse_args()
177
  print(opt)
178
  check_requirements(exclude=('tensorboard', 'pycocotools', 'thop'))
test.py CHANGED
@@ -306,7 +306,7 @@ if __name__ == '__main__':
306
  parser.add_argument('--project', default='runs/test', help='save to project/name')
307
  parser.add_argument('--name', default='exp', help='save to project/name')
308
  parser.add_argument('--exist-ok', action='store_true', help='existing project/name ok, do not increment')
309
- parser.add_argument('--half', type=bool, default=False, help='use FP16 half-precision inference')
310
  opt = parser.parse_args()
311
  opt.save_json |= opt.data.endswith('coco.yaml')
312
  opt.data = check_file(opt.data) # check file
 
306
  parser.add_argument('--project', default='runs/test', help='save to project/name')
307
  parser.add_argument('--name', default='exp', help='save to project/name')
308
  parser.add_argument('--exist-ok', action='store_true', help='existing project/name ok, do not increment')
309
+ parser.add_argument('--half', action='store_true', help='use FP16 half-precision inference')
310
  opt = parser.parse_args()
311
  opt.save_json |= opt.data.endswith('coco.yaml')
312
  opt.data = check_file(opt.data) # check file