You train a ridge regression model, you get a R^2 of 1 on your training data and you get a R^2 of 0 on your validation data; what should you do?
1 point
Your model is overfitting, so increase the parameter alpha
Your model is under fitting; so perform a polynomial transform
Nothing, your model performs flawlessly on your validation data
Answers
Answer:
You should see that the optimal value of alpha is 20, with a negative MSE of -3.07267. This is a slight improvement upon the basic multiple linear regression.
Explanation:
Please I beg you mark me the brainliest
Answer:
A regression model that uses L1 regularization technique is called Lasso Regression and model which uses L2 is called Ridge Regression.
Explanation:
From the above question,
They have given :
A regression model that uses L1 regularization technique is called Lasso Regression and model which uses L2 is called Ridge Regression. The key difference between these two is the penalty term. Ridge regression adds “squared magnitude” of coefficient as penalty term to the loss function.
Your model is overfitting, so increase the parameter alpha. A of 1 on the training data indicates that the model is fitting the training data perfectly, but a of 0 on the validation data suggests that the model is not generalizing well to new data.
Increasing the regularization parameter alpha in ridge regression helps to reduce overfitting and improve the model's ability to generalize to new data.
A regression model that uses L1 regularization technique is called Lasso Regression and model which uses L2 is called Ridge Regression.
For more such related questions : https://brainly.in/question/32667309
#SPJ3