Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tic
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wenyuanbo
tic
Commits
3c2aa1aa
Unverified
Commit
3c2aa1aa
authored
Apr 03, 2020
by
Samuel
Committed by
GitHub
Apr 03, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[DOCSTRING]missing function parameters updated (#5228)
parent
316ce055
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
2 deletions
+26
-2
python/tvm/relay/op/nn/nn.py
+26
-2
No files found.
python/tvm/relay/op/nn/nn.py
View file @
3c2aa1aa
...
...
@@ -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
-------
...
...
@@ -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.
...
...
@@ -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.
...
...
@@ -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.
...
...
@@ -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.
...
...
@@ -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.
...
...
@@ -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.
...
...
@@ -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.
...
...
@@ -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.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment