Exemplo n.º 1
0
        public void ForwardNeuron()
        {
            var ax = mGate1.Forward(a, x);
            var by = mGate2.Forward(b, y);

            var axpby   = aGate1.Forward(ax, by);
            var axpbypc = aGate2.Forward(axpby, c);

            Result = sGate1.Forward(axpbypc, null);
        }