(module)
| 20 | |
| 21 | |
| 22 | def _count_params(module): |
| 23 | return sum(p.numel() for p in module.parameters() if p.requires_grad) |
| 24 | |
| 25 | class SplatModel(StaticEncoder): |
| 26 | def __init__(self, opt: Options, **model_kwargs): |
nothing calls this directly
no outgoing calls
no test coverage detected