Mingzhe

Results 23 comments of Mingzhe

Hi, thanks for the reply. What do you mean by mentioning transferring cosine similarity to euclidean distance in the reranking code? I read your paper and cosine distance is always...

Thanks for the reply. Maybe it will be better to try to transform the cosine similarity to euclidean distance first. BTW, do we need an additional square operation [here](https://github.com/layumi/Person_reID_baseline_pytorch/blob/master/re_ranking.py#L48)?

Does the tracking speed have something to do with the detector? I tried with YoloV5 and got a faster tracking result.

Same question here... I also don't know why we need a classifier after having n-dim features for matching.

I am thinking of the embedding dim for the Reid model. Since the mainstream model is ResNet-50, is it okay to have a 2048-dim vector as feature? (However we only...

@AutumnZ-94 Try this. They should be the same ```python x = torch.randn(32, 64) y1 = x.mean(0).sum() y2 = x.sum(1).mean() assert torch.allclose(y1, y2) ```

Does it mean the loss is actually has nothing to do with the label? Like -1 for a fake image.

> > after debug a lot I found this code is not wrong, but confusing > > ```python > > errD_real = netD(inputv) > > errD_real.backward(one) > > > >...