(*args)
| 64 | assert target.shape == (G.img_channels, G.img_resolution, G.img_resolution) |
| 65 | |
| 66 | def logprint(*args): |
| 67 | if verbose: |
| 68 | print(*args) |
| 69 | |
| 70 | G = copy.deepcopy(G).eval().requires_grad_(False).to(device) # type: ignore |
| 71 |
no outgoing calls
no test coverage detected