2 writes to _types
Microsoft.ML.Data (2)
Evaluators\ClusteringEvaluator.cs (2)
595
_types
= new DataViewType[3];
614
_types
= new DataViewType[3];
9 references to _types
Microsoft.ML.Data (9)
Evaluators\ClusteringEvaluator.cs (9)
597
_types
[ClusterIdCol] = key;
598
_types
[SortedClusterCol] = new VectorDataViewType(key, _numClusters);
599
_types
[SortedClusterScoreCol] = new VectorDataViewType(NumberDataViewType.Single, _numClusters);
616
_types
[ClusterIdCol] = key;
617
_types
[SortedClusterCol] = new VectorDataViewType(key, _numClusters);
618
_types
[SortedClusterScoreCol] = new VectorDataViewType(NumberDataViewType.Single, _numClusters);
722
infos[ClusterIdCol] = new DataViewSchema.DetachedColumn(ClusterId,
_types
[ClusterIdCol], null);
733
infos[SortedClusterCol] = new DataViewSchema.DetachedColumn(SortedClusters,
_types
[SortedClusterCol], sortedClusters.ToAnnotations());
734
infos[SortedClusterScoreCol] = new DataViewSchema.DetachedColumn(SortedClusterScores,
_types
[SortedClusterScoreCol], builder.ToAnnotations());