Our Community is getting an upgrade! To get everything ready for the relaunch, we’ll be placing the site in read-only mode starting September 21st.
We really appreciate your understanding while we get things set up behind the scenes. Catch up on all the exciting details about the move here.
Need help or have questions? Drop us a line at [email protected]
Created on 11-11-2017 10:16 AM - edited 08-17-2019 11:54 PM
When i try to run RatingsBreakdown.py i found this error, please rectify the error formed
Created 11-12-2017 06:48 AM
Check this line in your code
RatingsBreakdown.py line 12, in mapper_get_ratings
(userID, movieID, rating, timestamp ) = line.split('\t')
The line should have exactly 4 values else you may get the issue 'ValueError: need more than 2 values to unpack' . Check the input or add a validation
if len(line.split('\t')) == 4:
(userID, movieID, rating, timestamp ) = line.split('\t')
Created 11-12-2017 05:27 AM
please reply community, i need your help
Created 11-12-2017 06:48 AM
Check this line in your code
RatingsBreakdown.py line 12, in mapper_get_ratings
(userID, movieID, rating, timestamp ) = line.split('\t')
The line should have exactly 4 values else you may get the issue 'ValueError: need more than 2 values to unpack' . Check the input or add a validation
if len(line.split('\t')) == 4:
(userID, movieID, rating, timestamp ) = line.split('\t')