-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add conv3d/pool3d/conv3d_trans Python API #11437
Add conv3d/pool3d/conv3d_trans Python API #11437
Conversation
act=None, | ||
name=None): | ||
""" | ||
**Convlution3D Layer** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can use @templatedoc
to avoid copying comments, see yu laoshi's PR: #11308
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@typhoonzero Sound great!
But Convlution Layer
and Convlution Op
are not completely equal.
The equation of Convlution Layer
is Convlution Op
's is
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see.
0af11ef
to
9b13b4c
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM++, 2d and 3d layers have a lot common codes, we may need to put them to some base class then.
… Add_conv3d_Python_API
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM again
fix #11433