ドメインバイアスにより、あるデータセットでトレーニングされたディープパーソンの再識別(re-ID)モデルを直接展開すると、別のデータセットで精度が大幅に低下することがよくあります。この論文では、教師なしの方法でre-IDのドメインシフト問題に対処する適応探索(AE)手法を提案します。具体的には、ターゲットドメインでは、re-IDモデルは1)すべての人物の画像間の距離を最大化し、2)類似の人物の画像間の距離を最小化するように誘導されます。最初のケースでは、各人物の画像を個別のクラスとして扱うことにより、特徴メモリを備えたノンパラメトリック分類器を利用して、人物の画像を互いに遠くに移動させます。 2番目のケースでは、類似性しきい値に従って、特徴空間内の各人物の画像の近傍を適応的に選択します。これらの類似した人物の画像を同じクラスとして扱うことにより、ノンパラメトリック分類器はそれらをより近くに留まらせます。ただし、適応選択の問題は、画像に近傍が多すぎる場合、近傍として他の画像を引き付ける可能性が高くなることです。その結果、少数の画像が多数の近傍を選択する可能性がありますが、大多数の画像には少数の近傍しかありません。この問題に対処するために、バランス戦略を適応選択にさらに統合します。 2つのプロトコルでメソッドを評価します。 1つ目は「ターゲットのみのre-ID」と呼ばれ、ラベル付けされていないターゲットデータのみがトレーニングに使用されます。 2つ目は「ドメイン適応型再ID」と呼ばれ、ソースデータとターゲットデータの両方がトレーニング中に使用されます。大規模な再IDデータセットの実験結果は、この方法の有効性を示しています。私たちのコードはhttps://github.com/dyh127/Adaptive-Exploration-for-Unsupervised-Person-Re-Identificationでリリースされました。
Due to domain bias, directly deploying a deep person re-identification (re-ID) model trained on one dataset often achieves considerably poor accuracy on another dataset. In this paper, we propose an Adaptive Exploration (AE) method to address the domain-shift problem for re-ID in an unsupervised manner. Specifically, in the target domain, the re-ID model is inducted to 1) maximize distances between all person images and 2) minimize distances between similar person images. In the first case, by treating each person image as an individual class, a non-parametric classifier with a feature memory is exploited to encourage person images to move far away from each other. In the second case, according to a similarity threshold, our method adaptively selects neighborhoods for each person image in the feature space. By treating these similar person images as the same class, the non-parametric classifier forces them to stay closer. However, a problem of the adaptive selection is that, when an image has too many neighborhoods, it is more likely to attract other images as its neighborhoods. As a result, a minority of images may select a large number of neighborhoods while a majority of images have only a few neighborhoods. To address this issue, we additionally integrate a balance strategy into the adaptive selection. We evaluate our methods with two protocols. The first one is called "target-only re-ID", in which only the unlabeled target data is used for training. The second one is called "domain adaptive re-ID", in which both the source data and the target data are used during training. Experimental results on large-scale re-ID datasets demonstrate the effectiveness of our method. Our code has been released at https://github.com/dyh127/Adaptive-Exploration-for-Unsupervised-Person-Re-Identification.