ducha-aiki commited on
Commit
dc71efe
·
verified ·
1 Parent(s): 18bea12

Update README

Browse files
Files changed (1) hide show
  1. README.md +39 -0
README.md ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - kornia
5
+ - feature-description
6
+ - patch-descriptor
7
+ ---
8
+
9
+ # kornia/hynet
10
+
11
+ Pretrained weights for **HyNet**,
12
+ used by [`kornia.feature.HyNet`](https://kornia.readthedocs.io/en/latest/feature.html).
13
+
14
+ HyNet is a 128-dimensional patch descriptor that replaces batch normalisation with
15
+ Filter Response Normalisation and trains with a hybrid similarity measure combining
16
+ L2 distance and cosine similarity under a triplet margin loss. NeurIPS 2020.
17
+
18
+ **Original repo:** [yuruntian/HyNet](https://github.com/yuruntian/HyNet)
19
+
20
+ ## Weights
21
+
22
+ | File | Training data |
23
+ |------|--------------|
24
+ | `HyNet_LIB.pth` | Liberty |
25
+ | `HyNet_ND.pth` | Notre Dame |
26
+ | `HyNet_YOS.pth` | Yosemite |
27
+
28
+ ## Citation
29
+
30
+ ```bibtex
31
+ @inproceedings{hynet2020,
32
+ author = {Tian, Yurun and Barroso Laguna, Axel and Ng, Tony
33
+ and Balntas, Vassileios and Mikolajczyk, Krystian},
34
+ title = {{HyNet}: Learning Local Descriptor with Hybrid Similarity
35
+ Measure and Triplet Loss},
36
+ booktitle = {NeurIPS},
37
+ year = {2020}
38
+ }
39
+ ```