Rename `AddOp` to `AppendOp` in `NetOp`
Created by: reyoung
Even Add
is shorter than Append
, Append
is better than Add
in several points:
-
Append
hint theNetOp
is a sequence of operators andappend
just add that operator at the end ofNetOp
.PushBack
is a more C++ style name butAppend
seems simpler. -
Net.AddOp
is easy to confusing withelement-wise add operator
, which means add two or more tensor with the same shape together.
If that name should be changed, I will give a PR next day as my fix-it day PR :-)