"Sequential Pattern Mining" 和 "Sequential Rule Mining" 有什么区别

What is the difference between "Sequential Pattern Mining" and "Sequential Rule Mining"

非常强大的开源数据挖掘工具SPMF的文档单独列出了它们:

http://www.philippe-fournier-viger.com/spmf/index.php?link=algorithms.php

有人知道为什么吗?

关联规则只是一种种模式。

这些算法很可能只能找到这种模式,因为它们采用 some.interestingness 措施来修剪候选人?

该网站有一个非常详细的问答流程图,从作者的角度显示了不同之处:

http://www.philippe-fournier-viger.com/spmf/map_algorithms_spmf_data_mining097.png

很高兴您使用 SPMF。前段时间写了一篇post解释顺序模式顺序规则的区别:

http://data-mining.philippe-fournier-viger.com/introduction-to-sequential-rule-mining/

如果你读了这个博客post,区别就会变得很清楚。基本上,主要区别在于顺序模式仅根据它们出现的频率来发现,而顺序规则还考虑了遵循模式的置信度概率。因此,顺序规则对于预测等任务更有用。