4 writes to Weight
Microsoft.ML.FastTree (4)
Training\EnsembleCompression\LassoBasedEnsembleCompressor.cs (1)
472tree.Weight = weight;
TreeEnsemble\InternalRegressionTree.cs (3)
76Weight = 1.0; 103Weight = buffer.ToDouble(ref position); 273Weight = reader.ReadDouble();
8 references to Weight
Microsoft.ML.FastTree (8)
FastTree.cs (2)
3387var treeWeights = TrainedEnsemble.Trees.Select(tree => tree.Weight); 3433var treeWeights = TrainedEnsemble.Trees.Select(tree => tree.Weight);
TreeEnsemble\InternalRegressionTree.cs (4)
370writer.Write(Weight); 441checker(Weight >= 0, "negative tree weight"); 510Weight.SizeInBytes() + 530Weight.ToByteArray(buffer, ref position);
TreeEnsemble\InternalTreeEnsemble.cs (2)
171sb.AppendFormat("{0}", _trees[0].Weight); 180sb.Append(_trees[w].Weight);