From 2695d96fb1e04bb2d0266e5fcf8c5833ad57509d Mon Sep 17 00:00:00 2001 From: qiaolongfei Date: Mon, 4 Sep 2017 08:59:19 -0700 Subject: [PATCH] typo --- doc/design/var_desc.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/design/var_desc.md b/doc/design/var_desc.md index f39daa125f..5286f0a482 100644 --- a/doc/design/var_desc.md +++ b/doc/design/var_desc.md @@ -4,7 +4,7 @@ PaddlePaddle divides the description of neural network computation graph into tw PaddlePaddle use proto message to describe compile time graph for 1. Computation graph should be able to be saved to a file. -1. In distributed trianing, graph will be serialized and send to multiple workers. +1. In distributed training, the graph will be serialized and send to multiple workers. The computation graph is constructed by Data Node and Operation Node. The concept to represent them is in the table below. @@ -40,7 +40,7 @@ message LoDTensorDesc { } Type data_type = 1; - repeated int dims = 2; // [UNK, 6000] is saved as [-1, 6000] + repeated int dims = 2; // [UNK, 640, 480] is saved as [-1, 640, 480] optional int lod_level [default=0] = 3; } ``` @@ -78,7 +78,7 @@ class Variable(object): return self._var.data_type() ``` -Then we can use this Variable to create an fc layer in Python. +Then we can use this Variable to create a fc layer in Python. ```python import paddle as pd -- GitLab