ca-joe-yang commited on
Commit
5f47d63
·
verified ·
1 Parent(s): 398fcb3

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +48 -1
README.md CHANGED
@@ -10,4 +10,51 @@ metrics:
10
  - FR
11
  - AUC
12
  # base_model: "base model Hub identifier"
13
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  - FR
11
  - AUC
12
  # base_model: "base model Hub identifier"
13
+ ---
14
+
15
+ # Heatmap Regression without Soft-Argmax for Facial Landmark Detection
16
+
17
+ ## Abstract
18
+ Facial landmark detection is an important task in computer vision with numerous applications, such as head pose estimation, expression analysis, face swapping, etc. Heatmap regression-based methods have been widely used to achieve state-of-the-art results in this task. These methods involve computing the argmax over the heatmaps to predict a landmark. Since argmax is not differentiable, these methods use a differentiable approximation, Soft-argmax, to enable end-to-end training on deep-nets. In this work, we revisit this long-standing choice of using Soft-argmax and demonstrate that it is not the only way to achieve strong performance. Instead, we propose an alternative training objective based on the classic structured prediction framework. Empirically, our method achieves state-of-the-art performance on three facial landmark benchmarks (WFLW, COFW, and 300W), converging $2.2\times$ faster during training while maintaining better/competitive accuracy.
19
+
20
+
21
+ ## Evaluation
22
+ - Please check the instruction in our [GitHub](https://github.com/ca-joe-yang/regression-without-softarg).
23
+
24
+ ### WFLW
25
+ ```bash
26
+ bash scripts/test/WFLW.sh WFLW/best_model.pkl
27
+ ```
28
+ - NME: 3.97
29
+ - FR: 1.96
30
+ - AUC: 0.608
31
+
32
+ ### COFW
33
+ ```bash
34
+ bash scripts/test/COFW.sh COFW/best_model.pkl
35
+ ```
36
+ - NME 4.54
37
+ - FR 0.62
38
+ - AUC 0.547
39
+
40
+ ### 300W
41
+ ```bash
42
+ bash scripts/test/300W.sh 300W/best_model.pkl
43
+ ```
44
+ - NME: 2.86
45
+ - FR: 4.91
46
+ - AUC: 0.441
47
+
48
+
49
+ ## Citation
50
+ ```bibtex
51
+ @inproceedings{yang2025regression,
52
+ title={Heatmap Regression without Soft-Argmax for Facial Landmark Detection},
53
+ author={Yang, Chiao-An and Yeh, Raymond A},
54
+ booktitle={Proc. ICCV},
55
+ year={2025}
56
+ }
57
+ ```
58
+
59
+ ## Contact
60
+ Please contact [Chiao-An Yang](yang2300@purdue.edu) if you have any questions.