import kfold
from sklearn.model_selection import KFold
sklearn kfold
from sklearn.model_selection import GridSearchCV
from sklearn.model_selection import KFold
# Regressor
lrg = LinearRegression()
#Param Grid
param_grid=[{
'normalize':[True, False]
}]
# Grid Search with KFold, not shuffled in this example
experiment_gscv = GridSearchCV(lrg, param_grid,
cv=KFold(n_splits=4, shuffle=False),
scoring='neg_mean_squared_error')
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us