(self,x)
| 62 | use_act = False |
| 63 | ) |
| 64 | def forward(self,x): |
| 65 | out = self.block1(x) |
| 66 | out = self.block2(out) |
| 67 | return out + x |
| 68 | |
| 69 | class Generator(torch.nn.Module): |
| 70 | def __init__(self,in_channels = 3, num_channels = 64,num_blocks = 16): |
nothing calls this directly
no outgoing calls
no test coverage detected