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
@zolkis For options, how about adding the validation steps for the `else` condition?
If options.strides is undefined, set it to [1, 1].
If options.[strides] is undefined, set it to [1, 1]. else if options.strides.size() != 2 or any element in strides is equal to 0, throw error. For detailed algorithm, please refer to the implementation in chromium code- https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/modules/ml/webnn/ml_graph_builder.cc;l=202.
Originally posted by @lisa0314 in #407 (comment)
The text was updated successfully, but these errors were encountered:
Fix webmachinelearning#439: add missing conv2d() and convTranspose2d(…
b7eaee9
…) validation steps Signed-off-by: Zoltan Kis <[email protected]>
Merge pull request #441 from zolkis/stage-conv2d-convtranspose2d-algo…
e8d7169
…rithms Fix #439: add missing conv2d() and convTranspose2d() validation steps
No branches or pull requests
If options.[strides] is undefined, set it to [1, 1]. else if options.strides.size() != 2 or any element in strides is equal to 0, throw error.
For detailed algorithm, please refer to the implementation in chromium code- https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/modules/ml/webnn/ml_graph_builder.cc;l=202.
Originally posted by @lisa0314 in #407 (comment)
The text was updated successfully, but these errors were encountered: