HashNet icon indicating copy to clipboard operation
HashNet copied to clipboard

Code release for "HashNet: Deep Learning to Hash by Continuation" (ICCV 2017)

Results 14 HashNet issues
Sort by recently updated
recently updated
newest added

Hi, I have difficult in understanding the pairwise loss in your pytorch code. Particularly, 1. I can not relate it to the Equation (4) in the paper. What is the...

I run PyTorch HashNet with the below parameters, I just change the backbone network to AlexNet for comparing this code result with the original paper. dataset: coco net: AlexNet lr:...

Hi, I've tried to use HashNet to Fine-grained recognition, so I adopted the PyTorch code to CUB200 dataset with finetuned ResNet50, but I can't make the loss converge. I've tried...

Hi, first really appreciate for sharing codes. I have a question about the experimental settings. in your paper, experimental settings for imagenet is > We randomly select 100 categories, use...

hi, I just found out, that all images in the query list are also in the database list, which is not allowed for fair validation. thanks

Hi! I'm looking to do inference only, and not retrain. Would anybody be willing to share their model parameters that was trained on ImageNet or similar full size images? (Preferably...

I change the network to resnet50 in the pytorch version HashNet, and i can not produce acceptable map on CUB dataset. I have tried some fine tuning, and the best...

Hi authors, in the paper, you mention that nuswide "use the subset of 195,834 images that are associated with the 21 most frequent concepts", but i saw vector with size...

I can't download this dataset. May I have a copy, please

@bfan @caozhangjie I add the weight in pytorch version(without c). ``` def pairwise_loss(outputs1,outputs2,label1,label2): similarity = Variable(torch.mm(label1.data.float(), label2.data.float().t()) > 0).float() dot_product = torch.mm(outputs1, outputs2.t()) #exp_product = torch.exp(dot_product) mask_positive = similarity.data >...