1 override of AddAttribute
Microsoft.ML.OnnxConverter (1)
OnnxNodeImpl.cs (1)
40public override void AddAttribute(string argName, IEnumerable<string> value)
7 references to AddAttribute
Microsoft.ML.Data (1)
Transforms\ValueToKeyMappingTransformer.cs (1)
797node.AddAttribute("keys_strings", terms.Select(item => item.ToString()));
Microsoft.ML.FastTree (1)
FastTree.cs (1)
3117node.AddAttribute("nodes_modes", nodeModes);
Microsoft.ML.OnnxConverter (1)
SaveOnnxCommand.cs (1)
239node.AddAttribute("keys_strings", slotNamesAsStrings);
Microsoft.ML.Transforms (4)
Text\StopWordsRemovingTransformer.cs (2)
475node.AddAttribute("stopwords", StopWords[iinfo].Select(item => Convert.ToString(item.Value))); 1161node.AddAttribute("stopwords", words.Select(item => Convert.ToString(item.Value)));
Text\TokenizingByCharacters.cs (1)
262node.AddAttribute("keys_strings", charStrings);
Text\WordEmbeddingsExtractor.cs (1)
445nodeY.AddAttribute("classes_strings", _parent._currentVocab.GetWordLabels());