deep_sort_pytorch
deep_sort_pytorch copied to clipboard
evaluate.py.
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.
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.