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
Now in Operator or Kernel's Run/Infershape function, we may use index such as Input(0)/Ouptput(1) to get variable from scope, there are several problem of use index:
We have to remember what the meaning of each index is. In OpProto, we declare the variable name and the name have it's meaning, such as "weight" "bias". Index do not have meaning and is hard to remember.
For variant input/output, we do not know the real index of the variable we want. It's hard to get what we want with index.
so we should use name declared in OpProto to get var from scope.
The text was updated successfully, but these errors were encountered:
Now in Operator or Kernel's Run/Infershape function, we may use index such as Input(0)/Ouptput(1) to get variable from scope, there are several problem of use index:
so we should use name declared in OpProto to get var from scope.
The text was updated successfully, but these errors were encountered: