Learn Before
Concept
AprioriAll vs AprioriSome
AprioriAll VS AprioriSome:
-
AprioriAll is used to calculate all candidate Ck, and AprioriSome will be used directly to calculate all candidates. Because contains, AprioriSome will generate more candidates.
-
Although AprioriSome jumps to calculate candidates, because it produces more candidates, it may fill up the memory before the backtracking stage.
-
If the memory is full, AprioriSome will be forced to calculate the last set of candidates.
-
For lower support and longer large sequences, the AprioriSome algorithm is better.
0
1
Updated 2021-11-07
Tags
Data Science