학습 목표
- RamdomSearchCV로 하이퍼 파라미터를 찾는 방법을 이해할 수 있다.
핵심 키워드
- RandomizedSearchCV
- append()
학습하기
학습 목표
- RamdomSearchCV로 하이퍼 파라미터를 찾는 방법을 이해할 수 있다.
핵심 키워드
- RandomizedSearchCV
- append()
학습하기
학습내용
results = []
for estimator in estimators:
result = []
result.append(estimator.__class__.__name__)
results.append(result)
results
from sklearn.model_selection import RandomizedSearchCV
max_depth = np.random.randint(2, 20, 10)
max_features = np.random.uniform(0.3, 1.0, 10)
param_distributions = {"max_depth": max_depth,
"max_features": max_features}
results = []
for estimator in estimators:
result = []
if estimator.__class__.__name__ != 'DecisionTreeClassifier':
param_distributions["n_estimators"] = np.random.randint(100, 200, 10)
clf = RandomizedSearchCV(estimator,
param_distributions,
n_iter=100,
scoring="accuracy",
n_jobs=-1,
cv=5,
verbose=2
)
clf.fit(X_train, y_train)
result.append(estimator.__class__.__name__)
result.append(clf.best_params_)
result.append(clf.best_score_)
result.append(clf.score(X_test, y_test))
result.append(clf.cv_results_)
results.append(result)
df = pd.DataFrame(results,
columns=["estimator", "best_params", "train_score", "test_score", "cv_result"])
df
pd.DataFrame(df.loc[1, "cv_result"]).sort_values(by="rank_test_score")