We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4caf773 commit 74378d0Copy full SHA for 74378d0
tests/python/accuracy/conftest.py
@@ -1,6 +1,7 @@
1
+import json
2
from pathlib import Path
3
+
4
import pytest
-import json
5
6
7
def pytest_addoption(parser):
tests/python/accuracy/test_YoloV8.py
@@ -1,4 +1,7 @@
+import functools
import os
+from distutils.dir_util import copy_tree
+from pathlib import Path
import cv2
import numpy as np
@@ -11,9 +14,6 @@
11
14
from ultralytics import YOLO
12
15
from ultralytics.yolo.engine.results import Results
13
16
from ultralytics.yolo.utils import ops
-from distutils.dir_util import copy_tree
-from pathlib import Path
-import functools
17
18
19
# TODO: update docs
0 commit comments