()
| 23 | from util import * |
| 24 | |
| 25 | def main(): |
| 26 | # Parse the command line arguments |
| 27 | cfg = parse_args(description='Trains a model using preprocessed datasets.') |
| 28 | |
| 29 | # Start the worker(s) |
| 30 | start_workers(cfg, main_worker) |
| 31 | |
| 32 | # Worker function |
| 33 | def main_worker(rank, cfg): |
no test coverage detected