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?
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.
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?