mirror of https://github.com/ogoun/Zero.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
470 B
16 lines
470 B
namespace ZeroLevel.NN.Clusterization
|
|
{
|
|
public class FeatureClusterCollection<T>
|
|
{
|
|
private int _clusterKey = 0;
|
|
private IDictionary<int, FeatureCluster<T>> _clusters = new Dictionary<int, FeatureCluster<T>>();
|
|
|
|
public IDictionary<int, FeatureCluster<T>> Clusters => _clusters;
|
|
|
|
internal void Add(FeatureCluster<T> cluster)
|
|
{
|
|
_clusters.Add(Interlocked.Increment(ref _clusterKey), cluster);
|
|
}
|
|
}
|
|
}
|