(self)
| 282 | self.attention_mask = data_dict["attention_mask"] |
| 283 | |
| 284 | def __len__(self): |
| 285 | return len(self.input_ids) |
| 286 | |
| 287 | def __getitem__(self, i) -> Dict[str, torch.Tensor]: |
| 288 | return dict( |
nothing calls this directly
no outgoing calls
no test coverage detected