def visualize_tree(tree, feature_names):
with open("dt.dot", 'w') as f:
export_graphviz(tree, out_file=f, feature_names=feature_names)
command = ["dot", "-Tpng", "dt.dot", "-o", "dt.png"]
subprocess.check_call(command)
apply_ML_Normalized.py 文件源码
python
阅读 24
收藏 0
点赞 0
评论 0
评论列表
文章目录