We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
param_grid = [ {'preparation__num__imputer__strategy': ['mean','median', 'most_frquent'], 'feature_selection__k': list(range(1, len(feature_imp) + 1))} ]
grid_search_prep = GridSearchCV(final_pipeline,param_grid, cv=5, scoring='neg_mean_squared_error', n_jobs=-1)
grid_search_prep.fit(housing, housing_labels)
feature_importances -> feature_imp prepare_select_and_predict_pipeline -> final_pipeline으로 바꿔서 사용했습니다
다음과 같은 에러가 발샘합니다. 'NoneType' object has no attribute 'set_params'
n_jobs를 바꿔주어도 해결이 안됩니당.. 봐주시면 감사하겠습니다!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
param_grid = [
{'preparation__num__imputer__strategy': ['mean','median',
'most_frquent'],
'feature_selection__k': list(range(1, len(feature_imp) + 1))}
]
grid_search_prep = GridSearchCV(final_pipeline,param_grid,
cv=5, scoring='neg_mean_squared_error',
n_jobs=-1)
grid_search_prep.fit(housing, housing_labels)
feature_importances -> feature_imp
prepare_select_and_predict_pipeline -> final_pipeline으로 바꿔서 사용했습니다
다음과 같은 에러가 발샘합니다.
'NoneType' object has no attribute 'set_params'
n_jobs를 바꿔주어도 해결이 안됩니당.. 봐주시면 감사하겠습니다!
The text was updated successfully, but these errors were encountered: