Skip to content

ocikyamin/CI4-Machine-Learning-Metode-Naive-Bayes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Aplikasi PHP Machine Learning dengan Metode Naive Bayes - Codeigniter 4

Halaman Utama Aplikasi

localhost_MKOM_PHP-ML_public_apps

CRUD Dataset localhost_MKOM_PHP-ML_public_apps_samples

Prediksi dan Hasil localhost_MKOM_PHP-ML_public_apps_predict (1)

Uji Prediksi dengan mebagi Data Training dan Dataset localhost_MKOM_PHP-ML_public_apps_performance (1)

What is PHP-ML ?

PHP-ML merupakan sebuah library Machine Learning untuk bahasa pemrograman PHP. Library ini menyediakan berbagai tools untuk membuat sebuah sistem ML mulai dari reading data, preprocessing, training model, hingga testing. Untuk fungsi selengkapnya dapat dilihat di situs dokumentasi milik php-ml. Artikel ini akan memberikan contoh sederhana penggunaan php-ml. Lihat Dokumentasi : https://php-ml.readthedocs.io/

What is Naive Bayes ?

Naive bayes merupakan metode pengklasifikasian paling populer digunakan dengan tingkat keakuratan yang baik. Banyak penelitian tentang pengklasifikasian yang telah dilakukan dengan menggunakan algoritma ini. Berbeda dengan metode pengklasifikasian dengan logistic regression ordinal maupun nominal, pada algoritma naive bayes pengklasifikasian tidak membutuhkan adanya pemodelan maupun uji statistik.

Naive bayes merupakan metode pengklasifikasian berdasarkan probabilitas sederhana dan dirancang agar dapat dipergunakan dengan asumsi antar variabel penjelas saling bebas (independen). Pada algoritma ini pembelajaran lebih ditekankan pada pengestimasian probabilitas. Keuntungan algoritma naive bayes adalah tingkat nilai error yang didapat lebih rendah ketika dataset berjumlah besar, selain itu akurasi naive bayes dan kecepatannya lebih tinggi pada saat diaplikasikan ke dalam dataset yang jumlahnya lebih besar.

What is CodeIgniter ?

CodeIgniter is a PHP full-stack web framework that is light, fast, flexible and secure. More information can be found at the official site.

Setup

Copy env to .env and tailor for your app, specifically the baseURL and any database settings.

Important Change with index.php

index.php is no longer in the root of the project! It has been moved inside the public folder, for better security and separation of components.

This means that you should configure your web server to "point" to your project's public folder, and not to the project root. A better practice would be to configure a virtual host to point there. A poor practice would be to point your web server to the project root and expect to enter public/..., as the rest of your logic and the framework are exposed.

Please read the user guide for a better explanation of how CI4 works!

Repository Management

We use GitHub issues, in our main repository, to track BUGS and to track approved DEVELOPMENT work packages. We use our forum to provide SUPPORT and to discuss FEATURE REQUESTS.

This repository is a "distribution" one, built by our release preparation script. Problems with it can be raised on our forum, or as issues in the main repository.

Server Requirements

PHP version 7.4 or higher is required, with the following extensions installed:

Additionally, make sure that the following extensions are enabled in your PHP:

  • json (enabled by default - don't turn it off)
  • mysqlnd if you plan to use MySQL
  • libcurl if you plan to use the HTTP\CURLRequest library

About

PHP-ML merupakan sebuah library Machine Learning untuk bahasa pemrograman PHP. Library ini menyediakan berbagai tools untuk membuat sebuah sistem ML mulai dari reading data, preprocessing, training model, hingga testing.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors