I am using python to model data.Is there anyone to help me to get an idea about to choosing right algorithm for a case.
Let's say, If I want to predict the sequence of the operations with mix set of operations. And there are different combinations of possible sequences in the past, they are different because because there is other outlier effects that change this sequence.
For every process(there are more than hundred process) I have almost 30-40 operation given me as a mix set. And for all process I have past data with these operations and their sequence number. The point that I stack, operations does not have permanent sequence, it is change by "process specific operation set".
example data:
process 1: past data1: [123, 245, 65, 900 ,78, 456 , ..., 45,893]
process 1: past data2: [123, 65, 900 , 245 , 456, 78, ..., 45,893]
....... [p.s. numbers in the arrays are the operation codes]
I think, I need to use unsupervised learning for the predict to sequence of new operation set. But I cannot figure out which algorithm and what kind of road map should I follow.
Any help?