2 writes to Weights
Microsoft.ML.Ensemble (2)
Trainer\EnsembleModelParametersBase.cs (2)
37Weights = weights; 62Weights = ctx.Reader.ReadFloatArray(weightCount);
9 references to Weights
Microsoft.ML.Ensemble (9)
Trainer\EnsembleDistributionModelParameters.cs (2)
170combine(ref dst, predictions, Weights); 226averagedWeights = Weights;
Trainer\EnsembleModelParameters.cs (1)
161combine(ref dst, predictions, Weights);
Trainer\EnsembleModelParametersBase.cs (5)
105ctx.Writer.WriteSingleArray(Weights); 137writer.WriteLine(";; Weight={0}", (Weights != null ? Weights[i] : 1)); 151writer.WriteLine(";; Weight={0}", (Weights != null ? Weights[i] : 1));
Trainer\Multiclass\EnsembleMulticlassModelParameters.cs (1)
149combine(ref dst, predictions, Weights);