()
| 20 | np.savetxt(os.path.join(save_folder, 'filter_name.txt'), name_list, delimiter=',', fmt='%s') |
| 21 | |
| 22 | def main(): |
| 23 | root_path = osp.abspath(osp.join(__file__, osp.pardir, osp.pardir)) |
| 24 | opt, _ = parse_options(root_path, is_train=False) |
| 25 | |
| 26 | analysis = RandomAnalysis(opt) |
| 27 | analysis.analyze() |
| 28 | |
| 29 | if __name__ == '__main__': |
| 30 | main() |
no test coverage detected