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
This line : top_similar_user_ratings.extend([global_avg_rating[movie]] * (5 - len(ratings)))
should be top_similar_user_ratings.extend([global_avg_rating[movie]] * (5 - len(top_similar_user_ratings)))
Because len(ratings) is a const large value here which is not right.