(self, inputs)
| 179 | self.classifiers_dict.update(classifiers_dict) |
| 180 | |
| 181 | def forward(self, inputs) -> Dict[str, torch.Tensor]: |
| 182 | return {k: v.forward(inputs) for k, v in self.classifiers_dict.items()} |
| 183 | |
| 184 | def __len__(self): |
| 185 | return len(self.classifiers_dict) |
nothing calls this directly
no outgoing calls
no test coverage detected