diff --git a/examples/convert_file_formats.py b/examples/convert_file_formats.py index 6079866c..ef819ec6 100644 --- a/examples/convert_file_formats.py +++ b/examples/convert_file_formats.py @@ -100,7 +100,7 @@ def rename_keypoints(ds, rename_dict): # Let's create a list of keypoints to delete. # to delete modify this list accordingly -kps_to_delete = ["tail_end"] +kps_to_delete = ["tailend"] # %% @@ -131,14 +131,7 @@ def delete_keypoints(ds, delete_keypoints): # Again create a list with the # Let's list the keypoints in the desired order. -ordered_keypoints = [ - "snout", - "right_ear", - "left_ear", - "centre", - "tail_end", - "tail_base", -] +ordered_keypoints = ["nose", "earR", "earL", "middle", "tailbase"] # %%