From 4177e805453253b472d1cbaea826020cdb3caff9 Mon Sep 17 00:00:00 2001 From: Yibing Liu Date: Wed, 27 Dec 2017 07:43:41 +0000 Subject: [PATCH] Add line feed character in the doc of cross_entropy --- python/paddle/v2/fluid/layers/nn.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/paddle/v2/fluid/layers/nn.py b/python/paddle/v2/fluid/layers/nn.py index b11fd07e7ed..6e7145966f3 100644 --- a/python/paddle/v2/fluid/layers/nn.py +++ b/python/paddle/v2/fluid/layers/nn.py @@ -403,8 +403,8 @@ def cross_entropy(input, label, **kwargs): A 2-D tensor with shape [N x 1], the cross entropy loss. Raises: - `ValueError`: 1) If the 1st dimension of `input` and `label` are not equal; 2) If - `soft_label == true`, and the 2nd dimension of `input` and `label` are not + `ValueError`: 1) If the 1st dimension of `input` and `label` are not equal; 2) If \ + `soft_label == true`, and the 2nd dimension of `input` and `label` are not \ equal; 3) If `soft_label == false`, and the 2nd dimension of `label` is not 1. Examples: -- GitLab