Domanda

I used Weka data mining tool for creating list of rules and i want to set this rules as chromosomes in genetic algorithm but i don't know how?

a sample of rules:

srv_serror_rate > 0.51 AND dst_host_diff_srv_rate > 0.7 AND same_srv_rate <= 0.25: satan
È stato utile?

Soluzione

You could take some liberty in your genetics interpretation and use floats as gene values. In this case, you could have one gene representing the minimum srv_serror_rate, one for the minimum dst_host_diff_srv_rate and one for the maximum same_srv_rate. So the genome (chromosome) for the sample rule above would look like [0.51, 0.7, 0.25], and you'd have the mapping between gene positions and their role/function in your evaluation function.

If you want to be really strict you would have to have bitstrings encoding each of these values instead of floats, but I wouldn't bother.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top