Update test_python.py

multisource-docs-fix
Glenn Jocher 5 months ago committed by GitHub
parent ee97944ca4
commit 085d2ca79d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 5
      tests/test_python.py

@ -13,7 +13,7 @@ import torch
import yaml
from PIL import Image
from tests import CFG, IS_TMP_WRITEABLE, MODEL, SOURCE, SOURCES_LIST, TMP
from tests import CFG, MODEL, SOURCE, SOURCES_LIST, TMP
from ultralytics import RTDETR, YOLO
from ultralytics.cfg import MODELS, TASK2DATA, TASKS
from ultralytics.data.build import load_inference_source
@ -28,10 +28,13 @@ from ultralytics.utils import (
WINDOWS,
checks,
is_github_action_running,
is_dir_writeable,
)
from ultralytics.utils.downloads import download
from ultralytics.utils.torch_utils import TORCH_1_9
IS_TMP_WRITEABLE = is_dir_writeable(TMP) # WARNING: must be run once tests start as TMP does not exist on tests/init
def test_model_forward():
"""Test the forward pass of the YOLO model."""

Loading…
Cancel
Save