Sfoglia il codice sorgente

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

modifyDataloader
Glenn Jocher GitHub 2 anni fa
parent
commit
7830e91b9a
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: 4AEE18F83AFDEB23
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      models/yolo.py

+ 1
- 1
models/yolo.py Vedi File

@@ -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…
Annulla
Salva