Exemple #1
0
        public void SetOutputNode(ComputingNode <THidOut, TOut> outputNode)
        {
            if (outputNode == null)
            {
                throw new MLException("Node can not be null");
            }

            m_OutputNode = outputNode;
        }
Exemple #2
0
        public void SetInputNode(ComputingNode <TIn, THidOut> inputNode)
        {
            if (inputNode == null)
            {
                throw new MLException("Node can not be null");
            }

            m_InputNode = inputNode;
        }