(model, include_all=False)
| 153 | |
| 154 | |
| 155 | def count_parameters(model, include_all=False): |
| 156 | return sum(p.numel() for p in model.parameters() if p.requires_grad or include_all) |
| 157 | |
| 158 | |
| 159 | def compute_errors(gt, pred): |
nothing calls this directly
no outgoing calls
no test coverage detected