-
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
Add unidirectional sequence lstm #11183
Add unidirectional sequence lstm #11183
Conversation
All tests passed |
Now this fails on windows. I restarted the CI pipeline three times. Does not seem to be related to our changes. Should or could we do anything to resolve this? |
@SebastianBoblestETAS I think this is effecting more than just this PR, I've raised #11220 to track it, please stand by 😸 |
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.
code LGTM, thanks @SebastianBoblestETAS, @vdkhoi.
@Mousius Hi, sorry this is again failing but in a totally different place now. |
There is still the issue of the model we use in the tests. |
@SebastianBoblestETAS I re-ran the CI yesterday and it looks green, though I don't really know that much about this PR other than the CI issues - maybe @leandron can help get this merged? 😸 |
@leandron Hi, could you maybe help with getting this merged? |
@junrushao1994 Hi, could you also have a look on our PR and help to make it merged? Thanks. |
@mbrookhart @jwfromm @Huyuwei @hlu1 @AndrewZhaoLuo @kazum @siju-samuel @srkreddy1238 @FrozenGene |
Ill take a look tomorrow |
@AndrewZhaoLuo did you review our PR? We are ready to answer your question. |
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.
Sorry for getting back to you late. LGTM!
@Mousius We just add some comments as request from @AndrewZhaoLuo, but the tvm-ci failed again. Could you please support us to restart it? |
@vdkhoi you can restart CI by pushing an empty commit. e.g. |
@AndrewZhaoLuo I updated the comment in the function and made it more precise. |
Sometimes you also need to rebase on main to solve flaky CI issues :/ . Sorry about that |
…ding to the version in common.py
ccfbebd
to
efecbcd
Compare
@AndrewZhaoLuo I just rebased. Let's hope for the best 😄 |
Thanks! Sorry this took a long time to get merged. |
Thank you. Finally :) it done |
* UnidirectionalLSTM added * fixed missing import * fixed pylint warnings * black formatted tflite.py * corrections according to reviewer comments * fixed black formatting * just to trigger the CI again * assertion now tests that there are exactly 24 input tensors. * black formatted tflite.py * added explanatory comment regarding unused imports * removed unused import * nothing * nothing * added some details in a comment about the differences in unbind regarding to the version in common.py * improved comment on unbind * fix of black issue
This work has mostly been done by @vdkhoi Khoi Duy Vo from ETAS Gmbh.
We add parser support for UnidirectionalSequenceLSTM layers in tflite.
A question regarding the test:
At the moment it uses a toy model that I store in a repo in my github account.
Should we copy this to the TVM repo or what is the best way to do this?