I have a question about one of the rules in the guidelines - the one that says “Images must be processed one at a time. Parallelization of multiple images is not permitted.”
Does this mean I can’t use PyTorch’s DataLoader with num_workers > 0? Setting num_workers > 0 creates multiple worker processes/threads to load and preprocess data in parallel to speed things up.
But based on that rule, it seems like having multiple workers processing multiple images at the same time might not be allowed? I just wanted to double-check.
It would be nice if you can clarify.