3 writes to _textMetadata
Microsoft.ML.Data (3)
Transforms\ValueToKeyMappingTransformer.cs (3)
258
_textMetadata
= new bool[_unboundMaps.Length];
325
_textMetadata
= ctx.Reader.ReadBoolArray(columnsLength);
327
_textMetadata
= new bool[columnsLength]; // No need to set in this case. They're all text.
5 references to _textMetadata
Microsoft.ML.Data (5)
Transforms\ValueToKeyMappingTransformer.cs (5)
260
_textMetadata
[iinfo] = columns[iinfo].AddKeyValueAnnotationsAsText;
661
Host.Assert(_unboundMaps.Length ==
_textMetadata
.Length);
662
Host.Assert(
_textMetadata
.Length == ColumnPairs.Length);
663
ctx.Writer.WriteBoolBytesNoCount(
_textMetadata
);
736
_termMap[iinfo] = Bind(Host, inputSchema, _parent._unboundMaps[iinfo], _infos, _parent.
_textMetadata
, iinfo);