(input)
| 27 | return result |
| 28 | |
| 29 | def std(input): |
| 30 | if input.max() == 0: |
| 31 | return input |
| 32 | else: |
| 33 | result = (input-input.min()) / (input.max()-input.min()) |
| 34 | return result |
| 35 | |
| 36 | def vis_data(args, path_list): |
| 37 | feature_save_path = os.path.join(args.save_path) |