1 write to _featureColumnType
Microsoft.ML.Data (1)
Transforms\FeatureContributionCalculationTransformer.cs (1)
183
_featureColumnType
= schema[_featureColumnIndex].Type as VectorDataViewType;
6 references to _featureColumnType
Microsoft.ML.Data (6)
Transforms\FeatureContributionCalculationTransformer.cs (6)
184
if (
_featureColumnType
== null ||
_featureColumnType
.ItemType != NumberDataViewType.Single)
187
if (InputSchema[_featureColumnIndex].HasSlotNames(
_featureColumnType
.Size))
190
_slotNames = VBufferUtils.CreateEmpty<ReadOnlyMemory<char>>(
_featureColumnType
.Size);
200
return new[] { new DataViewSchema.DetachedColumn(DefaultColumnNames.FeatureContributions, new VectorDataViewType(NumberDataViewType.Single,
_featureColumnType
.Size), builder.ToAnnotations()) };
210
return Utils.MarshalInvoke(_getValueGetterMethodInfo, this,
_featureColumnType
.RawType, input, ColMapNewToOld[iinfo]);