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
Hi. Could you please check my interpretation of graphs from graph_subst.pb ? I've written some Python code which iterates over all source substitutions and prints their graphs to the text file (see the listing below). The printing format is almost identical to the format of C++ GraphTemp::print from generator.cc.
Most of the rules looks natural, but there are some of them which don't, especially those which include RELU operation. One example is:
We see that the source graph of rule #63 calculates convolution of some inputs, then it applies RELU, but after that it's result is not used. Line number 2 just calculates convolution of other inputs. Why is this? Is this rule correct?
Hi. Could you please check my interpretation of graphs from
graph_subst.pb
? I've written some Python code which iterates over all source substitutions and prints their graphs to the text file (see the listing below). The printing format is almost identical to the format of C++GraphTemp::print
fromgenerator.cc
.Most of the rules looks natural, but there are some of them which don't, especially those which include RELU operation. One example is:
We see that the source graph of rule
#63
calculates convolution of some inputs, then it applies RELU, but after that it's result is not used. Line number 2 just calculates convolution of other inputs. Why is this? Is this rule correct?PS I use
graph_subst.pb
as of commit f4e1486PPS my printing code is
The text was updated successfully, but these errors were encountered: