We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
from sklearn import * model = linear_model.LinearRegression(n_jobs=8) %time cross_validation.cross_val_score(model, feature, label, scoring='mean_absolute_error')
Out[16]: array([-0.13273084, -0.13613474, -0.13891673])
The text was updated successfully, but these errors were encountered:
Its been discussed before (#5023). Those scores are -1*MAE. All of the loss metrics get negated.
Sorry, something went wrong.
this is fixed now.
No branches or pull requests
from sklearn import *
model = linear_model.LinearRegression(n_jobs=8)
%time cross_validation.cross_val_score(model, feature, label, scoring='mean_absolute_error')
Out[16]: array([-0.13273084, -0.13613474, -0.13891673])
The text was updated successfully, but these errors were encountered: