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
Tensorflow 2 has started outputting a new kind of Add node, AddV2, here and there, which seems to be the same. It's not yet supported by Tract. It might be possible to, as a first step, simply accept AddV2 as an alternate name for Add but otherwise treat it the same, but I'm not 100% sure about this.
The text was updated successfully, but these errors were encountered:
I agree it does look the same. If you want to try it on your side and check you get the expected result, it's as simple as registering the operator in tensorflow/src/ops/math.rs. It would be nice if you can confirm it does what you expect before I add it as I don't have much to check it. You'll also notice that there is already a BiasAdd that is the same as Add...
Tensorflow 2 has started outputting a new kind of Add node, AddV2, here and there, which seems to be the same. It's not yet supported by Tract. It might be possible to, as a first step, simply accept AddV2 as an alternate name for Add but otherwise treat it the same, but I'm not 100% sure about this.
The text was updated successfully, but these errors were encountered: