-
I'm in a hackathon-like event and ONNX is new to me, so bear with me. I am trying to use a contrib op, in this example
Thanks for any help anyone can provide here. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
After some more trial and error I think I need to set the register_custom_ops_library(...) for question 2. My new code looks like
and I'm working on trying to find the contrib ops library, if I have it already somewhere. |
Beta Was this translation helpful? Give feedback.
-
Closing my own question with an answer: The node name is just "MurmurHash3" or whatever op you want, but add in the
|
Beta Was this translation helpful? Give feedback.
Closing my own question with an answer: The node name is just "MurmurHash3" or whatever op you want, but add in the
domain
argument and set it tocom.microsoft
in this case. No need to register a custom ops library any more, it worked first try!