ID3 알고리즘
-
ID3 모델 구현_Python머신러닝(MACHINE LEARNING)/간단하게 이론(Theory...) 2021. 4. 26. 14:08
저번에 살펴본 ID3 모델을 이제는 Python으로 간략히 구현해보자. 혹시나 ID3모델이 무엇인지 모른다면 , 저번 포스팅을 참고해보자 https://guru.tistory.com/entry/Decision-Tree-%EC%97%90%EC%84%9C%EC%9D%98-ID3-%EC%95%8C%EA%B3%A0%EB%A6%AC%EC%A6%98 Decision Tree 에서의 ID3 알고리즘 Decision Tree 란 ??? A decision treeis a decision support tool that uses a tree-like model of decisions and their possible consequences, including chance event outcomes, resource co..
-
Decision Tree 에서의 ID3 알고리즘머신러닝(MACHINE LEARNING)/간단하게 이론(Theory...) 2021. 4. 25. 00:12
Decision Tree 란 ??? A decision treeis a decision support tool that uses a tree-like model of decisions and their possible consequences, including chance event outcomes, resource costs, and utility. It is one way to display an algorithm that only contains conditional control statements. - Decision tree - Wikipedia - - Decision Tree의 정의를 살펴보면, 트리모양으로 모델링 된, 비용과 결과등을 종합하여, 결정을 내리는 도구라 할 수 있겠다. Deci..