Question

I am trying to compile and execute the c4.5 algorithm on my mac os machine (have a red hat enterprise linux 4.6 machine too), but have not been able to get anywhere with the same.

Is there any one who has tried this and succeed on getting the same to compile and execute on their machines? If, so, please can you share the steps?

Was it helpful?

Solution

To get this to compile, add

#define cfree    free

into R8/Src/defns.i and change line 51 of R8/Src/average.c to

if ( i != Numbers ) exit(1);

(i.e. pass 1 to the exit command). Apart from that follow the website instructions (i.e. open terminal, extract with tar xvzf, compile by typing "cd R8/Src; make all").

If this should not help, post more details as to what is going wrong.

OTHER TIPS

You might want to use Weka, it's a data mining tool, and it contain C4.5 (aka J48 in Weka's naming). It's written in Java, and should work on any recent JVM.

I know it doesn't really answer to your question, but I had hard time running C4.5 myself, and using it through weka was much much easier

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top