Which data mining or machine learning algorithm would be appropriate for learning ordered frequent patterns?
I have a dataset as (var1, var2, out)
, where the ordered pair var1, var2
gives out
. Most of the frequent pattern mining algorithms like the Apriori and FP growth algorithms does not preserve the order of var1 and var2.
Which are some of the available pattern mining algorithms (may also be a NN trick), to find association rules between ordered pair var1, var2
and output variable out
?
Thanks.
Topic association-rules data-mining machine-learning
Category Data Science