In content based filtering, using two nuerol networks to predict user’s movie preference is a cool example.
I have some technical quesitons in two networks, in the end you have V_u and V_m vectors and take inner product.
However, when Ng recommends finding similar movies, he recommends ||V_u - V_m||^2 as a metrics to find similar movies. I think that both are legitimate metrics, but I feel that the inner products to find similarity is more appropriate.
Can you comment on why we don’t use inner product when we want similar movies?
||V_m^k - V_m^i||**2 vs np.dot(V_m^k , V_m^i).
Thanks,
