未验证 提交 4ac49107 编写于 作者: W wuzewu 提交者: GitHub

release 1.3.0 (#532)

* release 1.3.0

* update README
上级 47583c6f
...@@ -52,13 +52,19 @@ VisualDL 目前支持以下组件: ...@@ -52,13 +52,19 @@ VisualDL 目前支持以下组件:
可用于播放输入或生成的音频样本 可用于播放输入或生成的音频样本
### Graph ### Graph
兼容 ONNX(Open Neural Network Exchange)[https://github.com/onnx/onnx], 通过与 python SDK的结合,VisualDL可以兼容包括 PaddlePaddle, pytorch, mxnet在内的大部分主流DNN平台。 VisualDL的graph支持paddle program的展示,同时兼容 ONNX(Open Neural Network Exchange)[https://github.com/onnx/onnx],通过与 python SDK的结合,VisualDL可以兼容包括 PaddlePaddle, pytorch, mxnet在内的大部分主流DNN平台。
<p align="center"> <p align="center">
<img src="https://raw.githubusercontent.com/daming-lu/large_files/master/graph_demo.gif" width="60%" /> <img src="https://raw.githubusercontent.com/PaddlePaddle/VisualDL/develop/docs/images/graph_demo.gif" width="60%" />
</p> </p>
要进行paddle模型的展示,需要进行以下两步操作:
1. 在paddle代码中,调用`fluid.io.save_inference_model()`接口保存模型
2. 在命令行界面,使用`visualdl --model_pb [paddle_model_dir]` 加载paddle模型
### High Dimensional ### High Dimensional
用高维度数据映射在2D/3D来可视化嵌入 用高维度数据映射在2D/3D来可视化嵌入
<p align="center"> <p align="center">
......
...@@ -55,15 +55,21 @@ Image can be used to visualize any tensor or intermediate generated image. ...@@ -55,15 +55,21 @@ Image can be used to visualize any tensor or intermediate generated image.
Audio can be used to play input audio samples or generated audio samples. Audio can be used to play input audio samples or generated audio samples.
### Graph ### Graph
Graph is compatible with ONNX ([Open Neural Network Exchange](https://github.com/onnx/onnx)), VisualDL graph supports displaying paddle model, furthermore is compatible with ONNX ([Open Neural Network Exchange](https://github.com/onnx/onnx)),
Cooperated with Python SDK, VisualDL can be compatible with most major DNN frameworks, including Cooperated with Python SDK, VisualDL can be compatible with most major DNN frameworks, including
PaddlePaddle, PyTorch and MXNet. PaddlePaddle, PyTorch and MXNet.
<p align="center"> <p align="center">
<img src="https://raw.githubusercontent.com/daming-lu/large_files/master/graph_demo.gif" width="60%" /> <img src="https://raw.githubusercontent.com/PaddlePaddle/VisualDL/develop/docs/images/graph_demo.gif" width="60%" />
</p> </p>
To display the paddle model, all you have to do is:
1. call the `fluid.io.save_inference_model()`interface to save paddle model
2. use `visualdl --model_pb [paddle_model_dir]` to load paddle model in command line
### High Dimensional ### High Dimensional
High Dimensional can be used to visualize data embeddings by projecting high-dimensional data into 2D / 3D. High Dimensional can be used to visualize data embeddings by projecting high-dimensional data into 2D / 3D.
<p align="center"> <p align="center">
......
# RELEASE 1.3.0
## New Features
- Support show paddle model,user can use **paddle.fluid.io.save_inference_model()** to save their model to <SAVE_MODEL_PATH>, and then use **visualdl --model_pb <SAVE_MODEL_PATH>** to load the model
- Change the dependent version of protobuf to 3.1.0
# RELEASE 1.2.1
## New Features
- Add language Selection options. Users can use -L or --language option to select the language show in the webpage(1.2.1 only support {zh, en}, and default is en)
# RELEASE 1.2.0 # RELEASE 1.2.0
## New design ## New design
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册