hfaus commited on
Commit
1c35c5d
1 Parent(s): e2c63bf

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -12
README.md CHANGED
@@ -4,22 +4,33 @@ size_categories:
4
  ---
5
  # CelebA Dataset
6
 
7
- CelebA Dataset es un conjunto de datos de atributos faciales a gran escala con más de 200K imágenes de celebridades, cada una con 40 anotaciones de atributos. Las imágenes de este conjunto de datos cubren grandes variaciones de poses y fondos desordenados. CelebA tiene grandes diversidades, grandes cantidades y ricas anotaciones, incluyendo 10,177 identidades, 202,599 imágenes faciales y 5 ubicaciones de puntos de referencia, 40 anotaciones de atributos binarios por imagen.
8
 
9
- ## Uso
10
 
11
- Este conjunto de datos está disponible en huggingface.co/datasets/hfaus/CelebA_bbox_and_facepoints/resolve/main/data. Está compuesto por 3 conjuntos de imágenes:
12
 
13
- * Entrenamiento
14
- * Validación
15
- * Prueba
16
 
17
- Además, hay 3 ficheros que contienen anotaciones para cada imagen:
18
 
19
- * list_eval_partition.txt
20
- * list_bbox_celeba.txt
21
- * list_landmarks_celeba.txt
22
 
23
- ## Licencia
 
 
 
 
 
 
 
 
 
 
 
24
 
25
- CelebA Dataset está licenciado bajo Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0).
 
 
 
4
  ---
5
  # CelebA Dataset
6
 
7
+ CelebA Dataset is a large-scale face attributes dataset with more than 200K celebrity images, each with 40 attribute annotations. The images in this dataset cover large pose variations and background clutter. CelebA has large diversities, large quantities, and rich annotations, including 10,177 number of identities, 202,599 number of face images, and 5 landmark locations, 40 binary attributes annotations per image.
8
 
9
+ ## Usage
10
 
11
+ It is composed of 3 sets of images:
12
 
13
+ * Training
14
+ * Validation
15
+ * Test
16
 
17
+ ## Example
18
 
19
+ The dataset returns each item as a dictionary with the following fields:
 
 
20
 
21
+ ```
22
+ {
23
+ "image": "/path/to/image",
24
+ "bbox": [x1, y1, x2, y2],
25
+ "facial_landmarks": {
26
+ "lefteye": [x1, y1],
27
+ "righteye": [x2, y2],
28
+ "nose": [x3, y3],
29
+ "leftmouth": [x4, y4],
30
+ "rightmouth": [x5, y5]
31
+ }
32
+ }
33
 
34
+ ## License
35
+
36
+ CelebA Dataset is licensed under Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0).