(x, bb)
| 331 | |
| 332 | |
| 333 | def run(x, bb): |
| 334 | if isinstance(bb, ResBlock): x = bb(x, emb) |
| 335 | elif isinstance(bb, SpatialTransformer): x = bb(x, context) |
| 336 | else: x = bb(x) |
| 337 | return x |
| 338 | |
| 339 | saved_inputs = [] |
| 340 | for i,b in enumerate(self.input_blocks): |
nothing calls this directly
no outgoing calls
no test coverage detected