(self)
| 254 | self.label = label |
| 255 | |
| 256 | def __len__(self): |
| 257 | return len(self.features) |
| 258 | |
| 259 | def __getitem__(self, idx): |
| 260 | return self.features[idx], self.label_emb[idx], self.label[idx] |
nothing calls this directly
no outgoing calls
no test coverage detected