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
Port Fully Connected operator to the new framework. The computation must be totally the same as the old FullyConnectedLayer, that is Out = sum_n{X_i * W_i} + b.
Support different kinds of activation functions, such as identity, sigmoid, softmax.
Implemented by calling other operators (MulOp, RowwiseAddOp, activation ops).
Support multiple inputs and weights.
Problems I met during porting FCOp are recorded in several issues:
Port Fully Connected operator to the new framework. The computation must be totally the same as the old FullyConnectedLayer, that is
Out = sum_n{X_i * W_i} + b
.identity
,sigmoid
,softmax
.MulOp
,RowwiseAddOp
, activation ops).Problems I met during porting
FCOp
are recorded in several issues:The text was updated successfully, but these errors were encountered: