stylegan-t icon indicating copy to clipboard operation
stylegan-t copied to clipboard

The workers flag is not used

Open RolandGao opened this issue 11 months ago • 0 comments

In train.py, line 87 says

@click.option('--workers', help='DataLoader worker processes', type=click.IntRange(min=1), default=3)

However, line 123 uses num_workers=3 regardless of the opts.workers flag:

c.data_loader_kwargs = dnnlib.EasyDict(pin_memory=True, num_workers=3, prefetch_factor=2)

RolandGao avatar Jul 31 '23 02:07 RolandGao