aadeshnpn / OSDN

Keras implementation for the research paper "Towards Open Set Deep Networks" A Bendale, T Boult, CVPR 2016
GNU Lesser General Public License v3.0
75 stars 21 forks source link

distance #5

Open AvrahamTs opened 4 years ago

AvrahamTs commented 4 years ago

why the euclide-cosine distance is calculated as: euclidean(mean_feature, feat)/200. + cosine(mean_feature, feat) ? How did you decide on the factor 1/200?

aadeshnpn commented 3 years ago

Thanks @AvrahamTs . This code was a port from original paper implementation. In the authors original implementation, they used the factor 1/200 and I am just using that factor. Hope this helps.