We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ec144d commit f09079dCopy full SHA for f09079d
1 file changed
tests/test_yolov5.py
@@ -28,7 +28,7 @@ def run_yolo(batch, config):
28
response = requests.get(url)
29
img = Image.open(BytesIO(response.content)).convert("RGB")
30
31
- imgsz = 64 # 이미지 사이즈 줄여서 시뮬레이터 체크 가속
+ imgsz = 64
32
transform = transforms.Compose([
33
transforms.Resize((imgsz, imgsz)),
34
transforms.ToTensor(),
0 commit comments