(self, c_concat_config, c_crossattn_config)
| 254 | class HybridConditioner(nn.Module): |
| 255 | |
| 256 | def __init__(self, c_concat_config, c_crossattn_config): |
| 257 | super().__init__() |
| 258 | self.concat_conditioner = instantiate_from_config(c_concat_config) |
| 259 | self.crossattn_conditioner = instantiate_from_config(c_crossattn_config) |
| 260 | |
| 261 | def forward(self, c_concat, c_crossattn): |
| 262 | c_concat = self.concat_conditioner(c_concat) |
nothing calls this directly
no test coverage detected