Pith. sign in

REVIEW 2 major objections 5 minor 52 references

Locality-Sensitive Hashing for Efficient Hard Negative Sampling in Contrastive Learning

T0 review · 2 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash

Pith's one-line read The paper claims that LSH-binarized embeddings can replace exact cosine-based hard-negative sampling in contrastive learning, matching or beating its accuracy while cutting search overhead from 93.01% to 5.59% of training time on MS MARCO.

desk verdict A practically promising LSH-based hard negative mining idea whose empirical speedup is credible, but the paper's theoretical guarantee has a reversed inequality and the implementation does not match the analysis. read the letter →

arxiv 2505.17844 v1 pith:HU3VFS6E submitted 2025-05-23 cs.CV

classification cs.CV
keywords locality-sensitivehashinghardnegativesamplingcontrastivelearningapproximatenearestneighborsearchHammingdistanceInfoNCElosssupervisedcross-viewgeo-localization
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

Contrastive learning improves when a training batch contains hard negatives—examples that look similar to the anchor but belong to a different class. Finding them globally requires exhaustive pairwise similarity search, which becomes prohibitive as datasets reach hundreds of thousands or millions of samples. This paper argues that a GPU-friendly locality-sensitive hashing scheme, which projects embeddings to binary codes and searches by Hamming distance, can find those hard negatives almost as well as full cosine search while costing far less. On MS MARCO, 768-bit LSH reaches MRR@10 26.44 versus 26.24 for exact pre-epoch sampling, and the LSH search overhead is 5.59% of training time versus 93.01% for exact sampling. The paper also derives a probabilistic bound stating when the true nearest neighbour is guaranteed, up to a small angular slack, to be among the retrieved negatives.

What carries the argument

The load-bearing object is a random-projection locality-sensitive hash family: a random orthonormal matrix $R \in \mathbb{R}^{b\times d}$ maps each embedding to $b$ real projections, which are centered and thresholded at zero to give a $b$-bit binary code. Angular distance between two points controls their collision probability, $\Pr[h_i(c)=h_i(y)] = 1 - \theta_{cy}/\pi$, so Hamming distance between codes orders points by cosine similarity in expectation. The paper uses this ordering to select the top-$K$ Hamming-nearest negatives as hard negatives, and uses the central limit theorem on the per-bit separation indicator $Z_i$ to bound the probability that a nearer point stays Hamming-closer than a farther one.

What would settle it

On one of the reported datasets, fix an anchor set, and measure the empirical fraction of true nearest neighbours found among the top-$K$ Hamming neighbours with centering on and off. If the bound of Section 3.2.1—which guarantees each true neighbour is matched within angle $a\varepsilon$ with probability at least $1 - 1/f$—is satisfied only when centering is removed, the theory does not describe the hash family that produced the reported results.

Watch

Extended reading notes

Core claim

The central claim is that hard-negative mining in contrastive learning can be replaced by approximate nearest-neighbour search over binary codes without losing accuracy. Embeddings are multiplied by a random orthonormal matrix, centered, and reduced to their signs; the resulting bits preserve angular similarity in expectation, so Hamming distance under XOR/popcount approximates cosine distance. The authors prove that with enough bits, any true nearest neighbour of an anchor is matched by a retrieved point within angle $a\varepsilon$ with probability at least $1 - 1/f$, and they verify empirically that higher bit counts increase overlap with exact cosine neighbours. Across six image and text datasets, LSH-based sampling matches or exceeds pre-epoch exact sampling at high bit counts while reducing search time and memory by an order of magnitude or more.

Load-bearing premise

The theoretical guarantee assumes the anchor and candidate points lie on a unit sphere and that every separating hyperplane passes through the origin, while the implementation centers the projected features before assigning signs; if that centering disrupts the Hamming-distance ordering, the match-quality guarantee could lapse even though the speed benefit remains.

Editorial extensions

If this is right

  • At 512–1024 bits on image retrieval, LSH matches the accuracy of exact pre-epoch incremental sampling while adding under 1% overhead to per-epoch training time.
  • On MS MARCO, 768-bit LSH reaches MRR@10 26.44, above the 26.24 of exact pre-epoch full sampling, so approximate search is not necessarily a quality compromise in text retrieval.
  • Because the binary index is rebuilt after each epoch, hard negatives track the evolving embedding rather than relying on stale pre-extracted negatives.
  • Binarization cuts memory by a factor of 32, making global hard-negative mining feasible at dataset sizes where storing full float vectors is impractical.
  • The bit-count formula $b_{\min} \approx 2\ln(fn)/((a-1)\varepsilon)$ gives a principled starting point for choosing hash length instead of tuning it by trial and error.

Reading between the lines

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

  • The paper's cost argument extends to unsupervised contrastive learning, where a binary LSH index could replace the fixed-size queue of negatives and give access to true global negatives rather than only recent batch negatives.
  • The weaker overlap on text data hints that multi-concept embeddings may need a query-adaptive or multi-index hash; this is an inference beyond the paper's evaluation.
  • A testable extension is an adaptive bit schedule, growing the hash length as the embedding stabilizes, guided by the paper's $b_{\min}$ formula.
  • A centered-versus-uncentered comparison would separate the speed benefit, which does not depend on the theory, from the match-quality guarantee, which is derived without centering.
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

2 major / 5 minor

Summary. The paper proposes a locality-sensitive hashing (LSH) scheme for global hard negative sampling in supervised contrastive learning. Embeddings are projected with a random rotation matrix, centered, and binarized with sign(); after each epoch, hard negatives are retrieved via Hamming distance. The paper provides a theoretical analysis in Section 3.2.1 intended to bound the probability that a true nearest neighbor has smaller Hamming distance than a farther point, and evaluates the method on six datasets across vision and text (CVUSA, CV ACT, VIGOR, SOP, InShop, MS MARCO) against Random, BatchHard, Pre-Epoch Full, and Pre-Epoch Incremental sampling. Empirically, LSH at 512-1024 bits matches or slightly exceeds the incremental baseline on most datasets and is much faster than exact pre-epoch sampling; on MS MARCO, LSH768 achieves MRR@10 26.44 versus 26.24 for Pre-Epoch Full, with search overhead of 5.6% of training time versus 93.0%.

Significance. The empirical study is solid and useful: it covers six public datasets, compares against four baselines, sweeps bit counts, and measures search overhead and neighbor overlap. The method is simple and has no learned parameters other than bit count and K. The neighbor analysis (overlap with true hard negatives, hardness levels) provides practical insight. However, the theoretical contribution is not established: the probabilistic guarantee in Section 3.2.1 is derived with a reversed inequality, and the analysis assumes origin-centered hyperplanes while the implementation centers the features. The paper's claim of 'bridging theory and practice' is therefore unsupported. If the empirical results are reproducible, the paper remains a useful engineering contribution, but it currently overstates its theoretical support.

major comments (2)
  1. [§3.2.1, Eq. (12)] The claimed lower bound P(Z ≤ 0) ≥ Φ(√((a−1)bε)) is derived using the substitution Pr(X_i=1, Y_i=1) ≤ ε, but σ²_Z contains the term −2Pr(X_i=1, Y_i=1), so replacing the joint probability by its upper bound ε produces a lower bound on σ²_Z, not an upper bound. The ratio −µ_Z/σ_Z is therefore at most the expression in Eq. (12), and the chain has the wrong direction; Eq. (14) for b_min does not follow. A concrete configuration shows the bound is false: take a=2, ε=0.001, b=1000, with x and y on opposite azimuths around c so that Pr(X_i=1,Y_i=1)=0; then P(HammDist(c,x) ≤ HammDist(c,y)) ≈ Φ(1/√3) ≈ 0.72, below the claimed Φ(1) ≈ 0.84. The stated 1−1/f guarantee and the conclusion that the experiments 'bridge theory and practice' are unsupported.
  2. [§3.2, Eq. (3) and §3.2.1, Eq. (5)] The theoretical analysis assumes random hyperplanes through the origin, for which the collision probability is 1 − θ_cy/π and the Hamming distance ordering depends on the angular distance between anchor and candidate. The implementation centers the projected vectors, V = RY − mean(RY), before the sign() operation, which moves the separating hyperplanes off the origin. The paper does not show that the collision probability or the Hamming-distance ordering bound survives this centering. Because Appendix A.6 shows that centering materially affects the overlap between LSH-retrieved and true nearest neighbors, the theory in Section 3.2.1 describes a different hash family from the one evaluated in the experiments.
minor comments (5)
  1. [Eq. (3)] The equation 'V = RY − RY' is missing the mean: it should read V = RY − mean(RY), which is the operation described in the text.
  2. [§3.2.1, Eq. (10)] The CLT is invoked 'for large d,' but the sum is over the b hash bits; the approximation should be justified for large b, and the dependence among bits induced by the orthonormal rows of the random rotation matrix should be addressed.
  3. [§3.2.1, paragraph before Eq. (16)] The symbol b is used both for the bit dimension and for the index of nearest neighbors in the phrase 'for all nearest neighbors x_j, j∈[b]', which is confusing. Please use a different index such as j∈[K].
  4. [Table 3] The search-time comparison reports only the 128-bit LSH configuration, while the best accuracy is obtained with 512 or 1024 bits. Reporting the overhead for those settings would make the 'significantly less computation' claim more precise.
  5. [Tables 1 and 2] The reported metrics are point estimates without variance or significance testing. Given the small margins on some datasets (e.g., CVUSA R@1 98.68 vs. 98.60; VIGORcross 59.86 vs. 57.69), multiple seeds or error bars would strengthen the parity claim.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: the LSH construction, theoretical analysis, and empirical benchmarks are self-contained; the only self-references are minor background and baseline citations.

full rationale

The paper's central derivation chain is not circular. The LSH construction in Section 3.2 follows the standard random-hyperplane scheme of Charikar and related prior work, with no parameter fitted to the reported benchmark outcomes. The probabilistic analysis in Section 3.2.1 is derived independently from the collision probability Pr[h_i(c)=h_i(y)] = 1 - theta/pi and is not calibrated to the experimental results; Eq. (14) for b_min is a design target derived from the stated confidence level rather than a fitted quantity renamed as a prediction. The empirical Section 3.2.2 is descriptive, measuring the fraction of LSH-retrieved neighbors inside chosen cosine-similarity intervals, and does not reverse-engineer the theory from the data. The only self-references are the authors' prior geo-localization work [9, 10, 11], used as motivation and as a pre-epoch sampling baseline; these are published, externally evaluated methods and are not load-bearing for the new LSH claim. Two concerns raised by the reader are correctness issues, not circularity: the inequality direction in Eq. (12) appears reversed so the claimed 1 - 1/f guarantee is not established, and the centering in Eq. (3) means the implemented hash family may not match the origin-centered hyperplane analysis. These are theory-practice and proof-validity gaps, not reductions of the conclusions to the inputs, and the paper's own limitation section also acknowledges that the bit-size choice is empirical rather than derived a priori. Therefore no circular step can be quoted and exhibited, and the correct circularity score is 0.

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

The method adds no fitted constants to the benchmarks except the empirically chosen bit count. The theory relies on standard LSH collision probabilities and the CLT, plus two domain assumptions about hard negatives and stale embeddings. The one ad hoc premise is that unit-sphere theory applies to the centered implementation, which is not proven. No new entities are invented.

free parameters (2)
  • LSH bit dimensionality b = 128, 256, 512, 768 (text), 1024 (vision); chosen per dataset
    Section 4.1 and Section 6: the number of bits is selected empirically; the paper states it cannot be determined a priori and depends on the data distribution.
  • Number of retrieved hard negatives K = 128
    Section 3.2: the K data points with smallest Hamming distance are used as hard negatives; K equals the batch size used in evaluation, a hyperparameter of the method.
assumptions (5)
  • standard math Random hyperplane collision probability Pr[h_i(c)=h_i(y)] = 1 - theta/pi (Charikar 2002)
    Invoked in Eq. (5) as the basis for the Hamming-distance ordering bound; it holds for random hyperplanes through the origin on the unit sphere.
  • standard math Central limit theorem for sums of independent Bernoulli differences
    Used in Eq. (10) to approximate the distribution of the Hamming distance difference Z by a normal distribution.
  • ad hoc to paper The analysis assumes points lie on the unit sphere and hashes are origin-centered, while the implementation centers features before binarization
    Section 3.2.1 assumes unit-sphere geometry; Section 3.2 actually centers projected features (V = RY - mean(RY)), so the theory's premise is not met by the implementation.
  • domain assumption Hard negative sampling improves contrastive learning, and approximate hard negatives preserve this benefit
    The paper relies on prior work (e.g., Sample4Geo [9]) that global hard negatives improve retrieval; LSH is assumed to retrieve negatives hard enough to retain the benefit.
  • domain assumption Stale embeddings from the previous epoch are adequate for sampling the next epoch's batches
    Section 4.1 states that reusing training embeddings for pre-epoch sampling, despite lagging behind the current model, proves efficient; this applies to both LSH and the pre-epoch baselines.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Locality-Sensitive Hashing for Efficient Hard Negative Sampling in Contrastive Learning." pith.science (2026). https://pith.science/paper/HU3VFS6E

@misc{pith2026250517844,
  author       = {Pith},
  title        = {Pith review of: Locality-Sensitive Hashing for Efficient Hard Negative Sampling in Contrastive Learning},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/HU3VFS6E}},
  note         = {Machine review of arXiv:2505.17844}
}
read the original abstract

Contrastive learning is a representational learning paradigm in which a neural network maps data elements to feature vectors. It improves the feature space by forming lots with an anchor and examples that are either positive or negative based on class similarity. Hard negative examples, which are close to the anchor in the feature space but from a different class, improve learning performance. Finding such examples of high quality efficiently in large, high-dimensional datasets is computationally challenging. In this paper, we propose a GPU-friendly Locality-Sensitive Hashing (LSH) scheme that quantizes real-valued feature vectors into binary representations for approximate nearest neighbor search. We investigate its theoretical properties and evaluate it on several datasets from textual and visual domain. Our approach achieves comparable or better performance while requiring significantly less computation than existing hard negative mining strategies.

Figures

Figures reproduced from arXiv: 2505.17844 by the authors.

Figure 1
Figure 1. Illustration of the anchor (A, blue), positive (P, red), and several negatives (N, black). [PITH_FULL_IMAGE:figures/full_fig_p003_1.png] view at source ↗
Figure 2
Figure 2. Percentage of neighbors retrieved by LSH that fall within the theoretical simi￾larity bounds ε and εa, compared to cosine similarity. In this experiment, we evaluate the quality of ANNs retrieved using LSH for HN mining. We use features extracted from the CVUSA dataset Workman et al. [45] using a ConvNeXt-based model pre-trained on ImageNet, without any contrastive fine-tuning. We define a similarity threshold ε as … view at source ↗
Figure 3
Figure 3. LSH and pre-epoch HN sampling in comparison considering the search time vs. the dataset size and the model output size. 0.0 0.5 1.0 Hardness Level 87.5 88.0 88.5 89.0 89.5 Recall@1 on SOP Pre-Epoch Incr. LSH 0.0 0.5 1.0 Hardness Level 20 21 22 23 24 25 26 MRR@10 on MSMarco Pre-Epoch Incr. LSH [PITH_FULL_IMAGE:figures/full_fig_p008_3.png] view at source ↗
Figures from the paper (10 more)
Figure 4
Figure 4. Figure 4: Impact of HN hardness on R@1 on SOP (left) and MRR@10 on MSMarco (right). We define hardness as the percentage of HNs within a batch and include the results from LSH based on the respective overlap. We analyze HNs selection behavior under LSH using the MS-MARCO dataset…
Figure 5
Figure 5. Figure 5: A comparison of LSH and random sampling on SOP and MS Marco. We compare the overlap with Pre-Epoch Increment (HNs) and mean positional distance. The text modality shows a different behavior, as shown in Figure 5b. The overlap is much lower than in the vision setting, a…
Figure 8
Figure 8. Figure 8: In this subset we only use the city of Seattle for training and evaluation. Similar to the other datasets the overlap declines over time as the embeddings of pairs are pushed afar from each other. We also investigate the impact of hardness during training in [PITH_FUL…
Figure 7
Figure 7. Figure 7: Impact of HN hardness on R@1 on VIGOR. We define hardness as the percentage of HNs within a batch and include the results from LSH based on the respective overlap. Furthermore, we also compare the overlap and mean positional distance a subset of VIGOR in [PITH_FULL_IM…
Figure 6
Figure 6. Figure 6: Comparison of the similarity between the retrieved approximated [PITH_FULL_IMAGE:figures/full_fig_p015_6.png]
Figure 8
Figure 8. Figure 8: A comparison of overlap and mean positional distance of [PITH_FULL_IMAGE:figures/full_fig_p015_8.png]
Figure 9
Figure 9. Figure 9: Impact of our LSH design choices on the overlap for SOP and MS MARCO. For our experiments on image datasets, we use the ConvNeXt base model [28], pre-trained on ImageNet-21k, from the timm library [44]. Con￾vNeXt modernizes the ResNet architecture by incorporating desi…
Figure 10
Figure 10. Figure 10: Framework for encoding input data and leveraging [PITH_FULL_IMAGE:figures/full_fig_p017_10.png]
Figure 11
Figure 11. Figure 11: Comparison of true HN neighbor recall with query throughput (left) and compression ratio (right) across five datasets. Curves reflect different LSH bit sizes (128, 256, 512, 768/1024), with vision datasets (CVUSA, SOP, VIGOR-SAME, INSHOP) using up to 1024 bits and the…
Figure 12
Figure 12. Figure 12: Comparison between LSH, PCA, and incremental PCA in terms of overlap with the ac￾tual hardest neighbors. As shown, PCA achieves slightly better perfor￾mance at lower bit rates, but is surpassed by LSH at higher bit rates. However, this compar￾ison is somewhat unbalanc…

Discussion (0). Sign in to comment.

Reference graph

Works this paper leans on

52 extracted references · 25 canonical work pages

  1. [1]

    Unicom: Universal and compact representation learning for image retrieval

    Xiang An, Jiankang Deng, Kaicheng Yang, Jaiwei Li, Ziyong Feng, Jia Guo, Jing Yang, and Tongliang Liu. Unicom: Universal and compact representation learning for image retrieval. arXiv preprint arXiv:2304.05884, 2023

  2. [2]

    Practical and optimal lsh for angular distance

    Alexandr Andoni, Piotr Indyk, Thijs Laarhoven, Ilya Razenshteyn, and Ludwig Schmidt. Practical and optimal lsh for angular distance. Advances in neural information processing systems, 28, 2015

  3. [3]

    Ms marco: A human generated machine reading comprehension dataset

    Payal Bajaj, Daniel Campos, Nick Craswell, Li Deng, Jianfeng Gao, Xiaodong Liu, Rangan Majumder, Andrew McNamara, Bhaskar Mitra, Tri Nguyen, et al. Ms marco: A human generated machine reading comprehension dataset. arXiv preprint arXiv:1611.09268, 2016

  4. [4]

    Deep metric learning to rank

    Fatih Cakir, Kun He, Xide Xia, Brian Kulis, and Stan Sclaroff. Deep metric learning to rank. In 2019 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , pages 1861–1870, 2019. doi: 10.1109/CVPR.2019.00196

  5. [5]

    Charikar

    Moses S. Charikar. Similarity estimation techniques from rounding algorithms. In Proceedings of the Thiry-F ourth Annual ACM Symposium on Theory of Computing, STOC ’02, page 380–388, New York, NY , USA, 2002. Association for Computing Machinery. ISBN 1581134959. doi: 10.1145/509907.509965. URL https://doi.org/10.1145/509907.509965

  6. [6]

    Chopra, R

    S. Chopra, R. Hadsell, and Y . LeCun. Learning a similarity metric discriminatively, with application to face verification. In 2005 IEEE Computer Society Conference on Computer Vision and Pattern Recognition (CVPR’05) , volume 1, pages 539–546 vol. 1, 2005. doi: 10.1109/CVPR.2005.202

  7. [7]

    Debiased contrastive learning

    Ching-Yao Chuang, Joshua Robinson, Yen-Chen Lin, Antonio Torralba, and Stefanie Jegelka. Debiased contrastive learning. Advances in neural information processing systems , 33:8765– 8775, 2020

  8. [8]

    Mirrokni

    Mayur Datar, Nicole Immorlica, Piotr Indyk, and Vahab S. Mirrokni. Locality-sensitive hashing scheme based on p-stable distributions. In Proceedings of the Twentieth Annual Symposium on Computational Geometry , SCG ’04, page 253–262, New York, NY , USA, 2004. Association for Computing Machinery. ISBN 1581138857. doi: 10.1145/997817.997857. URL https://doi...

Show all 52 references
  1. [9]

    Sample4geo: Hard negative sampling for cross-view geo-localisation

    Fabian Deuser, Konrad Habel, and Norbert Oswald. Sample4geo: Hard negative sampling for cross-view geo-localisation. In ICCV, pages 16847–16856, 2023

  2. [10]

    Orientation-guided con- trastive learning for uav-view geo-localisation

    Fabian Deuser, Konrad Habel, Martin Werner, and Norbert Oswald. Orientation-guided con- trastive learning for uav-view geo-localisation. In Proceedings of the 2023 Workshop on UA Vs in Multimedia: Capturing the World from a New Perspective , pages 7–11, 2023

  3. [11]

    Optimizing geo-localization with k-means re-ranking in challenging weather conditions

    Fabian Deuser, Martin Werner, Konrad Habel, and Norbert Oswald. Optimizing geo-localization with k-means re-ranking in challenging weather conditions. In Proceedings of the 2nd Workshop on UA Vs in Multimedia: Capturing the World from a New Perspective, pages 9–13, 2024. 10

  4. [12]

    Deep feature learning with relative distance comparison for person re-identification

    Shengyong Ding, Liang Lin, Guangrun Wang, and Hongyang Chao. Deep feature learning with relative distance comparison for person re-identification. Pattern Recognition, 48(10): 2993–3003, 2015

  5. [13]

    An image is worth 16x16 words: Transformers for image recognition at scale

    Alexey Dosovitskiy. An image is worth 16x16 words: Transformers for image recognition at scale. arXiv preprint arXiv:2010.11929, 2020

  6. [14]

    The faiss library

    Matthijs Douze, Alexandr Guzhva, Chengqi Deng, Jeff Johnson, Gergely Szilvasy, Pierre- Emmanuel Mazaré, Maria Lomeli, Lucas Hosseini, and Hervé Jégou. The faiss library. 2024

  7. [15]

    Fast approximate nearest neighbor search with the navigating spreading-out graph

    Cong Fu, Chao Xiang, Changxu Wang, and Deng Cai. Fast approximate nearest neighbor search with the navigating spreading-out graph. Proc. VLDB Endow., 12(5):461–474, January 2019. ISSN 2150-8097. doi: 10.14778/3303753.3303754. URL https://doi.org/10.14778/ 3303753.3303754

  8. [16]

    Hard-negatives or non-negatives? a hard- negative selection strategy for cross-modal retrieval using the improved marginal ranking loss

    Damianos Galanopoulos and Vasileios Mezaris. Hard-negatives or non-negatives? a hard- negative selection strategy for cross-modal retrieval using the improved marginal ranking loss. In CVPR, pages 2312–2316, 2021

  9. [17]

    Learning dense representations for entity retrieval

    Daniel Gillick, Sayali Kulkarni, Larry Lansing, Alessandro Presta, Jason Baldridge, Eugene Ie, and Diego Garcia-Olano. Learning dense representations for entity retrieval. arXiv preprint arXiv:1909.10506, 2019

  10. [18]

    Iterative quantiza- tion: A procrustean approach to learning binary codes for large-scale image retrieval

    Yunchao Gong, Svetlana Lazebnik, Albert Gordo, and Florent Perronnin. Iterative quantiza- tion: A procrustean approach to learning binary codes for large-scale image retrieval. IEEE Transactions on Pattern Analysis and Machine Intelligence , 35(12):2916–2929, 2013. doi: 10.110...

  11. [19]

    Clip-reident: Contrastive training for player re-identification

    Konrad Habel, Fabian Deuser, and Norbert Oswald. Clip-reident: Contrastive training for player re-identification. In Proceedings of the 5th International ACM Workshop on Multimedia Content Analysis in Sports , MMSports ’22, page 129–135, New York, NY , USA, 2022. Association f...

  12. [20]

    Approximate nearest neighbor: Towards removing the curse of dimensionality

    Sariel Har-Peled, Piotr Indyk, and Rajeev Motwani. Approximate nearest neighbor: Towards removing the curse of dimensionality. 2012

  13. [21]

    Approximate nearest neighbor: Towards removing the curse of dimensionality

    Sariel Har-Peled, Piotr Indyk, and Rajeev Motwani. Approximate nearest neighbor: Towards removing the curse of dimensionality. Theory of Computing , 8(14):321–350, 2012. doi: 10. 4086/toc.2012.v008a014. URL https://theoryofcomputing.org/articles/v008a014

  14. [22]

    In defense of the triplet loss for person re-identification

    Alexander Hermans, Lucas Beyer, and Bastian Leibe. In defense of the triplet loss for person re-identification. arXiv preprint arXiv:1703.07737, 2017

  15. [23]

    Scaling up visual and vision-language representation learning with noisy text supervision

    Chao Jia, Yinfei Yang, Ye Xia, Yi-Ting Chen, Zarana Parekh, Hieu Pham, Quoc Le, Yun-Hsuan Sung, Zhen Li, and Tom Duerig. Scaling up visual and vision-language representation learning with noisy text supervision. In International conference on machine learning, pages 4904–4916....

  16. [24]

    Product quantization for nearest neighbor search

    Herve Jégou, Matthijs Douze, and Cordelia Schmid. Product quantization for nearest neighbor search. IEEE Transactions on Pattern Analysis and Machine Intelligence , 33(1):117–128, 2011. doi: 10.1109/TPAMI.2010.57

  17. [25]

    Dense passage retrieval for open-domain question answering

    Vladimir Karpukhin, Barlas Oguz, Sewon Min, Patrick SH Lewis, Ledell Wu, Sergey Edunov, Danqi Chen, and Wen-tau Yih. Dense passage retrieval for open-domain question answering. In EMNLP (1), pages 6769–6781, 2020

  18. [26]

    Lending orientation to neural networks for cross-view geo- localization

    Liu Liu and Hongdong Li. Lending orientation to neural networks for cross-view geo- localization. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 5624–5633, 2019

  19. [27]

    Roberta: A robustly optimized bert pretraining approach

    Yinhan Liu. Roberta: A robustly optimized bert pretraining approach. arXiv preprint arXiv:1907.11692, 364, 2019. 11

  20. [28]

    A convnet for the 2020s

    Zhuang Liu, Hanzi Mao, Chao-Yuan Wu, Christoph Feichtenhofer, Trevor Darrell, and Saining Xie. A convnet for the 2020s. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 11976–11986, 2022

  21. [29]

    Deepfashion: Powering robust clothes recognition and retrieval with rich annotations

    Ziwei Liu, Ping Luo, Shi Qiu, Xiaogang Wang, and Xiaoou Tang. Deepfashion: Powering robust clothes recognition and retrieval with rich annotations. In Proceedings of the IEEE conference on computer vision and pattern recognition , pages 1096–1104, 2016

  22. [30]

    Deep metric learning via lifted structured feature embedding

    Hyun Oh Song, Yu Xiang, Stefanie Jegelka, and Silvio Savarese. Deep metric learning via lifted structured feature embedding. In CVPR, pages 4004–4012, 2016

  23. [31]

    Representation learning with contrastive predictive coding

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

  24. [32]

    Recall@ k surrogate loss with large batches and similarity mixup

    Yash Patel, Giorgos Tolias, and Jiˇrí Matas. Recall@ k surrogate loss with large batches and similarity mixup. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 7502–7511, 2022

  25. [33]

    Wordnet:: Similarity-measuring the relatedness of concepts

    Ted Pedersen, Siddharth Patwardhan, Jason Michelizzi, et al. Wordnet:: Similarity-measuring the relatedness of concepts. In AAAI, volume 4, pages 25–29, 2004

  26. [34]

    Rocketqa: An optimized training approach to dense passage retrieval for open-domain question answering

    Yingqi Qu, Yuchen Ding, Jing Liu, Kai Liu, Ruiyang Ren, Wayne Xin Zhao, Daxiang Dong, Hua Wu, and Haifeng Wang. Rocketqa: An optimized training approach to dense passage retrieval for open-domain question answering. arXiv preprint arXiv:2010.08191, 2020

  27. [35]

    Learning transferable visual models from natural language supervision

    Alec Radford, Jong Wook Kim, Chris Hallacy, Aditya Ramesh, Gabriel Goh, Sandhini Agarwal, Girish Sastry, Amanda Askell, Pamela Mishkin, Jack Clark, et al. Learning transferable visual models from natural language supervision. In International conference on machine learning , p...

  28. [36]

    Sentence-bert: Sentence embeddings using siamese bert- networks

    Nils Reimers and Iryna Gurevych. Sentence-bert: Sentence embeddings using siamese bert- networks. In Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing. Association for Computational Linguistics, 11 2019. URL https://arxiv.org/ abs/1908.10084

  29. [37]

    Making monolingual sentence embeddings multilingual using knowledge distillation

    Nils Reimers and Iryna Gurevych. Making monolingual sentence embeddings multilingual using knowledge distillation. In Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing. Association for Computational Linguistics, 11 2020. URL https://arxiv.o...

  30. [38]

    Contrastive learning with hard negative samples

    Joshua Robinson, Ching-Yao Chuang, Suvrit Sra, and Stefanie Jegelka. Contrastive learning with hard negative samples. arXiv preprint arXiv:2010.04592, 2020

  31. [39]

    Distilbert, a distilled version of bert: smaller, faster, cheaper and lighter

    Victor Sanh, Lysandre Debut, Julien Chaumond, and Thomas Wolf. Distilbert, a distilled version of bert: smaller, faster, cheaper and lighter. ArXiv, abs/1910.01108, 2019

  32. [40]

    Facenet: A unified embedding for face recognition and clustering

    Florian Schroff, Dmitry Kalenichenko, and James Philbin. Facenet: A unified embedding for face recognition and clustering. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 815–823, 2015

  33. [42]

    Learning to hash for indexing big data—a survey

    Jun Wang, Wei Liu, Sanjiv Kumar, and Shih-Fu Chang. Learning to hash for indexing big data—a survey. Proceedings of the IEEE, 104(1):34–57, 2015

  34. [43]

    Multi-similarity loss with general pair weighting for deep metric learning

    Xun Wang, Xintong Han, Weilin Huang, Dengke Dong, and Matthew R Scott. Multi-similarity loss with general pair weighting for deep metric learning. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , pages 5022–5030, 2019

  35. [44]

    Pytorch image models

    Ross Wightman. Pytorch image models. https://github.com/rwightman/ pytorch-image-models, 2019. 12

  36. [45]

    Wide-area image geolocalization with aerial reference imagery

    Scott Workman, Richard Souvenir, and Nathan Jacobs. Wide-area image geolocalization with aerial reference imagery. In 2015 IEEE International Conference on Computer Vision (ICCV) , pages 3961–3969, 2015. doi: 10.1109/ICCV .2015.451

  37. [46]

    Sampling matters in deep embedding learning

    Chao-Yuan Wu, R Manmatha, Alexander J Smola, and Philipp Krahenbuhl. Sampling matters in deep embedding learning. In CVPR, pages 2840–2848, 2017

  38. [47]

    Approximate nearest neighbor negative contrastive learning for dense text retrieval

    Lee Xiong, Chenyan Xiong, Ye Li, Kwok-Fung Tang, Jialin Liu, Paul Bennett, Junaid Ahmed, and Arnold Overwijk. Approximate nearest neighbor negative contrastive learning for dense text retrieval. arXiv preprint arXiv:2007.00808, 2020

  39. [48]

    Improved embeddings with easy positive triplet mining

    Hong Xuan, Abby Stylianou, and Robert Pless. Improved embeddings with easy positive triplet mining. In Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision, pages 2474–2482, 2020

  40. [49]

    Hard-aware deeply cascaded embedding

    Yuhui Yuan, Kuiyuan Yang, and Chao Zhang. Hard-aware deeply cascaded embedding. In Proceedings of the IEEE international conference on computer vision , pages 814–823, 2017

  41. [50]

    Sigmoid loss for language image pre-training

    Xiaohua Zhai, Basil Mustafa, Alexander Kolesnikov, and Lucas Beyer. Sigmoid loss for language image pre-training. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 11975–11986, 2023

  42. [51]

    Multi-camera multi-player tracking with deep player identification in sports video

    Ruiheng Zhang, Lingxiang Wu, Yukun Yang, Wanneng Wu, Yueqiang Chen, and Min Xu. Multi-camera multi-player tracking with deep player identification in sports video. Pattern Recognition, 102:107260, 2020

  43. [52]

    Vigor: Cross-view image geo-localization beyond one-to-one retrieval

    Sijie Zhu, Taojiannan Yang, and Chen Chen. Vigor: Cross-view image geo-localization beyond one-to-one retrieval. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 3640–3649, 2021

  44. [53]

    cross" and

    Sijie Zhu, Mubarak Shah, and Chen Chen. Transgeo: Transformer is all you need for cross-view image geo-localization. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 1162–1171, 2022. 13 A Appendix A.1 Datasets We briefly describe the ...

Pith tools

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