-
Notifications
You must be signed in to change notification settings - Fork 0
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
Handle deprecation of tf.batch_matmul #12
Comments
Simply replacing
Since this straight forward solution doesn't work, a closer look is necessary. |
AFAIK Looking at the code for TransR, i would try to change the reshaping of the
EDIT: I'm not sure if the broadcasting semantics will work in the _transfer function above.
Hope this helps |
During the execution of TransR, the following error occurs:
According to this issue the tf.batch_matmul() op was removed in 3a88ec0. So we need to replace to the call to tf.batch_matmul with another call, probably something like tf.linalg.matmul
The text was updated successfully, but these errors were encountered: