ultralytics 8.0.72
faster Windows trainings and corrupt cache fix (#1912)
Co-authored-by: andreaswimmer <53872150+andreaswimmer@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This commit is contained in:
@ -207,7 +207,6 @@ def test_predict_callback_and_setup():
|
||||
def test_result():
|
||||
model = YOLO('yolov8n-pose.pt')
|
||||
res = model([SOURCE, SOURCE])
|
||||
res[0].plot(show_conf=False) # raises warning
|
||||
res[0].plot(conf=True, boxes=False)
|
||||
res[0].plot(pil=True)
|
||||
res[0] = res[0].cpu().numpy()
|
||||
@ -215,7 +214,6 @@ def test_result():
|
||||
|
||||
model = YOLO('yolov8n-seg.pt')
|
||||
res = model([SOURCE, SOURCE])
|
||||
res[0].plot(show_conf=False) # raises warning
|
||||
res[0].plot(conf=True, boxes=False, masks=True)
|
||||
res[0].plot(pil=True)
|
||||
res[0] = res[0].cpu().numpy()
|
||||
|
Reference in New Issue
Block a user