njs03332 / ml_study

3 stars 0 forks source link

2022/07/28~2022/08/03 #37

Open danbi5228 opened 2 years ago

danbi5228 commented 2 years ago

image 8/3 pm 10:30

danbi5228 commented 2 years ago

7.4.1 엑스트라 트리

랜덤포레스트와 엑스트라 트리의 차이

givitallugot commented 2 years ago

7.3 랜덤 패치와 랜덤 서브스페이스

njs03332 commented 2 years ago

7.4.2 특성 중요도

from sklearn.datasets import load_iris
iris = load_iris()
rnd_clf = RandomForestClassifier(n_estimators=500, n_jobs=-1)
rnd_clf.fit(iris["data"[, iris["target"])
for name, score in zip(iris["feature_names"], rnd_clf.feature_importances_):
    print(name, score)