From 0d25e273132ca8d51fd03c44fc2bff4019774b50 Mon Sep 17 00:00:00 2001 From: Jeff Wang Date: Tue, 27 Feb 2018 15:27:04 -0800 Subject: [PATCH] Graph viz set up (#282) * Include the Graph requirement, GraphViz` in docs. * Provide information to the ONNX format model export. * Ask the user to download Graphviz via the website instead of brew. --- README.cn.md | 2 ++ README.md | 3 +++ docs/quick_start_cn.md | 5 +++++ docs/quick_start_en.md | 5 +++++ 4 files changed, 15 insertions(+) diff --git a/README.cn.md b/README.cn.md index fec96303..265d8067 100644 --- a/README.cn.md +++ b/README.cn.md @@ -130,6 +130,8 @@ board 还支持一下参数来实现远程的访问: - `--port` 设定端口 - `--model_pb` 指定 ONNX 格式的模型文件 +VisualDL的图形系统采用` GraphViz `来可视化ONNX格式模型。 +请安装 [GraphViz](https://www.graphviz.org/download/)确保VisualDL图形系统可以启动 ### 贡献 diff --git a/README.md b/README.md index 0599ce41..70b6714d 100644 --- a/README.md +++ b/README.md @@ -142,6 +142,9 @@ Board also supports the parameters below for remote access: - `--port` set port - `--model_pb` specify ONNX format for model file +The VisualDL Graphing system uses `GraphViz` to visualize the ONNX model. To enable the VisualDL Graph feature, +please install [GraphViz](https://www.graphviz.org/download/) + ### How to install from pypi ``` pip install --upgrade visualdl diff --git a/docs/quick_start_cn.md b/docs/quick_start_cn.md index 2730aecb..0902b95d 100644 --- a/docs/quick_start_cn.md +++ b/docs/quick_start_cn.md @@ -89,3 +89,8 @@ visualDL --logdir somedir --model_pb

+ +请参阅 [ONNX教程](https://github.com/onnx/tutorials)如何出口ONNX格式模型。 + +VisualDL的图形系统采用` GraphViz `来可视化ONNX格式模型。 +请安装 [GraphViz](https://www.graphviz.org/download/)确保VisualDL图形系统可以启动 diff --git a/docs/quick_start_en.md b/docs/quick_start_en.md index 5adb9d11..5cf3ff05 100644 --- a/docs/quick_start_en.md +++ b/docs/quick_start_en.md @@ -97,3 +97,8 @@ For example, for the MNIST dataset, Graph component can render model graph as be

+ +Please consult [ONNX tutorials](https://github.com/onnx/tutorials) on how to export the ONNX format model. + +The VisualDL Graphing system uses `GraphViz` to visualize the ONNX model. To enable the VisualDL Graph feature, +please install [GraphViz](https://www.graphviz.org/download/). -- GitLab