deep_sort_pytorch icon indicating copy to clipboard operation
deep_sort_pytorch copied to clipboard

evaluate.py.

Open joaquinCaceres opened this issue 4 years ago • 1 comments

I don't understand the evaluate.py script. What is the end of this code line --> scores = qf.mm(gf.t()) ?

I don`t know why do you multiply arrays.

joaquinCaceres avatar Nov 27 '20 08:11 joaquinCaceres

qf has query feature vectors and gf has gallery feature vectors. Multiplication of these two results a new matrix. The element i,j of this matrix represents cosine similarity between ith query image and jth gallery images.

h-enes-simsek avatar Feb 13 '21 15:02 h-enes-simsek