(self,x)
| 31 | ConvBlock(channels,channels,use_act=False,kernel_size = 3,padding = 1), |
| 32 | ) |
| 33 | def forward(self,x): |
| 34 | return x + self.block(x) |
| 35 | |
| 36 | class Generator(torch.nn.Module): |
| 37 | def __init__(self,img_channels,num_features = 64,num_residual=9): |
nothing calls this directly
no outgoing calls
no test coverage detected