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.
28 lines
897 B
28 lines
897 B
using System;
|
|
using ZeroLevel.HNSW;
|
|
using ZeroLevel.HNSW.Services;
|
|
using ZeroLevel.Services.Mathemathics;
|
|
|
|
namespace HNSWDemo.Tests
|
|
{
|
|
public class AutoClusteringTest
|
|
: ITest
|
|
{
|
|
private static int Count = 3000;
|
|
private static int Dimensionality = 128;
|
|
|
|
public void Run()
|
|
{
|
|
var vectors = VectorUtils.RandomVectors(Dimensionality, Count);
|
|
var world = SmallWorld.CreateWorld<float[]>(NSWOptions<float[]>.Create(8, 16, 200, 200, Metrics.L2EuclideanDistance));
|
|
world.AddItems(vectors);
|
|
var clusters = AutomaticGraphClusterer.DetectClusters(world);
|
|
Console.WriteLine($"Found {clusters.Count} clusters");
|
|
for (int i = 0; i < clusters.Count; i++)
|
|
{
|
|
Console.WriteLine($"Cluster {i + 1} countains {clusters[i].Count} items");
|
|
}
|
|
}
|
|
}
|
|
}
|