Yufeng He

Results 1 issues of Yufeng He

```python def __init__(self, input_nc, output_nc, ngf=64): ... self.block = DehazeBlock(default_conv, ngf*4, 3) ... def construct(self, x): ... x1 = self.block(x_down3) x2 = self.block(x1) x3 = self.block(x2) x4 = self.block(x3) x5...