PAMI is a Python library containing 100+ algorithms to discover useful patterns in various databases across multiple computing platforms. (Active)
Previous | 🏠 Home | Next |
In PAMI, the mining algorithms have been packaged in a hierarchical fashion. The first hierarchical level is ‘PAMI’. The second hierarchical level is the name of the theoretical model of an interesting pattern. The third hierarchical level is the type of the mining algorithm. The last hierarchical level contains the mining algorithms. The organizational structure of algorithms in PAMI is shown below:
PAMI
|-theoriticalModel (e.g., frequent/periodicFrequent/highUtility patterns)
|-patternType (e.g., basic/maximal/closed/topk)
|-algorithmName
The user can import a pattern mining algorithm using the following syntax:
PAMI.theoriticalModel.patternType import Algorithm as algo
A hypothetical structural arrangement of algorithms in PAMI is shown below.
NOTE: The closed, maximal, and top-k packages exist for a theoretical model if and only if there exist the corresponding mining algorithm in the PAMI library.