From b6baf323b376eb26b0c098651dcdd79dc404c604 Mon Sep 17 00:00:00 2001 From: Yibing Liu Date: Mon, 26 Mar 2018 18:33:54 -0700 Subject: [PATCH] Format the indent of args list --- fluid/DeepASR/model_utils/model.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/fluid/DeepASR/model_utils/model.py b/fluid/DeepASR/model_utils/model.py index e138783c..8fb7596e 100644 --- a/fluid/DeepASR/model_utils/model.py +++ b/fluid/DeepASR/model_utils/model.py @@ -21,13 +21,13 @@ def stacked_lstmp_model(frame_dim, label data respectively. And in inference, only `feature` is needed. Args: - frame_dim(int): The frame dimension of feature data. - hidden_dim(int): The hidden state's dimension of the LSTMP layer. - proj_dim(int): The projection size of the LSTMP layer. - stacked_num(int): The number of stacked LSTMP layers. - parallel(bool): Run in parallel or not, default `False`. - is_train(bool): Run in training phase or not, default `True`. - class_dim(int): The number of output classes. + frame_dim(int): The frame dimension of feature data. + hidden_dim(int): The hidden state's dimension of the LSTMP layer. + proj_dim(int): The projection size of the LSTMP layer. + stacked_num(int): The number of stacked LSTMP layers. + parallel(bool): Run in parallel or not, default `False`. + is_train(bool): Run in training phase or not, default `True`. + class_dim(int): The number of output classes. """ # network configuration -- GitLab