(self)
| 127 | self.num_samples = len(self.pids) |
| 128 | |
| 129 | def __len__(self): |
| 130 | return self.num_samples * self.num_instances |
| 131 | |
| 132 | def __iter__(self): |
| 133 | indices = torch.randperm(len(self.pids)).tolist() |
nothing calls this directly
no outgoing calls
no test coverage detected