open-reid
open-reid copied to clipboard
Open source person re-identification library in python
Hi there, Thank you for the code! While training the ResNet50 model using the market1501 dataset, I got the following Runtime error: ``` Traceback (most recent call last): File "examples/triplet_loss.py",...
Hi, I keep getting the below error when I try to run triplet_loss.py. The script is run as following: > _**python examples/triplet_loss.py -d dukemtmc -b 64 -j 2 -a resnet50...
When I use Oim Loss to train the model, In the fisrt several iterations, loss performs normally and reduce with the epoch increasing. But the loss suddenly became to 'NAN'...
Hi since im running code on cpu windows 10 and disabled cuda() but still getting cuda error. here is the trace, please help me to resolve. Traceback (most recent call...
a = torch.tensor([[0.9, 0.01],[0.8,0.02],[-2.3, -2.4], [-2.4, -1.5]]) #gallery print(a.size()) b = torch.tensor([[2.1, 0.4],[-2.1,-3.2],[-2.2,-0.3]]) #query print(b.size()) dismat = torch.cdist(b, a) print(dismat) m,n=dismat.shape Result torch.Size([4, 2]) torch.Size([3, 2]) tensor([[1.2618, 1.3544, 5.2154, 4.8847],...
OIM loss
Why in the OIM loss we need to define the class OIM which extends Function class ? Normally pytorch does the backward for us, so we don't need to write...
TypeError: Can't instantiate abstract class Euclidean with abstract methods get_metric, score_pairs
I follow your steps ,but I don't know how to deal with this problem,
Hi i think that viper is missing , could i find another site to download viper
I test the examples/oim_loss.py with python examples/oim_loss.py -d cuhk01 -b 2 -j 0 -a resnet50 --logs-dir logs/softmax-loss/cuhk01-resnet50. And I got the model.module.num_features 2048 ,but when I run the resnet.py in...
Hello! How much video memory do I need to train this program? I only have an 11G video card, but I trained 1 epoch and automatically stopped. Is there insufficient...