We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Paddle 中跟Layer相似的概念还有Projection和Operator,引入Function #892 的目的是把Computation相关的用统一的形式表示,Layer的计算实现上变成是对一些Function的调用,所以应该是可以去掉Projection和Operator。
/** * A projection takes one Argument as input, calculate the result and add it * to output Argument. */ class Projection
/** * Operator like Projection, but takes more than one Arguments as input. * @note: Operator can't have parameters. */ class Operator
The text was updated successfully, but these errors were encountered:
Closing this issue due to inactivity, feel free to reopen it.
Sorry, something went wrong.
Update doc of API:slice, reshape, expand, pow (PaddlePaddle#1165)
e42aacf
* update slice_cn.rst test=document_preview * update reshape_cn.rst test=document_preview * update pow_cn.rst test=document_preview * update expand_cn.rst test=document_preview * add result of output. test=document_preview
Update README for ERNIE-CSC (PaddlePaddle#1165)
86aea01
Co-authored-by: Zeyu Chen <[email protected]>
tianbingsz
No branches or pull requests
Paddle 中跟Layer相似的概念还有Projection和Operator,引入Function #892 的目的是把Computation相关的用统一的形式表示,Layer的计算实现上变成是对一些Function的调用,所以应该是可以去掉Projection和Operator。
The text was updated successfully, but these errors were encountered: