(self, data_key, data_key2, **kwargs)
| 64 | return self.load_image_batch(data_key, **kwargs) |
| 65 | |
| 66 | def load_image_pair(self, data_key, data_key2, **kwargs): |
| 67 | return self.load_image_batch(data_key, data_key2, **kwargs) |
| 68 | |
| 69 | def load_image_batch(self, |
| 70 | *data_key_batch, |
nothing calls this directly
no test coverage detected