1 override of AddAttribute
Microsoft.ML.OnnxConverter (1)
OnnxNodeImpl.cs (1)
42public override void AddAttribute(string argName, string value)
13 references to AddAttribute
Microsoft.ML.Data (4)
Transforms\Hashing.cs (2)
1423shiftNode.AddAttribute("direction", "LEFT"); 1428shiftNode.AddAttribute("direction", "RIGHT");
Transforms\ValueMapping.cs (1)
1273node.AddAttribute("default_string", "");
Transforms\ValueToKeyMappingTransformer.cs (1)
887node.AddAttribute("default_string", "0");
Microsoft.ML.FastTree (2)
FastTree.cs (2)
3110node.AddAttribute("post_transform", PostTransform.None.GetDescription()); 3113node.AddAttribute("aggregate_function", AggregateFunction.Sum.GetDescription());
Microsoft.ML.StandardTrainers (2)
Standard\LinearModelParameters.cs (1)
148node.AddAttribute("post_transform", "NONE");
Standard\LogisticRegression\MulticlassLogisticRegression.cs (1)
992node.AddAttribute("post_transform", GetOnnxPostTransform());
Microsoft.ML.Transforms (5)
GcnTransform.cs (1)
646node.AddAttribute("norm", strNorm);
Text\NgramTransform.cs (1)
817node.AddAttribute("mode", mode);
Text\TextNormalizing.cs (1)
251node.AddAttribute("case_change_action", isCaseChange);
Text\TokenizingByCharacters.cs (1)
248node.AddAttribute("pad_value", "");
Text\WordTokenizing.cs (1)
414tokenizerNode.AddAttribute("pad_value", DefaultPadValue);