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/
나같이 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 들을 죽 생산해볼 수 있을것이다.
'컴퓨터' 카테고리의 다른 글
[메디스태프 강의] ML 모델을 (웹)앱으로 만들기 (2) | 2021.10.31 |
---|---|
슬라이드 스캐너 파일 Crop & Export (tif) (2) | 2021.09.01 |
NCP 서버 이전 기록 (0) | 2020.04.07 |
Flutter easy_localization package사용법 (0) | 2020.03.28 |
OpenCV4를 이용, MacOS app만들기 (catalina) (0) | 2019.10.31 |