VIE icon indicating copy to clipboard operation
VIE copied to clipboard

meaning of val_log result

Open kinfeparty opened this issue 4 years ago • 5 comments

Hello I got some result on the dataset.

topn: {'top1_10NN': 0.080424786} I know it's not the accuracy. I read your paper,but don't know the meaning of Nearest neighbor validation performances.

What does it mean?

kinfeparty avatar Sep 02 '20 11:09 kinfeparty

This nearest neighbor validation is done by getting 5 clips from one validation video, finding 10 nearest neighbor for each clip separately in the memory bank of the training videos, combining the lables of these 10 neighbors in a weighted manner (see Instance Discrimination paper for details) to get class probabilities for one clip, and finally averaging the class prababilities across all 5 clips chosen.

chengxuz avatar Sep 02 '20 17:09 chengxuz

Just added this explanation into the document.

chengxuz avatar Sep 02 '20 17:09 chengxuz

And may I know the result of transfer learning result? such as top1_5,top1_7. wha's the meaning of the 5 or 7?

kinfeparty avatar Sep 04 '20 13:09 kinfeparty

ResNet-18 has 9 "layers": the first convolution-pooling layer, and the remaining eight residual blocks. top1_5 means reading out from 5th layer (CONV3 in the paper), top1_7 means reading out from 7th layer (CONV4 in the paper). You should also see a top1_9, that's reading out from the top layer (CONV5 in the paper). I will also add this to the document, thanks for asking.

chengxuz avatar Sep 04 '20 20:09 chengxuz

Thanks for the answering.

kinfeparty avatar Sep 05 '20 03:09 kinfeparty