Skip to content

tk-yoshimura/Clustering

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Clustering

Clustering - svm, kmeans

sample

Requirement

.NET 8.0

Install

Download DLL
Download Nuget

Usage

GaussianSupportVectorMachine svm = new(cost: 1000, sigma: 1);

svm.Learn(positive_vectors, negative_vectors);
int posneg = svm.Classify(vector, threshold: 0.1);

Licence

MIT

Author

T.Yoshimura