(path: Path)
| 247 | |
| 248 | def create_output_dir(self, checkpoint: bool = False): |
| 249 | def create_dir(path: Path): |
| 250 | if not path.exists(): |
| 251 | print(f"Info: Directory {path} does not exist, building") |
| 252 | path.mkdir(exist_ok=True, parents=True) |
| 253 | return path |
| 254 | |
| 255 | opt = self.config['optimizer'] |
| 256 | net = self.config['network'] |
nothing calls this directly
no outgoing calls
no test coverage detected