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)
184if (_featureColumnType == null || _featureColumnType.ItemType != NumberDataViewType.Single) 187if (InputSchema[_featureColumnIndex].HasSlotNames(_featureColumnType.Size)) 190_slotNames = VBufferUtils.CreateEmpty<ReadOnlyMemory<char>>(_featureColumnType.Size); 200return new[] { new DataViewSchema.DetachedColumn(DefaultColumnNames.FeatureContributions, new VectorDataViewType(NumberDataViewType.Single, _featureColumnType.Size), builder.ToAnnotations()) }; 210return Utils.MarshalInvoke(_getValueGetterMethodInfo, this, _featureColumnType.RawType, input, ColMapNewToOld[iinfo]);