1 override of AddAttribute
Microsoft.ML.OnnxConverter (1)
OnnxNodeImpl.cs (1)
30public override void AddAttribute(string argName, long value)
35 references to AddAttribute
Microsoft.ML.Data (6)
Transforms\Hashing.cs (2)
1408murmurNode.AddAttribute("positive", 1); 1416murmurNode.AddAttribute("seed", seed);
Transforms\KeyToVector.cs (1)
732reduceNode.AddAttribute("keepdims", 0);
Transforms\SlotsDroppingTransformer.cs (1)
909node.AddAttribute("axis", 1);
Transforms\ValueMapping.cs (1)
1272node.AddAttribute("default_int64", 0);
Transforms\ValueToKeyMappingTransformer.cs (1)
886node.AddAttribute("default_int64", 0);
Microsoft.ML.FastTree (1)
FastTree.cs (1)
3111node.AddAttribute("n_targets", 1);
Microsoft.ML.KMeansClustering (3)
KMeansModelParameters.cs (3)
348gemmNodeXC2.AddAttribute("transB", 1); 361predictNodeL.AddAttribute("axis", 1); 362predictNodeL.AddAttribute("keepdims", 1);
Microsoft.ML.Mkl.Components (1)
VectorWhitening.cs (1)
665node.AddAttribute("transB", 1);
Microsoft.ML.PCA (2)
PcaTransformer.cs (2)
673gemmNode.AddAttribute("transA", 1); 674gemmNode.AddAttribute("transB", 1);
Microsoft.ML.StandardTrainers (9)
Standard\LinearModelParameters.cs (1)
149node.AddAttribute("targets", 1);
Standard\MulticlassClassification\MulticlassNaiveBayesTrainer.cs (2)
551node.AddAttribute("axis", 1); 552node.AddAttribute("keepdims", 0);
Standard\MulticlassClassification\OneVersusAllTrainer.cs (6)
579argMaxNode.AddAttribute("keepdims", 1); 580argMaxNode.AddAttribute("axis", 1); 671concatNode.AddAttribute("axis", 1); 838concatNode.AddAttribute("axis", 1); 927concatNode.AddAttribute("axis", 1); 936sumNode.AddAttribute("keepdims", 1);
Microsoft.ML.Transforms (13)
Text\NgramTransform.cs (3)
804node.AddAttribute("max_gram_length", transformInfo.NgramLength); 805node.AddAttribute("max_skip_count", transformInfo.SkipLength); 806node.AddAttribute("min_gram_length", transformInfo.UseAllLengths ? 1 : transformInfo.NgramLength);
Text\TokenizingByCharacters.cs (1)
247node.AddAttribute("mincharnum", 1);
Text\WordEmbeddingsExtractor.cs (7)
446nodeY.AddAttribute("default_int64", _parent._currentVocab.GetNumWords()); 457nodeB.AddAttribute("to", 1); 467nodeVMin.AddAttribute("to", 7); 471nodeVMax.AddAttribute("to", 7); 516nodeZ.AddAttribute("to", 6); 526nodeRF.AddAttribute("to", 1); 540nodeP.AddAttribute("axis", 1);
Text\WordTokenizing.cs (2)
412tokenizerNode.AddAttribute("mark", 0); 413tokenizerNode.AddAttribute("mincharnum", 1);