(self, parser)
| 103 | """ |
| 104 | |
| 105 | def initialize(self, parser): |
| 106 | parser = TrainOptions.initialize(self, parser) |
| 107 | parser.add_argument('--local_rank', type=int, required=True) |
| 108 | parser.add_argument('--use_ddp', action='store_true') |
| 109 | return parser |
| 110 | |
| 111 | |
| 112 | def main(): |
nothing calls this directly
no outgoing calls
no test coverage detected