You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The predict function that receives new_user_unrated_movies_RDD:
# Use the input RDD, new_user_unrated_movies_RDD, with new_ratings_model.predictAll() to predict new ratings for the moviesnew_user_recommendations_RDD=new_ratings_model.predictAll(new_user_unrated_movies_RDD)
The text was updated successfully, but these errors were encountered:
The list of unrated movies contains duplicates:
Should there be a distinct added?
The predict function that receives new_user_unrated_movies_RDD:
The text was updated successfully, but these errors were encountered: