gets path extension
(path)
| 45 | |
| 46 | |
| 47 | def get_ext(path): |
| 48 | """gets path extension""" |
| 49 | return os.path.splitext(path)[1] |
| 50 | |
| 51 | |
| 52 | def get_dataset(name, tokenizer, pre_tokenize, data_parallel_rank, loader_scatter=None, no_lazy_loader=False, |
nothing calls this directly
no outgoing calls
no test coverage detected