--- license: other license_name: readmefile license_link: LICENSE configs: - config_name: default data_files: - split: train path: data/train-* - split: validation path: data/validation-* - split: test path: data/test-* dataset_info: features: - name: id dtype: uint32 - name: right_eye large_list: float64 - name: right_earbase large_list: float64 - name: right_earend large_list: float64 - name: right_antler_base large_list: float64 - name: right_antler_end large_list: float64 - name: left_antler_base large_list: float64 - name: left_antler_end large_list: float64 - name: left_earbase large_list: float64 - name: left_earend large_list: float64 - name: left_eye large_list: float64 - name: nose large_list: float64 - name: upper_jaw large_list: float64 - name: lower_jaw large_list: float64 - name: mouth_end_right large_list: float64 - name: throat_base large_list: float64 - name: neck_base large_list: float64 - name: neck_end large_list: float64 - name: back_base large_list: float64 - name: back_middle large_list: float64 - name: back_end large_list: float64 - name: tail_base large_list: float64 - name: body_middle_right large_list: float64 - name: bbox large_list: float64 - name: mouth_end_left large_list: float64 - name: throat_end large_list: float64 - name: tail_end large_list: float64 - name: front_left_thai large_list: float64 - name: front_left_knee large_list: float64 - name: front_left_paw large_list: float64 - name: front_right_thai large_list: float64 - name: front_right_paw large_list: float64 - name: front_right_knee large_list: float64 - name: back_left_knee large_list: float64 - name: back_left_paw large_list: float64 - name: back_left_thai large_list: float64 - name: back_right_thai large_list: float64 - name: back_right_paw large_list: float64 - name: back_right_knee large_list: float64 - name: belly_bottom large_list: float64 - name: body_middle_left large_list: float64 - name: name_file dtype: large_string - name: name_class dtype: large_string - name: image_base64s dtype: large_string - name: image_width dtype: int64 - name: image_height dtype: int64 - name: image_license dtype: large_string splits: - name: train num_bytes: 1557452015 num_examples: 9423 - name: validation num_bytes: 82813875 num_examples: 524 - name: test num_bytes: 87294963 num_examples: 524 download_size: 1715582665 dataset_size: 1727560853 task_categories: - feature-extraction tags: - biology pretty_name: AwA-Pose-Lite size_categories: - 10K If a *keypoints* contains `[-1.0, -1.0]`, it means that the point is not visible in the image. These points must be masked when training the model. > Images are stored as a Base64 string. They can be transformed using the function: ```python import base64 import io from PIL import Image def base64_to_img(base64_str): img_bytes = base64.b64decode(base64_str) img_buffer = io.BytesIO(img_bytes) img = Image.open(img_buffer) return img ``` Find out more in [AwA2_dataset_analysis](https://www.kaggle.com/code/radimkzl/awa2-dataset-analysis#Create-AwA2-dataset-for-Hugging-Face...) ## **Licensing Information** Data for keypoints is licensed according to [GitHub: prinik/AwA-Pose](https://github.com/prinik/AwA-Pose/tree/main), this license is [MIT](https://github.com/prinik/AwA-Pose/tree/main?tab=MIT-1-ov-file#readme). The license for the images is according to [Animals with Attributes 2](https://cvml.ista.ac.at/AwA2/), see data column `image_license `.