Introduction

  1. 以前的哈希算法仅仅利用原始空间数据的相似度信息,本文的算法尝试将原始空间的排序关系映射到的低纬度的汉明空间中;
  2. approach constructs a directed, unweighted ordinal graph to capture the original relation among data points, upon which
    we learn hash functions via a novel stochastic gradient decreasing (SGD) algorithm

Preliminaries

论文-《Towards Optimal Binary Code Learning via Ordinal Embedding》


OEH

构造一个有向的无权中的图G,图中每个点表示2个数据之间的不相似度,邮有向边表示4个数据点之间的排序关系。论文【construct a directed unweighted graph G = (V; E) = [n^4], where each node vij ⊆ V represents the dissimilarity degree between the i-th and the j-th sample, and each directed edge e(i;j;k;l)2C = (vij ! vkl) ⊆ E represents δij < δkl】

哈希函数:

 

待续...

 

相关文章:

  • 2022-01-19
  • 2021-12-09
  • 2021-10-26
  • 2021-11-08
  • 2022-12-23
  • 2021-06-07
  • 2022-12-23
  • 2021-04-17
猜你喜欢
  • 2021-06-25
  • 2021-07-24
  • 2021-10-21
  • 2021-12-31
  • 2021-09-03
  • 2021-10-16
  • 2021-11-02
相关资源
相似解决方案