Pattern prediction using Genetic Algorithm
I am a newbie to Genetic Algorithm. I am trying to predict the pattern of occurrences of rules. For example, I have a set of rules defined as below. Rule 1, Rule 2, Rule 3, Rule 4, Rule 5, Rule 6, For a given date, I could have only Rule 2, Rule 3 and Rule 6 are used. So I would represent this data as a string as stated below 0 1 1 0 0 1 where 1 denotes that the rule is used and 0 denotes that the rule never get used on that day. So I would have set of data for 5 days as below 011001, 100010, 110011, 101010, 111100, What I would like to achieve here is to predict the the 6th day data. I have