dima806 commited on
Commit
631b77d
1 Parent(s): a0f0a5d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -1
README.md CHANGED
@@ -4,4 +4,19 @@ metrics:
4
  - accuracy
5
  - f1
6
  ---
7
- See https://www.kaggle.com/code/dima806/man-woman-face-image-detection-vit for more details.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  - accuracy
5
  - f1
6
  ---
7
+ Returns whether the face belongs to man or woman based on face image.
8
+
9
+ See https://www.kaggle.com/code/dima806/man-woman-face-image-detection-vit for more details.
10
+
11
+ ```
12
+ Classification report:
13
+
14
+ precision recall f1-score support
15
+
16
+ man 0.9898 0.9908 0.9903 7071
17
+ woman 0.9908 0.9898 0.9903 7072
18
+
19
+ accuracy 0.9903 14143
20
+ macro avg 0.9903 0.9903 0.9903 14143
21
+ weighted avg 0.9903 0.9903 0.9903 14143
22
+ ```