We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
spark-movie-lens/engine.py", line 80, in get_top_ratings user_unrated_movies_rdd = self.movies_rdd.filter(lambda rating: not rating[1] == user_id)\
AttributeError: RecommendationEngine instance has no attribute 'movies_rdd'
The text was updated successfully, but these errors were encountered:
I think that should be RDD. How can I make a pull request for commit?
Sorry, something went wrong.
Ran into this issue as well. Renamed user_unrated_movies_rdd to user_unrated_movies_RDD on line 80 of engine.py and this solved the issue locally.
No branches or pull requests
spark-movie-lens/engine.py", line 80, in get_top_ratings
user_unrated_movies_rdd = self.movies_rdd.filter(lambda rating: not rating[1] == user_id)\
AttributeError: RecommendationEngine instance has no attribute 'movies_rdd'
The text was updated successfully, but these errors were encountered: