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
Some time ago, there was an idea for selectors as a more powerful mechanism for targeting specific nodes. Now, one can pinpoint only the node that has an identifier attached. Selectors (as known from CSS) would allow to match more than one node. For example:
c1:Conv
c2:Conv
In -> [c1,c2] -> Out
could be replaced by:
c1:Conv
c2:Conv
In -> |c*| -> Out
Matching should be also possible by node type. This is also equivalent to previous example:
Conv Conv
In -> |Conv| -> Out
Also combining the two:
c1:Conv
c2:Conv
In -> |c*:Conv| -> Out
Selectors should be really handy for inspecting nodes. For example, if one would like to inspect all ReLU nodes for dead neurons, you should just write:
|ReLU| -> Inspect
Of course, paths should be also supported:
metanode:{ ... }
|metanode/*| -> Inspect
However there are some open questions:
On what level should selector act? If I want to inspect all ReLU nodes in current metanode vs. inspecting all ReLU nodes..
What wild cards should be supported? Or maybe regexes?
What about matching against parameters?
The text was updated successfully, but these errors were encountered:
Some time ago, there was an idea for selectors as a more powerful mechanism for targeting specific nodes. Now, one can pinpoint only the node that has an identifier attached. Selectors (as known from CSS) would allow to match more than one node. For example:
could be replaced by:
Matching should be also possible by node type. This is also equivalent to previous example:
Also combining the two:
Selectors should be really handy for inspecting nodes. For example, if one would like to inspect all ReLU nodes for dead neurons, you should just write:
Of course, paths should be also supported:
However there are some open questions:
The text was updated successfully, but these errors were encountered: