(model, model_name='model')
| 238 | |
| 239 | |
| 240 | def print_arch(model, model_name='model'): |
| 241 | print(f"| {model_name} Arch: ", model) |
| 242 | num_params(model, model_name=model_name) |
| 243 | |
| 244 | |
| 245 | def num_params(model, print_out=True, model_name="model"): |
nothing calls this directly
no test coverage detected