17 references to VectorDataViewType
Microsoft.ML.Data (9)
Evaluators\EvaluatorUtils.cs (1)
734type, new VectorDataViewType(keyType, ((VectorDataViewType)type).Dimensions), mapper, keyValueGetter, slotNamesGetter);
Scorers\FeatureContributionCalculation.cs (1)
344var featureContributionType = new VectorDataViewType(NumberDataViewType.Single, ((VectorDataViewType)FeatureColumn.Type).Dimensions);
Transforms\KeyToValue.cs (1)
238types[iinfo] = new VectorDataViewType((PrimitiveDataViewType)valsItemType, vectorType.Dimensions);
Transforms\KeyToVector.cs (2)
327var slotNamesType = new VectorDataViewType(TextDataViewType.Instance, _types[iinfo].Dimensions); 339var slotNamesType = new VectorDataViewType(TextDataViewType.Instance, _types[iinfo].Dimensions);
Transforms\LabelConvertTransform.cs (1)
191Interlocked.CompareExchange(ref _slotType, new VectorDataViewType(NumberDataViewType.Single, srcSlotType.Dimensions), null);
Transforms\TypeConverting.cs (1)
429typeDst = new VectorDataViewType(itemType, vectorType.Dimensions);
Transforms\ValueMapping.cs (1)
1073colType = new VectorDataViewType((PrimitiveDataViewType)_parent.ValueColumnType, vectorType.Dimensions);
Transforms\ValueToKeyMappingTransformer.cs (1)
728colType = new VectorDataViewType(keyType, vectorType.Dimensions);
Microsoft.ML.Transforms (8)
KeyToVectorMapping.cs (2)
244var slotNamesType = new VectorDataViewType(TextDataViewType.Instance, _types[iinfo].Dimensions); 262var slotNamesType = new VectorDataViewType(TextDataViewType.Instance, _types[iinfo].Dimensions);
MissingValueIndicatorTransform.cs (1)
145types[iinfo] = new VectorDataViewType(NumberDataViewType.Single, vectorType.Dimensions.Add(2));
MissingValueIndicatorTransformer.cs (2)
197outType = new VectorDataViewType(BooleanDataViewType.Instance, vectorType.Dimensions); 548new VectorDataViewType(BooleanDataViewType.Instance, vectorType.Dimensions);
MissingValueReplacing.cs (3)
295type = new VectorDataViewType(vectorType.ItemType, vectorType.Dimensions); 569vectorType = new VectorDataViewType(vectorType.ItemType, vectorType.Dimensions); 1052new VectorDataViewType(vectorType.ItemType, vectorType.Dimensions);