You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have the following function to broadcast two arrays to compute the multiplication for all possible mutations. In this function I used both tile and repeat function and I found tile shows inconsistent behaviours between backends.
It seems that TensorFlow could not properly infer the shape of the resulting symbolic tensor.
Another issue is that when using repeats for tile based on the shape of symbolic tensor, TensorFlow still works (although with shapes all None), but Jax raises an error: "'str' object has no attribute '_error_repr'". This issue can be reproduced by replacing repeats with the commented command.
I have the following function to broadcast two arrays to compute the multiplication for all possible mutations. In this function I used both tile and repeat function and I found tile shows inconsistent behaviours between backends.
It seems that TensorFlow could not properly infer the shape of the resulting symbolic tensor.
Another issue is that when using
repeats
fortile
based on the shape of symbolic tensor, TensorFlow still works (although with shapes all None), but Jax raises an error: "'str' object has no attribute '_error_repr'". This issue can be reproduced by replacingrepeats
with the commented command.Reproduction Code
Environment
jax 0.5.0
jaxlib 0.5.0
keras 3.8.0
tensorboard 2.18.0
The text was updated successfully, but these errors were encountered: