rfahmi / ai
Implementasi algoritma apriori
1.3
2020-11-04 17:32 UTC
This package is auto-updated.
Last update: 2025-06-05 02:40:58 UTC
README
This is ML and DM Class written in PHP OOP, currently only support "Apriori"
This package is made for my college research purpose. But I made it opensource, so everyone can use this class for their projects (if needed) Written by: Fahmi Rizalul
Installation
All you need is just install this package into your project using composer.
$ composer require rfahmi/ai
That's all.
Features
Currently only support Apriori
Usage
Initialize
$apriori = new Apriori(); $apriori->setSupport(3); $apriori->setConfidence(0.7);
Train Model
$items = ['A', 'B', 'C', 'D', 'E']; $transactions = [ ['A', 'B', 'C'], ['A', 'C'], ['A', 'B', 'D'], ['A', 'D'], ['B', 'C', 'E'], ]; $apriori->train($items, $transactions);
Get Rules & Frequent Set
$apriori->getRules(); $apriori->getFrequentset();
Prediction
$apriori->predict(['A']);
Support
Reach out to me at one of the following places!
- Website at
rfahmi.com
- Instagram at
Fahmi Rizalul
Buy me coffee and snacks
License
- MIT license
- Copyright 2020 © Fahmi Rizalul.