-
Book Overview & Buying
-
Table Of Contents
The Unsupervised Learning Workshop
By :
The Apriori algorithm is a data mining methodology for identifying and quantifying frequent item sets in transaction data and is the foundational component of association rule learning. Extending the results of the Apriori algorithm to association rule learning will be discussed in the next section. The threshold for an item set being frequent is an input (in other words, a hyperparameter) of the model and, as such, is adjustable. Frequency is quantified here as support, so the value input into the model is the minimum support acceptable for the analysis being done. The model then identifies all item sets whose support is greater than, or equal to, the minimum support provided to the model.
Note
The minimum support hyperparameter is not a value that can be optimized via grid search because there is no evaluation metric for the Apriori algorithm. Instead, the minimum support parameter is set based on the data, the use case, and domain expertise.
The...