(module)
| 36 | |
| 37 | |
| 38 | def _count_params(module): |
| 39 | return sum(p.numel() for p in module.parameters() if p.requires_grad) |
| 40 | |
| 41 | class GSEncoder(nn.Module): |
| 42 | def __init__(self, opt: Options, **kwargs): |
nothing calls this directly
no outgoing calls
no test coverage detected