988 views

Please log in or register to answer this question.

Related questions

2 2 votes
0 0 answers
676
676 views
1 1 vote
1 1 answer
2.4k
2.4k views
1 1 vote
0 0 answers
519
519 views
1 1 vote
1 answers 1 answer
5.1k
5.1k views
tofighi asked Feb 18, 2020
5,075 views
Assuming we have a linear regression equation and some data points (sample), how can we calculate residual error for each data point, and total cost based on the metrics ...
1 1 vote
1 1 answer
2.0k
2.0k views
asifsundrani asked Jul 3, 2019
1,977 views
def cross_val_score(estimator,X,y,scoring,cv): scores=cross_val_score scores_rmse=np.sqrt(-scores) print('Scores: ',scores_rmse) print("Mean:", scores_rms...