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.
Zero/ZeroLevel.NN/Services/KNN/Point.cs

13 lines
210 B

namespace ZeroLevel.NN.Services.KNN
{
public class FPoint
{
public float[] Values { get; set; }
}
public interface IMetric
{
float Calculate(FPoint a, FPoint b);
}
}

Powered by TurnKey Linux.