()
| 16 | |
| 17 | |
| 18 | def parse_args(): |
| 19 | parser = argparse.ArgumentParser(description="Plot multi results from TensorBoard logs.") |
| 20 | parser.add_argument( |
| 21 | "--config", type=str, required=True, help="Path to the YAML configuration file." |
| 22 | ) |
| 23 | return parser.parse_args() |
| 24 | |
| 25 | |
| 26 | def load_config(config_path: str) -> dict: |