4 references to Softmax
Microsoft.ML.StandardTrainers (4)
Standard\MulticlassClassification\OneVersusAllTrainer.cs (4)
287/// <see cref="Softmax"/>: Generate probability by feeding raw outputs to softmax function. Output is [z_1, ..., z_n], where z_i is exp(y_i) / (exp(y_1) + ... + exp(y_n)). 304if (outputFormula == OutputFormula.Softmax) 388else if (outputFormula == OutputFormula.Softmax) 867OutputFormula = OutputFormula.Softmax;