Pith. sign in

REVIEW 4 major objections 5 minor 72 references

Progressive Cross-camera Soft-label Learning for Semi-supervised Person Re-identification

T0 review · 4 major / 5 minor · reviewed 2026-08-14 · deepseek-v4-flash

Pith's one-line read The paper claims that a semi-supervised person re-identification network can generate its own cross-camera supervision from a person-level affinity matrix and nearly match fully supervised methods using only within-camera labels.

desk verdict A solid, honest semi-supervised Re-ID paper for the intra-camera-label setting; the near-supervised claim only holds on Market1501 against dated baselines, but the method is a real contribution despite a couple of reproducibility gaps. read the letter →

arxiv 1908.05669 v2 pith:2N2W6RZH submitted 2019-08-15 cs.CV

classification cs.CV
keywords semi-supervisedpersonre-identificationcross-camerasoftlabelsaffinitymatrixweightedcross-entropylosstripletprogressivelearningintra-cameraperson-levelfeaturebuffer
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 tackles the semi-supervised person re-identification setting: identities are known within each camera, from tracking or light annotation, but not across cameras, which is the expensive link to label. It claims that a network can create its own cross-camera supervision by averaging each person's image features into a buffer, computing a Gaussian affinity matrix between all persons, blanking out same-camera pairs, and keeping only each person's $k$ nearest cross-camera neighbors as soft-labels. Training with either a weighted cross-entropy loss or a weighted triplet loss on those soft-labels, while continuing a supervised triplet loss inside each camera, forms a progressive loop: better features produce better soft-labels, which produce better features. On five large benchmarks the method reports performance near fully supervised person re-identification and well above unsupervised methods that rely on extra labeled source domains or GAN-generated images. The finding matters because cross-camera labeling is the main bottleneck for deploying re-identification in new camera networks.

What carries the argument

The central object is the person-level affinity matrix of Eq. (4), built from a running buffer of person-level features updated by Eq. (3). A Gaussian kernel scores cross-camera person pairs, same-camera pairs are set to zero, and each person keeps only its $k$ nearest neighbors, so each row of the matrix is a soft distribution over candidate identities in other cameras. The framework converts these soft-labels into gradients through the weighted cross-entropy loss (Eq. (8)) and the weighted triplet loss (Eq. (9)), and it alternates between updating the network and refreshing the affinity matrix (Algorithm 1), which is what makes the soft-labels progressive.

What would settle it

Run PCSL on Market1501 with the same pipeline but replace each person's $k$ nearest cross-camera neighbors in the affinity matrix with $k$ randomly selected cross-camera persons, keeping every other setting fixed. If mAP stays near the reported 69.4, the soft-label signal is not what carries the method; if it falls toward the intra-camera-only baseline of 34.4, the nearest-neighbor assumption is doing the work.

Watch

Extended reading notes

Core claim

On its own terms, the central claim is that cross-camera identity relationships can be recovered without labels and then used as training signal. The cross-camera soft-label for each person is a row of an affinity matrix $A$ with entries $a_{i,j}=\exp(-\|p_i-p_j\|_2^2/\sigma^2)$ when persons $i$ and $j$ are from different cameras and $p_i$ is among $p_j$'s $k$ nearest neighbors, and zero otherwise. These soft-labels feed two losses: a weighted cross-entropy loss $L_{WC}$ that treats each cross-camera class with weight proportional to its affinity, and a weighted triplet loss $L_{WT}$ that pulls an anchor toward randomly selected positive cross-camera neighbors and pushes it away from the hardest same-camera negative. The positive loop runs by refreshing the person-feature buffer each iteration and recomputing the affinity matrix each epoch. The paper reports PCSL-C at 69.4 mAP / 87.0 Rank-1 on Market1501 against 69.0 / 86.5 for the supervised A3M, with consistent gains on DukeMTMC-reID, MSMT17, MARS and DukeMTMC-SI-Tracklet.

Load-bearing premise

The method assumes that the $k$ nearest cross-camera persons in the current feature space are usually the true same identity, and that training on those soft-labels improves the model more than it locks in mistakes.

Editorial extensions

If this is right

  • A deployment on a new camera network needs only within-camera identities, obtainable by tracking, to reach near-supervised re-identification accuracy.
  • Because the method does not use labeled source domains or GAN-generated images, it removes those data-generation costs from the training pipeline.
  • The framework accepts both classification-style and metric-learning-style losses on the same soft-labels, and the better choice depends on the dataset: classification works best on Market1501, MSMT17 and MARS, while the triplet variant works best on the Duke datasets.
  • The affinity matrix quality rises during training, so final accuracy is coupled to continued improvement of the soft-labels rather than to a fixed initial guess.
  • The same person-level buffer and soft-label machinery transfers from image datasets to video tracklet datasets, giving one recipe for both modalities.

Reading between the lines

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

  • Beyond the paper, the affinity matrix's confidence (for example, its entropy or precision@$k$) could be used as a gate for when to start trusting cross-camera soft-labels, adding an error-correction mechanism the paper does not provide.
  • Not claimed by the paper: the framework suggests a fully unsupervised extension in which intra-camera identities are first inferred by tracking or clustering and then the same progressive loop runs; the paper's robustness experiments hint that single-camera-only identities are handled gracefully, but this is an extrapolation.
  • The complementary behavior of the two losses is a testable basis for selecting the loss adaptively per epoch or per dataset difficulty, rather than fixing one variant in advance.
  • If the $k$-nearest-neighbor assumption is the true engine, then improving the affinity matrix itself (for example, replacing the global mean-based $\sigma^2$ with local density estimates) should transfer directly into re-identification accuracy.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

4 major / 5 minor

Summary. The paper proposes PCSL, a progressive cross-camera soft-label learning framework for semi-supervised person re-identification, where only within-camera identity labels are available. A person-level feature buffer is maintained and an affinity matrix over cross-camera person pairs is computed via a Gaussian kernel on the buffer features (Eq. (4)); the resulting row-normalized weights are used as soft labels in either a weighted cross-entropy loss (Eq. (8)) or a weighted triplet loss (Eq. (9)). The two stages are alternated so that soft labels and features are progressively refined. Experiments are reported on Market1501, DukeMTMC-reID, MSMT17, MARS, and DukeMTMC-SI-Tracklet, with large gains over unsupervised baselines and competitive performance with supervised methods on Market1501 (PCSL-C at 69.4 mAP versus A3M at 69.0 mAP).

Significance. If the results hold, the paper provides a practically important result: near-supervised person re-identification performance can be achieved without cross-camera identity labels, which are the most expensive annotations to collect. The empirical basis is unusually broad for this area, with five benchmarks, comparisons to a large set of unsupervised, semi-supervised, and supervised methods, component ablations, parameter sensitivity curves, and carefully constructed robustness experiments. The paper is also honest about the potential noise in its soft labels. However, the main claims are weakened by reproducibility issues (the affinity construction is underspecified), by hyperparameter selection on the evaluation datasets themselves, and by the absence of error bars on the headline numbers. These are load-bearing because the central claim is a numerical performance claim stated to within a few tenths of a point, and because the near-supervised result depends on a self-training loop without an explicit error-correction mechanism.

major comments (4)
  1. [III-C, Eq. (4)] The definition of the affinity matrix is circular as written. Eq. (4) defines each element a_ij using sigma^2, and the text immediately states that sigma^2 is set as the mean value of all elements in the affinity matrix A. Since A itself depends on sigma^2, the construction is not well posed. Please specify the exact computation: for example, compute sigma^2 from the raw pairwise distances before constructing A, or define a fixed-point iteration and state how it is initialized and how many iterations are used. Without this clarification, Eq. (4) cannot be reproduced from the paper.
  2. [IV-A and IV-F, Fig. 5] The main hyperparameters lambda and k are tuned on evaluation datasets that are also used for the headline results. Fig. 5(a) selects lambda on Market1501 and Fig. 5(b) selects k on MSMT17, after which the authors set lambda=1 and k=6 for all other datasets. This makes the reported improvements over baselines not fully independent, and it is especially concerning for small margins such as the 69.4 versus 69.0 mAP comparison with A3M in Table V. Please use a held-out validation split for hyperparameter selection, or report the full performance range across lambda and k on all datasets, and provide repeated-run statistics for the main tables.
  3. [IV-F, Fig. 6 and Table X discussion] The progressive loop has no explicit error-correction mechanism, and the authors themselves note in the discussion of Table X that the selected positive samples may be true negatives. The empirical affinity-quality curves in Fig. 6 are a useful safeguard, but they are only reported on Market1501 and they measure overall rank-1/mAP of the affinity matrix rather than the precision of the specific k nearest cross-camera neighbors that are used as training targets. To support the load-bearing claim that the loop improves rather than reinforces errors, please report the precision of selected cross-camera positives over training (or precision@k of the affinity matrix) on all datasets, and compare the progressive scheme against a fixed-affinity baseline that does not update soft labels.
  4. [IV-D and abstract] The abstract and introduction claim competitive performance with respect to deep supervised Re-ID methods, but the supervised comparison is only presented on Market1501 (Table V). Since the contribution is claimed to narrow the gap to supervised performance, the evidence would be substantially stronger if supervised or strong published baselines were also reported on DukeMTMC-reID, MSMT17, and at least one video dataset, or if the claim were explicitly restricted to Market1501. The current evidence does not establish that the near-supervised claim transfers across the five datasets used for the unsupervised comparisons.
minor comments (5)
  1. [III-D and III-C, Eq. (3)] The text says the person-level feature buffer is updated at the t-th iteration, but Algorithm 1 updates the buffer once per epoch. Please make the iteration/epoch terminology consistent and specify the initialization of P before the first update.
  2. [IV-C, text above Table III] The name "PCSP-C" should be "PCSL-C"; similarly, the caption of Fig. 4 refers to "PCPL-C" and "PCPL-D" and should read "PCSL-C" and "PCSL-D".
  3. [V] In the Conclusion, "the proposed method has a completive performance" should read "competitive performance".
  4. [IV-F, first paragraph] The text "as shown in Table XI in this response letter" reads like part of a response to reviewers rather than a journal paper. Please rephrase it as a normal experimental section, and consider moving the extensive robustness data to supplementary material.
  5. [Table XI] The table contains typographical errors in the labels: "singel-25" should be "single-25" and "mulitple-all" should be "multiple-all".

Circularity Check

1 steps flagged · score 2.0 of 10

No central circularity: benchmark claims are externally grounded; Eq. (4) has a minor self-referential sigma-squared definition.

  1. self definitional [Section III-C, Eq. (4) and the following sentence on sigma^2]
    "ai,j = { exp(−‖pi−pj‖2/2σ2), if φc(pi)≠φc(pj)∧pi∈Nk(pj); 0, otherwise (4) ... Particularly, as reported in the literature [49], to incorporate the local density structure, we set σ2 as the mean value of all elements in the affinity matrix A."

    Eq. (4) defines A using σ^2, and σ^2 is then defined as the mean of A, making A only a fixed-point solution of its own defining equation. This is a genuine self-definitional step in the soft-label construction. It is not load-bearing for the paper's central benchmark claims, since test mAP/CMC are measured against held-out labels and the paper independently checks affinity quality against ground truth (Fig. 6) and ablates against only-LIntra (Table VI).

full rationale

The strongest claim of the paper is empirical: PCSL approaches supervised Re-ID accuracy on five benchmarks. That claim is tested against external baselines and held-out labels, so it is not equivalent to the training objective by construction. The inter-camera soft-labels are generated from the current features and then used to train those same features, which is a self-training loop, but the paper does not present this loop as an independent prediction; it is the algorithm. Independent support is provided by the ablation in Table VI (PCSL vs. only-LIntra), the affinity-quality curves in Fig. 6 that use ground-truth IDs, and the admission in Section IV-F that selected positives can be true negatives, which is an honest limitation rather than a hidden assumption. The only self-citations ([23], [66]) are related-work or technique references and are not load-bearing; no uniqueness theorem is imported. The one specific self-referential point is the definition of σ^2 as the mean of the affinity matrix it defines in Eq. (4), which makes the construction a fixed-point equation. This is a technical flaw worth flagging, but it does not make the measured benchmark results circular. Overall circularity is minor.

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

The central claims rest on standard deep-Re-ID practice (ImageNet-pretrained ResNet-50, hard triplet mining), on the assumption that within-camera labels are correct, and on the method-specific assumption that feature-space k-NN proximity across cameras encodes true identity relations well enough to bootstrap progressive improvement. Two free hyperparameters (lambda and k) were chosen by experiments on the evaluation benchmarks. No new physical entities are introduced.

free parameters (4)
  • lambda (loss trade-off) = 1
    Trade-off weight between the intra-camera and inter-camera losses in Eq. (10); selected by sensitivity experiment on Market1501 (Fig. 5a) and then fixed for all datasets.
  • k (nearest neighbors) = 6
    Number of nearest cross-camera persons retained in the affinity matrix (Eq. (4)); tuned on MSMT17 with values {4, 6, 8, 10} (Fig. 5b) and fixed for all datasets.
  • sigma squared (Gaussian kernel width) = Mean of all affinity matrix elements
    Set to the mean value of all elements of the affinity matrix it defines (Section III-C), an ad hoc fixed-point normalization adopted from [49]; self-referential and potentially implementation-dependent.
  • triplet margin m = 0.3
    Margin in the triplet losses (Eqs. (1) and (9)); taken from [31] rather than fitted in this paper, but load-bearing for the metric learning behavior.
assumptions (5)
  • domain assumption Intra-camera labels are correct and complete: every within-camera ID corresponds to exactly one identity, and different IDs in the same camera are different people.
    Used to build triplets (Eqs. (1)-(2)) and to guarantee that same-camera negative samples are true negatives (Section III-C2); if trackers make ID errors, these guarantees fail.
  • domain assumption k-nearest-neighbor similarity in feature space reflects true cross-camera identity relationships.
    The entire inter-camera learning (affinity matrix Eq. (4), soft-label generation, and positive sample selection for Eq. (9)) assumes that feature-space proximity across cameras is a reliable signal for the same identity.
  • domain assumption The person-level feature buffer P (Eq. (3)) accurately represents a person by averaging image features.
    Assumes the multi-query-style averaging of same-ID features is robust and that the momentum-style update keeps pace with the improving network; if the buffer lags or averages incorrect IDs, the affinity matrix is corrupted.
  • ad hoc to paper The progressive loop converges to better features rather than drifting into error self-reinforcement.
    No proof is given that alternating soft-label generation and feature learning improves; the support is empirical convergence curves (Fig. 4) and affinity-quality improvement (Fig. 6).
  • domain assumption A ResNet-50 pretrained on ImageNet provides a useful initial representation for person features.
    Standard practice in deep Re-ID; the initial representation determines the quality of the first affinity matrix.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Progressive Cross-camera Soft-label Learning for Semi-supervised Person Re-identification." pith.science (2026). https://pith.science/paper/2N2W6RZH

@misc{pith2026190805669,
  author       = {Pith},
  title        = {Pith review of: Progressive Cross-camera Soft-label Learning for Semi-supervised Person Re-identification},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/2N2W6RZH}},
  note         = {Machine review of arXiv:1908.05669}
}
read the original abstract

In this paper, we focus on the semi-supervised person re-identification (Re-ID) case, which only has the intra-camera (within-camera) labels but not inter-camera (cross-camera) labels. In real-world applications, these intra-camera labels can be readily captured by tracking algorithms or few manual annotations, when compared with cross-camera labels. In this case, it is very difficult to explore the relationships between cross-camera persons in the training stage due to the lack of cross-camera label information. To deal with this issue, we propose a novel Progressive Cross-camera Soft-label Learning (PCSL) framework for the semi-supervised person Re-ID task, which can generate cross-camera soft-labels and utilize them to optimize the network. Concretely, we calculate an affinity matrix based on person-level features and adapt them to produce the similarities between cross-camera persons (i.e., cross-camera soft-labels). To exploit these soft-labels to train the network, we investigate the weighted cross-entropy loss and the weighted triplet loss from the classification and discrimination perspectives, respectively. Particularly, the proposed framework alternately generates progressive cross-camera soft-labels and gradually improves feature representations in the whole learning course. Extensive experiments on five large-scale benchmark datasets show that PCSL significantly outperforms the state-of-the-art unsupervised methods that employ labeled source domains or the images generated by the GAN-based models. Furthermore, the proposed method even has a competitive performance with respect to deep supervised Re-ID methods.

Figures

Figures reproduced from arXiv: 1908.05669 by the authors.

Figure 1
Figure 1. Comparison between inter-camera and intra-camera images on [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. An illustration of the proposed progressive cross-camera soft-label learning framework. It consists of two tasks including the supervised intra-camera [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗
Figure 3
Figure 3. An illustration of the cross-camera soft-label. In this figure, [PITH_FULL_IMAGE:figures/full_fig_p005_3.png] view at source ↗
Figures from the paper (4 more)
Figure 4
Figure 4. Figure 4: Convergence curves of PCPL-C and PCPL-D on DukeMTMC-reID. [PITH_FULL_IMAGE:figures/full_fig_p009_4.png]
Figure 5
Figure 5. Figure 5: Parameter analysis. In detail, a) shows curves for different [PITH_FULL_IMAGE:figures/full_fig_p010_5.png]
Figure 7
Figure 7. Figure 7: Impact of the IDs in the same camera for the affinity matrix by [PITH_FULL_IMAGE:figures/full_fig_p010_7.png]
Figure 8
Figure 8. Figure 8: Evaluation of the random sampling for PCSL-D on Market1501 [PITH_FULL_IMAGE:figures/full_fig_p011_8.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

72 extracted references · 70 canonical work pages

  1. [1]

    Adaptive learning for target tracking and true linking discovering across multiple non- overlapping cameras,

    K. Chen, C. Lai, P. Lee, C. Chen, and Y . Hung, “Adaptive learning for target tracking and true linking discovering across multiple non- overlapping cameras,” IEEE Transactions on Multimedia (TMM) , 2011

  2. [2]

    Bit-scalable deep hashing with regularized similarity learning for image retrieval and person re-identification,

    R. Zhang, L. Lin, R. Zhang, W. Zuo, and L. Zhang, “Bit-scalable deep hashing with regularized similarity learning for image retrieval and person re-identification,” IEEE Transactions on Image Processing (TIP), 2015

  3. [3]

    Personal clothing retrieval on photo collections by color and attributes,

    X. Wang, T. Zhang, D. Tretter, and Q. Lin, “Personal clothing retrieval on photo collections by color and attributes,” IEEE Transactions on Multimedia (TMM), 2013

  4. [4]

    Scalable person re-identification: A benchmark,

    L. Zheng, L. Shen, L. Tian, S. Wang, J. Wang, and Q. Tian, “Scalable person re-identification: A benchmark,” in International Conference on Computer Vision (ICCV) , 2015

  5. [5]

    Learning deep feature representations with domain guided dropout for person re-identification,

    T. Xiao, H. Li, W. Ouyang, and X. Wang, “Learning deep feature representations with domain guided dropout for person re-identification,” in IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2016

  6. [6]

    A multi-task deep network for person re-identification,

    W. Chen, X. Chen, J. Zhang, and K. Huang, “A multi-task deep network for person re-identification,” in Proceedings of the Thirty-First Conference on Artificial Intelligence (AAAI) , 2017

  7. [7]

    Beyond part models: Person retrieval with refined part pooling (and a strong convolutional baseline),

    Y . Sun, L. Zheng, Y . Yang, Q. Tian, and S. Wang, “Beyond part models: Person retrieval with refined part pooling (and a strong convolutional baseline),” in European Conference on Computer Vision (ECCV) , 2018

  8. [8]

    Re-identification with consistent attentive siamese networks,

    M. Zheng, S. Karanam, Z. Wu, and R. J. Radke, “Re-identification with consistent attentive siamese networks,” inIEEE Conference on Computer Vision and Pattern Recognition (CVPR) , 2019

Show all 72 references
  1. [9]

    Unsupervised person re- identification: clustering and fine-tuning,

    H. Fan, L. Zheng, C. Yan, and Y . Yang, “Unsupervised person re- identification: clustering and fine-tuning,” ACM Transactions on Mul- timedia Computing, Communications, and Applications (TOMM) , 2018

  2. [10]

    Generalizing a person retrieval model hetero-and homogeneously,

    Z. Zhong, L. Zheng, S. Li, and Y . Yang, “Generalizing a person retrieval model hetero-and homogeneously,” in European Conference on Computer Vision (ECCV) , 2018

  3. [11]

    Domain adaptation through synthesis for unsupervised person re-identification,

    S. Bak, P. Carr, and J.-F. Lalonde, “Domain adaptation through synthesis for unsupervised person re-identification,” in European Conference on Computer Vision (ECCV) , 2018

  4. [12]

    Transferable joint attribute- identity deep learning for unsupervised person re-identification,

    J. Wang, X. Zhu, S. Gong, and W. Li, “Transferable joint attribute- identity deep learning for unsupervised person re-identification,” arXiv, 2018

  5. [13]

    Unsupervised cross-dataset person re-identification by transfer learning of spatial-temporal patterns,

    J. Lv, W. Chen, Q. Li, and C. Yang, “Unsupervised cross-dataset person re-identification by transfer learning of spatial-temporal patterns,” in IEEE Conference on Computer Vision and Pattern Recognition (CVPR) , 2018

  6. [14]

    Attribute-aware attention model for fine-grained representation learning,

    K. Han, J. Guo, C. Zhang, and M. Zhu, “Attribute-aware attention model for fine-grained representation learning,” in ACM Multimedia Conference on Multimedia (MM) , 2018

  7. [15]

    Deeply-learned part-aligned representations for person re-identification,

    L. Zhao, X. Li, Y . Zhuang, and J. Wang, “Deeply-learned part-aligned representations for person re-identification,” in International Conference on Computer Vision (ICCV) , 2017

  8. [16]

    Pose-driven deep convolutional model for person re-identification,

    C. Su, J. Li, S. Zhang, J. Xing, W. Gao, and Q. Tian, “Pose-driven deep convolutional model for person re-identification,” in International Conference on Computer Vision (ICCV) , 2017

  9. [17]

    Pose invariant embedding for deep person re-identification,

    L. Zheng, Y . Huang, H. Lu, and Y . Yang, “Pose invariant embedding for deep person re-identification,” IEEE Transactions on Image Processing (TIP), 2019

  10. [18]

    Spindle net: Person re-identification with human body region guided feature decomposition and fusion,

    H. Zhao, M. Tian, S. Sun, J. Shao, J. Yan, S. Yi, X. Wang, and X. Tang, “Spindle net: Person re-identification with human body region guided feature decomposition and fusion,” in IEEE Conference on Computer Vision and Pattern Recognition (CVPR) , 2017

  11. [19]

    Gmmcp tracker: Glob- ally optimal generalized maximum multi clique problem for multiple object tracking,

    A. Dehghan, S. Modiri Assari, and M. Shah, “Gmmcp tracker: Glob- ally optimal generalized maximum multi clique problem for multiple object tracking,” in IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2015

  12. [20]

    Non-markovian globally consistent multi-object tracking,

    A. Maksai, X. Wang, F. Fleuret, and P. Fua, “Non-markovian globally consistent multi-object tracking,” in International Conference on Com- puter Vision (ICCV) , 2017

  13. [21]

    Multi-task mid-level feature align- ment network for unsupervised cross-dataset person re-identification,

    S. Lin, H. Li, C. Li, and A. C. Kot, “Multi-task mid-level feature align- ment network for unsupervised cross-dataset person re-identification,” in British Machine Vision Conference (BMVC) , 2018

  14. [22]

    Cam- era adversarial transfer for unsupervised person re-identification,

    G. Delorme, X. Alameda-Pineda, S. Lathuili `ere, and R. Horaud, “Cam- era adversarial transfer for unsupervised person re-identification,” arXiv, 2019

  15. [23]

    A novel unsupervised camera-aware domain adaptation framework for person re- identification,

    L. Qi, L. Wang, J. Huo, L. Zhou, Y . Shi, and Y . Gao, “A novel unsupervised camera-aware domain adaptation framework for person re- identification,” arXiv, 2019

  16. [24]

    Regularization with stochastic transformations and perturbations for deep semi-supervised learning,

    M. Sajjadi, M. Javanmardi, and T. Tasdizen, “Regularization with stochastic transformations and perturbations for deep semi-supervised learning,” in Advances in Neural Information Processing Systems (NIPS), 2016

  17. [25]

    Semi-supervised learning with ladder networks,

    A. Rasmus, M. Berglund, M. Honkala, H. Valpola, and T. Raiko, “Semi-supervised learning with ladder networks,” in Advances in neural information processing systems (NIPS) , 2015

  18. [26]

    Mean teachers are better role mod- els: Weight-averaged consistency targets improve semi-supervised deep learning results,

    A. Tarvainen and H. Valpola, “Mean teachers are better role mod- els: Weight-averaged consistency targets improve semi-supervised deep learning results,” in Advances in neural information processing systems (NIPS), 2017

  19. [27]

    Deep co-training for semi-supervised image recognition,

    S. Qiao, W. Shen, Z. Zhang, B. Wang, and A. Yuille, “Deep co-training for semi-supervised image recognition,” in European Conference on Computer Vision (ECCV) , 2018

  20. [28]

    Pseudo-label: The simple and efficient semi-supervised learning method for deep neural networks,

    D.-H. Lee, “Pseudo-label: The simple and efficient semi-supervised learning method for deep neural networks,” in International Conference on Machine Learning Workshop (ICMLW) , 2013

  21. [29]

    Transduc- tive semi-supervised deep learning using min-max features,

    W. Shi, Y . Gong, C. Ding, Z. MaXiaoyu Tao, and N. Zheng, “Transduc- tive semi-supervised deep learning using min-max features,” inEuropean Conference on Computer Vision (ECCV) , 2018

  22. [30]

    Label propagation for deep semi-supervised learning,

    A. Iscen, G. Tolias, Y . Avrithis, and O. Chum, “Label propagation for deep semi-supervised learning,” inIEEE Conference on Computer Vision and Pattern Recognition (CVPR) , 2019

  23. [31]

    In defense of the triplet loss for person re-identification,

    A. Hermans, L. Beyer, and B. Leibe, “In defense of the triplet loss for person re-identification,” arXiv, 2017

  24. [32]

    Person re-identification by local maximal occurrence representation and metric learning,

    S. Liao, Y . Hu, X. Zhu, and S. Z. Li, “Person re-identification by local maximal occurrence representation and metric learning,” in IEEE conference on computer vision and pattern recognition (CVPR) , 2015

  25. [33]

    Unsupervised cross-dataset transfer learning for person re- identification,

    P. Peng, T. Xiang, Y . Wang, M. Pontil, S. Gong, T. Huang, and Y . Tian, “Unsupervised cross-dataset transfer learning for person re- identification,” in IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2016

  26. [34]

    Cross-scenario transfer person reidentification,

    X. Wang, W. Zheng, X. Li, and J. Zhang, “Cross-scenario transfer person reidentification,” IEEE Transactions on Circuits and Systems for Video Technology (TCSVT), 2016

  27. [35]

    Cross-domain person reidenti- fication using domain adaptation ranking svms,

    A. J. Ma, J. Li, P. C. Yuen, and P. Li, “Cross-domain person reidenti- fication using domain adaptation ranking svms,” IEEE Transactions on Image Processing (TIP) , 2015

  28. [36]

    Unsupervised joint subspace and dictionary learning for enhanced cross-domain person re- identification,

    L. Qi, J. Huo, X. Fan, Y . Shi, and Y . Gao, “Unsupervised joint subspace and dictionary learning for enhanced cross-domain person re- identification,” IEEE Journal of Selected Topics in Signal Processing (JSTSP), 2018

  29. [37]

    Cross-view asymmetric metric learning for unsupervised person re-identification,

    H. Yu, A. Wu, and W. Zheng, “Cross-view asymmetric metric learning for unsupervised person re-identification,” in International Conference on Computer Vision (ICCV) , 2017

  30. [38]

    Person transfer gan to bridge domain gap for person re-identification,

    L. Wei, S. Zhang, W. Gao, and Q. Tian, “Person transfer gan to bridge domain gap for person re-identification,” in IEEE Conference on Computer Vision and Pattern Recognition (CVPR) , 2018

  31. [39]

    Image- image domain adaptation with preserved self-similarity and domain- dissimilarity for person reidentification,

    W. Deng, L. Zheng, G. Kang, Y . Yang, Q. Ye, and J. Jiao, “Image- image domain adaptation with preserved self-similarity and domain- dissimilarity for person reidentification,” in IEEE Conference on Com- puter Vision and Pattern Recognition (CVPR) , 2018

  32. [40]

    Imitating targets from all sides: An unsupervised transfer learning method for person re-identification,

    J. Tian, Z. Teng, R. Li, Y . Li, B. Zhang, and J. Fan, “Imitating targets from all sides: An unsupervised transfer learning method for person re-identification,” arXiv, 2019

  33. [41]

    Invariance matters: Exemplar memory for domain adaptive person re-identification,

    Z. Zhong, L. Zheng, Z. Luo, S. Li, and Y . Yang, “Invariance matters: Exemplar memory for domain adaptive person re-identification,” arXiv, 2019

  34. [42]

    Person re-identification by unsupervisedl1 graph learning,

    E. Kodirov, T. Xiang, Z. Fu, and S. Gong, “Person re-identification by unsupervisedl1 graph learning,” in European Conference on Computer Vision (ECCV), 2016

  35. [43]

    Unsupervised data association for metric learning in the context of multi-shot person re-identification,

    F. M. Khan and F. Bremond, “Unsupervised data association for metric learning in the context of multi-shot person re-identification,” in Inter- national Conference on Advanced Video and Signal Based Surveillance (AVSS), 2016

  36. [44]

    Robust anchor embedding for unsupervised video person re-identification in the wild,

    M. Ye, X. Lan, and P. C. Yuen, “Robust anchor embedding for unsupervised video person re-identification in the wild,” in European Conference on Computer Vision (ECCV) , 2018

  37. [45]

    Stepwise metric promotion for unsu- pervised video person re-identification,

    Z. Liu, D. Wang, and H. Lu, “Stepwise metric promotion for unsu- pervised video person re-identification,” in International Conference on Computer Vision (ICCV) , 2017

  38. [46]

    Dynamic label graph matching for unsupervised video re-identification,

    M. Ye, A. J. Ma, L. Zheng, J. Li, and P. C. Yuen, “Dynamic label graph matching for unsupervised video re-identification,” in International Conference on Computer Vision (ICCV) , 2017

  39. [47]

    Deep association learning for un- supervised video person re-identification,

    Y . Chen, X. Zhu, and S. Gong, “Deep association learning for un- supervised video person re-identification,” in British Machine Vision Conference (BMVC), 2018. IEEE TRANSACTIONS ON CIRCUITS AND SYSTEMS FOR VIDEO TECHNOLOGY , 14

  40. [48]

    Unsupervised person re-identification by deep learning tracklet association,

    M. Li, X. Zhu, and S. Gong, “Unsupervised person re-identification by deep learning tracklet association,” in European Conference on Computer Vision (ECCV) , 2018

  41. [49]

    Unsupervised tracklet person re-identification,

    M. Li, X. Zhu, S. Gong, and S. Gong, “Unsupervised tracklet person re-identification,” IEEE Transactions on Pattern Analysis and Machine Intelligence (TPAMI), 2019

  42. [50]

    Hierarchical gaussian descriptor for person re-identification,

    T. Matsukawa, T. Okabe, E. Suzuki, and Y . Sato, “Hierarchical gaussian descriptor for person re-identification,” inIEEE Conference on Computer Vision and Pattern Recognition (CVPR) , 2016

  43. [51]

    Learning a discriminative null space for person re-identification,

    L. Zhang, T. Xiang, and S. Gong, “Learning a discriminative null space for person re-identification,” in IEEE Conference on Computer Vision and Pattern Recognition (CVPR) , 2016

  44. [52]

    Large scale metric learning from equivalence constraints,

    M. Koestinger, M. Hirzer, P. Wohlhart, P. M. Roth, and H. Bischof, “Large scale metric learning from equivalence constraints,” in IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2012

  45. [53]

    An asymmetric dis- tance model for cross-view feature mapping in person re-identification,

    Y .-C. Chen, W.-S. Zheng, J.-H. Lai, and P. Yuen, “An asymmetric dis- tance model for cross-view feature mapping in person re-identification,” IEEE Transactions on Circuits and Systems for Video Technology (TCSVT), 2016

  46. [54]

    Svdnet for pedestrian retrieval,

    Y . Sun, L. Zheng, W. Deng, and S. Wang, “Svdnet for pedestrian retrieval,” in International Conference on Computer Vision (ICCV) , 2017

  47. [55]

    Personnet: Person re-identification with deep convolutional neural networks,

    L. Wu, C. Shen, and A. v. d. Hengel, “Personnet: Person re-identification with deep convolutional neural networks,” arXiv, 2016

  48. [56]

    Gated siamese convolutional neural network architecture for human re-identification,

    R. R. Varior, M. Haloi, and G. Wang, “Gated siamese convolutional neural network architecture for human re-identification,” in European Conference on Computer Vision (ECCV) , 2016

  49. [57]

    A siamese long short-term memory architecture for human re-identification,

    R. R. Varior, B. Shuai, J. Lu, D. Xu, and G. Wang, “A siamese long short-term memory architecture for human re-identification,” in European Conference on Computer Vision (ECCV) , 2016

  50. [58]

    Features for multi-target multi-camera tracking and re-identification,

    E. Ristani and C. Tomasi, “Features for multi-target multi-camera tracking and re-identification,” in IEEE Conference on Computer Vision and Pattern Recognition (CVPR) , 2018

  51. [59]

    Deep adaptive feature embedding with local sample distributions for person re-identification,

    L. Wu, Y . Wang, J. Gao, and X. Li, “Deep adaptive feature embedding with local sample distributions for person re-identification,” Pattern Recognition (PR), 2018

  52. [60]

    Learning deep context-aware features over body and latent parts for person re-identification,

    D. Li, X. Chen, Z. Zhang, and K. Huang, “Learning deep context-aware features over body and latent parts for person re-identification,” in IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2017

  53. [61]

    Mutual exclusivity loss for semi-supervised deep learning,

    M. Sajjadi, M. Javanmardi, and T. Tasdizen, “Mutual exclusivity loss for semi-supervised deep learning,” in International Conference on Image Processing (ICIP), 2016

  54. [62]

    Temporal ensembling for semi-supervised learn- ing,

    S. Laine and T. Aila, “Temporal ensembling for semi-supervised learn- ing,” in International Conference on Learning Representations (ICLR) , 2017

  55. [63]

    Virtual adversarial training: a regularization method for supervised and semi-supervised learning,

    T. Miyato, S.-i. Maeda, S. Ishii, and M. Koyama, “Virtual adversarial training: a regularization method for supervised and semi-supervised learning,” IEEE transactions on pattern analysis and machine intelli- gence (TPAMI), 2018

  56. [64]

    Deep residual learning for image recognition,

    K. He, X. Zhang, S. Ren, and J. Sun, “Deep residual learning for image recognition,” inIEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2016

  57. [65]

    Imagenet: A large- scale hierarchical image database,

    J. Deng, W. Dong, R. Socher, L. Li, K. Li, and F. Li, “Imagenet: A large- scale hierarchical image database,” in IEEE Conference on Computer Vision and Pattern Recognition (CVPR) , 2009

  58. [66]

    Maskreid: A mask based deep ranking neural network for person re-identification,

    L. Qi, J. Huo, L. Wang, Y . Shi, and Y . Gao, “Maskreid: A mask based deep ranking neural network for person re-identification,” arXiv, 2018

  59. [67]

    Unlabeled samples gener- ated by GAN improve the person re-identification baseline in vitro,

    Z. Zheng, L. Zheng, Y . Yang, and Y . Yang, “Unlabeled samples gener- ated by GAN improve the person re-identification baseline in vitro,” in International Conference on Computer Vision (ICCV) , 2017

  60. [68]

    Unsupervised person re-identification by soft multilabel learning,

    H.-X. Yu, W.-S. Zheng, A. Wu, X. Guo, S. Gong, and J.-H. Lai, “Unsupervised person re-identification by soft multilabel learning,” in IEEE Conference on Computer Vision and Pattern Recognition (CVPR) , 2019

  61. [69]

    MARS: A video benchmark for large-scale person re-identification,

    L. Zheng, Z. Bie, Y . Sun, J. Wang, C. Su, S. Wang, and Q. Tian, “MARS: A video benchmark for large-scale person re-identification,” in European Conference on Computer Vision (ECCV) , 2016

  62. [70]

    Object detection with discriminatively trained part-based mod- els,

    P. F. Felzenszwalb, R. B. Girshick, D. McAllester, and D. Ra- manan, “Object detection with discriminatively trained part-based mod- els,” IEEE transactions on pattern analysis and machine intelligence (TPAMI), 2009

  63. [71]

    Person re-identification by local maximal occurrence representation and metric learning,

    S. Liao, Y . Hu, X. Zhu, and S. Z. Li, “Person re-identification by local maximal occurrence representation and metric learning,” in IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2015

  64. [72]

    A discriminatively learned cnn em- bedding for person reidentification,

    Z. Zheng, L. Zheng, and Y . Yang, “A discriminatively learned cnn em- bedding for person reidentification,” ACM Transactions on Multimedia Computing, Communications, and Applications (TOMM) , 2018

Pith tools

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