Right now, I'm using IMDB data on my regression model, to predict IMDB value. But, On my regression (Linear regression), I couldn't able to get the accuracy score
Look at my code:
metrics.accuracy_score(test_y, linear_predicted_rating)
The error message that I'm getting:
ValueError: continuous is not supported
I can able to get an r2 score without any error if I change the line to:
metrics.r2_score(test_y,linear_predicted_rating)
Anyone, please help me?