-
Updated
Jul 26, 2020 - Python
image-retrieval
Here are 274 public repositories matching this topic...
-
Updated
Oct 20, 2020 - PHP
-
Updated
Oct 31, 2020 - Python
-
Updated
Nov 1, 2020 - Python
-
Updated
Oct 12, 2020 - Python
-
Updated
Oct 20, 2020
-
Updated
Mar 12, 2020 - Python
-
Updated
Nov 3, 2020 - Python
-
Updated
Mar 21, 2020 - Java
-
Updated
Nov 3, 2020 - Python
-
Updated
Aug 10, 2020 - Python
-
Updated
Jul 14, 2019 - MATLAB
-
Updated
Jul 14, 2019 - MATLAB
-
Updated
Sep 7, 2020 - Python
-
Updated
Sep 21, 2020 - Python
-
Updated
Sep 15, 2020 - Python
-
Updated
Sep 12, 2019 - Python
-
Updated
Sep 4, 2019 - Python
-
Updated
Jul 1, 2020 - Python
-
Updated
May 8, 2020 - Cuda
-
Updated
Jun 9, 2019
-
Updated
Jul 22, 2019 - Jupyter Notebook
-
Updated
Oct 31, 2020 - JavaScript
-
Updated
Oct 28, 2020 - Python
-
Updated
Nov 3, 2020 - JavaScript
-
Updated
Apr 19, 2019 - Python
-
Updated
Mar 11, 2019 - Jupyter Notebook
-
Updated
Oct 20, 2020 - MATLAB
Improve this page
Add a description, image, and links to the image-retrieval topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the image-retrieval topic, visit your repo's landing page and select "manage topics."


It seems that you used different criteria during training and testing as the code below shows:
IN TEST:
scores = np.dot(vecs.T, qvecs)
IN TRAIN:
dif = x1 - x2
D = torch.pow(dif+eps, 2).sum(dim=0).sqrt()
I did not get it why you do so?