소스 검색

`yolo.py --profile` default GPU batch size 16

modifyDataloader
Glenn Jocher GitHub 2 년 전
부모
커밋
7830e91b9a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      models/yolo.py

+ 1
- 1
models/yolo.py 파일 보기

@@ -314,7 +314,7 @@ if __name__ == '__main__':

# Profile
if opt.profile:
img = torch.rand(8 if torch.cuda.is_available() else 1, 3, 640, 640).to(device)
img = torch.rand(16 if torch.cuda.is_available() else 1, 3, 640, 640).to(device)
y = model(img, profile=True)

# Test all models

Loading…
취소
저장