1 write to ColMapNewToOld
Microsoft.ML.Data (1)
Transforms\OneToOneTransformerBase.cs (1)
101
ColMapNewToOld
= new Dictionary<int, int>();
42 references to ColMapNewToOld
Microsoft.ML.Data (15)
Transforms\FeatureContributionCalculationTransformer.cs (1)
210
return Utils.MarshalInvoke(_getValueGetterMethodInfo, this, _featureColumnType.RawType, input,
ColMapNewToOld
[iinfo]);
Transforms\KeyToValue.cs (6)
177
meta.Add(InputSchema[
ColMapNewToOld
[i]].Annotations, name => name == AnnotationUtils.Kinds.SlotNames);
229
var typeSrc = schema[
ColMapNewToOld
[iinfo]].Type;
230
var typeVals = schema[
ColMapNewToOld
[iinfo]].Annotations.Schema.GetColumnOrNull(AnnotationUtils.Kinds.KeyValues)?.Type;
259
InputSchema[
ColMapNewToOld
[iinfo]].GetKeyValues(ref keyMetadata);
366
var column = input.Schema[Parent.
ColMapNewToOld
[InfoIndex]];
488
var srcType = Parent.InputSchema[Parent.
ColMapNewToOld
[InfoIndex]].Type;
Transforms\Normalizer.cs (2)
747
builder.Add(InputSchema[
ColMapNewToOld
[iinfo]].Annotations, name => name == AnnotationUtils.Kinds.SlotNames);
759
return _parent.Columns[iinfo].ColumnFunction.GetGetter(input,
ColMapNewToOld
[iinfo]);
Transforms\OneToOneTransformerBase.cs (2)
105
ColMapNewToOld
.Add(i, srcCol);
112
foreach (var pair in
ColMapNewToOld
)
Transforms\TypeConverting.cs (3)
442
builder.Add(InputSchema[
ColMapNewToOld
[i]].Annotations, name => name == AnnotationUtils.Kinds.SlotNames);
452
builder.Add(InputSchema[
ColMapNewToOld
[i]].Annotations, name => name == AnnotationUtils.Kinds.KeyValues);
456
builder.Add(InputSchema[
ColMapNewToOld
[i]].Annotations, name => name == AnnotationUtils.Kinds.IsNormalized);
Transforms\ValueMapping.cs (1)
1054
return _valueMap.GetGetter(input,
ColMapNewToOld
[iinfo]);
Microsoft.ML.ImageAnalytics (9)
ImageGrayscale.cs (2)
160
=> _parent.ColumnPairs.Select((x, idx) => new DataViewSchema.DetachedColumn(x.outputColumnName, InputSchema[
ColMapNewToOld
[idx]].Type, null)).ToArray();
168
var getSrc = input.GetGetter<MLImage>(input.Schema[
ColMapNewToOld
[iinfo]]);
ImageLoader.cs (2)
231
var getSrc = input.GetGetter<ReadOnlyMemory<char>>(input.Schema[
ColMapNewToOld
[iinfo]]);
269
var getSrc = input.GetGetter<ReadOnlyMemory<char>>(input.Schema[
ColMapNewToOld
[iinfo]]);
ImagePixelExtractor.cs (2)
323
var getSrc = input.GetGetter<MLImage>(input.Schema[
ColMapNewToOld
[iinfo]]);
460
var type = InputSchema[
ColMapNewToOld
[i]].Type as ImageDataViewType;
ImageResizer.cs (1)
278
var getSrc = input.GetGetter<MLImage>(input.Schema[
ColMapNewToOld
[iinfo]]);
VectorToImageTransform.cs (2)
334
var sourceType = InputSchema[
ColMapNewToOld
[iinfo]].Type;
348
var getSrc = RowCursorUtils.GetVecGetterAs<TValue>(srcType, input,
ColMapNewToOld
[iinfo]);
Microsoft.ML.PCA (1)
PcaTransformer.cs (1)
575
var srcGetter = input.GetGetter<VBuffer<float>>(input.Schema[
ColMapNewToOld
[iinfo]]);
Microsoft.ML.Transforms (17)
GcnTransform.cs (1)
352
builder.Add(InputSchema[
ColMapNewToOld
[i]].Annotations, name => name == AnnotationUtils.Kinds.SlotNames);
MissingValueDroppingTransformer.cs (1)
211
builder.Add(InputSchema[
ColMapNewToOld
[i]].Annotations, x => x == AnnotationUtils.Kinds.KeyValues || x == AnnotationUtils.Kinds.IsNormalized);
MissingValueIndicatorTransformer.cs (2)
254
var getSrc = input.GetGetter<T>(input.Schema[
ColMapNewToOld
[iinfo]]);
276
var getSrc = input.GetGetter<VBuffer<T>>(input.Schema[
ColMapNewToOld
[iinfo]]);
MissingValueReplacing.cs (2)
644
var getSrc = input.GetGetter<T>(input.Schema[
ColMapNewToOld
[iinfo]]);
670
var getSrc = input.GetGetter<VBuffer<T>>(input.Schema[
ColMapNewToOld
[iinfo]]);
Text\StopWordsRemovingTransformer.cs (1)
1102
var getSrc = input.GetGetter<VBuffer<ReadOnlyMemory<char>>>(input.Schema[
ColMapNewToOld
[iinfo]]);
Text\TextNormalizing.cs (2)
346
var getSrc = input.GetGetter<ReadOnlyMemory<char>>(input.Schema[
ColMapNewToOld
[iinfo]]);
360
var getSrc = input.GetGetter<VBuffer<ReadOnlyMemory<char>>>(input.Schema[
ColMapNewToOld
[iinfo]]);
Text\TokenizingByCharacters.cs (3)
478
var getSrc = input.GetGetter<ReadOnlyMemory<char>>(input.Schema[
ColMapNewToOld
[iinfo]]);
508
int cv = input.Schema[
ColMapNewToOld
[iinfo]].Type.GetVectorSize();
511
var getSrc = input.GetGetter<VBuffer<ReadOnlyMemory<char>>>(input.Schema[
ColMapNewToOld
[iinfo]]);
Text\WordEmbeddingsExtractor.cs (2)
322
_parent.CheckInputColumn(inputSchema, i,
ColMapNewToOld
[i]);
556
var column = input.Schema[
ColMapNewToOld
[iinfo]];
Text\WordTokenizing.cs (3)
252
var getSrc = input.GetGetter<ReadOnlyMemory<char>>(input.Schema[
ColMapNewToOld
[iinfo]]);
279
int cv = input.Schema[
ColMapNewToOld
[iinfo]].Type.GetVectorSize();
281
var getSrc = input.GetGetter<VBuffer<ReadOnlyMemory<char>>>(input.Schema[
ColMapNewToOld
[iinfo]]);