REVIEW 3 major objections 5 minor 53 references
Learning Speaker-Invariant Visual Features for Lipreading
T0 review · 3 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read SIFLip learns speaker-invariant visual features by aligning frames to text labels and adversarially erasing speaker identity, which the paper reports cuts unseen-speaker character error rates by more than 11 points on the CMLR benchmark.
desk verdict Large, plausible gains for unseen-speaker lipreading, but the speaker-invariance claim is not directly tested and the evaluation has enough gaps that the numbers should be treated as conditional. 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 argument is carried by two disentanglement modules added to a standard 3D-CNN, Bi-GRU, Transformer, and seq2seq lipreading backbone. IDCFL (Implicit Disentanglement via Common Features Learning) uses the Montreal Forced Aligner to assign each video frame a text token, then computes a similarity matrix between visual and text embeddings and trains it with an InfoNCE contrastive loss $\mathcal{L}_{\mathrm{CL}}$ and a cross-entropy loss $\mathcal{L}_{\mathrm{CE}}$ against a diagonal ground-truth matrix, so that each frame's visual feature is pulled toward the embedding of its correct text token regardless of who is speaking. EDGR (Explicit Disentanglement via Gradient Reversal) pools the intermediate features, runs them through a speaker classifier with cross-entropy loss $\mathcal{L}_{\mathrm{ED}}$, and inserts a gradient reversal layer between the feature extractor and the classifier so that the backbone is updated to make the speaker classification fail. The total training loss is $\mathcal{L}_{\mathrm{total}} = \mathcal{L}_{\mathrm{PT}} + \alpha \mathcal{L}_{\mathrm{ID}} + \beta \mathcal{L}_{\mathrm{ED}}$, where $\mathcal{L}_{\mathrm{PT}}$ is the seq2seq text-prediction loss; the paper sets $\alpha=0.5$ and $\beta=2.0$ on both datasets. The text embeddings serve as the reference that is stable across speakers, and the reversed gradient is what actively erases residual speaker identity.
What would settle it
Train SIFLip on CMLR with three versions of the frame labels: the original MFA alignments, oracle boundaries produced by manual annotation, and deliberately shifted boundaries that preserve word order but move the boundaries by several frames. If the unseen-speaker CER is nearly the same in all three conditions, the frame-level alignment is not the active ingredient behind the reported generalization gains; if it changes substantially, alignment precision is load-bearing. A second check: train a speaker classifier on the visual features produced by SIFLip's encoder; if its accuracy is not near chance, the explicit disentanglement has not actually removed speaker identity.
Extended reading notes
Core claim
SIFLip's central claim is that a lipreading model can be made substantially more accurate on both seen and unseen speakers by learning visual features that are invariant to speaker identity, and that this invariance can be achieved without parallel audio at test time. The method combines two training-time losses: an implicit disentanglement loss (IDCFL) that performs frame-level cross-modal alignment between visual features and text embeddings, using text as a stable semantic anchor that is the same across speakers, and an explicit disentanglement loss (EDGR) that uses a speaker-identification sub-task whose gradient is reversed before it reaches the visual encoder, forcing the encoder to suppress speaker-specific information. On the CMLR benchmark, SIFLip reports a character error rate of 20.55 for seen speakers and 32.16 for unseen speakers, compared with 27.79 and 43.18 for the previous best method LipFormer; on GRID it reports 0.79 and 6.23 against 1.45 and 9.64. The ablation study identifies IDCFL as the larger contributor, with the full model performing best, and the paper attributes the gains to the removal of spurious correlations between lip appearance and text.
Load-bearing premise
The per-frame text labels used by the implicit disentanglement module come from the Montreal Forced Aligner, and the contrastive and cross-entropy losses treat these boundaries as ground truth; if the alignments are wrong, the model is trained to match frames to incorrect text tokens, and the paper gives no analysis of alignment accuracy.
Editorial extensions
If this is right
- On CMLR, SIFLip reduces CER from 27.79 to 20.55 on seen speakers and from 43.18 to 32.16 on unseen speakers relative to LipFormer.
- On GRID, SIFLip reduces CER from 1.45 to 0.79 on seen speakers and from 9.64 to 6.23 on unseen speakers relative to LipFormer.
- Ablations show that both modules matter: removing IDCFL raises unseen-speaker CER from 32.16 to 39.02 on CMLR, while removing EDGR raises it to 33.13, and removing the gradient reversal alone raises it to 33.07.
- The method works in both Chinese (with a cascaded pinyin-to-character decoder) and English, suggesting the disentanglement does not depend on the target language's orthography.
- Since text supervision is only needed during training, the trained model still accepts video-only input at inference time.
Reading between the lines
- A testable extension: the frame-level label alignment idea could transfer to other fine-grained video-language tasks, such as sign language recognition or cued speech, where per-frame semantic labels are available; the same InfoNCE-plus-cross-entropy alignment could strip out signer-specific appearance.
- One implication the paper leaves implicit: the reliance on Montreal Forced Aligner means the method cannot be trained on audio-free corpora; an alignment-free variant that learns frame-to-text correspondence from a CTC or attention-based path during training would make the approach widely applicable.
- A direct check whether the disentanglement is real: train a speaker classifier on the visual features SIFLip's encoder produces; if EDGR is working, that classifier's accuracy should be near chance, and the paper does not report such a measurement.
- The pattern on GRID, where seen-speaker gains are small (0.31), suggests that on easy, highly constrained datasets speaker-invariance matters mainly for generalization rather than absolute accuracy; this predicts that improvement on unseen speakers should grow with the visual diversity of speakers in the training set.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes SIFLip, a lipreading framework that aims to improve generalization to unseen speakers by learning speaker-invariant visual features. Two complementary modules are introduced: an Implicit Disentanglement module (IDCFL) that performs frame-level cross-modal contrastive and cross-entropy alignment between visual features and text labels obtained from the Montreal Forced Aligner, and an Explicit Disentanglement module (EDGR) that adds a speaker-classification branch with a gradient reversal layer. The visual features are decoded by a seq2seq model. Experiments on CMLR and GRID report large improvements over prior methods on both seen and unseen speakers, with ablations showing that each module contributes to the gains.
Significance. If the speaker-invariance claim is substantiated, the work would make a useful contribution to lipreading by addressing a known generalization bottleneck. The paper has concrete strengths: it evaluates on two public datasets with seen/unseen splits, it compares against several prior methods, and it provides component-level ablations. The reported gains on unseen speakers are large and consistent. However, the central claim that the learned features are speaker-invariant is currently inferred only from downstream CER; no experiment directly measures speaker identity information in the representation, so the distinctive mechanism of the paper remains unverified.
major comments (3)
- [§3.3, Tables 2 and 3] The central claim that SIFLip learns speaker-invariant visual features is not directly tested. The evidence consists of downstream CER on seen/unseen speakers and ablations, but both are compatible with the auxiliary losses acting as generic regularizers: the frame-level alignment loss constrains the encoder, and the GRL task only removes information accessible to the particular speaker classifier used in Eq. (7)-(10). Please add a direct invariance diagnostic, such as training a speaker classifier on frozen features from Base, Base w/ IDCFL, Base w/ EDGR, and SIFLip and reporting its accuracy on held-out speaker identities, together with a feature-space visualization (e.g., t-SNE colored by speaker identity). Without such a measure, the title-level claim of speaker invariance is unsupported.
- [§3.2, Eqs. (5)-(6)] The IDCFL module treats MFA-derived frame labels as ground truth for the contrastive and cross-entropy losses, but no analysis of alignment quality is provided. MFA alignments are known to be imperfect, particularly under coarticulation or spontaneous speech, and misaligned word boundaries would assign incorrect text tokens to frames and corrupt the learning signal. The paper should report alignment accuracy or show sensitivity of the results to alignment quality, and it should discuss the requirement for audio during training, which limits applicability to datasets without audio.
- [§4.2, Table 1] The CMLR LipNet baseline is not LipNet as published: the text states that LipNet's CTC loss failed to converge on CMLR and that CTC was replaced with the Seq2Seq module. The CMLR entries for LipNet in Table 1 therefore correspond to a modified model, and the comparison is not against the original method as reported in the literature. Please state the modified-baseline configuration explicitly in the table or text, and clarify whether all baselines were re-run under the same data split and preprocessing. As written, the large absolute improvements over LipNet on CMLR are difficult to interpret.
minor comments (5)
- [§3.5] The roles of L_ID and L_ED are swapped in the optimization description: the text says that L_ED facilitates semantic alignment and implicitly disentangles speaker-specific features, while L_ID guides the branch to filter speaker-specific features and explicitly disentangle them. According to Sections 3.2 and 3.3, the reverse is true: L_ID is the implicit disentanglement loss and L_ED is the explicit speaker-classification loss. Please correct this wording.
- [§4.3] The sentence 'In the overall comparison experiment in Section 4.2, four datasets were used' is incorrect; the paper evaluates on two datasets, CMLR and GRID. Please fix this typo.
- [Table 1 and Tables 2-3] No error bars, standard deviations, or significance tests are reported for any of the results. Given that several ablation differences are small (e.g., w/o GR vs. w/o L_ED in Table 3), adding variance over multiple runs would substantially strengthen the claims.
- [Eq. (14)] There is a mismatched parenthesis in the definition of P(w): the expression Softmax(MLP((h_t_d)_j,(c_v_t)_j) has one more opening than closing parenthesis. Please correct the formula.
- [Abstract] The sentence 'Experimental results demonstrate that SIFLip significantly enhances generalization performance across multiple public datasets' appears twice in succession. Please remove the duplicate.
Circularity Check
No significant circularity: SIFLip's reported CER gains are genuine held-out test predictions on CMLR and GRID against external and published baselines; author self-citations are present but not load-bearing.
full rationale
The paper's central claim is evaluated against external benchmarks, so the derivation chain is essentially self-contained. SIFLip's reported improvements (CER 20.55/32.16 on CMLR seen/unseen and 0.79/6.23 on GRID seen/unseen) are measured on held-out test speakers, and the paper states that 'during testing, only video was used,' so the IDCFL contrastive/CE losses (Eqs. 3-6) and the EDGR speaker-classification loss with gradient reversal (Eqs. 7-10) are training-time auxiliary objectives that cannot force the test-time CER by construction. The per-frame text labels come from an external force aligner (MFA) applied to ground-truth text; the model is not predicting quantities it was fitted on. Hyperparameters alpha and beta are tuned on CMLR, which is conventional practice, not a tautology. The authors do cite their own prior work ([24], [43], [46] share co-authors with the present paper), but these citations are used as related work or as a baseline to be compared against, not as a load-bearing premise; no uniqueness theorem is invoked, and no fitted parameter is renamed as a prediction. One genuine presentation defect exists: Section 3.5 swaps the descriptions of L_ID and L_ED relative to their definitions in Eqs. (6) and (8), calling the cross-modal alignment loss 'explicit' and the speaker-classification loss 'implicit'. This internal inconsistency could confuse readers about which module does what, but it does not alter the equations or the held-out evaluation and is not a circular reduction. The skeptic's concern that speaker-invariance is never directly measured at the representation level is a legitimate evidence gap about the causal mechanism, but it concerns support and interpretation, not circularity: the empirical results are independently checkable and could in principle be false.
Assumptions & free parameters
free parameters (3)
- alpha =
0.5
- beta =
2.0
- lambda (GRL scaling) =
not reported
assumptions (4)
- domain assumption Text embeddings are stable across speakers and can serve as a common semantic anchor.
- domain assumption Frame-level labels from MFA are accurate.
- domain assumption Speaker identity information is separable from speech content in lip features.
- standard math Standard deep learning training assumptions (loss functions, backpropagation, convergence).
Cite this review
Pith. "Pith review of Learning Speaker-Invariant Visual Features for Lipreading." pith.science (2026). https://pith.science/paper/LKMMJZYR
@misc{pith2026250607572,
author = {Pith},
title = {Pith review of: Learning Speaker-Invariant Visual Features for Lipreading},
year = {2026},
howpublished = {\url{https://pith.science/paper/LKMMJZYR}},
note = {Machine review of arXiv:2506.07572}
}
read the original abstract
Lipreading is a challenging cross-modal task that aims to convert visual lip movements into spoken text. Existing lipreading methods often extract visual features that include speaker-specific lip attributes (e.g., shape, color, texture), which introduce spurious correlations between vision and text. These correlations lead to suboptimal lipreading accuracy and restrict model generalization. To address this challenge, we introduce SIFLip, a speaker-invariant visual feature learning framework that disentangles speaker-specific attributes using two complementary disentanglement modules (Implicit Disentanglement and Explicit Disentanglement) to improve generalization. Specifically, since different speakers exhibit semantic consistency between lip movements and phonetic text when pronouncing the same words, our implicit disentanglement module leverages stable text embeddings as supervisory signals to learn common visual representations across speakers, implicitly decoupling speaker-specific features. Additionally, we design a speaker recognition sub-task within the main lipreading pipeline to filter speaker-specific features, then further explicitly disentangle these personalized visual features from the backbone network via gradient reversal. Experimental results demonstrate that SIFLip significantly enhances generalization performance across multiple public datasets. Experimental results demonstrate that SIFLip significantly improves generalization performance across multiple public datasets, outperforming state-of-the-art methods.
Figures
Figures from the paper (5 more)
Reference graph
Works this paper leans on
-
[1]
Ahsan Adeel, Mandar Gogate, Amir Hussain, and William M Whitmer. 2019. Lip-reading driven deep learning approach for speech enhancement. IEEE Trans- actions on Emerging Topics in Computational Intelligence 5, 3 (2019), 481–490
work page 2019
-
[2]
Xi Ai and Bin Fang. 2023. Cross-Modal Language Modeling in Multi-Motion- Informed Context for Lip Reading. IEEE/ACM Transactions on Audio, Speech, and Language Processing 31 (2023), 2220–2232
work page 2023
-
[3]
Alessandro Amodio, Michele Ermidoro, Davide Maggi, Simone Formentin, and Sergio Matteo Savaresi. 2018. Automatic detection of driver impairment based on pupillary light reflex. IEEE transactions on intelligent transportation systems 20, 8 (2018), 3038–3048
work page 2018
-
[4]
Yannis M Assael, Brendan Shillingford, Shimon Whiteson, and Nando De Fre- itas. 2016. Lipnet: End-to-end sentence-level lipreading. arXiv preprint arXiv:1611.01599 (2016)
arXiv 2016
-
[5]
Blaž Bortolato, Marija Ivanovska, Peter Rot, Janez Križaj, Philipp Terhörst, Naser Damer, Peter Peer, and Vitomir Štruc. 2020. Learning privacy-enhancing face representations through feature disentanglement. In 2020 15th IEEE International Conference on Automatic Face and Gesture Recognition (FG 2020) . IEEE, 495–502
work page 2020
-
[6]
Hugo Bulzomi, Marcel Schweiker, Amélie Gruel, and Jean Martinet. 2023. End- to-end neuromorphic lip-reading. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition . 4101–4108
work page 2023
-
[7]
Hang Chen, Qing Wang, Jun Du, Gen-Shun Wan, Shi-Fu Xiong, Bao-Ci Yin, Jia Pan, and Chin-Hui Lee. 2024. Collaborative Viseme Subword and End-to-End Modeling for Word-Level Lip Reading.IEEE Transactions on Multimedia 26 (2024), 9358–9371
work page 2024
-
[8]
Xuejuan Chen, Jixiang Du, and Hongbo Zhang. 2020. Lipreading with DenseNet and resBi-LSTM. Signal, Image and Video Processing 14 (2020), 981–989
work page 2020
Show all 53 references
-
[9]
Yiting Cheng, Fangyun Wei, Jianmin Bao, Dong Chen, and Wenqiang Zhang
-
[10]
Joon Son Chung and Andrew Zisserman. 2017. Out of time: automated lip sync in the wild. In Computer Vision–ACCV 2016 Workshops: ACCV 2016 International Workshops, Taipei, Taiwan, November 20-24, 2016, Revised Selected Papers, Part II
2017
-
[11]
Martin Cooke, Jon Barker, Stuart Cunningham, and Xu Shao. 2006. An audio- visual corpus for speech perception and automatic speech recognition. The Journal of the Acoustical Society of America 120, 5 (2006), 2421–2424
2006
-
[12]
Wanxia Deng, Lingjun Zhao, Qing Liao, Deke Guo, Gangyao Kuang, Dewen Hu, Matti Pietikäinen, and Li Liu. 2021. Informative feature disentanglement for unsupervised domain adaptation. IEEE Transactions on Multimedia 24 (2021), 2407–2421
2021
-
[13]
Han Fang, Pengfei Xiong, Luhui Xu, and Yu Chen. 2021. Clip2video: Mastering video-text retrieval via image clip. arXiv preprint arXiv:2106.11097 (2021)
2021 arXiv
-
[14]
Yaroslav Ganin, Evgeniya Ustinova, Hana Ajakan, Pascal Germain, Hugo Larochelle, François Laviolette, Mario March, and Victor Lempitsky. 2016. Domain-adversarial training of neural networks. Journal of machine learning research 17, 59 (2016), 1–35
2016
-
[15]
Yi He, Lei Yang, Hanyi Wang, Yun Zhu, and Shilin Wang. 2024. Speaker-Adaptive Lipreading Via Spatio-Temporal Information Learning. In ICASSP 2024 - 2024 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP) . 10411–10415
2024
-
[16]
Yiyang Huang, Xuefeng Liang, and Chaowei Fang. 2021. Callip: Lipreading using contrastive and attribute learning. In Proceedings of the 29th ACM International Conference on Multimedia. 2492–2500
2021
-
[17]
Minsu Kim, Hyunjun Kim, and Yong Man Ro. 2022. Speaker-Adaptive Lip Reading with User-Dependent Padding. In Computer Vision – ECCV 2022 . Springer Nature Switzerland, Cham, 576–593
2022
-
[18]
Minsu Kim, Jeong Hun Yeo, Jeongsoo Choi, and Yong Man Ro. 2023. Lip reading for low-resource languages by learning and combining general speech knowledge and language-specific knowledge. In Proceedings of the IEEE/CVF International Conference on Computer Vision . 15359–15371
2023
-
[19]
Yaman Kumar, Rohit Jain, Khwaja Mohd Salik, Rajiv Ratn Shah, Yifang Yin, and Roger Zimmermann. 2019. Lipper: Synthesizing thy speech using multi-view lipreading. In Proceedings of the AAAI Conference on artificial intelligence , Vol. 33. 2588–2595
2019
-
[20]
Junnan Li, Dongxu Li, Silvio Savarese, and Steven Hoi. 2023. Blip-2: Bootstrapping language-image pre-training with frozen image encoders and large language Learning Speaker-Invariant Visual Features for Lipreading Conference acronym ’XX, June 03–05, 2018, Woodstock, NY models...
2023
-
[21]
Zhengyang Li, Timo Lohrenz, Matthias Dunkelberg, and Tim Fingscheidt. 2023. Transformer-Based Lip-Reading with Regularized Dropout and Relaxed Attention. In 2022 IEEE Spoken Language Technology Workshop (SLT) . 723–730
2023
-
[22]
Dongnan Liu, Chaoyi Zhang, Yang Song, Heng Huang, Chenyu Wang, Michael Barnett, and Weidong Cai. 2022. Decompose to adapt: Cross-domain object detection via feature disentanglement. IEEE Transactions on Multimedia 25 (2022), 1333–1344
2022
-
[23]
Huaishao Luo, Lei Ji, Ming Zhong, Yang Chen, Wen Lei, Nan Duan, and Tianrui Li. 2022. Clip4clip: An empirical study of clip for end to end video clip retrieval and captioning. Neurocomputing 508 (2022), 293–304
2022
-
[24]
Songtao Luo, Shuang Yang, Shiguang Shan, and Xilin Chen. 2023. Learning Separable Hidden Unit Contributions for Speaker-Adaptive Lip-Reading. (2023)
2023
-
[25]
Pingchuan Ma, Brais Martinez, Stavros Petridis, and Maja Pantic. 2021. Towards practical lipreading with distilled and efficient models. In ICASSP 2021-2021 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP). IEEE, 7608–7612
2021
-
[26]
Xinghua Ma and Shilin Wang. 2022. Chinese Mandarin Lipreading using Cas- caded Transformers with Multiple Intermediate Representations. In 2022 IEEE International Conference on Image Processing (ICIP) . 2561–2565
2022
-
[27]
Brais Martinez, Pingchuan Ma, Stavros Petridis, and Maja Pantic. 2020. Lipreading using temporal convolutional networks. In ICASSP 2020-2020 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP) . IEEE, 6319–6323
2020
-
[28]
Ziling Miao, Hong Liu, and Bing Yang. 2020. Part-based lipreading for audio- visual speech recognition. In 2020 IEEE International Conference on Systems, Man, and Cybernetics (SMC). IEEE, 2722–2726
2020
-
[29]
Xuesong Niu, Zitong Yu, Hu Han, Xiaobai Li, Shiguang Shan, and Guoying Zhao
-
[30]
Stavros Petridis, Themos Stafylakis, Pingehuan Ma, Feipeng Cai, Georgios Tz- imiropoulos, and Maja Pantic. 2018. End-to-end audiovisual speech recognition. In 2018 IEEE international conference on acoustics, speech and signal processing (ICASSP). IEEE, 6548–6552
2018
-
[31]
Javad Peymanfard, Mohammad Reza Mohammadi, Hossein Zeinali, and Nasser Mozayani. 2022. Lip reading using external viseme decoding. In2022 International Conference on Machine Vision and Image Processing (MVIP) . IEEE, 1–5
2022
-
[32]
KR Prajwal, Triantafyllos Afouras, and Andrew Zisserman. 2022. Sub-word level lip reading with visual attention. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition . 5162–5172
2022
-
[33]
Alec Radford, Jong Wook Kim, Chris Hallacy, Aditya Ramesh, Gabriel Goh, Sandhini Agarwal, Girish Sastry, Amanda Askell, Pamela Mishkin, Jack Clark, et al. 2021. Learning transferable visual models from natural language supervision. In International conference on machine learni...
2021
-
[34]
Alec Radford, Jong Wook Kim, Tao Xu, Greg Brockman, Christine McLeavey, and Ilya Sutskever. 2023. Robust speech recognition via large-scale weak supervision. In International conference on machine learning . PMLR, 28492–28518
2023
-
[35]
Sucheng Ren, Yong Du, Jianming Lv, Guoqiang Han, and Shengfeng He. 2021. Learning from the master: Distilling cross-modal advanced knowledge for lip reading. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. 13325–13333
2021
-
[36]
Joon Son Chung, Andrew Senior, Oriol Vinyals, and Andrew Zisserman. 2017. Lip reading sentences in the wild. In Proceedings of the IEEE conference on computer vision and pattern recognition . 6447–6456
2017
-
[37]
Ilya Sutskever, Oriol Vinyals, and Quoc V Le. 2014. Sequence to sequence learning with neural networks. Advances in neural information processing systems 27 (2014)
2014
-
[38]
Jianyi Wang, Kelvin CK Chan, and Chen Change Loy. 2023. Exploring clip for assessing the look and feel of images. In Proceedings of the AAAI Conference on Artificial Intelligence, Vol. 37. 2555–2563
2023
-
[39]
Tao Wang, Hong Liu, Pinhao Song, Tianyu Guo, and Wei Shi. 2022. Pose-guided feature disentangling for occluded person re-identification based on transformer. In Proceedings of the AAAI conference on artificial intelligence , Vol. 36. 2540–2549
2022
-
[40]
Bo Xu, Cheng Lu, Yandong Guo, and Jacob Wang. 2020. Discriminative multi- modality speech recognition. In Proceedings of the IEEE/CVF Conference on Com- puter Vision and Pattern Recognition . 14433–14442
2020
-
[41]
Jingyi Xu, Hieu Le, Mingzhen Huang, ShahRukh Athar, and Dimitris Samaras
-
[42]
Kai Xu, Dawei Li, Nick Cassimatis, and Xiaolong Wang. 2018. LCANet: End- to-end lipreading with cascaded attention-CTC. In 2018 13th IEEE International Conference on Automatic Face & Gesture Recognition (FG 2018) . IEEE, 548–555
2018
-
[43]
Feng Xue, Yu Li, Deyin Liu, Yincen Xie, Lin Wu, and Richang Hong. 2023. Lip- former: learning to lipread unseen speakers based on visual-landmark transform- ers. IEEE Transactions on Circuits and Systems for Video Technology 33, 9 (2023), 4507–4517
2023
-
[44]
Feng Xue, Tian Yang, Kang Liu, Zikun Hong, Mingwei Cao, Dan Guo, and Richang Hong. 2023. Lcsnet: End-to-end lipreading with channel-aware feature selection. ACM Transactions on Multimedia Computing, Communications and Applications 19, 1s (2023), 1–21
2023
-
[45]
Xiaobing Zhang, Haigang Gong, Xili Dai, Fan Yang, Nianbo Liu, and Ming Liu
-
[46]
Yuanhang Zhang, Shuang Yang, Shiguang Shan, and Xilin Chen. 2024. ES3: Evolving Self-Supervised Learning of Robust Audio-Visual Speech Representa- tions. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. 27069–27079
2024
-
[47]
Ya Zhao, Rui Xu, and Mingli Song. 2019. A cascade sequence-to-sequence model for chinese mandarin lip reading. In Proceedings of the ACM Multimedia Asia . 1–6
2019
-
[48]
Y. Zhao, R. Xu, X. Wang, P. Hou, H. Tang, and M. Song. 2019. Hearing Lips: Improving Lip Reading by Distilling Speech Recognizers
2019
-
[49]
Benjia Zhou, Zhigang Chen, Albert Clapés, Jun Wan, Yanyan Liang, Sergio Escalera, Zhen Lei, and Du Zhang. 2023. Gloss-free sign language translation: Improving from visual-language pretraining. In Proceedings of the IEEE/CVF International Conference on Computer Vision . 20871–20881
2023
-
[2019]
Proceedings of the AAAI Conference on Artificial Intelligence 33, 01 (Jul
Understanding Pictograph with Facial Features: End-to-End Sentence- Level Lip Reading of Chinese. Proceedings of the AAAI Conference on Artificial Intelligence 33, 01 (Jul. 2019), 9211–9218. doi:10.1609/aaai.v33i01.33019211
2019 doi
-
[2020]
In Computer Vision–ECCV 2020: 16th European Conference, Glasgow, UK, August 23–28, 2020, Proceedings, Part II 16
Video-based remote physiological measurement via cross-verified feature disentangling. In Computer Vision–ECCV 2020: 16th European Conference, Glasgow, UK, August 23–28, 2020, Proceedings, Part II 16 . Springer, 295–310
2020
-
[2021]
In Proceedings of the IEEE/CVF international conference on computer vision
Variational feature disentangling for fine-grained few-shot classification. In Proceedings of the IEEE/CVF international conference on computer vision . 8812– 8821
-
[2023]
In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition
Cico: Domain-aware sign language retrieval via cross-lingual contrastive learning. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. 19016–19026
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.