Learn Before
Concept

AprioriAll vs AprioriSome

AprioriAll VS AprioriSome:

  1. 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.

  2. Although AprioriSome jumps to calculate candidates, because it produces more candidates, it may fill up the memory before the backtracking stage.

  3. If the memory is full, AprioriSome will be forced to calculate the last set of candidates.

  4. For lower support and longer large sequences, the AprioriSome algorithm is better.

0

1

Updated 2021-11-07

Tags

Data Science

Related