Here are
241 public repositories
matching this topic...
A distributed visual search and visual data analytics platform.
Updated
Jun 5, 2020
Python
Anime Scene Search by Image
Updated
Jun 11, 2020
Python
The easiest way to use deep metric learning in your application. Modular, flexible, and extensible. Written in PyTorch.
Updated
Jun 19, 2020
Python
CVPR2019 Joint Discriminative and Generative Learning for Person Re-identification
Updated
Mar 12, 2020
Python
📝 Awesome and classical image retrieval papers
Open source library for content based image retrieval / visual information retrieval.
Updated
Mar 21, 2020
Java
🌅 The code of post "Image retrieval using MatconvNet and pre-trained imageNet"
Updated
Jul 14, 2019
MATLAB
Updated
Jun 19, 2020
Python
Open source deep learning based unsupervised image retrieval toolbox built on PyTorch🔥
Updated
May 15, 2020
Python
Various hashing methods for image retrieval and serves as the baselines
Updated
Jul 14, 2019
MATLAB
🚀 CNN-based image retrieval built on Keras
Updated
Dec 26, 2018
Python
Simple image search engine
Updated
Jun 9, 2020
Python
🏞 A content-based image retrieval (CBIR) system
Updated
May 15, 2019
Python
Hardnet descriptor model - "Working hard to know your neighbor's margins: Local descriptor learning loss"
Updated
May 14, 2020
Python
Official source code of "Batch DropBlock Network for Person Re-identification and Beyond" (ICCV 2019)
Updated
Sep 4, 2019
Python
ICCV2017 Unlabeled Samples Generated by GAN Improve the Person Re-identification Baseline in vitro
Deep Learning Computer Vision Algorithms for Real-World Use
Updated
Sep 12, 2019
Python
Comparison of famous convolutional neural network models
Using siamese network to do dimensionality reduction and similar image retrieval
Updated
Jul 22, 2019
Jupyter Notebook
[ICLR-2020] Mutual Mean-Teaching: Pseudo Label Refinery for Unsupervised Domain Adaptation on Person Re-identification.
Updated
Apr 2, 2020
Python
Class-Weighted Convolutional Features for Image Retrieval (BMVC 2017)
Updated
Apr 19, 2019
Python
Supervised Semantics-preserving Deep Hashing (TPAMI18)
This Telegram Bot can tell the anime when you send an screenshot to it
Updated
May 13, 2020
JavaScript
Updated
Aug 29, 2019
MATLAB
Scene search On Liresolr for Animation. (and video)
Updated
Jun 8, 2020
JavaScript
PyTorch Implementation of "Large-Scale Image Retrieval with Attentive Deep Local Features"
Updated
Mar 11, 2019
Jupyter Notebook
Code and weights for local feature affine shape estimation paper "Repeatability Is Not Enough: Learning Discriminative Affine Regions via Discriminability"
Updated
Apr 10, 2020
Python
Simple image retrival on deep-fashion dataset with pytorch - A course project
Updated
Jan 26, 2018
Python
Improve this page
Add a description, image, and links to the
image-retrieval
topic page so that developers can more easily learn about it.
Curate this topic
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."
Learn more
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.
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?