(self, sampler, batch_size, drop_last)
| 110 | """ |
| 111 | |
| 112 | def __init__(self, sampler, batch_size, drop_last): |
| 113 | self.sampler = sampler |
| 114 | self.batch_size = batch_size |
| 115 | self.drop_last = drop_last |
| 116 | |
| 117 | def __iter__(self): |
| 118 | batch = [] |
nothing calls this directly
no outgoing calls
no test coverage detected