Skip to content

Commit

Permalink
[DOCSTRING]missing function parameters updated (#5228)
Browse files Browse the repository at this point in the history
  • Loading branch information
siju-samuel authored Apr 3, 2020
1 parent 316ce05 commit 3c2aa1a
Showing 1 changed file with 26 additions and 2 deletions.
28 changes: 26 additions & 2 deletions python/tvm/relay/op/nn/nn.py
Original file line number Diff line number Diff line change
Expand Up @@ -475,8 +475,8 @@ def log_softmax(data, axis=-1):
data: tvm.relay.Expr
The input data to the operator.
axis: int
The axis to sum over when computing softmax
axis: int, optional
The axis to sum over when computing log softmax
Returns
-------
Expand Down Expand Up @@ -510,6 +510,9 @@ def max_pool1d(data,
data : tvm.relay.Expr
The input data to the operator.
pool_size : int or tuple of int, optional
The size of window for pooling.
strides : int or tuple of int, optional
The strides of pooling.
Expand Down Expand Up @@ -567,6 +570,9 @@ def max_pool2d(data,
data : tvm.relay.Expr
The input data to the operator.
pool_size : int or tuple of int, optional
The size of window for pooling.
strides : tuple of int, optional
The strides of pooling.
Expand Down Expand Up @@ -612,6 +618,9 @@ def max_pool3d(data,
data : tvm.relay.Expr
The input data to the operator.
pool_size : int or tuple of int, optional
The size of window for pooling.
strides : tuple of int, optional
The strides of pooling.
Expand Down Expand Up @@ -658,6 +667,9 @@ def avg_pool1d(data,
data : tvm.relay.Expr
The input data to the operator.
pool_size : int or tuple of int, optional
The size of window for pooling.
strides : int or tuple of int, optional
The strides of pooling.
Expand Down Expand Up @@ -720,6 +732,9 @@ def avg_pool2d(data,
data : tvm.relay.Expr
The input data to the operator.
pool_size : int or tuple of int, optional
The size of window for pooling.
strides : tuple of int, optional
The strides of pooling.
Expand Down Expand Up @@ -769,6 +784,9 @@ def avg_pool3d(data,
data : tvm.relay.Expr
The input data to the operator.
pool_size : int or tuple of int, optional
The size of window for pooling.
strides : tuple of int, optional
The strides of pooling.
Expand Down Expand Up @@ -811,6 +829,9 @@ def max_pool2d_grad(out_grad,
data : tvm.relay.Expr
The input data to the operator.
pool_size : int or tuple of int, optional
The size of window for pooling.
strides : tuple of int, optional
The strides of pooling.
Expand Down Expand Up @@ -851,6 +872,9 @@ def avg_pool2d_grad(out_grad,
data : tvm.relay.Expr
The input data to the operator.
pool_size : int or tuple of int, optional
The size of window for pooling.
strides : tuple of int, optional
The strides of pooling.
Expand Down

0 comments on commit 3c2aa1a

Please sign in to comment.