(self, idx)
| 257 | return len(self.features) |
| 258 | |
| 259 | def __getitem__(self, idx): |
| 260 | return self.features[idx], self.label_emb[idx], self.label[idx] |
| 261 | |
| 262 | class ProjectHead(nn.Module): |
| 263 | def __init__(self, input_dim: int, target_dim: int) -> None: |
nothing calls this directly
no outgoing calls
no test coverage detected