(self)
| 130 | self.target_transform = target_transform |
| 131 | |
| 132 | def __len__(self): |
| 133 | return len(self.img_labels) |
| 134 | |
| 135 | def __getitem__(self, idx): |
| 136 | img_path = os.path.join(self.img_dir, self.img_labels.iloc[idx, 0]) |
nothing calls this directly
no outgoing calls
no test coverage detected