-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
[RELAY][FRONTEND][OP] support repeat in ONNX #2849
Labels
Comments
XiaolongMeng
changed the title
tvm onnx frontend does not support repeat
[RELAY]tvm onnx frontend does not support repeat
Mar 19, 2019
tqchen
changed the title
[RELAY]tvm onnx frontend does not support repeat
[RELAY][FRONTEND][OP] tvm onnx frontend does not support repeat
Mar 19, 2019
tqchen
changed the title
[RELAY][FRONTEND][OP] tvm onnx frontend does not support repeat
[RELAY][FRONTEND][OP] support repeat in ONNX
Mar 19, 2019
emmm, I find what's wrong...It's the input shape, it must match the input name, I use 1,2,3, but in onnx,it's input.1, input.2..... so,maybe I can post a PR? @tqchen |
I would appreciate if you can help to review the proposed PR. many thank, |
maybe you can call tqchen ... |
#3941 thanks to @cchung100m |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
since it does not support tile op in onnx ,I write a convert, but it seems something wrong.
what I want to convert is
query = simple_cat.repeat(1, 100, 1)
which in pytorch.
what I add to onnx.py is
and add this to _get_convert_map
but when I run
tvm_output = intrp.evaluate(sym)(inp, **params).asnumpy()
It occurred errors.
so how can I fix this,thank you!
The text was updated successfully, but these errors were encountered: