ONNX
Wanli commited on
Commit
e91c7ba
·
1 Parent(s): 14b2eaf

Add script to evaluate face recognition by LFW (#72)

Browse files
Files changed (1) hide show
  1. README.md +11 -0
README.md CHANGED
@@ -7,6 +7,16 @@ Note:
7
  - [face_recognition_sface_2021sep.onnx](./face_recognition_sface_2021sep.onnx) is converted from the model from https://github.com/zhongyy/SFace thanks to [Chengrui Wang](https://github.com/crywang).
8
  - Support 5-landmark warpping for now (2021sep)
9
 
 
 
 
 
 
 
 
 
 
 
10
  ## Demo
11
 
12
  ***NOTE***: This demo uses [../face_detection_yunet](../face_detection_yunet) as face detector, which supports 5-landmark detection for now (2021sep).
@@ -17,6 +27,7 @@ Run the following command to try the demo:
17
  python demo.py --input1 /path/to/image1 --input2 /path/to/image2
18
  ```
19
 
 
20
  ## License
21
 
22
  All files in this directory are licensed under [Apache 2.0 License](./LICENSE).
 
7
  - [face_recognition_sface_2021sep.onnx](./face_recognition_sface_2021sep.onnx) is converted from the model from https://github.com/zhongyy/SFace thanks to [Chengrui Wang](https://github.com/crywang).
8
  - Support 5-landmark warpping for now (2021sep)
9
 
10
+ Results of accuracy evaluation with [tools/eval](../../tools/eval).
11
+
12
+ | Models | Accuracy |
13
+ |-------------|----------|
14
+ | SFace | 0.9940 |
15
+ | SFace quant | 0.9932 |
16
+
17
+ \*: 'quant' stands for 'quantized'.
18
+
19
+
20
  ## Demo
21
 
22
  ***NOTE***: This demo uses [../face_detection_yunet](../face_detection_yunet) as face detector, which supports 5-landmark detection for now (2021sep).
 
27
  python demo.py --input1 /path/to/image1 --input2 /path/to/image2
28
  ```
29
 
30
+
31
  ## License
32
 
33
  All files in this directory are licensed under [Apache 2.0 License](./LICENSE).