(args)
| 92 | |
| 93 | |
| 94 | def run_test(args): |
| 95 | print_args(args) |
| 96 | |
| 97 | pipe_tf = TFRecordDetectionPipeline(args) |
| 98 | pipe_coco = COCODetectionPipeline(args, test_dummy_data_path) |
| 99 | |
| 100 | compare_pipelines(pipe_tf, pipe_coco, 1, 64) |
| 101 | |
| 102 | |
| 103 | def make_parser(): |
no test coverage detected