Source-linked AI summary

ABD-Net: Attentive but Diverse Person Re-Identification

Tianlong Chen, Shaojin Ding, Jingyi Xie, Ye Yuan, Wuyang Chen, Yang Yang, Zhou Ren, Zhangyang Wang

arXiv:1908.01114v3cs.CV

TL;DR

Attention-based person Re-ID embeddings can be correlated, compromising Euclidean-distance retrieval. ABD-Net combines complementary channel and position attention with SVDO diversity regularization on activations and weights. It reports state-of-the-art performance on three benchmarks, with ablations showing contributions from attention and diversity.

  • Problem

    Attention-based embeddings are not naturally diverse or uncorrelated, although feature correlations can compromise Euclidean-distance matching.

  • Method

    ABD-Net integrates CAM and PAM attention modules with SVDO orthogonality regularization applied throughout the network to hidden activations and weights.

  • Results

    ABD-Net achieves new state-of-the-art results on Market-1501, DukeMTMC-Re-ID, and MSMT17, while ablations show that attentive and diverse terms each contribute to performance gains.

  • Takeaways & Limitations

    Combining attention with diversity produces more representative, robust, and discriminative person Re-ID embeddings within the reported evaluation scope.

  • Takeaways & Limitations

    The ablation study uses duplicated branches with the same res conv 5 structure, plus data augmentation and dropout for fairness.

Abstract

from arXiv · show

Attention mechanism has been shown to be effective for person re-identification (Re-ID). However, the learned attentive feature embeddings which are often not naturally diverse nor uncorrelated, will compromise the retrieval performance based on the Euclidean distance. We advocate that enforcing diversity could greatly complement the power of attention. To this end, we propose an Attentive but Diverse Network (ABD-Net), which seamlessly integrates attention modules and diversity regularization throughout the entire network, to learn features that are representative, robust, and more discriminative. Specifically, we introduce a pair of complementary attention modules, focusing on channel aggregation and position awareness, respectively. Furthermore, a new efficient form of orthogonality constraint is derived to enforce orthogonality on both hidden activations and weights. Through careful ablation studies, we verify that the proposed attentive and diverse terms each contributes to the performance gains of ABD-Net. On three popular benchmarks, ABD-Net consistently outperforms existing state-of-the-art methods.

1. Introduction

Person Re-ID uses feature embeddings to rank gallery images, but attention-based embeddings can remain highly correlated and hurt Euclidean-distance matching. ABD-Net addresses this by combining complementary attention with diversity regularization throughout the network.

  • 1. Introduction: Person Re-ID ranks gallery images by comparing feature-embedding similarities to a query image.Practical scenarios remain challenging because of misalignment, occlusion, background perturbance, viewpoint and pose variation, and noisy labels.
  • 1. Introduction: Attention improves robustness by focusing features on discriminative human-body appearances and relevant body parts.Prior attention-based models have boosted person Re-ID performance while addressing misalignment, incomplete parts, and occlusions.
  • 1. Introduction: Attention-based embeddings may be highly correlated because attention concentrates features in compact regions such as the foreground.Such correlations can compromise matching performance when similarities are computed with Euclidean distance.
  • 1. Introduction: ABD-Net integrates attention modules and diversity regularization to learn embeddings that are both attentive and diverse.Attention targets alignment, background suppression, and discriminative local parts, while diversity encourages lower feature correlation and a more comprehensive feature space.
  • 1. Introduction: The proposed compound attention uses CAM for channel-wise information aggregation and PAM for spatial awareness of body and part positions.The paper presents these mechanisms as complementary components of ABD-Net.
  • 1. Introduction: ABD-Net introduces SVDO regularization for activations and weights, and experiments report new state-of-the-art results on Market-1501, DukeMTMC-Re-ID, and MSMT17.Ablation studies and visualizations also verify contributions from the attentive and diverse terms.

2. Related Work

Prior person Re-ID work addresses misalignment and context with handcrafted, learned, and attention-based representations. ABD-Net combines spatial and channel attention with diversity constraints applied to both activations and weights, without manually defined parts or pose estimation.

  • 2. Related Work: Person Re-ID research studies handcrafted and learned features for extracting embeddings before matching identities across images.CNNs became prevalent, but problem-specific challenges include occlusion, misalignment, incomplete body parts, background perturbance, and viewpoint changes.
  • 2. Related Work: Earlier attention methods primarily extract part-based spatial patterns, including predefined parts, pooled body parts, or contextual attention.Examples include part-aligned representations, Part Loss Network, and dual attention matching for video-based Re-ID.
  • 2. Related Work: ABD-Net combines spatial and channel clues while learning attention masks directly from data and context.Its attention does not rely on manually defined parts, region proposals, or pose estimation, and both modules are embedded in one backbone.
  • 2. Related Work: Orthogonality methods range from SVD-based hard constraints to softer Gram-matrix regularization for informative and diverse CNN features.Prior person Re-ID work applied SVD to the last-layer weight matrix to reduce feature correlations.
  • 2. Related Work: ABD-Net proposes SVDO, which directly constrains the Gram matrix condition number and regularizes both hidden activations and weights.This differs from earlier approaches that applied orthogonality only to CNN weights.

3. Attentive but Diverse Network

ABD-Net combines complementary channel and position attention with orthogonality-based diversity regularization across its architecture. Its attentive and global branches produce the final concatenated embedding, while feature and weight constraints are incorporated into training.

  • Attention Modules: CAM aggregates semantically similar channels, while PAM captures and aggregates semantically related pixels in the spatial domain.CAM uses channel affinity; PAM computes pixel affinity over N = H × W spatial locations.
  • Attention Modules: CAM computes a channel affinity matrix X from input feature maps and uses it to produce the output feature map E.The CAM impact is scaled by the hyperparameter γ.
  • Diversity: Orthogonality Regularization: Orthogonality regularization is applied to hidden features and weights, reducing feature correlations and encouraging filter diversity.The feature and weight penalties target both convolutional and fully connected layers.
  • Diversity: Orthogonality Regularization: SVDO regularizes the condition number of the Gram matrix through the spectral-value difference between its largest and smallest eigenvalues.The condition number is defined as the ratio of maximum to minimum singular values, while λ1 and λ2 denote the largest and smallest Gram-matrix eigenvalues.
  • Network Architecture Overview: The architecture applies O.W. throughout the ResNet backbone and O.F. after selected CAM and attentive-branch layers, then concatenates global and attentive features.The global branch preserves global context, while the attentive branch processes reduced features through CAM and PAM before pooling.
  • Network Architecture Overview: ABD-Net combines cross-entropy, hard-mining triplet, feature-orthogonality, and weight-orthogonality terms in its training objective.The coefficients βtr, βO.F., and βO.W. control the corresponding terms.

4. Experiments

Experiments evaluate ABD-Net through dataset benchmarks, ablations, comparisons, and visual analyses. Attention modules and orthogonality regularization are complementary, yielding strong retrieval performance across Market-1501, DukeMTMC-Re-ID, and MSMT17.

  • Experimental Setup: Experiments use Market-1501, DukeMTMC-Re-ID, and MSMT17, with top-1 accuracy and mAP as evaluation metrics.The authors consider mAP a more reliable indicator for person Re-ID performance.
  • Ablation Study: Using either PAM or CAM improves the baseline on both datasets, while combining them produces further gains.The results support the complementary power of position and channel attention.
  • Ablation Study: Using either O.F. or O.W. consistently outperforms the baseline on both datasets, and combining them produces further gains.O.F. regularizes features, while O.W. regularizes weights.
  • Ablation Study: SVDO-based O.W. empirically performs better than the SVD layer, potentially because the hard constraint restricts backbone learning.The comparison concerns orthogonality regularization on weights.
  • Ablation Study: On Market-1501, ABD-Net (XE) improves over the no-attention counterpart by 1.50% top-1/3.60% mAP and over the no-diversity counterpart by 2.20% top-1/7.40% mAP.The full ABD-Net further benefits from adding triplet loss.
  • Comparison to State-of-the-art Methods: ABD-Net achieves 89.00% top-1 accuracy and 78.59% mAP on DukeMTMC-Re-ID, while reaching 88.28% mAP on Market-1501.It has overall state-of-the-art performance across all three datasets; Market-1501 top-1 slightly trails two existing methods.
  • Comparison to State-of-the-art Methods: ABD-Net improves over the closest attention-based prior work by at least 2.40% top-1 and 5.98% mAP on Market-1501, with margins of 3.40% top-1 and 6.40% mAP on DukeMTMC.It also surpasses SVDNet and HA-CNN in top-1 and mAP.

5. Conclusion

The paper proposes ABD-Net for learning representative, robust, and discriminative person Re-ID embeddings. Extensive experiments, ablations, and visualizations show that its added components contribute substantially to final performance.

  • ABD-Net learns more representative, robust, and discriminative feature embeddings for person Re-ID.
  • Ablations and visualizations show that each added component substantially contributes to ABD-Net’s final performance.
Loading 1908.01114v3…