| 21 | |
| 22 | |
| 23 | class DenseNetAdjoint(DenseNet121): |
| 24 | |
| 25 | def __call__(self, x, adjoint_info): |
| 26 | if adjoint_info != 42: |
| 27 | raise ValueError |
| 28 | return super().__call__(x) |
| 29 | |
| 30 | |
| 31 | DENSENET2D = DenseNet121(spatial_dims=2, in_channels=1, out_channels=3) |
no outgoing calls
no test coverage detected
searching dependent graphs…