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
Currently, the example code looks like:
my_movie = sc.parallelize([(0, 500)]) # Quiz Show (1994) individual_movie_rating_RDD = new_ratings_model.predictAll(new_user_unrated_movies_RDD) individual_movie_rating_RDD.take(1)
Should it be this ...?
my_movie = sc.parallelize([(0, 500)]) # Quiz Show (1994) individual_movie_rating_RDD = new_ratings_model.predictAll(my_movie) individual_movie_rating_RDD.collect()
The text was updated successfully, but these errors were encountered:
I think so. It should be individual_movie_rating_RDD = new_ratings_model.predictAll(my_movie)
Sorry, something went wrong.
No branches or pull requests
Currently, the example code looks like:
Should it be this ...?
The text was updated successfully, but these errors were encountered: