REVIEW 4 major objections 6 minor 57 references
Learning from Heterogeneity: Generalizing Dynamic Facial Expression Recognition via Distributionally Robust Optimization
T0 review · 4 major / 6 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read A framework called HDF claims that modeling distributional shifts in both time-frequency features and loss optimization improves dynamic facial expression recognition, and reports outperforming prior methods on DFEW and FERV39k.
desk verdict A competent DFER paper with modest single-run gains and a few equation-level loose ends; the SOTA claim is not statistically established, but the assembly is new and the code is released. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing mechanism is the pair of modules DAM and DSM. DAM's frequency branch computes DCT features and adds sign-based and wasserstein-guided perturbations to simulate worst-case style shifts, while its temporal branch uses average and max pooling descriptors, a global deviation term approximated as an L2 distance to the sequence mean, and a local temporal difference to build attention maps. DSM's central object is a self-balancing total loss $L_{total} = \lambda_{CE}L_{CE} + \lambda_{SC}L_{IB-D-SC}$ whose weights depend on the gradient norm $g = \|\nabla_w L_{total}\|_2$ through $\lambda_{CE} = \frac{g}{g+1}\alpha$ and $\lambda_{SC} = \frac{1}{g+1}\beta$, with the contrastive term also including gaussian down-weighting of hard negative pairs and an information-bottleneck trace penalty. This gradient-weight coupling is what makes the optimization adaptive; it is also the point where the paper's equations are least explicit.
What would settle it
On DFEW fd5, rerun ablation Setting (c) with the weights in Eq. 16 replaced by constants (for example, $\lambda_{CE} = \lambda_{SC} = 1$) and compare WAR; if the gap between Setting (c) and the baseline disappears, the reported DSM gain comes from the specific weighting scheme. As a second check, instrument the released code to see whether the gradient norm in Eq. 16 is computed with the $\lambda$ weights detached from the computation graph, since the equations as written are self-referential.
Extended reading notes
Core claim
The central claim is that distributionally robust optimization principles belong inside a DFER model at two levels: feature construction and loss design. DAM's frequency branch treats a DCT-transformed feature as the base distribution and perturbs it with a sign-based adversarial term plus a global-shift term scaled by deviation from the batch mean, approximating the inner maximization of a DRO problem; its temporal branch builds attention from pooled descriptors, a global deviation term (called wasserstein-inspired and computed as an L2 distance to the sequence mean), and a local difference term. DSM then reweights the supervised contrastive loss with a gaussian kernel that down-weights extreme negative pairs, adds an information-bottleneck trace penalty, and scales the classification versus contrastive losses by the current gradient norm so that hard batches emphasize classification. The paper presents ablations showing each branch and each module contributes on DFEW fd5, and per-class numbers show large gains on the least represented emotions, such as disgust rising to 12.41 percent and fear to 41.63 percent.
Load-bearing premise
The adaptive weighting rule computes a gradient length from a loss whose weights depend on that same gradient length; the paper never says the weights are held fixed during the computation, so the rule is only well-defined if that unstated detach step is in the code.
Editorial extensions
If this is right
- The same training configuration transfers across DFEW and FERV39k, so HDF could be deployed on a new in-the-wild dataset without per-dataset hyperparameter tuning.
- Per-class gains on rare emotions such as disgust and fear indicate better behavior on underrepresented categories, partially addressing the class imbalance that plagues expression recognition.
- Because DAM and DSM are described as plug-and-play and independent of the backbone, they can be inserted into existing DFER pipelines beyond the X3D configuration tested here.
- The flat loss landscape reported for DSM suggests the adaptive scaling acts as a regularizer, which could combine with other sharpness-based training methods for added stability.
Reading between the lines
- Editorial inference: the paper's 'distributionally robust' language is used heuristically, since DAM and DSM approximate DRO with sign perturbations and L2 deviation terms rather than solving a formal worst-case distribution problem.
- Editorial inference: the gaussian reweighting in the contrastive loss likely behaves like a temperature-adjusted focal loss, so a testable extension is to isolate whether the gain comes from reweighting or from the information-bottleneck trace term.
- Editorial inference: the gradient-norm scaling depends only on the whole batch, so it cannot distinguish genuinely hard samples from label noise; conditioning scaling on per-sample gradient norms or prediction confidence is a natural next experiment.
- Editorial inference: the reported numbers are single runs on two benchmarks, so a multi-seed evaluation and ablations on FERV39k would clarify how much of the gain is module-specific versus initialization luck.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes HDF, a framework for dynamic facial expression recognition built on an X3D backbone, with two plug-and-play modules: DAM, a dual-branch time-frequency attention module using DCT, adversarial perturbation, and Wasserstein-inspired temporal regularization; and DSM, a distributionally robust supervised contrastive loss with information-bottleneck regularization and gradient-norm-based adaptive loss scaling. The method is evaluated on DFEW under the 5-fold cross-validation protocol and on FERV39k, reporting WAR/UAR improvements over prior methods (71.60/60.40 on DFEW; 50.30/40.49 on FERV39k). Ablations on DFEW fold 5 attribute gains to each module, and code is released.
Significance. If the reported results are reproducible, HDF offers a practical and modular contribution to DFER: the idea of adapting classification-vs-contrastive loss weights by batch-level gradient sharpness is interesting, and the dual-branch time-frequency attention is a plausible mechanism for handling source-level and individual-level heterogeneity. Strengths of the paper include adherence to standard evaluation protocols, informative component ablations (Tables 3 and 4), a loss-landscape visualization, and a public code release. However, the central claim of 'significantly outperforming' the state of the art is currently supported only by single-run accuracy numbers without variance estimates, and the DSM update rule in Eq. (16) is not fully specified. These issues need to be resolved before the contribution can be fully assessed.
major comments (4)
- [§4.2.2, Eq. (16)] The gradient norm g is defined as ||∇_w L_total||_2, but L_total in Eq. (17) itself includes λ_CE and λ_SC, which are the quantities that Eq. (16) is supposed to set. Unless the gradient is computed with the λ weights detached from the computation graph, or a fixed-point/alternating update is specified, Eq. (16) is self-referential and does not define a computable scaling rule. Please state explicitly how g is computed (e.g., stop-gradient on the λ terms) and the order of updates for λ_CE, λ_SC, and the network weights.
- [§4.1.3, Eq. (11)] The text states that the fusion weights satisfy the normalization constraint λ_t + λ_s = 1, but Eq. (11) defines each λ as an independent sigmoid output. Sigmoid outputs are not guaranteed to sum to 1, so the constraint is not enforced by the given formulation. Please correct the equation by using a softmax over the two logits or by explicitly normalizing the sigmoid outputs, or state that the implementation performs a subsequent normalization step.
- [§5.2, Tables 1 and 2] The abstract and Section 1 claim that HDF 'significantly outperforms' state-of-the-art methods. The reported margins are 0.65–1.51 WAR/UAR, and all numbers are single-run values without standard deviations, confidence intervals, or seed counts for any method. Given run-to-run variance in video transformers and protocol differences (frame sampling, face alignment, augmentation), the word 'significantly' is not supported by the evidence presented. Please add variance estimates from multiple runs, or soften the claim to 'outperforms' with appropriate hedging.
- [§5.2 / Abstract] The robustness claim is currently inferred from the same accuracy numbers and from qualitative visualizations (Figs. 3–5); there is no direct distribution-shift or cross-source experiment in the paper. For example, the paper could evaluate on FERV39k scene splits, add a style/noise perturbation test, or train on one source domain and test on another. Without such an experiment, the statement that HDF improves 'robustness to sample heterogeneity' over prior methods is not directly supported.
minor comments (6)
- [§4.1.1, Eqs. (6)–(7)] The symbols α and β are used both as learnable perturbation weights in Eq. (6) and as scaling/affine parameters in Eq. (7), while γ is introduced without definition in Eq. (7). Please use distinct symbols for distinct roles.
- [§5.1.3] Please state the number of training runs/seeds and the exact software environment (PyTorch version, CUDA version, etc.) to support reproducibility.
- [Figure 2 caption] The caption contains a duplicated phrase 'The pipeline of The pipeline of' that should be corrected.
- [§4.2.1, Eq. (13)] The robust weight w_ij is defined for negative pairs (i,j), but the denominator in Eq. (13) applies w_{ia} to all candidates a ≠ i. Please clarify whether w is applied to positive pairs as well, and if so, how it is defined for them.
- [§5.3.1, Table 3] The text says 'Adding DSM alone leads to even higher gains' but Table 3 shows Setting (c) (DSM alone) at 71.79 WAR, which is higher than Setting (b) (DAM alone) at 69.73, but lower than Setting (d). Please clarify the comparison explicitly, since the sentence could be read as claiming DSM alone is the largest contributor overall.
- [§5.1.3] The citation to prior work [43] for setting τ=0.07 and η=0.2 seems to refer to a NeurIPS paper on contrastive learning and distributionally robust optimization; please verify that the specific hyperparameter values come from that reference, or provide a more direct citation for the chosen values.
Circularity Check
DSM's adaptive loss weights are defined through the gradient of the very loss they define; the benchmark SOTA claim is external, so only partial circularity.
-
self definitional
[Section 4.2.2, Eq. (16) and Section 4.2.3, Eq. (17)]
"Let the gradient norm of the total loss be: g = ||∇_w L_total||_2, then compute the dynamic weights for each loss term as: λ_CE = g/(g+1)·α, λ_SC = 1/(g+1)·β, where α and β are base scaling coefficients. ... The overall objective of DSM is defined as follows: L_total = λ_CE·L_CE + λ_SC·L_IB-D-SC."
λ_CE and λ_SC are functions of g, while g is the norm of the gradient of L_total, and L_total is itself defined as the weighted sum using those same λ values. Thus Eqs. (16) and (17) form a self-referential system: the weights determine the loss, the loss determines the gradient, and the gradient determines the weights. The paper neither detaches λ when computing the gradient nor specifies a fixed-point iteration or use of a previous step's g. Without such an unstated intervention, the 'adaptive' scaling is not a well-defined function of the optimization state. Since DSM is a central contribution and its ablation gain is the largest in Table 3, the claimed optimization mechanism is not supported by the equations as written.
full rationale
The central SOTA claim is externally grounded and not circular: Tables 1 and 2 compare WAR/UAR against previously published numbers on DFEW and FERV39k, with no parameter fitted to the test metric. The related-work self-citations are contextual and not load-bearing; there is no invoked uniqueness theorem and no fitted input renamed as a prediction. The one genuine circular step is internal to DSM: the loss-scaling weights are defined through the gradient norm of a total loss that is itself defined with those weights. This makes the DSM component self-referential as written, though an implementation could resolve it by detaching the weights when computing the gradient. Because the benchmark result does not reduce by construction, the circularity is partial rather than total, giving a score of 4 rather than 6 or higher.
Assumptions & free parameters
free parameters (4)
- temperature tau =
0.07
- Gaussian reweighting center eta =
0.2
- DSM base scaling coefficients alpha and beta =
not reported
- DAM learnable weights alpha, beta, gamma, delta =
learned
assumptions (6)
- domain assumption DCT decomposition of video features captures source-level style and quality variation relevant to DFER
- ad hoc to paper The L2 distance between a frame descriptor and the sequence mean approximates the Wasserstein-regularized temporal deviation
- ad hoc to paper Gaussian similarity reweighting implements a distributionally robust contrastive objective
- ad hoc to paper Trace of feature covariance approximates the information bottleneck penalty
- domain assumption Gradient norm of the total loss is a reliable batch-level difficulty signal for loss weighting
- domain assumption Single-run comparisons against previously published numbers are sufficient to establish superiority
Cite this review
Pith. "Pith review of Learning from Heterogeneity: Generalizing Dynamic Facial Expression Recognition via Distributionally Robust Optimization." pith.science (2026). https://pith.science/paper/22D4CSUA
@misc{pith2026250715765,
author = {Pith},
title = {Pith review of: Learning from Heterogeneity: Generalizing Dynamic Facial Expression Recognition via Distributionally Robust Optimization},
year = {2026},
howpublished = {\url{https://pith.science/paper/22D4CSUA}},
note = {Machine review of arXiv:2507.15765}
}
read the original abstract
Dynamic Facial Expression Recognition (DFER) plays a critical role in affective computing and human-computer interaction. Although existing methods achieve comparable performance, they inevitably suffer from performance degradation under sample heterogeneity caused by multi-source data and individual expression variability. To address these challenges, we propose a novel framework, called Heterogeneity-aware Distributional Framework (HDF), and design two plug-and-play modules to enhance time-frequency modeling and mitigate optimization imbalance caused by hard samples. Specifically, the Time-Frequency Distributional Attention Module (DAM) captures both temporal consistency and frequency robustness through a dual-branch attention design, improving tolerance to sequence inconsistency and visual style shifts. Then, based on gradient sensitivity and information bottleneck principles, an adaptive optimization module Distribution-aware Scaling Module (DSM) is introduced to dynamically balance classification and contrastive losses, enabling more stable and discriminative representation learning. Extensive experiments on two widely used datasets, DFEW and FERV39k, demonstrate that HDF significantly improves both recognition accuracy and robustness. Our method achieves superior weighted average recall (WAR) and unweighted average recall (UAR) while maintaining strong generalization across diverse and imbalanced scenarios. Codes are released at https://github.com/QIcita/HDF_DFER.
Figures
Reference graph
Works this paper leans on
-
[1]
Joao Carreira and Andrew Zisserman. 2017. Quo vadis, action recognition? a new model and the kinetics dataset. In proceedings of the IEEE Conference on Computer Vision and Pattern Recognition
work page 2017
-
[2]
Dongliang Chen, Guihua Wen, Pei Yang, Huihui Li, Chuyun Chen, and Bao Wang
-
[3]
Haodong Chen, Haojian Huang, Junhao Dong, Mingzhe Zheng, and Dian Shao
-
[4]
Junkai Chen, Zenghai Chen, Zheru Chi, and Hong Fu. 2018. Facial Expression Recognition in Video with Multiple Feature Fusion.IEEE Transactions on Affective Computing (2018)
work page 2018
-
[5]
In Proceedings of the 32nd ACM International Conference on Multimedia (MM ’24)
FineCLIPER: Multi-modal Fine-grained CLIP for Dynamic Facial Expres- sion Recognition with AdaptERs. In Proceedings of the 32nd ACM International Conference on Multimedia (MM ’24)
-
[6]
Wheidima Carneiro de Melo, Eric Granger, and Abdenour Hadid. 2022. A Deep Multiscale Spatiotemporal Network for Assessing Depression From Facial Dy- namics. IEEE Transactions on Affective Computing (2022)
work page 2022
-
[7]
Xi Chen, Simai He, Bo Jiang, Christopher Thomas Ryan, and Teng Zhang. 2021. The Discrete Moment Problem with Nonconvex Shape Constraints. (2021)
work page 2021
-
[8]
Christoph Feichtenhofer. 2020. X3D: Expanding Architectures for Efficient Video Recognition. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)
work page 2020
Show all 57 references
-
[9]
John Duchi and Hongseok Namkoong. 2019. Variance-based regularization with convex objectives. Journal of Machine Learning Research (2019)
2019
-
[10]
Yu Gu, Xiang Zhang, Huan Yan, Jingyang Huang, Zhi Liu, Mianxiong Dong, and Fuji Ren. 2023. WiFE: WiFi and Vision Based Unobtrusive Emotion Recognition via Gesture and Facial Expression. IEEE Transactions on Affective Computing 14, 4 (2023), 2567–2581
2023
-
[11]
Pierre Foret, Ariel Kleiner, Hossein Mobahi, and Behnam Neyshabur. 2021. Sharpness-aware Minimization for Efficiently Improving Generalization. In In- ternational Conference on Learning Representations
2021
-
[12]
Dan Guo, Wengang Zhou, Houqiang Li, and Meng Wang. 2018. Hierarchical LSTM for sign language translation. In Proceedings of the AAAI conference on artificial intelligence, Vol. 32
2018
-
[13]
Dan Guo, Kun Li, Bin Hu, Yan Zhang, and Meng Wang. 2024. Benchmarking micro-action recognition: Dataset, methods, and applications. IEEE Transactions on Circuits and Systems for Video Technology 34, 7 (2024), 6238–6252
2024
-
[14]
Jingjing Hu, Dan Guo, Kun Li, Zhan Si, Xun Yang, Xiaojun Chang, and Meng Wang. 2025. Unified static and dynamic network: efficient temporal filtering for video grounding. IEEE Transactions on Pattern Analysis and Machine Intelligence (2025)
2025
-
[15]
Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. 2016. Deep Residual Learning for Image Recognition. InProceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR)
2016
-
[16]
Jinyang Huang, Bin Liu, Chenglin Miao, Xiang Zhang, Jiancun Liu, Lu Su, Zhi Liu, and Yu Gu. 2023. Phyfinatt: An undetectable attack framework against phy layer fingerprint-based wifi authentication. IEEE Transactions on Mobile Computing (2023)
2023
-
[17]
Jinyang Huang, Jia-Xuan Bai, Xiang Zhang, Zhi Liu, Yuanhao Feng, Jianchun Liu, Xiao Sun, Mianxiong Dong, and Meng Li. 2024. Keystrokesniffer: An off-the-shelf smartphone can eavesdrop on your privacy from anywhere. IEEE Transactions on Information Forensics and Security (2024)
2024
-
[18]
Xingxun Jiang, Yuan Zong, Wenming Zheng, Chuangao Tang, Wanchuang Xia, Cheng Lu, and Jiateng Liu. 2020. DFEW: A Large-Scale Database for Recog- nizing Dynamic Facial Expressions in the Wild. In Proceedings of the 28th ACM International Conference on Multimedia
2020
-
[19]
Ruomin Huang, Jiawei Huang, Wenjie Liu, and Hu Ding. 2022. Coresets for wasserstein distributionally robust optimization problems. Advances in Neural Information Processing Systems (2022)
2022
-
[20]
Jiyoung Lee, Sunok Kim, Seungryong Kim, and Kwanghoon Sohn. 2020. Multi- Modal Recurrent Attention Networks for Facial Expression Recognition. IEEE Transactions on Image Processing (2020)
2020
-
[21]
Binbin Jin, Defu Lian, Zheng Liu, Qi Liu, Jianhui Ma, Xing Xie, and Enhong Chen
-
[22]
Hanting Li, Hongjing Niu, Zhaoqing Zhu, and Feng Zhao. 2024. CLIPER: A Unified Vision-Language Framework for In-the-Wild Facial Expression Recognition. In 2024 IEEE International Conference on Multimedia and Expo (ICME)
2024
-
[23]
Mengke Li, Ye Liu, Yang Lu, Yiqun Zhang, Yiu ming Cheung, and Hui Huang
-
[24]
Hanting Li, Hongjing Niu, Zhaoqing Zhu, and Feng Zhao. 2023. Intensity-aware loss for dynamic facial expression recognition in the wild. AAAI
2023
-
[25]
Feng Liu, Hanyang Wang, and Siyuan Shen. 2025. Robust Dynamic Facial Expres- sion Recognition. IEEE Transactions on Biometrics, Behavior, and Identity Science (2025)
2025
-
[26]
Hanwei Liu, Huiling Cai, Qingcheng Lin, Xuefeng Li, and Hui Xiao. 2023. Learn- ing from More: Combating Uncertainty Cross-multidomain for Facial Expression Recognition. In Proceedings of the 31st ACM International Conference on Multime- dia (MM ’23). Association for Computing ...
2023
-
[27]
In The Thirty-eighth Annual Conference on Neural Information Processing Systems
Improving Visual Prompt Tuning by Gaussian Neighborhood Minimization for Long-Tailed Visual Recognition. In The Thirty-eighth Annual Conference on Neural Information Processing Systems
-
[28]
Shan Li and Weihong Deng. 2020. Deep facial expression recognition: A survey. IEEE transactions on affective computing (2020)
2020
-
[29]
Fuyan Ma, Bin Sun, and Shutao Li. 2023. Facial Expression Recognition With Visual Transformers and Attentional Selective Fusion. IEEE Transactions on Affective Computing (2023)
2023
-
[30]
Fuyan Ma, Bin Sun, and Shutao Li. 2023. Logo-Former: Local-Global Spatio- Temporal Transformer for Dynamic Facial Expression Recognition. IEEE Interna- tional Conference on Acoustics, Speech and Signal Processing (ICASSP) (2023)
2023
-
[31]
Yuanyuan Liu, Yuxuan Huang, Shuyang Liu, Yibing Zhan, Zijing Chen, and Zhe Chen. 2024. Open-Set Video-based Facial Expression Recognition with Human Expression-sensitive Prompting. In Proceedings of the 32nd ACM International Conference on Multimedia (MM ’24)
2024
-
[32]
Fuyan Ma, Bin Sun, and Shutao Li. 2022. Spatio-Temporal Transformer for Dynamic Facial Expression Recognition in the Wild. (2022)
2022
-
[33]
Aman Sinha, Hongseok Namkoong, and John Duchi. 2018. Certifiable Distribu- tional Robustness with Principled Adversarial Training. In International Confer- ence on Learning Representations
2018
-
[34]
Du Tran, Lubomir Bourdev, Rob Fergus, Lorenzo Torresani, and Manohar Paluri
-
[35]
Paul Michel, Tatsunori Hashimoto, and Graham Neubig. 2022. Distributionally Robust Models with Parametric Likelihood Ratios. In International Conference on Learning Representations
2022
-
[36]
Zequn Qin, Pengyi Zhang, Fei Wu, and Xi Li. 2021. FcaNet: Frequency Channel Attention Networks. In IEEE/CVF International Conference on Computer Vision (ICCV)
2021
-
[37]
Hanyang Wang, Bo Li, Shuang Wu, Siyuan Shen, Feng Liu, Shouhong Ding, and Aimin Zhou. 2023. Rethinking the Learning Paradigm for Dynamic Facial Expression Recognition. In IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)
2023
-
[38]
Ruiqi Wang, Jinyang Huang, Jie Zhang, Xin Liu, Xiang Zhang, Zhi Liu, Peng Zhao, Sigui Chen, and Xiao Sun. 2024. FacialPulse: An Efficient RNN-based Depression Detection via Temporal Facial Landmarks. In ACM Multimedia 2024
2024
-
[39]
Rui Wang and Xiao Sun. 2023. Dynamic Facial Expression Recognition Based on Vision Transformer with Deformable Module. In 2023 IEEE International Conference on Systems, Man, and Cybernetics (SMC)
2023
-
[40]
Md Azher Uddin, Joolekha Bibi Joolee, and Young-Koo Lee. 2022. Depression Level Prediction Using Deep Spatiotemporal Features and Multilayer Bi-LTSM. IEEE Transactions on Affective Computing (2022)
2022
-
[41]
Laurens van der Maaten and Geoffrey Hinton. 2008. Visualizing Data using t-SNE. Journal of Machine Learning Research (2008)
2008
-
[42]
Chenwang Wu, Defu Lian, Yong Ge, Zhihao Zhu, and Enhong Chen. 2023. Influence-Driven Data Poisoning for Robust Recommender Systems. IEEE Trans- actions on Pattern Analysis and Machine Intelligence (2023)
2023
-
[43]
Junkang Wu, Jiawei Chen, Jiancan Wu, Wentao Shi, Xiang Wang, and Xiangnan He. 2023. Understanding Contrastive Learning via Distributionally Robust Opti- mization. In Thirty-seventh Conference on Neural Information Processing Systems . MM ’25, October 27–31, 2025, Dublin, Irela...
2023
-
[44]
Yi Wu, Shangfei Wang, and Yanan Chang. 2023. Patch-Aware Representation Learning for Facial Expression Recognition. In Proceedings of the 31st ACM Inter- national Conference on Multimedia (MM ’23)
2023
-
[45]
Yan Wang, Yixuan Sun, Yiwen Huang, Zhongying Liu, Shuyong Gao, Wei Zhang, Weifeng Ge, and Wenqiang Zhang. 2022. FERV39k: A Large-Scale Multi-Scene Dataset for Facial Expression Recognition in Videos. In IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)
2022
-
[46]
Yanan Wang, Jianming Wu, and Keiichiro Hoashi. 2019. Multi-attention fusion network for video-based emotion recognition. In International Conference on Multimodal Interaction
2019
-
[47]
Ziyang Zhang, Xiang Tian, Yuan Zhang, Kailing Guo, and Xiangmin Xu. 2024. Label-Guided Dynamic Spatial-Temporal Fusion for Video-Based Facial Expres- sion Recognition. IEEE Transactions on Multimedia (2024)
2024
-
[48]
Guoying Zhao and Matti Pietikainen. 2007. Dynamic Texture Recognition Using Local Binary Patterns with an Application to Facial Expressions.IEEE Transactions on Pattern Analysis and Machine Intelligence (2007)
2007
-
[49]
Zengqun Zhao and Qingshan Liu. 2021. Former-DFER: Dynamic Facial Expression Recognition Transformer. InProceedings of the 29th ACM International Conference on Multimedia (MM ’21)
2021
-
[50]
Tong Zhang, Wenming Zheng, Zhen Cui, Yuan Zong, and Yang Li. 2019. Spa- tial–Temporal Recurrent Neural Network for Emotion Recognition. IEEE Trans- actions on Cybernetics (2019)
2019
-
[51]
Xiaoqin Zhang, Min Li, Sheng Lin, Hang Xu, and Guobao Xiao. 2024. Transformer- Based Multimodal Emotional Perception for Dynamic Facial Expression Recogni- tion in the Wild. IEEE Transactions on Circuits and Systems for Video Technology (2024)
2024
-
[55]
Jinxing Zhou, Dan Guo, and Meng Wang. 2022. Contrastive positive sample propagation along the audio-visual event line. IEEE Transactions on Pattern Analysis and Machine Intelligence 45, 6 (2022), 7239–7257
2022
-
[56]
Hao Zhu, Wenping Ma, Lingling Li, Licheng Jiao, Shuyuan Yang, and Biao Hou
-
[57]
Information Fusion 58 (2020), 116–131
A Dual–Branch Attention fusion deep network for multiresolution re- mote–Sensing image classification. Information Fusion 58 (2020), 116–131
2020
-
[2015]
In Proceedings of the IEEE international conference on computer vision
Learning spatiotemporal features with 3d convolutional networks. In Proceedings of the IEEE international conference on computer vision . 4489–4497
-
[2020]
Advances in Neural Information Processing Systems (2020)
Sampling-decomposable generative adversarial recommender. Advances in Neural Information Processing Systems (2020)
2020
-
[2024]
IEEE Transactions on Circuits and Systems for Video Technology (2024)
CFAN-SDA: Coarse-Fine Aware Network With Static-Dynamic Adaptation for Facial Expression Recognition in Videos. IEEE Transactions on Circuits and Systems for Video Technology (2024)
2024
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.