(block, path)
| 100 | save_res_block(block[2], pathlib.Path(path, 'res2')) |
| 101 | |
| 102 | def save_res_upsample(block, path): |
| 103 | save_res_block(block[0], pathlib.Path(path, 'res')) |
| 104 | save_upsample(block[1], pathlib.Path(path, 'upsample')) |
| 105 | |
| 106 | def save_res_transformer(block, path): |
| 107 | save_res_block(block[0], pathlib.Path(path, 'res')) |
no test coverage detected