@@ -5,25 +5,33 @@ The PrimateFace dataset contains facial images and annotations for various prima
55
66## Dataset Access
77
8- ### Current Status
9- The full PrimateFace dataset will be released in ** September 2025 ** on Hugging Face.
8+ The PrimateFace dataset is available on Hugging Face (gated access):
9+ [ https://huggingface.co/datasets/fparodi/ PrimateFace] ( https://huggingface.co/datasets/fparodi/PrimateFace )
1010
11- ** Coming Soon: ** [ https://huggingface.co/datasets/fparodi/PrimateFace ] ( https://huggingface.co/datasets/fparodi/PrimateFace )
11+ ### Available Configs
1212
13- ### What's Available Now
13+ | Config | Keypoints | Description |
14+ | --------| -----------| -------------|
15+ | ` mac-au-68kpt ` | 68 (dlib/COCO) | Cayo Santiago action-unit videos, COCO Whole-Body face landmarks |
16+ | ` mac-au-48kpt ` | 48 (PrimateFace) | Cayo Santiago action-unit videos, PrimateFace custom landmarks |
17+
18+ Both configs contain the same images annotated with different landmark sets.
19+
20+ ``` python
21+ from datasets import load_dataset
22+
23+ # Load 68-keypoint annotations (dlib/COCO convention)
24+ ds_68 = load_dataset(" fparodi/PrimateFace" , " mac-au-68kpt" )
25+
26+ # Load 48-keypoint annotations (PrimateFace convention)
27+ ds_48 = load_dataset(" fparodi/PrimateFace" , " mac-au-48kpt" )
28+ ```
29+
30+ ### Also Available
1431- Pre-trained models: Available via ` demos/download_models.py `
1532- Sample images: Included in ` demos/ ` for testing
16- - Annotation format: COCO JSON with 68-point landmarks
1733- Documentation: Complete API and format specifications
1834
19- ### Dataset Preview
20- The complete dataset will include:
21- - ** 10,000+ annotated images** across 15+ primate species
22- - ** 68-point facial landmarks** for each face
23- - ** Species labels** and metadata
24- - ** Train/validation/test splits** for reproducible research
25- - ** Diverse conditions** : Multiple poses, expressions, and environments
26-
2735## Data Usage and Licensing
2836
2937### Important Notice
0 commit comments