Przeglądaj źródła

Fix floating point in number of workers `nw` (#6701)

Integer division by a float yields a (rounded) float. This causes
the dataloader to crash when creating a range.
modifyDataloader
Samuel Yvon GitHub 2 lat temu
rodzic
commit
0365379016
Nie znaleziono w bazie danych klucza dla tego podpisu ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć
  1. +1
    -1
      utils/datasets.py

+ 1
- 1
utils/datasets.py Wyświetl plik

@@ -110,7 +110,7 @@ def create_dataloader(path, imgsz, batch_size, stride, single_cls=False, hyp=Non

batch_size = min(batch_size, len(dataset))
nd = torch.cuda.device_count() # number of CUDA devices
nw = min([os.cpu_count() // max(nd / 2, 1), batch_size if batch_size > 1 else 0, workers]) # number of workers
nw = min([os.cpu_count() // max(nd // 2, 1), batch_size if batch_size > 1 else 0, workers]) # number of workers
sampler = None if rank == -1 else distributed.DistributedSampler(dataset, shuffle=shuffle)
loader = DataLoader if image_weights else InfiniteDataLoader # only DataLoader allows for attribute updates
return loader(dataset,

Ładowanie…
Anuluj
Zapisz