importosimportnumpyasnpdefprint_shapes(directory):# List all files in the directoryforfileinos.listdir(directory):iffile.endswith(".npy"):# Load the .npy filedata=np.load(os.path.join(directory,file))# Print the shape of the numpy arrayprint(f"{file}: {data.shape}")# Example usage:directory_path='./output/shap_inter_values'print_shapes(directory_path)