#問題
lightGBMの学習したモデルを.plot_tree()
または.create_tree_digraph()
で表示する際に
ImportError: You must install graphviz to plot tree.
と表示されてしまいます.
現状
graphviz
は本体brew install graphviz
で,pythonモジュールをpip install graphviz
でインストール済みです.
また,こちらのページにあるようなgraphviz
の動作確認はできました.
しかし,なぜかlightGBMモジュール内の関数からアクセスしようとするとインポートができないようです.
詳しいエラー文
エラーを詳しくみると以下のようになっていました.
原因がわかるかた,よろしくお願いいたします....!!!!
ImportError Traceback (most recent call last) <ipython-input-127-4696bcacdc34> in <module> ----> 1 lgb.create_tree_digraph(model) ~/OneDrive/research/lab_env/lib/python3.7/site-packages/lightgbm/plotting.py in create_tree_digraph(booster, tree_index, show_info, precision, old_name, old_comment, old_filename, old_directory, old_format, old_engine, old_encoding, old_graph_attr, old_node_attr, old_edge_attr, old_body, old_strict, **kwargs) 541 show_info = [] 542 --> 543 graph = _to_graphviz(tree_info, show_info, feature_names, precision, monotone_constraints, **kwargs) 544 545 return graph ~/OneDrive/research/lab_env/lib/python3.7/site-packages/lightgbm/plotting.py in _to_graphviz(tree_info, show_info, feature_names, precision, constraints, **kwargs) 384 from graphviz import Digraph 385 else: --> 386 raise ImportError('You must install graphviz to plot tree.') 387 388 def add(root, total_count, parent=None, decision=None): ImportError: You must install graphviz to plot tree.
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。