Skip to content

Commit

Permalink
Format the indent of args list
Browse files Browse the repository at this point in the history
  • Loading branch information
Yibing Liu committed Mar 27, 2018
1 parent 8268ddc commit b6baf32
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions fluid/DeepASR/model_utils/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b6baf32

Please sign in to comment.