inanxr commited on
Commit
fdf8a85
·
verified ·
1 Parent(s): 505b47f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +76 -75
README.md CHANGED
@@ -1,75 +1,76 @@
1
- ---
2
- dataset_info:
3
- features:
4
- - name: image
5
- dtype: image
6
- - name: label
7
- dtype: class_label
8
- splits:
9
- - name: train
10
- num_bytes: 29320000000
11
- num_examples: 5179510
12
- download_size: 26157852001
13
- dataset_size: 29320000000
14
- license: apache-2.0
15
- task_categories:
16
- - image-classification
17
- - face-recognition
18
- tags:
19
- - face-recognition
20
- - ms1mv3
21
- - prosopo
22
- pretty_name: Prosopo Large Dataset (MS1MV3)
23
- size_categories:
24
- - 1M<n<10M
25
- ---
26
-
27
- # 🧪 Prosopo Large Dataset (MS1MV3)
28
-
29
- > **5.1 Million high-quality aligned face images for state-of-the-art model training.**
30
-
31
- This dataset serves as the **core training engine** for the **Prosopo** face recognition system. It contains the **MS1MV3** (MS-Celeb-1M Cleaned) dataset, pre-aligned and packed into the high-performance MXNet RecordIO format.
32
-
33
- ## 📊 Dataset Statistics
34
-
35
- | Metric | Value |
36
- | :--- | :--- |
37
- | **Identities** | 93,431 |
38
- | **Total Images** | 5,179,510 |
39
- | **Image Size** | 112 x 112 px |
40
- | **Alignment** | RetinaFace (5-point landmark) |
41
- | **Format** | MXNet RecordIO (Packed Binary) |
42
- | **Total Size** | ~28 GB (Unpacked) |
43
-
44
- ## 📁 Content Structure
45
-
46
- The dataset is provided as a **ZIP archive** containing the following RecordIO files:
47
-
48
- - `train.rec`: The Data (27.3 GB) - All images packed
49
- - `train.idx`: The Index (97 MB) - Offsets for random access
50
- - `train.lst`: The Metadata (411 MB) - Path/Label/Index map
51
-
52
- It also includes standard validation benchmarks:
53
- - `lfw.bin`, `agedb_30.bin`, `cfp_fp.bin`
54
-
55
- ## 🚀 Usage
56
-
57
- You can download the zip file and extract it to your training environment.
58
-
59
- ```python
60
- from huggingface_hub import hf_hub_download
61
- import zipfile
62
-
63
- # Download
64
- zip_path = hf_hub_download(repo_id="inanxr/prosopo-large-dataset", filename="prosopo-large-dataset.zip", repo_type="dataset")
65
-
66
- # Extract
67
- with zipfile.ZipFile(zip_path, 'r') as zip_ref:
68
- zip_ref.extractall("./ms1m_dataset")
69
- ```
70
-
71
- ## 📜 Acknowledgements
72
-
73
- Original Data Source: **MS-Celeb-1M** (Cleaned by InsightFace/DeepGlint)
74
- > *InanXR/Prosopo re-hosting for reproducibility.*
75
- > *Guo, Yandong, et al. "Ms-celeb-1m: A dataset and benchmark for large-scale face recognition." ECCV 2016.*
 
 
1
+ ---
2
+ dataset_info:
3
+ features:
4
+ - name: image
5
+ dtype: image
6
+ - name: label
7
+ dtype: class_label
8
+ splits:
9
+ - name: train
10
+ num_bytes: 29320000000
11
+ num_examples: 5179510
12
+ download_size: 26157852001
13
+ dataset_size: 29320000000
14
+ license: cc-by-4.0
15
+ task_categories:
16
+ - image-classification
17
+ tags:
18
+ - face-recognition
19
+ - ms1mv3
20
+ - prosopo
21
+ pretty_name: Prosopo Large Dataset (MS1MV3)
22
+ size_categories:
23
+ - 1M<n<10M
24
+ ---
25
+
26
+ # 🧪 Prosopo Large Dataset (MS1MV3)
27
+
28
+ ![Prosopo Banner](https://raw.githubusercontent.com/InanXR/Prosopo/refs/heads/main/assets/Prosopo_Large.png)
29
+
30
+ > **5.1 Million high-quality aligned face images for state-of-the-art model training.**
31
+
32
+ This dataset serves as the **core training engine** for the **Prosopo** face recognition system. It contains the **MS1MV3** (MS-Celeb-1M Cleaned) dataset, pre-aligned and packed into the high-performance MXNet RecordIO format.
33
+
34
+ ## 📊 Dataset Statistics
35
+
36
+ | Metric | Value |
37
+ | :--- | :--- |
38
+ | **Identities** | 93,431 |
39
+ | **Total Images** | 5,179,510 |
40
+ | **Image Size** | 112 x 112 px |
41
+ | **Alignment** | RetinaFace (5-point landmark) |
42
+ | **Format** | MXNet RecordIO (Packed Binary) |
43
+ | **Total Size** | ~28 GB (Unpacked) |
44
+
45
+ ## 📁 Content Structure
46
+
47
+ The dataset is provided as a **ZIP archive** containing the following RecordIO files:
48
+
49
+ - `train.rec`: The Data (27.3 GB) - All images packed
50
+ - `train.idx`: The Index (97 MB) - Offsets for random access
51
+ - `train.lst`: The Metadata (411 MB) - Path/Label/Index map
52
+
53
+ It also includes standard validation benchmarks:
54
+ - `lfw.bin`, `agedb_30.bin`, `cfp_fp.bin`
55
+
56
+ ## 🚀 Usage
57
+
58
+ You can download the zip file and extract it to your training environment.
59
+
60
+ ```python
61
+ from huggingface_hub import hf_hub_download
62
+ import zipfile
63
+
64
+ # Download
65
+ zip_path = hf_hub_download(repo_id="inanxr/prosopo-large-dataset", filename="prosopo-large-dataset.zip", repo_type="dataset")
66
+
67
+ # Extract
68
+ with zipfile.ZipFile(zip_path, 'r') as zip_ref:
69
+ zip_ref.extractall("./ms1m_dataset")
70
+ ```
71
+
72
+ ## 📜 Acknowledgements
73
+
74
+ Original Data Source: **MS-Celeb-1M** (Cleaned by InsightFace/DeepGlint)
75
+ > *InanXR/Prosopo re-hosting for reproducibility.*
76
+ > *Guo, Yandong, et al. "Ms-celeb-1m: A dataset and benchmark for large-scale face recognition." ECCV 2016.*