(information: str)
| 82 | """ |
| 83 | |
| 84 | def log_master(information: str): |
| 85 | if is_master(): |
| 86 | logger.info(information) |
| 87 | |
| 88 | if os.path.exists(os.path.join(checkpoint_dir, 'model')): |
| 89 | checkpoint_dir = os.path.join(checkpoint_dir, 'model') |
no test coverage detected
searching dependent graphs…