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); 722infos[ClusterIdCol] = new DataViewSchema.DetachedColumn(ClusterId, _types[ClusterIdCol], null); 733infos[SortedClusterCol] = new DataViewSchema.DetachedColumn(SortedClusters, _types[SortedClusterCol], sortedClusters.ToAnnotations()); 734infos[SortedClusterScoreCol] = new DataViewSchema.DetachedColumn(SortedClusterScores, _types[SortedClusterScoreCol], builder.ToAnnotations());