(self, dataset, num_replicas=None, rank=None, shuffle=True, drop_last: bool = False)
| 5 | |
| 6 | class CustomDistributedSampler(DistributedSampler): |
| 7 | def __init__(self, dataset, num_replicas=None, rank=None, shuffle=True, drop_last: bool = False): |
| 8 | super().__init__(dataset, num_replicas=num_replicas, rank=rank, shuffle=shuffle, drop_last=drop_last) |
| 9 | |
| 10 | |
| 11 | def __iter__(self): |
nothing calls this directly
no outgoing calls
no test coverage detected