numl.Math.Functions.Cost.LogisticCostFunction.LogisticCostFunction C# (CSharp) Method

LogisticCostFunction() public method

Initializes a new LogisticCostFunction with the default sigmoid logistic function.
public LogisticCostFunction ( ) : System.Linq
return System.Linq
        public LogisticCostFunction()
        {
            if (LogisticFunction == null)
                LogisticFunction = new Logistic();
        }