(self, args)
| 35 | |
| 36 | class GetDataLoader(object): |
| 37 | def __init__(self, args): |
| 38 | self.args = args |
| 39 | self.data_path = args.data_path |
| 40 | self.input_shape = args.input_shape |
| 41 | |
| 42 | def parse_dataset(self, dataset, train_transform, test_transform): |
| 43 |
nothing calls this directly
no outgoing calls
no test coverage detected