How to add weka functions to a new algorithm?

I want to add a new algorithm to weka with the features of classification, clustering, association, etc. in one word. How to write code to enable all weka features and add a toka tab for this new algorithm. I added a dummy algorithm for weka and now it works, I want to add an algorithm that has a combination of weka features.

thank

+5
source share
1 answer

If you want to add a new algorithm to Weka, see the Weka manual ( http://www.cs.waikato.ac.nz/ml/weka/index.html )

IV - " Weka" " ". , , AbstractClassifier RandomizableClassifier.

" ". , , weka.clusterers.AbstractClusterer.

, : http://weka.wikispaces.com/How+do+I+use+WEKA%27s+classes+in+my+own+code%3F

+2

All Articles