Pith. sign in

REVIEW 3 major objections 8 minor 48 references

CLFace: A Scalable and Resource-Efficient Continual Learning Framework for Lifelong Face Recognition

T0 review · 3 major / 8 minor · reviewed 2026-08-12 · deepseek-v4-flash

Pith's one-line read The paper claims that a face recognition model can keep learning new identities from a continuous stream without storing old images or using identity labels, by training a student on three distillation losses from a frozen teacher.

desk verdict Plausible distillation recipe for label-free incremental face recognition, but the paper never measures accuracy on previously learned identities, so its central anti-forgetting claim is unsupported. read the letter →

arxiv 2411.13886 v1 pith:WETSNAR5 submitted 2024-11-21 cs.CV

classification cs.CV
keywords continuallearningfacerecognitionknowledgedistillationcatastrophicforgettingopen-setlabel-freesupervisionbiometricidentificationincremental
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper claims that a face recognition model can keep learning new identities from a continuous stream without storing old images and without identity labels, by having a frozen teacher model supervise a student model through three distillation losses. If true, this gives a privacy-friendly and resource-light way to update deployed biometric systems without retraining from scratch or retaining sensitive face data. The authors report that this classification-free, label-free objective improves verification accuracy on unseen identities, both from the same dataset and from unrelated benchmark datasets, compared with fine-tuning and with established continual learning baselines. The paper's central assertion is that a fixed architecture trained only on distillation can preserve old knowledge and keep improving on new identities at the same time.

What carries the argument

The carrying mechanism is teacher-student distillation with a frozen teacher and a student initialized from it. MSFD transfers local spatial structure: for each intermediate stage except the first, both models' feature maps are pooled across channels and L2-normalized, and the squared L2 distance between the resulting attention maps is penalized. GPKD transfers global geometry: cosine similarity between the teacher's and student's normalized embeddings is maximized so the embedding space is not rotated. CKD adds discriminative contrast: within each batch, the positive pair is the teacher and student embedding of the same identity, and all other identities are negatives, optimized through an InfoNCE-style loss. Removing the classification layer keeps the architecture and parameter count fixed across steps, which is what makes the approach scalable and label-free.

What would settle it

Run the same incremental protocol but, after every step, test on held-out samples of the identities trained in every previous step, as in standard class-incremental evaluation. If verification or identification accuracy on those old identities drops substantially after later steps, the distillation objective has not actually preserved the learned knowledge, even though unseen-identity accuracy could remain high.

Watch

Extended reading notes

Core claim

CLFace is a continual learning framework for face recognition in which a student model, initialized from a frozen teacher, is trained on each new batch of identities with no classification layer and no label supervision. The objective is a weighted sum of three losses: multiscale feature distillation (MSFD), which takes channel-wise pooled and L2-normalized spatial attention maps at intermediate stages and minimizes their L2 distance between student and teacher; geometry-preserving knowledge distillation (GPKD), which keeps the cosine orientation of the L2-normalized embeddings aligned; and contrastive knowledge distillation (CKD), an InfoNCE-style loss that pulls the teacher and student embeddings of the same identity together while pushing embeddings of different identities apart. The paper's claim is that this combination lets the student inherit the teacher's learned representation, avoids catastrophic forgetting, and sharpens discrimination of new identities. In experiments with 5-step and 10-step protocols on VGGFace2, MS1MV2, and WebFace12M, CLFace achieves higher verification accuracy on unseen identities than fine-tuning, LwM, PODNet, and CRL, on both in-domain and out-of-domain benchmarks including LFW, AGE-DB, CALFW, CFP-FP, CPLFW, IJB-B, IJB-C, and TinyFace.

Load-bearing premise

The experiments never evaluate accuracy on identities the model saw in earlier incremental steps, so the claim that CLFace preserves previously learned knowledge rests on the assumption that stable or improved accuracy on unseen identities is enough to prove no catastrophic forgetting occurred.

Editorial extensions

If this is right

  • Deployed face recognition systems could be updated continuously on streams of new identities without storing exemplars, removing a major privacy and storage bottleneck.
  • Because the architecture is fixed and classifier-free, memory and compute use stay bounded as the number of enrolled identities grows.
  • The label-free objective permits incremental training on unlabeled face collections, which supports open-set recognition in deployment settings.
  • The reported pattern that larger incremental steps produce larger gains implies the benefit of lifelong updates grows with the volume of the identity stream.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • Inference: because the evaluation only covers unseen identities, the reported gains may reflect improved general feature quality rather than actual retention of identities from earlier steps; an evaluation on old identities would separate the two effects.
  • Inference: the ablation results suggest the three losses play distinct roles—MSFD preserves spatial structure, GPKD stabilizes embedding orientation, and CKD adds contrastive discrimination among new identities—so the same recipe may transfer to other embedding-based incremental metric-learning tasks such as person re-identification or speaker verification.
  • Inference: the reported improvements over CRL are small on high-quality benchmarks, which hints that the main advantage may be architectural, namely removing the classification layer and label supervision, rather than the specific choice of distillation losses; isolating this by ablating CRL's own losses without its classifier would test that.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 8 minor

Summary. The paper proposes CLFace, a continual learning framework for face recognition that removes the classification layer and avoids storing exemplars. A frozen teacher model supervises a student model through three distillation losses: multiscale feature distillation (MSFD), geometry-preserving knowledge distillation (GPKD), and contrastive knowledge distillation (CKD). The model is trained incrementally on batches of new face identities and evaluated on unseen identities from in-domain datasets (VGGFace2, MS1MV2, WebFace12M) and out-of-domain benchmarks (LFW, AGEDB, CALFW, CFPFP, CPLFW, IJB-B, IJB-C, TinyFace). The paper reports that CLFace outperforms fine-tuning, LwM, PODNet, and CRL, and provides ablations of the loss components and the amount of base training data.

Significance. If the central claim were fully validated, the framework would be practically significant: it is label-free during incremental steps, uses a fixed-size architecture, and does not store old samples, which is attractive for privacy-constrained biometric deployments. The experimental effort is substantial, including large-scale datasets, multiple incremental-step settings, out-of-domain benchmarks, and ablation studies. However, the significance is conditional because the protocol never measures accuracy on identities learned in earlier incremental steps, so the paper's stated goal of preventing catastrophic forgetting of previously learned identities is not directly supported.

major comments (3)
  1. [§3.1, §4.3–4.4] The central claim that CLFace preserves learned knowledge and mitigates catastrophic forgetting is never directly measured. In §3.1 the in-domain test set D_test is defined with identities disjoint from all training steps (C_t ∩ C_test = ∅ for t = 1,...,T), and the results in Figure 3 and Tables 2–5 are all verification accuracies on this disjoint set. A model that completely forgets the identities from steps 1,...,T−1 would still obtain these scores, because the total loss in Eq. (5) is computed only on the current step's batch and no exemplars or prototypes are retained. The inference in §4.5 that incremental improvement on unseen identities 'confirms that CLFace effectively mitigates CF' is therefore not valid. I recommend adding a direct backward-transfer evaluation, e.g., reporting verification or closed-set identification accuracy on the identities from each previous step after each incremental step, or, if the authors intend to claim only open-set generalization, removing the catastrophic-forgetting claims from the Abstract and Section 1.
  2. [§4.5, Table 5] The ablation that is supposed to show the effect of removing identity supervision does not display the comparison it describes. Table 5's final row is 'ID + MSFD + GPKD + CKD', but there is no row for 'MSFD + GPKD + CKD' without ID; the text compares the no-ID objective from Table 3 against 'ID + GPKD' from Table 5. Since the reported conclusion is that 'replacing ID supervision with CKD loss does not compromise generalizability', the table should include the exact no-ID row, or the text should explicitly state that the comparison is across Tables 3 and 5.
  3. [§4.2, Table 2, Figure 3] The reported improvements over the strongest baseline CRL are very small—between 0.0 and 0.35 percentage points in Table 2 and around 0.04–0.10 points in Figure 3—yet the paper gives only the mean over three random class orders with no standard deviation or significance measure. Given that the claimed advantage is of the same order as typical run-to-run variation in face-verification benchmarks, the comparison is not robust without error bars. Please report mean ± std and, if possible, the per-order values.
minor comments (8)
  1. [Algorithm 1 caption] The algorithm title reads 'CL2Face Implementation' and should be 'CLFace Implementation'.
  2. [Figure 2] The label 'Contrastiave Knowledge Distillation' contains a typo; it should be 'Contrastive'.
  3. [§3.3, §4.5] The acronym for the multiscale feature distillation loss is inconsistent: 'MFSD' appears in the contributions bullet list, 'MSD' appears in the ablation text, and Eq. (2) defines 'MSFD'. Use one spelling throughout.
  4. [§3.1] The formulation allows overlapping identities across steps ({C_t ∩ C_t'} ≠ ∅), but the experimental protocol in §4.2 uses disjoint sets. Clarify whether the overlap scenario is ever tested, since it is one of the properties claimed in Section 1.
  5. [Table 2] The mixed-quality and low-quality columns for LWF-MC, LwM, PODNet, and CRL are all dashes, which is inconsistent with the text's claim that CLFace outperforms these methods 'across all datasets'. Complete these entries or restrict the claim to the datasets where comparisons exist.
  6. [§1, §4.6] The phrase 'open-set face recognition' is not standard: the protocol evaluates on unseen identities but does not include an open-set rejection (unknown-class) component. Please qualify the terminology.
  7. [§2, §4.2] The claim of 'label-free supervision' applies only to incremental steps; the base model is trained with ArcFace label supervision. Please state this explicitly.
  8. [§4.5, Table 4] In the discussion of the base-training ablation, the text says 'Rank-1' for TinyFace while Table 4 and Table 2 consistently use Rank-5. Correct this inconsistency.

Circularity Check

0 steps flagged · score 1.0 of 10

No significant circularity; CLFace is an empirical combination of existing distillation losses, and its reported accuracies are not forced by construction.

full rationale

CLFace's derivation chain is an engineering combination, not a theorem. The objective in Eq. 5 is a weighted sum of three distillation terms (Eqs. 2-4), each explicitly borrowed from or inspired by cited prior work (PODNet-style feature pooling, LUCIR-style embedding orientation, InfoNCE-style contrastive learning). The weights in Table 1 are selected by grid search, and the reported accuracies are measured on held-out folds with test identities disjoint from all incremental steps (Section 3.1). There is no equation under which the reported verification accuracy is algebraically forced by the fitted hyperparameters or by the loss definitions; the method could in principle fail, and indeed the paper reports mixed ablation results (Table 5) and admits limitations (Section 4.6). The only serious concern is experimental validity rather than circularity: because D_test is disjoint from every C_t and no experiment evaluates accuracy on identities seen in earlier steps, the paper's claim of preserving previously learned knowledge is not directly verified. That is a missing-evidence gap, not a self-referential reduction. Citation use is benign: prior references are external, and no uniqueness theorem or author self-citation is load-bearing.

Assumptions & free parameters 4 free parameters · 5 assumptions · 0 invented entities

CLFace introduces no new physical or theoretical entities; it combines existing distillation losses (POD-style multiscale distillation, LUCIR-style geometry preservation, InfoNCE contrastive learning) into a classification-free continual learning scheme. The main fitted quantities are the four loss hyperparameters tuned by grid search. The claims rely on the validity of cosine-similarity verification, the unique-identity batch assumption for contrastive learning, and the assumption that pooled feature maps are comparable across models.

free parameters (4)
  • lambda_1 (MSFD weight) = 3
    Grid-searched in [0.5, 5] on the benchmark datasets; balances feature distillation loss in Eq. 5.
  • lambda_2 (GPKD weight) = 12
    Grid-searched in [1, 20]; balances geometry-preserving distillation loss.
  • lambda_3 (CKD weight) = 1
    Grid-searched in [0.1, 2.0]; balances contrastive distillation loss.
  • tau (temperature in CKD) = 2
    Grid-searched in [1.5, 4.0]; controls sharpness of the contrastive distribution.
assumptions (5)
  • domain assumption Cosine similarity between ArcFace embeddings is a valid verification score with a threshold learned from nine folds.
    The entire evaluation protocol (Section 4.2) uses cosine similarity and 10-fold threshold selection; no alternative metric is considered.
  • domain assumption Each mini-batch contains unique identities, so all non-positive pairs in CKD are negatives.
    Section 3.5 states 'each batch contains unique identities'; if violated, the contrastive loss would push same-identity images apart.
  • domain assumption L2-normalized channel-wise pooled attention maps from stages 2-4 are comparable across teacher and student with L2 distance.
    MSFD loss in Eq. 2 assumes these pooled maps are comparable across models at different steps.
  • domain assumption The combination of MSFD, GPKD, and CKD is sufficient to transfer the teacher's recognition capability to the student without labels or exemplars.
    This is the mechanism CLFace relies on; it is asserted in Sections 3.3-3.5, not proven.
  • domain assumption Pre-training on half the identities with ArcFace produces a teacher strong enough for lifelong learning.
    Base model M0 is trained with ArcFace on the first half of identities (Section 4.2); the paper does not test sensitivity to teacher quality.

how reviews work

0 comments
Cite this review

Pith. "Pith review of CLFace: A Scalable and Resource-Efficient Continual Learning Framework for Lifelong Face Recognition." pith.science (2026). https://pith.science/paper/WETSNAR5

@misc{pith2026241113886,
  author       = {Pith},
  title        = {Pith review of: CLFace: A Scalable and Resource-Efficient Continual Learning Framework for Lifelong Face Recognition},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/WETSNAR5}},
  note         = {Machine review of arXiv:2411.13886}
}
read the original abstract

An important aspect of deploying face recognition (FR) algorithms in real-world applications is their ability to learn new face identities from a continuous data stream. However, the online training of existing deep neural network-based FR algorithms, which are pre-trained offline on large-scale stationary datasets, encounter two major challenges: (I) catastrophic forgetting of previously learned identities, and (II) the need to store past data for complete retraining from scratch, leading to significant storage constraints and privacy concerns. In this paper, we introduce CLFace, a continual learning framework designed to preserve and incrementally extend the learned knowledge. CLFace eliminates the classification layer, resulting in a resource-efficient FR model that remains fixed throughout lifelong learning and provides label-free supervision to a student model, making it suitable for open-set face recognition during incremental steps. We introduce an objective function that employs feature-level distillation to reduce drift between feature maps of the student and teacher models across multiple stages. Additionally, it incorporates a geometry-preserving distillation scheme to maintain the orientation of the teacher model's feature embedding. Furthermore, a contrastive knowledge distillation is incorporated to continually enhance the discriminative power of the feature representation by matching similarities between new identities. Experiments on several benchmark FR datasets demonstrate that CLFace outperforms baseline approaches and state-of-the-art methods on unseen identities using both in-domain and out-of-domain datasets.

Figures

Figures reproduced from arXiv: 2411.13886 by the authors.

Figure 1
Figure 1. Overview of the training and testing protocol of the pro [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. Overview of the proposed CLFace framework for scalable, resource-efficient lifelong face recognition. It consists of a teacher [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗
Figure 3
Figure 3. Comparison of CLFace with other approaches for evaluating in-domain performance in (a) 10-step and (b) 5-step learning scenarios. algorithms require large datasets for training. Addition￾ally, we need to evaluate our CLFace algorithm for both in￾domain and out-of-domain performance using large-scale incremental data. In this work, we train our CLFace algo￾rithm using three FR datasets of varying sizes for in-domain … view at source ↗

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

48 extracted references · 44 canonical work pages

  1. [1]

    VGGFace2: A dataset for recognising faces across pose and age

    Qiong Cao, Li Shen, Weidi Xie, Omkar M Parkhi, and An- drew Zisserman. VGGFace2: A dataset for recognising faces across pose and age. In IEEE international conference on automatic face & gesture recognition, pages 67–74, 2018

  2. [2]

    Riemannian walk for incremen- tal learning: Understanding forgetting and intransigence

    Arslan Chaudhry, Puneet K Dokania, Thalaiyasingam Ajan- than, and Philip HS Torr. Riemannian walk for incremen- tal learning: Understanding forgetting and intransigence. In Eur. Conf. Comput. Vis., pages 532–547, 2018

  3. [3]

    Low- resolution face recognition

    Zhiyi Cheng, Xiatian Zhu, and Shaogang Gong. Low- resolution face recognition. In ACCV, pages 605–621, 2019

  4. [4]

    CLIFER: Continual learning with imagination for facial expression recognition

    Nikhil Churamani and Hatice Gunes. CLIFER: Continual learning with imagination for facial expression recognition. In IEEE International Conference on Automatic Face & Ges- ture Recognition, pages 322–328, 2020

  5. [5]

    Domain- Incremental Continual Learning for Mitigating Bias in Facial Expression and Action Unit Recognition

    Nikhil Churamani, Ozgur Kara, and Hatice Gunes. Domain- Incremental Continual Learning for Mitigating Bias in Facial Expression and Action Unit Recognition. IEEE Trans. on Affective Comput., pages 1–15, 2022

  6. [6]

    ImageNet: A large-scale hierarchical image database

    Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. ImageNet: A large-scale hierarchical image database. In IEEE Conf. Comput. Vis. Pattern Recog., pages 248–255, 2009

  7. [7]

    ArcFace: additive angular margin loss for deep face recognition

    Jiankang Deng, Jia Guo, Niannan Xue, and Stefanos Zafeiriou. ArcFace: additive angular margin loss for deep face recognition. In IEEE Conf. Comput. Vis. Pattern Recog., pages 4685–4694, 2019

  8. [8]

    Learning without mem- orizing

    Prithviraj Dhar, Rajat Vikram Singh, Kuan-Chuan Peng, Ziyan Wu, and Rama Chellappa. Learning without mem- orizing. In IEEE Conf. Comput. Vis. Pattern Recog. , pages 5138–5146, 2019

Show all 48 references
  1. [9]

    PODNet: pooled outputs dis- tillation for small-tasks incremental learning

    Arthur Douillard, Matthieu Cord, Charles Ollion, Thomas Robert, and Eduardo Valle. PODNet: pooled outputs dis- tillation for small-tasks incremental learning. In Eur. Conf. Comput. Vis., pages 86–102, 2020

  2. [10]

    Lifelong person re-identification by pseudo task knowledge preservation

    Wenhang Ge, Junlong Du, Ancong Wu, Yuqiao Xian, Ke Yan, Feiyue Huang, and Wei-Shi Zheng. Lifelong person re-identification by pseudo task knowledge preservation. In AAAI, pages 688–696, 2022

  3. [11]

    An empirical investigation of catas- trophic forgetting in gradient-based neural networks

    Ian J Goodfellow, Mehdi Mirza, Da Xiao, Aaron Courville, and Yoshua Bengio. An empirical investigation of catas- trophic forgetting in gradient-based neural networks. Int. Conf. Learn. Represent., 2013

  4. [12]

    Deep residual learning for image recognition

    Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In IEEE Conf. Comput. Vis. Pattern Recog., pages 770–778, 2016

  5. [13]

    Distilling the knowledge in a neural network

    Geoffrey Hinton, Oriol Vinyals, and Jeff Dean. Distilling the knowledge in a neural network. Neural Information Pro- cessing Systems, Deep Learning and Representation Learn- ing Workshop, 2015

  6. [14]

    Learning a unified classifier incrementally via re- balancing

    Saihui Hou, Xinyu Pan, Chen Change Loy, Zilei Wang, and Dahua Lin. Learning a unified classifier incrementally via re- balancing. In IEEE Conf. Comput. Vis. Pattern Recog., pages 831–839, 2019

  7. [15]

    Labeled faces in the wild: A database forstudying face recognition in unconstrained environments

    Gary B Huang, Marwan Mattar, Tamara Berg, and Eric Learned-Miller. Labeled faces in the wild: A database forstudying face recognition in unconstrained environments. In Workshop on faces in Real-Life Images: detection, align- ment, and recognition, 2008

  8. [16]

    AdaFace: quality adaptive margin for face recognition

    Minchul Kim, Anil K Jain, and Xiaoming Liu. AdaFace: quality adaptive margin for face recognition. In IEEE Conf. Comput. Vis. Pattern Recog., pages 18750–18759, 2022

  9. [17]

    Overcoming catastrophic forgetting in neural networks.Pro- ceedings of the national academy of sciences, 114(13):3521– 3526, 2017

    James Kirkpatrick, Razvan Pascanu, Neil Rabinowitz, Joel Veness, Guillaume Desjardins, Andrei A Rusu, and et al. Overcoming catastrophic forgetting in neural networks.Pro- ceedings of the national academy of sciences, 114(13):3521– 3526, 2017

  10. [18]

    Learning multiple layers of features from tiny images

    Alex Krizhevsky, Geoffrey Hinton, et al. Learning multiple layers of features from tiny images. Technical report, Uni- versity of Toronto, 2009

  11. [19]

    Rethinking feature- based knowledge distillation for face recognition

    Jingzhi Li, Zidong Guo, Hui Li, Seungju Han, Ji-won Baek, Min Yang, Ran Yang, and Sungjoo Suh. Rethinking feature- based knowledge distillation for face recognition. In IEEE Conf. Comput. Vis. Pattern Recog. , pages 20156–20165, 2023

  12. [20]

    Learning without forgetting

    Zhizhong Li and Derek Hoiem. Learning without forgetting. In Eur. Conf. Comput. Vis., 2016

  13. [21]

    Knowledge distilla- tion via the target-aware transformer

    Sihao Lin, Hongwei Xie, Bing Wang, Kaicheng Yu, Xiaojun Chang, Xiaodan Liang, and Gang Wang. Knowledge distilla- tion via the target-aware transformer. InIEEE Conf. Comput. Vis. Pattern Recog., pages 10915–10924, 2022

  14. [22]

    Mnemonics training: Multi-class incremental learning without forgetting

    Yaoyao Liu, Yuting Su, An-An Liu, Bernt Schiele, and Qianru Sun. Mnemonics training: Multi-class incremental learning without forgetting. In IEEE Conf. Comput. Vis. Pat- tern Recog., pages 12245–12254, 2020

  15. [23]

    Incremental learning from low-labelled stream data in open- set video face recognition

    Eric Lopez-Lopez, Xose M Pardo, and Carlos V Regueiro. Incremental learning from low-labelled stream data in open- set video face recognition. Pattern Recognition, 131:108885, 2022

  16. [24]

    Temporal model adaptation for person re- identification

    Niki Martinel, Abir Das, Christian Micheloni, and Amit K Roy-Chowdhury. Temporal model adaptation for person re- identification. In Eur. Conf. Comput. Vis., pages 858–877, 2016

  17. [25]

    Iarpa janus benchmark-c: Face dataset and protocol

    Brianna Maze, Jocelyn Adams, James A Duncan, Nathan Kalka, Tim Miller, Charles Otto, and et al. Iarpa janus benchmark-c: Face dataset and protocol. In 2018 interna- tional conference on biometrics (ICB), pages 158–165, 2018

  18. [26]

    Michael McCloskey and Neal J. Cohen. Catastrophic inter- ference in connectionist networks: the sequential learning problem. Psychol. of Learn. Motivat., 24:109–165, 1989

  19. [27]

    MagFace: A universal representation for face recognition and quality assessment

    Qiang Meng, Shichao Zhao, Zhida Huang, and Feng Zhou. MagFace: A universal representation for face recognition and quality assessment. In IEEE Conf. Comput. Vis. Pattern Recog., pages 14225–14234, 2021

  20. [28]

    Agedb: the first manually collected, in-the-wild age database

    Stylianos Moschoglou, Athanasios Papaioannou, Chris- tos Sagonas, Jiankang Deng, Irene Kotsia, and Stefanos Zafeiriou. Agedb: the first manually collected, in-the-wild age database. In IEEE Conf. Comput. Vis. Pattern Recog. , pages 51–59, 2017

  21. [29]

    Repre- sentation learning with contrastive predictive coding

    Aaron van den Oord, Yazhe Li, and Oriol Vinyals. Repre- sentation learning with contrastive predictive coding. arXiv preprint arXiv:1807.03748, 2018. 9

  22. [30]

    Lifelong person re-identification via adaptive knowl- edge accumulation

    Nan Pu, Wei Chen, Yu Liu, Erwin M Bakker, and Michael S Lew. Lifelong person re-identification via adaptive knowl- edge accumulation. In IEEE Conf. Comput. Vis. Pattern Recog., pages 7901–7910, 2021

  23. [31]

    Sylvestre-Alvise Rebuffi, Alexander Kolesnikov, Georg Sperl, and Christoph H. Lampert. iCaRL: incremental classi- fier and representation learning. In IEEE Conf. Comput. Vis. Pattern Recog., 2017

  24. [32]

    FitNets: Hints for thin deep nets

    Adriana Romero, Nicolas Ballas, Samira Kahou Ebrahimi, Antoine Chassang, Carlo Gatta, and Yoshua Bengio. FitNets: Hints for thin deep nets. In Int. Conf. Learn. Represent. , 2015

  25. [33]

    Rusu, Neil C

    Andrei A. Rusu, Neil C. Rabinowitz, Guillaume Desjardins, Hubert Soyer, James Kirkpatrick, Koray Kavukcuoglu, Raz- van Pascanu, and Raia Hadsell. Progressive neural networks. arXiv preprint 1606.04671, 2016

  26. [34]

    Frontal to profile face verification in the wild

    Soumyadip Sengupta, Chen Jun-Cheng Chen, Castillo Car- los, Vishal M Patel, Chellappa Rama, and David W Jacobs. Frontal to profile face verification in the wild. In IEEE Win- ter Conf. on App. of Comput. Vis., February 2016

  27. [35]

    Continual learning with deep generative replay

    Hanul Shin, Jung Kwon Lee, Jaehong Kim, and Jiwon Kim. Continual learning with deep generative replay. Adv. Neural Inform. Process. Syst., 30, 2017

  28. [36]

    Incremental learning of object detectors without catas- trophic forgetting

    Konstantin Shmelkov, Cordelia Schmid, and Karteek Ala- hari. Incremental learning of object detectors without catas- trophic forgetting. In IEEE Conf. Comput. Vis. Pattern Recog., pages 3400–3409, 2017

  29. [37]

    Deep continual learning for emerging emotion recognition

    Selvarajah Thuseethan, Sutharshan Rajasegarar, and John Yearwood. Deep continual learning for emerging emotion recognition. IEEE Trans. Multimedia, 24:4367–4380, 2022

  30. [38]

    The caltech-ucsd birds-200-2011 dataset

    Catherine Wah, Steve Branson, Peter Welinder, Pietro Per- ona, and Serge Belongie. The caltech-ucsd birds-200-2011 dataset. California Institute of Technology, 2011

  31. [39]

    Iarpa janus benchmark-b face dataset

    Cameron Whitelam, Emma Taborsky, Austin Blanton, Bri- anna Maze, Jocelyn Adams, Tim Miller, and et al. Iarpa janus benchmark-b face dataset. In IEEE Conf. Comput. Vis. Pattern Recog. Worksh., pages 90–98, 2017

  32. [40]

    Memory replay GANs: Learn- ing to generate new categories without forgetting

    Chenshen Wu, Luis Herranz, Xialei Liu, Joost Van De Wei- jer, Bogdan Raducanu, et al. Memory replay GANs: Learn- ing to generate new categories without forgetting. Adv. Neu- ral Inform. Process. Syst., 31, 2018

  33. [41]

    A gift from knowledge distillation: Fast optimization, network minimization and transfer learning

    Junho Yim, Donggyu Joo, Jihoon Bae, and Junmo Kim. A gift from knowledge distillation: Fast optimization, network minimization and transfer learning. In IEEE Conf. Comput. Vis. Pattern Recog., pages 4133–4141, 2017

  34. [42]

    Paying more at- tention to attention: Improving the performance of convo- lutional neural networks via attention transfer

    Sergey Zagoruyko and Nikos Komodakis. Paying more at- tention to attention: Improving the performance of convo- lutional neural networks via attention transfer. In Int. Conf. Learn. Represent., 2017

  35. [43]

    Continual representation learning for biometric identification

    Bo Zhao, Shixiang Tang, Dapeng Chen, Hakan Bilen, and Rui Zhao. Continual representation learning for biometric identification. In IEEE Winter Conf. on App. of Comput. Vis., pages 1198–1208, 2021

  36. [44]

    Zheng and W

    T. Zheng and W. Deng. Cross-pose lfw: A database for studying cross-pose face recognition in unconstrained envi- ronments. Technical report, Beijing University of Posts and Telecommunications, 2018

  37. [45]

    Cross-age lfw: A database for studying cross-age face recognition in un- constrained environments

    Tianyue Zheng, Weihong Deng, and Jiani Hu. Cross-age lfw: A database for studying cross-age face recognition in un- constrained environments. arXiv preprint arXiv:1708.08197, 2017

  38. [46]

    Prototype augmentation and self-supervision for incremental learning

    Fei Zhu, Xu-Yao Zhang, Chuang Wang, Fei Yin, and Cheng- Lin Liu. Prototype augmentation and self-supervision for incremental learning. In IEEE Conf. Comput. Vis. Pattern Recog., pages 5871–5880, 2021

  39. [47]

    Self-sustaining representation expansion for non- exemplar class-incremental learning

    Kai Zhu, Wei Zhai, Yang Cao, Jiebo Luo, and Zheng- Jun Zha. Self-sustaining representation expansion for non- exemplar class-incremental learning. InIEEE Conf. Comput. Vis. Pattern Recog., pages 9296–9305, 2022

  40. [48]

    Webface260m: A benchmark unveiling the power of million-scale deep face recognition

    Zheng Zhu, Guan Huang, Jiankang Deng, Yun Ye, Junjie Huang, Xinze Chen, et al. Webface260m: A benchmark unveiling the power of million-scale deep face recognition. In IEEE Conf. Comput. Vis. Pattern Recog. , pages 10492– 10502, 2021. 10

Pith tools

Reviewed August 12, 2026 · model on record in the stance chip above.