(self)
| 32 | self.datas = json.load(open('datasets/Eval/image/coco_cap/coco_karpathy_val.json')) |
| 33 | |
| 34 | def __len__(self): |
| 35 | return len(self.datas) |
| 36 | |
| 37 | def __getitem__(self, index): |
| 38 | data = self.datas[index] |
nothing calls this directly
no outgoing calls
no test coverage detected