A simple implementation of the Gaussian Naive Bayes algorithm in Android ( with Kotlin ).
This project aims to create a Gaussian Naive Bayes classifier in Android and use it on the famous Iris dataset. Gaussian Naive Bayes is a different version of commonly used Naive Bayes classifier, as it deals with numerical features.
We assume that each numerical feature in our dataset, follows a Gaussian distribution, with the mean and standard deviation calculated from that feature itself.
The app uses Opencsv to parse the dataset in CSV format ( from the app’s assets
folder ).
You may use your dataset in the app. Keep the following points in mind, so as to provide a clean dataset to the algorithm,
assets
folder.sepal_length,sepal_width,petal_length,petal_width,species
.species
column in the Iris dataset.species
colun contains three distinct Strings ( classes ), setosa, versicolor, virginica
. All other columns, except the labels column should contain only numerical features. ( Just as the Iris dataset has sepal_length,sepal_width,petal_length,petal_width
columns ). Follow the same format as the Iris dataset.
MIT License
Copyright (c) 2021 Shubham Panchal
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.