Andrew explain an the end that Collaborative filtering algorithm and its cost Function does not fit well with TensorFlow , Can some one expand more on why it does not fit well.
When TensorFlow can do linear and logistic regression well, isn’t this just an extension with a complex cost Fn?
@Venkat_Subramani I honestly have not taken this particular class so can’t speak to what Prof. Ng is saying here (I took my ML classes elsewhere)-- But my guess is perhaps he means the cost function you have been using thus far. For example SVD (Singular Value Decomposition) and Matrix Factorization methods tend to work better on the sparse (think ‘swiss cheese’) structure of recommender systems than other linear methods.
So, otherwise you can do recommenders with TF. They even have a library for it.
The videos talk about using TF tools for AutoDiff for calculating the derivatives.
In the last part of video , Andrew tells traditional tf.fit and tf.predict are not used .
10:00 min of this video:
Interestingly @Nevermnd pasted a TF link which use fit and predict.
Fair Warning: I looked at the code, not fully grasped it.