H2O model (tree) 이미지로 출력하기

2021. 3. 16. 11:29컴퓨터

Documentation에서는 h2o에서 지원하는 H2OTree library를 이용하는것을 기본으로 하고 있다.

하지만 나는 mojo file을 import해서 하는 상황인데, the model is not a tree 에러가 계속 발생하여서 진행을 못하였다.

혹시 이렇게 H2OTree library가 이용이 가능하다면 이것이 더욱 추천되는 방법으로 생각된다 

 

www.h2o.ai/blog/finally-you-can-plot-h2o-decision-trees-in-r/

 

Finally, You Can Plot H2O Decision Trees in R | H2O.ai

January 15, 2019 | Data Science, Machine Learning, R, Technical, Technical Posts, Tutorials | Finally, You Can Plot H2O Decision Trees in R

www.h2o.ai

 

나같이 mojo파일로 이미 export. 되어있고 위의 방법이 잘 안된다면

아래 방법을 이요해볼 수 있다

 

# Now download the latest stable h2o release from http://www.h2o.ai/download/

# and run the PrintMojo tool from the command line.

#

# (For MacOS: brew install graphviz)

java -cp h2o.jar hex.genmodel.tools.PrintMojo --tree 0 -i model.zip -o model.gv -f 20 -d 3

dot -Tpng model.gv -o model.png

open model.png

 

 

맥의 경우 간단히 for loop으로 tree 들을 죽 생산해볼 수 있을것이다.