(Scikit-learn) Graphviz를 통한 tree구조 시각화

dcafplz·2022년 11월 13일
0

Scikit-learn

목록 보기
8/10
  1. 환경설정

    1. 다운로드
      https://graphviz.org/download/
    • 설치시 자동으로 환경변수 설정됨
    1. 라이브러리 설치

      !pip install graphviz
  2. 시각화

    from sklearn.tree import export_graphviz
    from graphviz import Source
    
    graph = Source(export_graphviz(tree,
                                  feature_names=data['feature_names'],
                                  class_names=data['target_names'],
                                  rounded=True,
                                  filled=True))
    
    graph

0개의 댓글